通过Android Studio开发应用程序,以便利用HM-10蓝牙模块将单个号码从应用程序发送到开发板上。我正在尝试修改可用的here的Android Studio开发人员代码。整个代码可用here。我在弄乱UUID和代码,但无法显示该模块。
我在BLE扫描器上下载了不同的实现,并阅读了源代码。例如,FastBLE应用程序完美地连接到HM-10,但是剖析代码非常困难,因为这是我第一次实现Bluetooth LE。我也不需要具有此功能。该代码位于此处。 https://github.com/Jasonchenlijian/FastBle
来自BluetoothLeservice.java
public final static UUID UUID_HEART_RATE_MEASUREMENT =
UUID.fromString("0000ffe1-0000-1000-8000-00805f9b34fb");
我还没有弄乱属性,因为我不知道它会如何影响与设备的连接。我以为是因为我什至看不到模块弹出
public class SampleGattAttributes {
private static HashMap<String, String> attributes = new HashMap();
public static String HEART_RATE_MEASUREMENT = "00002a37-0000-1000-8000-00805f9b34fb";
public static String CLIENT_CHARACTERISTIC_CONFIG = "00002902-0000-1000-8000-00805f9b34fb";
static {
// Sample Services.
attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
// Sample Characteristics.
attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
}
public static String lookup(String uuid, String defaultName) {
String name = attributes.get(uuid);
return name == null ? defaultName : name;
}
希望先看到HM-10模块在扫描过程中出现,然后再向Arduino发送一个数字。 HM-10模块目前不在Android Studio网站的基本心率监视器上,在扫描过程中不会显示。