esp32c3 使用blinker apconfig v2 总是无反应。-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 814|回复: 7

[已解答] esp32c3 使用blinker apconfig v2 总是无反应。

[复制链接]
发表于 2022-8-6 13:11 | 显示全部楼层 |阅读模式
esp32c3 使用blinker apconfig v2 总是无反应。程序可以烧录成功,但是运行后无反应。


#define BLINKER_WIFI
#define BLINKER_APCONFIG_V2

#include <Blinker.h>

// Download OneButton library here:
// https://github.com/mathertel/OneButton
#include "OneButton.h"

#if defined(ESP32)
    #define BLINKER_BUTTON_PIN 4
#else
    #define BLINKER_BUTTON_PIN D7
#endif
// button trigged when pin input level is LOW
OneButton button(BLINKER_BUTTON_PIN, true);

void deviceReset()
{
    // Reset device ,erase WiFi config.
    Blinker.reset();
}

void dataRead(const String & data)
{
    BLINKER_LOG("Blinker readString: ", data);

    Blinker.vibrate();
   
    uint32_t BlinkerTime = millis();
   
    Blinker.print("millis", BlinkerTime);
}

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

    pinMode(LED_BUILTIN, OUTPUT);
    digitalWrite(LED_BUILTIN, LOW);
   
    Blinker.begin();
    Blinker.attachData(dataRead);
    button.attachLongPressStop(deviceReset);
}

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

发表于 2022-8-6 22:35 | 显示全部楼层
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳
 楼主| 发表于 2022-8-7 12:24 | 显示全部楼层
coloz 发表于 2022-8-6 22:35
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 ...

好的,期待。
 楼主| 发表于 2022-9-5 11:43 | 显示全部楼层
coloz 发表于 2022-8-6 22:35
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 ...

现在试了还是不行呢?
 楼主| 发表于 2022-9-16 20:13 | 显示全部楼层
coloz 发表于 2022-8-6 22:35
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 ...

大神,v2配网还是不行呀
发表于 2022-9-21 13:24 | 显示全部楼层
ggsh6395 发表于 2022-9-16 20:13
大神,v2配网还是不行呀

已支持,需要使用新版本的lib,见:
https://diandeng.tech/doc/arduino-support-next
 楼主| 发表于 2022-9-21 15:38 | 显示全部楼层
coloz 发表于 2022-9-21 13:24
已支持,需要使用新版本的lib,见:
https://diandeng.tech/doc/arduino-support-next

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

本版积分规则

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

GMT+8, 2024-11-28 08:44 , Processed in 0.096536 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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