HM-10 Arduino 蓝牙模块不工作

HM-10 Arduino Bluetooth Module Not Working

我目前正在尝试用我的 Arduino 设置我的 HM-10 蓝牙模块,当我这样做时我遇到了两个问题。当我连接蓝牙模块时,我无法将任何代码上传到 Arduino,因为它会永远卡在 "uploading" 上,直到它崩溃。当我断开模块时,我可以完美地上传代码。另一个问题可能与另一个问题有关,我无法用 phone 连接到蓝牙模块。我使用了密码 1234,0000 和 123456,他们都说无法连接? AT 命令不执行任何操作,因为我无法向其上传任何内容。

bluetooth setup

bluetooth 1

bluetooth 2

When I connect the Bluetooth module I cannot upload any code to the Arduino as it just gets stuck on "uploading" forever until it crashes.

A​​rduino IDE 使用 Arduino UNO 上的主串行端口上传新草图(程序)。但是,您的图片表明您正在使用该串口与蓝牙模块进行通信。

而是使用 SoftwareSerial library to communicate with the bluetooth module - and leave the RX/TX pins free. The SoftwareSerial library will allow you to select different pins: see example here

The other problem which is probably connected to the other one I cannot connect to the Bluetooth module with my phone.

嗯……你把需要的程序上传到开发板了吗?如果不是,现在研究这个问题还为时过早。先确认是否可以上传程序。