esp32c3 使用blinker apconfig v2 总是无反应。
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();
}
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 coloz 发表于 2022-8-6 22:35
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 ...
好的,期待。 coloz 发表于 2022-8-6 22:35
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 ...
现在试了还是不行呢? coloz 发表于 2022-8-6 22:35
blinker app目前不支持apconfig v2
计划下月直接支持esptouch v2,这个配网体验更佳 ...
大神,v2配网还是不行呀
ggsh6395 发表于 2022-9-16 20:13
大神,v2配网还是不行呀
已支持,需要使用新版本的lib,见:
https://diandeng.tech/doc/arduino-support-next coloz 发表于 2022-9-21 13:24
已支持,需要使用新版本的lib,见:
https://diandeng.tech/doc/arduino-support-next
好的我试试
页:
[1]