iPhone BLE/GATT 接口
iPhone BLE / GATT interface
我正在为 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 位 standard/registered 服务,您需要 GATT Services 列表。
180f 是电池服务。
1805 是当前时间服务。
180a是设备信息。
long-form(128 位)服务是自定义的、未注册的服务。
d0611e78bbb44591a5f8487910ae4366 是 Apple 连续性服务。
我不知道 9fa480e0496745429390d343dc5d04ae 是什么。
我正在为 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 位 standard/registered 服务,您需要 GATT Services 列表。
180f 是电池服务。
1805 是当前时间服务。
180a是设备信息。
long-form(128 位)服务是自定义的、未注册的服务。
d0611e78bbb44591a5f8487910ae4366 是 Apple 连续性服务。
我不知道 9fa480e0496745429390d343dc5d04ae 是什么。