android蓝牙动态刷新列表,从Android到蓝牙实时流式传输数据的最佳做法

该博客探讨了在Android应用中通过蓝牙向Simblee设备实时传输数据的方法,特别是处理触摸事件触发的LED灯控制。作者分享了当前实现的代码,包括将数据写入蓝牙特征值以及在`onCharacteristicWrite`回调中处理数据流的队列方法。尽管这种方法有效,但作者寻求更可靠的数据流解决方案,以防错误中断整个流。
摘要由CSDN通过智能技术生成

我有一个Android应用程序,将数据写入simblee蓝牙.

在我的代码下面:

public void sendData(String data) {

Utils.addLog(TAG,"sending data : " + data);

if (mSerialCharacterstic == null) {

Utils.addLog(TAG,"serial characteristic not found yet!");

return;

}

Utils.addLog(TAG,"starting write data...");

mSerialCharacterstic.setValue(data);

Utils.addLog(TAG,"writing : " + data);

// mGatt.beginReliableWrite();

mGatt.writeCharacteristic(mSerialCharacterstic);

}

/*******************/

@Override

public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {

Utils.addLog(TAG,"onCharacteristicWrite : " + new String(characteristic.getValue()) + " status : " + status);

// gatt.executeRel

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值