|
本帖最后由 shechu16 于 2022-3-13 20:26 编辑
求助,本人近期买了一块sim808的板子,和UNO连接,先用串口调试了一下,功能都正常,但是使用以下样例代码的时候就报错Sim808 init error,很苦恼求大佬指点
#include <DFRobot_sim808.h>
#include <sim808.h>
//Mobile phone number, need to change
#define PHONE_NUMBER "180****0776"
//The content of messages sent
#define MESSAGE "hello,world"
DFRobot_SIM808 sim808(&Serial);
void setup() {
//mySerial.begin(9600);
Serial.begin(9600);
//******** Initialize sim808 module *************
while (!sim808.init()) {
delay(1000);
Serial.print("Sim808 init error\r\n");
}
Serial.println("Sim808 init success");
Serial.println("Start to send message ...");
//******** define phone number and text **********
sim808.sendSMS(PHONE_NUMBER, MESSAGE);
}
void loop() {
//nothing to do
}
|
|