为什么我用arduino+JDY-10蓝牙使用示范程序也不能点灯-Arduino中文社区 - Powered by Discuz! Archiver

AT89CCY 发表于 2020-8-8 21:11

为什么我用arduino+JDY-10蓝牙使用示范程序也不能点灯

为什么我用arduino+JDY-10蓝牙使用示范程序也不能点灯

XlinliY.Zhang 发表于 2020-8-8 21:42

贴代码 贴连线

奈何col 发表于 2020-8-9 00:33

务必按文档一步步操作
如还有问题,请提供更详细的信息
https://www.arduino.cn/thread-83658-1-1.html

AT89CCY 发表于 2020-8-9 10:30

按照步骤一步步来的,库也是0.33最新版

AT89CCY 发表于 2020-8-9 10:58

XlinliY.Zhang 发表于 2020-8-8 21:42
贴代码 贴连线


#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);
    BLINKER_DEBUG.stream(Serial);
   
    pinMode(LED_BUILTIN, OUTPUT);
    digitalWrite(LED_BUILTIN, HIGH);
   
    Blinker.begin(2,3,115200);
    Blinker.attachData(dataRead);

    Button1.attach(button1_callback);
}

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

AT89CCY 发表于 2020-8-9 11:02

AT89CCY 发表于 2020-8-9 10:58
#define BLINKER_BLE

#include


接线:uno3-------JDY-10
          TXD--------2
         RXD-------3

AT89CCY 发表于 2020-8-9 12:07

有人知道解决办法或者想讨论可以加我QQ1653012155

XlinliY.Zhang 发表于 2020-8-9 12:22

库要从官网或者github下载

AT89CCY 发表于 2020-8-9 13:19

XlinliY.Zhang 发表于 2020-8-9 12:22
库要从官网或者github下载

库没有问题的
页: [1]
查看完整版本: 为什么我用arduino+JDY-10蓝牙使用示范程序也不能点灯