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

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1732|回复: 8

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

[复制链接]
发表于 2020-8-8 21:11 | 显示全部楼层 |阅读模式
为什么我用arduino+JDY-10蓝牙使用示范程序也不能点灯
发表于 2020-8-8 21:42 | 显示全部楼层
贴代码 贴连线
发表于 2020-8-9 00:33 | 显示全部楼层
务必按文档一步步操作
如还有问题,请提供更详细的信息
https://www.arduino.cn/thread-83658-1-1.html
 楼主| 发表于 2020-8-9 10:30 来自手机 | 显示全部楼层
按照步骤一步步来的,库也是0.33最新版
 楼主| 发表于 2020-8-9 10:58 | 显示全部楼层


#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();
}
 楼主| 发表于 2020-8-9 11:02 | 显示全部楼层
AT89CCY 发表于 2020-8-9 10:58
#define BLINKER_BLE

#include

接线:uno3-------JDY-10
          TXD--------2
           RXD-------3
 楼主| 发表于 2020-8-9 12:07 | 显示全部楼层
有人知道解决办法或者想讨论可以加我QQ1653012155
发表于 2020-8-9 12:22 | 显示全部楼层
库要从官网或者github下载
 楼主| 发表于 2020-8-9 13:19 | 显示全部楼层
XlinliY.Zhang 发表于 2020-8-9 12:22
库要从官网或者github下载

库没有问题的
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 11:46 , Processed in 0.071047 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表