android kotlin Compose 蓝牙库推荐

Kotlin + Compose 项目

// BLE 扫描(Android 4.3 ~ 14 兼容)

implementation "no.nordicsemi.android.support.v18:scanner:1.6.0"

// BLE 连接 / GATT / 读写 / Notify(核心)

implementation "no.nordicsemi.android:ble:2.10.2"

// Kotlin 协程支持(suspend / Flow)

implementation "no.nordicsemi.android:ble-ktx:2.10.2"

如果用到 下面的库可以选择依赖

// 只有老 LiveData 架构才要

implementation "no.nordicsemi.android:ble-livedata:2.10.2"

// 公共常量(通常会被 ble 自动传递)

implementation "no.nordicsemi.android:ble-common:2.10.2"

权限

扫描

val scanner = BluetoothLeScannerCompat.getScanner()

scanner.startScan(

null,

ScanSettings.Builder().build(),

scanCallback

)

连接 继承 BleManager)

class MyBleManager(

context: Context

) : BleManager(context) {

复制代码
override fun getGattCallback(): BleManagerGattCallback {
    return object : BleManagerGattCallback() {
        override fun onServicesDiscovered(device: BluetoothDevice, services: List<BluetoothGattService>) {
            // 找到你的 Service / Characteristic
        }
    }
}

}

读 / 写 / notify

writeCharacteristic(characteristic, data)

readCharacteristic(characteristic)

enableNotifications(characteristic)

相关推荐
天空之城--2 小时前
【无标题】
android
mmsx4 小时前
osmdroid 接入谷歌影像底图:瓦片 URL 拼接与多域名轮询实战
android·osmdroid
ZYJCSZKJ4 小时前
基于大语言模型的地域实体语义增强:生成式引擎优化(GEO)中的多模态内容生成实践
android·人工智能·语言模型
ssshooter4 小时前
Tauri + GitHub Actions 自动化发布 Android APK 技术总结
android·github·android studio
2401_885885044 小时前
国际语音php接口代码示例:PHP使用cURL快速调用语音发送API
android·开发语言·前端·人工智能·python·php·语音识别
_李小白4 小时前
【Android UI开发】Android VideoView 使用介绍(一)
android·ui
Mr数据杨5 小时前
【Codex】用学生支持周报模块跟踪个性化支持进展
android·java·javascript·django·codex·项目开发
名剑走天下5 小时前
Android 面试题大全
android·kotlin
mmsx5 小时前
osmdroid 自定义地图视图:继承 MapView 的正确姿势与生命周期管理
android·osmdroid