arduino UNO+HC-06 连接Blinker,在IDE编译时提示JsonObject-Arduino中文社区 - Powered by Discuz! Archiver

shay89 发表于 2021-2-26 14:37

arduino UNO+HC-06 连接Blinker,在IDE编译时提示JsonObject

请教各位大佬,硬件组成:arduino UNO + HC-06 连接Blinker
问题:在IDE编译时提示:blinker-library-master\src/Blinker/BlinkerApi.h:1108:28: error: 'JsonObject' does not name a type void rtParse(const JsonObject& data);
使用的是官网的示例代码:
#define BLINKER_PRINT Serial
#define BLINKER_BLE

#include <Blinker.h>

// 新建组件对象
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();
    Blinker.attachData(dataRead);
    Button1.attach(button1_callback);
}

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


奈何col 发表于 2021-2-26 16:04

这个报错应该是个bug,但HC06 blinker是不支持的,文档有写:
https://diandeng.tech/doc/device-support

shay89 发表于 2021-2-26 17:18

奈何col 发表于 2021-2-26 16:04
这个报错应该是个bug,但HC06 blinker是不支持的,文档有写:
https://diandeng.tech/doc/device-support ...

我不用blinker的库,直接用arduino的softwareSerial库,然后手机用blinker的app是可以连接的,然后arduino串口监控可以收到手机发过来的东西。
页: [1]
查看完整版本: arduino UNO+HC-06 连接Blinker,在IDE编译时提示JsonObject