WiPy Pysense设备是否会与其他蓝牙传感器设备连接。

时间:2017-11-22 12:03:42

标签: bluetooth sensor

Pysense(WiPy)设备是否会连接并从市场上的任何其他蓝牙传感器设备获得服务。

1 个答案:

答案 0 :(得分:1)

是的,我们可以使用

连接任何带有mac地址的蓝牙传感器
bluetooth = Bluetooth()
bluetooth.start_scan(5)
while bluetooth.isscanning():
adv = bluetooth.get_adv()
if adv:
if(str(binascii.hexlify(adv.mac).decode()) == '78a50454b267'):
conn = bluetooth.connect(adv.mac)
print(type(conn))