无法同时通过iPhone在树莓派上编写和通知

时间:2019-04-03 03:46:23

标签: python swift raspberry-pi

我试图制作一个可以在iphone上读取通知和写入BLE值的程序。

当我写

char = CBMutableCharacteristic(type: charId,
                                   properties: [.notify,.read,.write],
                                   value: nil,
                                   permissions: [CBAttributePermissions.readable, CBAttributePermissions.writeable])

根据我的特性

我无法从bluepy获取通知委托。

[.notify,.read]放在属性上时,我会收到通知。 如何将其设置为读写并通知?

我正在使用bluepy委托函数来获取通知。

代表的工作方式是这样

def handleNotification(self, cHandle, data):
    print("get notifier")

有什么办法可以使它起作用?

0 个答案:

没有答案