我在阅读Ble设备和使用RxAndroidBle库时遇到了麻烦。
我一直收到这个错误:
BleGattException{status=22, bleGattOperation=BleGattOperation{description='CONNECTION_STATE'}}
任何人都可以查看我的代码,看看我可能做错了什么:
subscription = rxBleDevice.establishConnection(context, true)
.subscribe(rxBleConnection -> {
rxBleConnection.readCharacteristic(UUID.fromString(UUID_LOG_COUNT)).doOnNext(Action1 -> Logger.d(Helper_Utils.reverseHex(HexString.bytesToHex(Action1))));
}, throwable -> {
Logger.d("Error", throwable.getMessage());
});
如果您需要更多信息,我会尝试提供。
修改
我使用了2种不同的手机: OnePlus Two Android 6.0.1 Moto G Play Android 6.0.1
我已多次尝试打开和关闭wifi和蓝牙。 我从来没有能够通过这个例子得到一个阅读。
答案 0 :(得分:0)
感谢s_noopy找到我的问题。
这是我的问题的解决方案:
subscription = rxBleDevice.establishConnection(context, true)
.subscribe(rxBleConnection -> {
rxBleConnection.readCharacteristic(UUID.fromString(UUID_LOG_COUNT))
.subscribe(characteristicValue -> {
Logger.d(Helper_Utils.reverseHex(HexString.bytesToHex(characteristicValue)));
});
}, throwable -> {
Logger.d("Error", throwable.getMessage());
});
我用.subscribe
更改了.doOnNext答案 1 :(得分:0)
status = 22
是与Android操作系统断开外围设备相关的问题。你可以从代码中做很多事情来阻止它。
至于不读特征值 - 这是因为你没有订阅它。 RxJava
编程(或一般的反应式编程)中的最佳方法是准备只有一个订阅的流,因为这样可以最小化状态量。
你可以这样做:
Subscription s = rxBleDevice.establishConnection(true) // establish the connection
.flatMap(rxBleConnection -> rxBleConnection.readCharacteristic(UUID.fromString(UUID_LOG_COUNT))) // when the connection is established start reading the characteristic
.take(1) // after the first value unsubscribe from the upstream to close the connection
.subscribe( // subscribe to read values
characteristicValue -> Logger.d(Helper_Utils.reverseHex(HexString.bytesToHex(characteristicValue))), // do your thing with the read value here
throwable -> Logger.d("Error", throwable.getMessage()) // log / show possible error here
);
请注意,.subscribe()
的结果是Subscription
,您可以通过拨打Subscription.unsubscribe()
来取消,这会断开外设。
我的代码引用了昨天发布的RxAndroidBle 1.2.0
引入的新API。