|
本帖最后由 ColdMoon 于 2020-11-29 16:36 编辑
萌新先谢谢各位大佬了。
用esp32连接blinker出现以下问题:
没有http服务。
显示authkey错误。
我换过authkey也不行。
然后我用了一样的authkey在esp8266上,一切正常。
请问:
这是芯片问题还是另有原因。
Serial反馈如下:
代码如下:
- #define BLINKER_PRINT Serial
- #define BLINKER_WIFI
- #include <Blinker.h>
- char auth[] = "";//已省略
- char ssid[] = "";//已省略
- char pswd[] = "";//已省略
- // 新建组件对象
- BlinkerButton Button1("btn-abc");
- BlinkerNumber Number1("num-abc");
- int counter = 0;
- // 按下按键即会执行该函数
- void button1_callback(const String & state) {
- BLINKER_LOG("get button state: ", state);
- digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN));
- }
- // 如果未绑定的组件被触发,则会执行其中内容
- void dataRead(const String & data)
- {
- BLINKER_LOG("Blinker readString: ", data);
- counter++;
- Number1.print(counter);
- }
- void setup() {
- // 初始化串口
- Serial.begin(115200);
- #if defined(BLINKER_PRINT)
- BLINKER_DEBUG.stream(BLINKER_PRINT);
- #endif
- // 初始化有LED的IO
- pinMode(LED_BUILTIN, OUTPUT);
- digitalWrite(LED_BUILTIN, HIGH);
- // 初始化blinker
- Blinker.begin(auth, ssid, pswd);
- Blinker.attachData(dataRead);
- Button1.attach(button1_callback);
- }
- void loop() {
- Blinker.run();
- }
复制代码
|
|