Open GoogleCodeExporter opened 8 years ago
this is the code im using:
#include "SIM900.h"
#include <SoftwareSerial.h>
#include "sms.h"
SMSGSM sms;
boolean started=false;
void setup()
{
//Serial connection.
Serial.begin(9600);
Serial.println("GSM Shield testing.");
if (gsm.begin(2400)){
Serial.println("\nstatus=READY");
started=true;
}
else Serial.println("\nstatus=IDLE");
if(started){
if (sms.SendSMS("+6148123123123", "SMS from Arduino"))
Serial.println("\nSMS sent OK");
}
};
void loop()
{
}
Original comment by excat...@gmail.com
on 13 Jan 2014 at 4:14
Original issue reported on code.google.com by
excat...@gmail.com
on 13 Jan 2014 at 4:10