Hello.
I have a remote control project using the Nano and Sim900 shield.
Working fine when sending sms but when receiving sms something odd is happening:
Show us the line used to print the SMS to the serial monitor. It looks like your reading a character at a time and printing it (including the null terminator) as HEX.
if(SIM900.available() >0)
{
incoming_char=SIM900.read(); //Get the character from the cellular serial port.
Serial.print(incoming_char); //Print the incoming character to the terminal.
}
I have also tried the most of other solutions amnong Serial.write(incoming_char);
and making even buffers ......
I'm having difficulty finding the SIM900 library your using so can you please post details of where the library came from and maybe post the code (or a working part of it) that shows the SMS receive problem.
It may be better to some of the control has been Form (controlpPanel), in real time. Web Form, Android or Windows?
I am interested in this topic, my projects are also associated with the remote control.
Hi Revi.
Im not using Sim900 library.
The commands sent to the Sim900 are the ATs.commands, and I use the SoftwareSerial for communication.
But I will explore the Sim900 library.....