请教各位大佬,硬件组成: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();
- }
复制代码
|