美文网首页程序员
android ble概念分析

android ble概念分析

作者: 风过才懂 | 来源:发表于2017-04-12 11:12 被阅读0次

    1.Generic Attribute Profile (GATT)

    通过BLE连接,读写属性类小数据的Profile通用规范。现在所有的BLE应用Profile都是基于GATT的。

    2.Attribute Protocol (ATT)

    GATT是基于ATTProtocol的。ATT针对BLE设备做了专门的优化,具体就是在传输过程中使用尽量少的数据。每个属性都有一个唯一的UUID,属性将以characteristics and services的形式传输。

    3.Characteristic(特征)

    Characteristic可以理解为一个数据类型,它包括一个value和0至多个对次value的描述(Descriptor)每个特征都有对应的唯一uuid

    4.Descriptor(描述)

    对Characteristic的描述,例如范围、计量单位等。

    5.Service(服务)

    Characteristic的集合。它可能包含多个Characteristics,每个服务都有对应的唯一uuid

    相关文章

      网友评论

        本文标题:android ble概念分析

        本文链接:https://www.haomeiwen.com/subject/gztmattx.html