测了下,UNO连接nodeMCU,APP显示离线?-Arduino中文社区 - Powered by Discuz! Archiver

nyx 发表于 2019-4-28 14:58

测了下,UNO连接nodeMCU,APP显示离线?

请奈何大大看看,UNO连接nodeMCU,
UNO使用软串口(RX=D2,TX=D3);路由上显示已连接(

DIYARDUINOWIFI_ECFABC2818C4192.168.1.3


但显示离线

程序如下:
#define BLINKER_WIFI

#include <Blinker.h>
#include <SoftwareSerial.h>

char auth[] = "81bafcb8db92";
char ssid[] = "NETGEAR98";
char pswd[] = "002883893";

// 新建组件对象
BlinkerButton Button1("btn-abc");

SoftwareSerial SoftSerial(2,3);//声明Uno的软串口:RX=D2,TX=D3

// 按下按键即会执行该函数
void button1_callback(const String & state) {
    BLINKER_LOG("get button state: ", state);
    digitalWrite(13, !digitalRead(13)); //D13输出设为先前的反状态
    Blinker.vibrate(); //对APP发送震动指令,默认500ms
}

void setup() {
    Serial.begin(9600);   // 初始化uno硬串口
    SoftSerial.begin(9600); //初始化uno软串口,波特率为9600
    // 初始化有LED的IO
    pinMode(13, OUTPUT);
    digitalWrite(13, HIGH);

// 初始化blinker
    Blinker.begin(auth, ssid, pswd,2,3,9600);//发送连接路由密码,设定uno与ESP8266连接的串口为软串口
    Button1.attach(button1_callback);
}

void loop() {
    Blinker.run();
}


奈何col 发表于 2019-4-28 17:21

你这是8266的程序?如果是8266上,确定你是要用2、3引脚?

nyx 发表于 2019-4-28 17:40

UNO上的。8266只当发射模块用,已下载AT固件。UNO使用D2/D3软串口连接8266的串口

奈何col 发表于 2019-4-29 00:09

串口没有错误输出?

nyx 发表于 2019-4-29 07:19

是指uno的软串口吗?应该没有。8266模块不连接uno和连接了uno在路由上显示的名字是不一样的。
页: [1]
查看完整版本: 测了下,UNO连接nodeMCU,APP显示离线?