一个蓝牙 第三方库 (github上面) https://github.com/coolnameismy/BabyBluetooth (名字:BabyBluetooth)
----------蓝牙大神博客(http://liuyanwei.jumppo.com/index.html)---------------
1.http://liuyanwei.jumppo.com/2015/07/17/ios-BLE-1.html (蓝牙开发相关基础知识)
2.http://liuyanwei.jumppo.com/2015/08/14/ios-BLE-2.html (蓝牙中心模式的iOS代码)
3.http://liuyanwei.jumppo.com/2015/09/07/ios-BLE-3.html (app作为外设被链接的实现)
4.http://liuyanwei.jumppo.com/2015/09/11/ios-BLE-4.html (BabyBluetooth蓝牙库介绍)
----原生蓝牙调用
iOS蓝牙4.0开发例子
1建立中心角色
1 2 3 |
|
2扫描外设(discover)
[manager scanForPeripheralsWithServices:nil options:options];
3连接外设(connect)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
4扫描外设中的服务和特征(discover)
1 2 3 4 5 6 7 8 9 10 11 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
5与外设做数据交互(读 与 写)
读
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
写
1 2 |
|