Closed shrikantbarve closed 8 years ago
That is the raw GPS data. Because NeoSWSerial can only listen to one port at a time (like SoftwareSerial), NeoSWSerial is still listening to the GPS, not the SIM900.
For my testing, I commented out these lines in the sketch I posted:
// SIM900.listen();
SIM900INIT(message);
SIM900STOP();
// gps_port.listen();
You probably need to uncomment those two lines for your system.
Yes, After un-commenting those lines, it has started working as expected.
Thank you so much for your assistance and special thanks for neoswserial library.
Hello, I am using NeoSWSerial with SIM900A. I am passing few commands. When I used to do with Software Serial, I used to get what commands it threw and its response such as OK.
But when I do this >>>
it starts giving something like this >
So I think it is a problem with NeoSWSerial read(), how can I the AT commands that arduino is passing to module ?
Thanks