TI BLE 如何设置让Android app通过函数写入多个字节?
时间:10-02
整理:3721RD
点击:
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数组来写入,然后设置数组长度
在回调事件里确定发送成功