A6 gsm/gprs отправить смс
- Войдите на сайт для отправки комментариев
Сб, 25/03/2017 - 13:59
не отправляеться смс 7
правильно ли я подключиль ?
char phone_no[]="87079487503";
void setup() {
Serial.begin(9600);
delay(300);
Serial.println("AT+CMGF=1");
delay(2000);
Serial.print("AT+CMGS=\"");
Serial.print(phone_no);
Serial.write(0x22);
Serial.write(0x0D); // hex equivalent of Carraige return
Serial.write(0x0A); // hex equivalent of newline
delay(2000);
Serial.print("GSM A6 test message!");
delay(500);
Serial.println (char(26));//the ASCII code of the ctrl+z is 26
}
void loop()
{
}