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

Bluetooth WiPy Pysense设备是否会与其他蓝牙传感器设备连接。?,bluetooth,sensors,Bluetooth,Sensors,Pysense(WiPy)设备是否可以连接并从市场上的任何其他蓝牙传感器设备获得服务?是的,我们可以使用 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.conne

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

是的,我们可以使用

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))