iOS蓝牙低功耗与外部设备连接

时间:2016-02-04 16:21:38

标签: ios objective-c bluetooth bluetooth-lowenergy core-bluetooth

我制作了一个由朋友制作的简单设备,带有一些传感器和一个蓝牙模块。现在模块是3.0,所以我知道它几乎不可能与我的iPhone连接。

我的问题是蓝牙低功耗模块与iPhone连接所需的规格和设置,以便我可以从中接收数据?

1 个答案:

答案 0 :(得分:0)

  1. 首先,您需要连接到设备
  2. 接下来,一旦连接,您需要开始寻找设备服务
  3. 之后,当您发现主要服务或所需服务时,您必须寻找其特征
  4. 最后,一旦发现想要的特征,您需要使用
  5. 订阅它
      

    [myPeripheral setNotifyValue:YES forCharacteristic:aChar];

    实际上,解释所有细节太久了,看一下官方文档,以及它真正的东西。

    https://developer.apple.com/library/ios/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothOverview/CoreBluetoothOverview.html#//apple_ref/doc/uid/TP40013257-CH2-SW1

    祝你好运;)