Hi,
I have a SIM508 (GSM/GPRS/GPS module from SIMCOM). When I try to send a SMS directly from my pc (via AT commands in hyperterminal), everything works fine.
When I try to connect it from the Arduino (NG), it doesn't do a thing.
I have the arduino TX connected with the SIM508 RX and the arduino RX connected with the TX.
Both grounds are connected too. I read in several other posts on the forum (with Telit chips or regular phones) this should be enough.
This is my most basic code:
void setup() {
Serial.begin(115200);//baud rate must be 115200 for interfacing SIM508
Serial.print("ATD0472000000"); //AT command for call 0472000000
}
void loop() {
}
Any thoughts on how to make the SIM508 call? Thank you!