iOS蓝牙学习之CoreBluetooth

CoreBluetooth(时下热门):可用于第三方蓝牙设备交互,必须要支持蓝牙4.0,硬件至少是4s,系统至少是iOS6,蓝牙4.0以低功耗著称,一般也叫BLE(Bluetooth Low Energy)。目前应用比较多的案例:运动手坏、嵌入式设备、智能家居。

本文仅介绍基础,具体实例请转至github:https://github.com/liuyan-yt/CoreBluetoothDemo.git

1.CoreBluetooth框架的核心其实是:peripheral和central,对应他们分别有一组相关的API和类

1.1中心模式(central),就是以你的app作为中心,连接其他的外设的场景

1.2外设模式(peripheral),使用"手机作为外设"连接其他中心设备操作的场景

1.3服务和特征(service and characteristic)

     * 每个设备都会有1个or多个服务

     * 每个服务里都会有1个or多个特征

     * 特征就是具体键值对,提供数据的地方

     * 每个特征属性分为:读,写,通知等等

2.中心模式流程

   2.1 建立中心角色

   2.2 扫描外设(Discover Peripheral)

   2.3 连接外设(Connect Peripheral)

   2.4 扫描外设中的服务和特征(Discover Services And Characteristics)

        2.4.1 获取外设的services

        2.4.2 获取外设的Characteristics,获取characteristics的值,,获取Characteristics的Descriptor和Descriptor的值

2.5 利用特征与外设做数据交互(Explore And Interact)

2.6 订阅Characteristic的通知

2.7 断开连接(Disconnect)

3.外设模式流程

3.1 引入CoreBluetooth框架,初始化peripheralManager

3.2 设置peripheralManager中的内容

3.3 开启广播advertising

3.4 对central的操作进行响应

     3.4.1 读characteristics请求

    3.4.2 写characteristics请求

    3.4.4 订阅和取消订阅characteristics

你可能感兴趣的:(iOS蓝牙学习之CoreBluetooth)