- 易迪拓培训,专注于微波、射频、天线设计工程师的培养
TI BLE 如何设置让Android app通过函数写入多个字节?
录入:edatop.com 点击:
Android app怎么通过writeCharacteristic函数写入多个字节?
我能够通过
characteristic.setValue(MySend);
mBluetoothLeService.writeCharacteristic(characteristic);
的方式写入一个字节,但是怎么同时写入20个字节呢(我的characteristic是20字节的)?好像单纯把MySend改成20个字节的byte数组是不行的
我能够通过
characteristic.setValue(MySend);
mBluetoothLeService.writeCharacteristic(characteristic);
的方式写入一个字节,但是怎么同时写入20个字节呢(我的characteristic是20字节的)?好像单纯把MySend改成20个字节的byte数组是不行的
用byte数组来写入,然后设置数组长度
在回调事件里确定发送成功
上一篇:BLE一次广播的字节数一定是32个吗,剩余自动补零?
下一篇:CC2564的GetRemoteName 命令每次只能获取一个设备的名字吗?