求助,用esp-01S做的点动开关怎样做两个按钮?已解决-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 6740|回复: 15

求助,用esp-01S做的点动开关怎样做两个按钮?已解决

[复制链接]
发表于 2020-3-16 19:22 | 显示全部楼层 |阅读模式
本帖最后由 wjh2589 于 2020-3-19 13:53 编辑

如题,使用网上下载的代码,编译完成后只有一个按钮。因为我用它控制家里的净化气用的,我的净化气按一下开机,长按5秒左右才能关机的。

我是一个新手小白。希望大神能帮我一下!

下面是我在网上下载好的代码,哪位大神帮我改一下。

#define BLINKER_WIFI
#define BLINKER_MIOT_OUTLET   //小爱同学

#include <Blinker.h>

char auth[] = "*****";  //设备key
char ssid[] = "*****";  //路由器wifi ssid
char pswd[] = "*****";  //路由器wifi 密码
BlinkerButton Button1("btn-on");     //定义按钮键名
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);
        delay(200);
        digitalWrite(0, HIGH);
        BlinkerMIOT.powerState("on");

        BlinkerMIOT.print();

        oState = true;
    }
    else if (state == BLINKER_CMD_OFF) {   //小爱同学控制关命令 此处修改为点动模式,适合按钮操作,
        digitalWrite(0,LOW);
        delay(5000);
        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 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内控制按键触发
{
    BLINKER_LOG("get button state: ", state);
    digitalWrite(0,LOW);
    delay(200);
    digitalWrite(0, HIGH);
}

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

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

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

    BlinkerMIOT.attachPowerState(miotPowerState);
    BlinkerMIOT.attachQuery(miotQuery);
    Button1.attach(button1_callback);      
}

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

 楼主| 发表于 2020-3-17 15:28 | 显示全部楼层
大神帮忙修改一下,非常感谢!
发表于 2020-3-18 22:03 | 显示全部楼层
本帖最后由 ebeeb 于 2020-3-18 22:07 编辑

#define BLINKER_WIFI
#define BLINKER_MIOT_LIGHT//支持小爱同学

#include <Blinker.h>
#include <Servo.h>//舵机Servo的库文件

Servo myservo;//定义舵机对象,myservo就是这次要用的舵机名称

char auth[] = "06a61bcdd65a";//根据需要自行修改
char ssid[] = "PDCN";
char pswd[] = "lqs136612";


// 新建组件对象
BlinkerButton Button1("test");//注意:要和APP组件’数据键名’一致


int counter = 0;//变量

void miotPowerState(const String & state)//小爱电源类操作的回调函数,当小爱向设备发起控制, 设备端需要有对应控制处理函数
{
    BLINKER_LOG("need set power state: ", state);

    if (state == BLINKER_CMD_ON) {

        myservo.write(170);//收到“on”的指令后舵机旋转140度
        BlinkerMIOT.powerState("on");
        BlinkerMIOT.print();//反馈状态
        Blinker.delay(2000);//延时两秒
        myservo.write(90);//舵机归零,回到垂直状态


    }
    else if (state == BLINKER_CMD_OFF) {

         myservo.write(60);//收到“off”的指令后舵机旋转 度
         BlinkerMIOT.powerState("off");
         BlinkerMIOT.print();//反馈状态
         Blinker.delay(2000);//延时两秒
         myservo.write(90);//舵机归零,回到垂直状态


    }
}

// 按下BlinkerAPP按键即会执行该函数
void button1_callback(const String & state)
{
    BLINKER_LOG("get button state: ", state);
    if (state=="on")
    {
        myservo.write(170);//收到“on”的指令后舵机旋转140
        Blinker.delay(2000);//延时
        myservo.write(90);//舵机归零垂直


    } else if(state=="press")//长按BlinkerAPP按键
    {
       myservo.write(60);//长按BlinkerAPP按键后舵机旋转60
       Blinker.delay(2000);//延时
       myservo.write(90);//舵机归零垂直
    }

}


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

}

void setup()
{
    // 初始化串口,并开启调试信息,调试用可以删除
    Serial.begin(115200);
    BLINKER_DEBUG.stream(Serial);
    BLINKER_DEBUG.debugAll();
    // 初始化舵机
    myservo.attach(12);//舵机的IO口,nodemcu的D6口
    myservo.write(90);//上电时舵机归零垂直
  BlinkerMIOT.attachPowerState(miotPowerState);

    // 初始化blinker
    Blinker.begin(auth, ssid, pswd);
    Blinker.attachData(dataRead);

    //小爱同学务必在回调函数中反馈该控制状态
    Button1.attach(button1_callback);//注册回调函数
}

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

======================

这个是控制舵机的,长按那里,把Blinker.delay延迟时间改长应该就能达到要求了。不过我也是新手呀,说的不对就见谅了
 楼主| 发表于 2020-3-19 13:44 | 显示全部楼层
ebeeb 发表于 2020-3-18 22:03
#define BLINKER_WIFI
#define BLINKER_MIOT_LIGHT//支持小爱同学

谢谢了,我自己摸索着搞好了。
发表于 2020-3-19 19:42 | 显示全部楼层
wjh2589 发表于 2020-3-19 13:44
谢谢了,我自己摸索着搞好了。

方便的话也把你的程序发一下吧,对其他人来说可能也是很重要的参考
 楼主| 发表于 2020-3-20 17:51 | 显示全部楼层
ebeeb 发表于 2020-3-19 19:42
方便的话也把你的程序发一下吧,对其他人来说可能也是很重要的参考

我就是一个完全不懂编程的小白,是我瞎蒙的。下面的我改的代码,见笑了。。。
 楼主| 发表于 2020-3-20 17:58 | 显示全部楼层
#define BLINKER_WIFI
#define BLINKER_MIOT_OUTLET   //小爱同学

#include <Blinker.h>

char auth[] = "********";  //设备key
char ssid[] = "*********";  //路由器wifi ssid
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);
        delay(200);
        digitalWrite(0, HIGH);
        BlinkerMIOT.powerState("on");

        BlinkerMIOT.print();

        oState = true;
    }
    if (state == BLINKER_CMD_OFF) {   //小爱同学控制关命令 此处修改为点动模式,适合按钮操作,
        digitalWrite(0,LOW);
        delay(5000);
        digitalWrite(0, HIGH);
        BlinkerMIOT.powerState("off");

        BlinkerMIOT.print();

        oState = true;
    }
}

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 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内控制按键触发
{
    BLINKER_LOG("get button state: ", state);
    digitalWrite(0,LOW);
    delay(200);
    digitalWrite(0, HIGH);
}
void button2_callback(const String & state)     //点灯app内控制按键触发
{
    BLINKER_LOG("get button state: ", state);
    digitalWrite(0,LOW);
    delay(5000);
    digitalWrite(0, HIGH);                                     //这是拷贝上面的一段把 1 改为 2 。
}
void setup()
{
    Serial.begin(115200);
    BLINKER_DEBUG.stream(Serial);

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

    Blinker.begin(auth, ssid, pswd);
    Blinker.attachData(dataRead);
   
    BlinkerMIOT.attachPowerState(miotPowerState);
    BlinkerMIOT.attachQuery(miotQuery);
    Button1.attach(button1_callback);      
    Button2.attach(button2_callback);       // 这里按照上面一行加多一行并改为2
}

void loop()
{
    Blinker.run();
}
 楼主| 发表于 2020-3-20 17:58 | 显示全部楼层
我只改了文字加粗的这几个地方
发表于 2020-3-21 20:27 | 显示全部楼层
wjh2589 发表于 2020-3-20 17:58
#define BLINKER_WIFI
#define BLINKER_MIOT_OUTLET   //小爱同学

给你点赞
发表于 2020-4-4 00:05 | 显示全部楼层
ebeeb 发表于 2020-3-18 22:03
#define BLINKER_WIFI
#define BLINKER_MIOT_LIGHT//支持小爱同学

您好,我想用esp-01s通过blinker控制arduino uno 上的舵机,想知道烧录的连线及步骤,您方便讲一下吗,总是烧不进去,也不知道是我的连线方式有误还是什么原因
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-1 05:40 , Processed in 0.078811 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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