我正在使用此插件开发Ionic:https://github.com/don/cordova-plugin-ble-central
我必须在Android上传递一个超过20字节泥潭的命令。因此,我使用requestMtu
函数:
this.ble.requestMtu(deviceID, 512).then(mtu => {
this.ble.notification(id, serviceID, txID).subscribe(notif => {
this.ble.write(id, serviceID, tx, cmd).then( ... )
});
});
如果我拨打requestMtu
,则无济于事。命令从不发送。我不叫这个函数起作用(但是我的命令大于20字节)。
我的代码有什么问题? :'( 我不明白发生了什么事...
认为