iPhone BLE/GATT 接口

Posted

技术标签:

【中文标题】iPhone BLE/GATT 接口【英文标题】:iPhone BLE / GATT interface 【发布时间】:2019-07-19 12:09:35 【问题描述】:

我正在为 Node JS 开发一个 BLE 库。我发现了自己的 iPhone,并发现了以下 GATT 服务和特征:

service d0611e78bbb44591a5f8487910ae4366
characteristic  uuid: '8667556c9a374c9184ed54ee27d90049',
  props: [ 'write', 'notify', 'extendedProperties' ] 

service 9fa480e0496745429390d343dc5d04ae
characteristic  uuid: 'af0badb15b9943cd917aa77bc549e3cc',
  props: [ 'write', 'notify', 'extendedProperties' ] 

service 180f
characteristic  uuid: '2a19', props: [ 'read', 'notify' ] 

service 1805
characteristic  uuid: '2a2b', props: [ 'read', 'notify' ] 
characteristic  uuid: '2a0f', props: [ 'read' ] 

service 180a
characteristic  uuid: '2a29', props: [ 'read' ] 
characteristic  uuid: '2a24', props: [ 'read' ] 

现在我想知道他们在做什么。有没有这方面的文档/规范?我用谷歌搜索找不到太多。

【问题讨论】:

所有 16 位 uuid 都可以在蓝牙规范和蓝牙网站上找到。较长的 128 位 uuid 是任何人都可以定义和使用的自定义 uuid,因此在这种情况下,您必须查看供应商是否有相关文档。 【参考方案1】:

对于 16 位标准/注册服务,您需要 GATT Services 列表。

180f 是电池服务。

1805 是当前时间服务。

180a 是设备信息。

长格式(128 位)服务是自定义的、未注册的服务。

d0611e78bbb44591a5f8487910ae4366 是 Apple Continuity 服务。

我不知道 9fa480e0496745429390d343dc5d04ae 是什么。

【讨论】:

以上是关于iPhone BLE/GATT 接口的主要内容,如果未能解决你的问题,请参考以下文章

BLE GATT 介绍

蓝牙 BLE GATT 剖析

蓝牙BLE GATT完全分析和运用

Android BLE GATT 外设模式通知

BLE GATT 上传数据 - Android

BLE GATT 服务器特性定义