Hi all!
I'm trying to get my SE T610 works with arduino to be able to send SMS. After check that sms plain text mode is supported
AT+CMGF=?
0,1
AT+CMGF=1
OK
I'm trying this code:
#include <LiquidCrystal.h>
LiquidCrystal lcd(7, 8, 9, 10, 11, 12);
String send_command(String at_cmd, int dly){
String msg;
int incomingByte;
Serial.println(at_cmd);
delay(dly);
while (Serial.available() > 0)
{
incomingByte = (Serial.read());
msg = msg + char(incomingByte);
}
delay(1000);
return msg;
}
void setup() {
lcd.begin(16, 4);
Serial.begin(9600);
String ret;
ret = send_command("AT+CMGF=1",3000);
lcd.clear();
lcd.println(ret);
delay(3000);
Serial.print("AT+CMGS=\"XXXXXXXXXX\"\r");
Serial.print("Hello");
Serial.print(0X1A);
lcd.clear();
lcd.println(ret);
delay(3000);
}
void loop() {
}
And geta bad "ERROR"...

I've looked to
http://www.timzaman.nl/?p=47&lang=en to try with PDU mode instead bu without any success too...
Someone have any idea about my problem? or get T610 working? I've tried international phone number like +33XXXXXXX but no more results..
Thanks,
Alex.