SIM808错误-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 548|回复: 1

[已解决] SIM808错误

[复制链接]
发表于 2022-3-13 17:39 | 显示全部楼层 |阅读模式
本帖最后由 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
}

发表于 2022-3-14 06:56 | 显示全部楼层
会不会模块供电不足?
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-1 08:57 , Processed in 0.106180 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表