JDY-18蓝牙模块 连接blinker超时
[*]手机本身能够通过配对码与JDY-18连接APP可以扫描到JDY-18 但是一直显示连接超时 测试了很多个版本的库和APP 都没有解决 最新版本的库串口甚至没有任何输出信息
[*]手机型号:红米NOTE 7 PRO (Android 9)
[*]硬件: |Arduino UNO
[*]接入方式: [BLE|
[*]blinker库版本: [arduino 0.3.2|
[*]开发环境: [Arduino|
[*]操作系统: [Windows 10|
[*]手机APP版本2.2.6
[*]连线:JDY-18的TX连arduino的2 RX连3
[*]代码Hello_BLE
[*]#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();
Blinker.attachData(dataRead);
Button1.attach(button1_callback);
}
void loop()
{
Blinker.run();
}
arduino IDE版本 1.8.9 3个用户反映JDY-18和JDY-08无法连接,但我实际测试,都是可以的,所以暂时不知道原因是啥。
不排除现在市面上的JDY模块不是我手头的版本了,留个购买地址吧,我买过试试 https://item.taobao.com/item.htm?spm=a230r.1.14.22.5502211ehCcAyi&id=570568082993&ns=1&abbucket=1#detail 发现蓝牙DIY设备无法连接的原因了,确实是我们的一个更改造成的。
现象是,最近一周添加的设备无法连接,之前添加的不受影响。
等我们明天修复了,即可正常使用蓝牙设备。 请在blinker QQ群联系 奈何col,为弥补您浪费的时间,将免费赠送认证开发者资格 问题已修复,感谢您的测试
页:
[1]