esp8266-01S 点灯科技,双开灯拿走,只支持小爱,天猫精灵-Arduino中文社区 - Powered by Discuz! Archiver

冰点虎 发表于 2020-3-29 19:27

esp8266-01S 点灯科技,双开灯拿走,只支持小爱,天猫精灵

本帖最后由 冰点虎 于 2020-4-10 19:08 编辑

前不久买了开猫精灵,VIVO手机的物联网不支持点灯,果断卸载掉,安装上小爱和米家,到手几块-01S不太会弄,逛遍大江南北论坛,都没有找到小爱和天猫双控的代码,无奈自己是小白,找了好久代码,天猫和小爱代码结合,不断学习,终于弄出来了,开心。话不多说,直接上代码。-----------------烧写后灯不会闪,按键也不闪,不过能正常用就行了。

#define BLINKER_WIFI
#define BLINKER_MIOT_OUTLET   //小爱同学
#define BLINKER_DUEROS_OUTLET
#define BLINKER_ALIGENIE_OUTLET //天猫精灵

#include <Blinker.h>



char auth[] = "************";      //密钥
char ssid[] = "**********";            //wifi名称
char pswd[] = "*********";         //wifi密码
BlinkerButton Button1("btn-on");   //定义按钮数据
BlinkerButton Button2("btn-off");
bool oState = false;
int counter = 0;
void miotPowerState(const String & state)
{
    BLINKER_LOG("need set power state: ", state);

    if (state == BLINKER_CMD_ON) {   //小爱同学控制开命令
      digitalWrite(0, LOW);

      BlinkerMIOT.powerState("on");

      BlinkerMIOT.print();

      oState = true;
    }
    else if (state == BLINKER_CMD_OFF) {   //小爱同学控制关命令
      digitalWrite(0,HIGH);

      BlinkerMIOT.powerState("off");

      BlinkerMIOT.print();

      oState = false;
    }
}

void miotQuery(int32_t queryCode)      //小爱同学控制
{
    BLINKER_LOG("MIOT Query codes: ", queryCode);

    switch (queryCode)
    {
      case BLINKER_CMD_QUERY_ALL_NUMBER :
            BLINKER_LOG("MIOT Query All");
            BlinkerMIOT.powerState(oState ? "on" : "off");
            BlinkerMIOT.print();
            break;
      case BLINKER_CMD_QUERY_POWERSTATE_NUMBER :
            BLINKER_LOG("MIOT Query Power State");
            BlinkerMIOT.powerState(oState ? "on" : "off");
            BlinkerMIOT.print();
            break;
      default :
            BlinkerMIOT.powerState(oState ? "on" : "off");
            BlinkerMIOT.print();
            break;
    }
}

void AliGeniePowerState(const String & state)
{
    BLINKER_LOG("need set power state: ", state);

    if (state == BLINKER_CMD_ON) {   //小爱同学控制开命令
      digitalWrite(0, LOW);

      BlinkerAliGenie.powerState("on");

      BlinkerAliGenie.print();

      oState = true;
    }
    else if (state == BLINKER_CMD_OFF) {   //小爱同学控制关命令
      digitalWrite(0,HIGH);

      BlinkerAliGenie.powerState("off");

      BlinkerAliGenie.print();

      oState = false;
    }
}

void AliGenieQuery(int32_t queryCode)      //天猫精灵控制
{
    BLINKER_LOG("AliGenie Query codes: ", queryCode);

    switch (queryCode)
    {
      case BLINKER_CMD_QUERY_ALL_NUMBER :
            BLINKER_LOG("AliGenie Query All");
            BlinkerAliGenie.powerState(oState ? "on" : "off");
            BlinkerAliGenie.print();
            break;
      case BLINKER_CMD_QUERY_POWERSTATE_NUMBER :
            BLINKER_LOG("AliGenie Query Power State");
            BlinkerAliGenie.powerState(oState ? "on" : "off");
            BlinkerAliGenie.print();
            break;
      default :
            BlinkerAliGenie.powerState(oState ? "on" : "off");
            BlinkerAliGenie.print();
            break;
    }
}

void dataRead(const String & data)      // 如果未绑定的组件被触发,则会执行其中内容
{
    BLINKER_LOG("Blinker readString: ", data);

    Blinker.vibrate();

    uint32_t BlinkerTime = millis();

    Blinker.print("millis", BlinkerTime);
}

void button1_callback(const String & state)   //点灯app内控制按键触发
{

    digitalWrite(0,LOW);
    BLINKER_LOG("get button state:on", state);


}
void button2_callback(const String & state)   //点灯app内控制按键触发
{

    digitalWrite(0,HIGH);
    BLINKER_LOG("get button state:off", state);


}

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

    pinMode(0, OUTPUT);            //定义io口为输出
    digitalWrite(0, LOW);         //定义io默认为高电平

    Blinker.begin(auth, ssid, pswd);
    Blinker.attachData(dataRead);


    BlinkerAliGenie.attachPowerState(AliGeniePowerState);
    BlinkerAliGenie.attachQuery(AliGenieQuery);
    BlinkerMIOT.attachPowerState(miotPowerState);
    BlinkerMIOT.attachQuery(miotQuery);
    Button1.attach(button1_callback);
    Button2.attach(button2_callback);   

}

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


6020651 发表于 2020-3-29 19:54

没看懂代码,是arduino透传ESP1S吗?

itfangli 发表于 2020-3-29 20:50

怎么个双控法?

n1001 发表于 2020-3-30 08:15

华为的同样不支持点灯,咕咕咕

冰点虎 发表于 2020-3-30 12:36

本帖最后由 冰点虎 于 2020-3-30 12:38 编辑

itfangli 发表于 2020-3-29 20:50
怎么个双控法?
米家里——添加其它平台设备——选点灯科技——同步,再到小爱里——添加学习计划,
天猫的看图

冰点虎 发表于 2020-3-30 12:40

n1001 发表于 2020-3-30 08:15
华为的同样不支持点灯,咕咕咕

可以下载一个米家和小爱一样的可以用

admin1314 发表于 2020-4-2 15:45

一会就自己闪一下

shark526 发表于 2020-4-6 11:08

赞! 但附件里个人信息干掉撒

admin1314 发表于 2020-4-7 11:25

楼主你有没有发现你的程序有时候灯的状态会自己切换,开换成关,关换成开:) 大晚上怪吓人的

17695933176 发表于 2020-4-7 21:50

怎么接入SIRI
页: [1] 2 3
查看完整版本: esp8266-01S 点灯科技,双开灯拿走,只支持小爱,天猫精灵