【发布时间】: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,因此在这种情况下,您必须查看供应商是否有相关文档。
标签: ios iphone bluetooth-lowenergy gatt