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

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 3067|回复: 6

[已解答] 8266+点灯科技+天猫精灵

[复制链接]
发表于 2020-6-15 20:49 | 显示全部楼层 |阅读模式
点灯科技app可以控制,天猫精灵能绑定并且看得到设备,就是不能控制
可以帮忙修改下代码吗
[mw_shl_code=arduino,true]#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();
}[/mw_shl_code]
发表于 2020-6-15 22:00 | 显示全部楼层
你这都没天猫精灵的代码啊,看看教程或者文档吧
 楼主| 发表于 2020-6-15 22:06 | 显示全部楼层
奈何col 发表于 2020-6-15 22:00
你这都没天猫精灵的代码啊,看看教程或者文档吧

可以帮忙改下代码吗,感谢
发表于 2020-6-15 22:27 | 显示全部楼层
 楼主| 发表于 2020-6-15 22:54 | 显示全部楼层
奈何col 发表于 2020-6-15 22:27
https://www.arduino.cn/thread-83754-1-1.html
教程看完

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

点评

那只有从头开始学  详情 回复 发表于 2020-6-16 08:50
发表于 2020-6-16 08:50 | 显示全部楼层
x285434242 发表于 2020-6-15 22:54
我是小白,对代码一点都不懂

那只有从头开始学
 楼主| 发表于 2020-6-16 18:53 | 显示全部楼层
奈何col 发表于 2020-6-16 08:50
那只有从头开始学

控制代码怎么写
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 09:38 , Processed in 0.118527 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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