小白求教·基于Blinker用ESP-12E与JDY-10蓝牙模块通信-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2045|回复: 0

[过期] 小白求教·基于Blinker用ESP-12E与JDY-10蓝牙模块通信

[复制链接]
发表于 2020-4-25 21:09 | 显示全部楼层 |阅读模式
为了解决ESP-12E在路由器断电断网无法控制设备(灯、继电器……)的情况下,增加蓝牙模块实现局域网控制。
现在碰到的具体问题是:用ESP-12E代替Arduino UNO使用串口连接蓝牙模块,通过对ESP8266-WIFI接入与Arduino-蓝牙接入的例程移植合并,程序编译失败。
上述问题需要怎么解决,请不吝赐教!谢谢!
#define BLINKER_WIFI
#define BLINKER_BLE

#include <Blinker.h>


char auth[] = "************";
char ssid[] = "************";
char pswd[] = "************";
// 新建组件对象
BlinkerButton Button1("btn-abc");
BlinkerNumber Number1("num-abc");

int counter = 0;
// 按下按键即会执行该函数
void button1_callback(const String & state)
{
    BLINKER_LOG("get button state: ", state);
    digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN));
}

void dataRead(const String & data)
{
    BLINKER_LOG("Blinker readString: ", data);
    counter++;
    Number1.print(counter);
}

void setup()
{
    Serial.begin(115200);
    BLINKER_DEBUG.stream(Serial);

    pinMode(LED_BUILTIN, OUTPUT);
    digitalWrite(LED_BUILTIN, HIGH);
    Blinker.begin(auth, ssid, pswd);
    Blinker.begin(2,3,115200);
    Blinker.attachData(dataRead);

    Button1.attach(button1_callback);
}

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

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 07:44 , Processed in 0.066589 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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