ap.notifyBLECharacteristicValueChange 启用低功耗蓝牙设备特征值变化时的 notify 功能
优质
小牛编辑
136浏览
2023-12-01
ap.notifyBLECharacteristicValueChange(OPTION, CALLBACK)
启用低功耗蓝牙设备特征值变化时的 notify 功能。注意:必须设备的特征值支持notify才可以成功调用,具体参照 characteristic 的 properties 属性 另外,必须先启用notify才能监听到设备 characteristicValueChange 事件。
OPTION 参数说明
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
deviceId | String | 是 | 蓝牙设备 id,参考 device 对象 |
serviceId | String | 是 | 蓝牙特征值对应 service 的 uuid |
characteristicId | String | 是 | 蓝牙特征值的 uuid |
descriptorId | String | 否 | notify 的 descriptor 的 uuid |
state | Boolean | 否 | 是否启用notify或indicate |
错误码说明
error | 描述 |
---|---|
12 | 启动失败 |
代码示例
<script src="https://gw.alipayobjects.com/as/g/h5-lib/alipayjsapi/3.1.1/alipayjsapi.inc.min.js"></script>
<button class="btn btn-default">启用 notify 功能</button>
<script>
var btn = document.querySelector('#J_btn');
btn.addEventListener('click', function(){
ap.notifyBLECharacteristicValueChange({
// 这里的 deviceId 需要在 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取
deviceId: 'deviceId',
// 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取
serviceId: 'serviceId',
// 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取
characteristicId: 'characteristicId',
success: function(res){
ap.alert('启动通知成功');
},
fail: function(res) {
ap.showToast('启动通知失败');
}
});
});
</script>