gpt4 book ai didi

android - 使用 Kotlin 协程替换 BLE 回调

转载 作者:行者123 更新时间:2023-12-04 13:34:17 25 4
gpt4 key购买 nike

我想使用 Kotlin 的协程来处理 BLE 的异步回调。连接到 BLE 设备需要一个回调对象,例如:connectToBle(Context, Boolean, GattCallback)结果在方法onConnectionStateChanged中异步返回GattCallback 对象。我用了suspendCoroutine<BluetoothGatt>按照文档 here 中的详细说明实现此操作.
现在onConnectionStateChanged返回一个 BluetoothGatt 对象,我必须将其保存为全局变量并用于调用其他方法,例如 discoverServices , readCharacteristic , writeCharacteristic等等,都在GattCallback对象的不同回调方法中异步返回,如onServicesDiscovered , onCharacteristicRead , onCharacteristicWrite等等。
这是使用 suspendCoroutine 的代码:

suspend fun BluetoothDevice.connectToBleDevice(
context: Context,
autoConnect: Boolean = false
) = suspendCoroutine<BluetoothGatt?> { cont ->

connectGatt(context, autoConnect, object : BluetoothGattCallback() {

override fun onConnectionStateChange(gatt: BluetoothGatt?, status: Int, newState: Int) {
super.onConnectionStateChange(gatt, status, newState)
Timber.d("onConnectionStateChange: ")
if (status != BluetoothGatt.GATT_SUCCESS) cont.resume(null) else cont.resume(gatt)
// save gatt instance here if success
}

override fun onServicesDiscovered(gatt: BluetoothGatt?, status: Int) {
super.onServicesDiscovered(gatt, status)
if (status != BluetoothGatt.GATT_SUCCESS) cont.resume(null) else cont.resume(gatt)
// return list of services if success
}

override fun onCharacteristicRead(
gatt: BluetoothGatt?,
characteristic: BluetoothGattCharacteristic?,
status: Int
) {
super.onCharacteristicRead(gatt, characteristic, status)
if (status != BluetoothGatt.GATT_SUCCESS) cont.resume(null) else cont.resume(gatt)
// return read value if success
}
})
}
对保存的 gatt 实例调用的方法:
    fun discoverServices() {
gatt?.discoverServices() // result received in onServicesDiscovered
}

fun readCharacteristic(serviceUUID: UUID, characteristicUUID: UUID) {
gatt?.apply {
val characteristic =
getService(serviceUUID).getCharacteristic(characteristicUUID)
readCharacteristic(characteristic) // result received in onCharacteristicRead
}
}
如果我想编写如下“顺序代码”:
val gatt = connectToBle(context, false, gattCallback) // suspend until onConnectionStateChanged returns successfully
discoverServices() // suspend until discoverServices returns successfully
writeCharacteristic(characteristic, valueToWrite) // suspend until value is written successfully
val valueRead = readCharacteristic(characteristic) // suspend until the value is read successfully
disconnect()
我必须做出哪些改变?我应该使用 suspendCoroutine 以外的东西吗?

最佳答案

听起来像 Kable可能适合您的需求?它提供了一个类似于您所描述的 API。
例如,您可以使用以下代码连接、写入/读取/读取特性,然后断开连接:

val characteristic = characteristicOf(
service = "00001815-0000-1000-8000-00805f9b34fb",
characteristic = "00002a56-0000-1000-8000-00805f9b34fb"
)

// todo: Use scanner (provided by Kable) to obtain `peripheral`.

peripheral.apply {
connect()
write(characteristic, byteArrayOf(1, 2, 3))
val valueRead: ByteArray = read(characteristic)
disconnect()
}
免责声明:我是 Kable 的贡献者,所以这有点偏颇。 🤷‍♂️

关于android - 使用 Kotlin 协程替换 BLE 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63141333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com