蓝牙模块 h8
1、初始化设备(openBluetoothAdapter)
2、获取蓝牙适配器状态(getBluetoothAdapterState)
3、判断蓝牙是否在搜索状态(getBluetoothAdapterState成功后返回的discovering值)
4、若不在搜索状态开启搜索状态(startBluetoothDevicesDiscovery)
5、成功后,监听寻找到新设备的事件(onBluetoothDeviceFound)
6、关闭搜索新设备(stopBluetoothDevicesDiscovery)
7、获取设备服务(getBLEDeviceServices)
8、获取设备服务特征(getBLEDeviceCharacteristics)
9、写入数据(writeBLECharacteristicValue)
10、开启notif功能(notifyBLECharacteristicValueChange)
11、开始监听(onBLECharacteristicValueChange)