8266+点灯科技+天猫精灵-Arduino中文社区 - Powered by Discuz! Archiver

x285434242 发表于 2020-6-15 20:49

8266+点灯科技+天猫精灵

点灯科技app可以控制,天猫精灵能绑定并且看得到设备,就是不能控制
可以帮忙修改下代码吗
#define BLINKER_WIFI
#include <Blinker.h>

char auth[] = "。。。。。";
char ssid[] = "。。。。。";
char pswd[] = "。。。。。。";

#define BT_1 "lb"//后期可自行修改数据键名
BlinkerButton BT1(BT_1);

void BT1_callback(const String & state)
{
if (state == BLINKER_CMD_BUTTON_TAP){
    digitalWrite(0, HIGH);
    BT1.text("", "已开启");
    BT1.print("on");
    Blinker.delay(1500);
   digitalWrite(0, LOW);
    BT1.text("", "已关闭");
    BT1.print("off");
    }
}
void setup() {
Serial.begin(115200);
BLINKER_DEBUG.stream(Serial);
pinMode(0, OUTPUT);
digitalWrite(0, LOW);
Blinker.begin(auth, ssid, pswd);

BT1.attach(BT1_callback);
Blinker.notify("!卧室的吸顶灯已上线!");
}

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

奈何col 发表于 2020-6-15 22:00

你这都没天猫精灵的代码啊,看看教程或者文档吧

x285434242 发表于 2020-6-15 22:06

奈何col 发表于 2020-6-15 22:00
你这都没天猫精灵的代码啊,看看教程或者文档吧

可以帮忙改下代码吗,感谢

奈何col 发表于 2020-6-15 22:27

https://www.arduino.cn/thread-83754-1-1.html
教程看完

x285434242 发表于 2020-6-15 22:54

奈何col 发表于 2020-6-15 22:27
https://www.arduino.cn/thread-83754-1-1.html
教程看完

我是小白,对代码一点都不懂

奈何col 发表于 2020-6-16 08:50

x285434242 发表于 2020-6-15 22:54
我是小白,对代码一点都不懂

那只有从头开始学

x285434242 发表于 2020-6-16 18:53

奈何col 发表于 2020-6-16 08:50
那只有从头开始学

控制代码怎么写
页: [1]
查看完整版本: 8266+点灯科技+天猫精灵