Esempio n. 1
0
def is_device_paired(deviceAddress):
    return bluetooth.get_device_property(deviceAddress, "Paired")
Esempio n. 2
0
def is_device_connected(deviceAddress):
    return bluetooth.get_device_property(deviceAddress, "Connected")
Esempio n. 3
0
def get_device_property(deviceAddress, key):
    return bluetooth.get_device_property(deviceAddress, key)
Esempio n. 4
0
def is_device_trusted(deviceAddress):
    return bluetooth.get_device_property(deviceAddress, "Trusted")
Esempio n. 5
0
def get_device_property(deviceAddress, key):
    return bluetooth.get_device_property(deviceAddress, key)
Esempio n. 6
0
def is_device_connected(deviceAddress):
    return bluetooth.get_device_property(deviceAddress, 'Connected')
Esempio n. 7
0
def is_device_trusted(deviceAddress):
    return bluetooth.get_device_property(deviceAddress, 'Trusted')
Esempio n. 8
0
def is_device_paired(deviceAddress):
    return bluetooth.get_device_property(deviceAddress, 'Paired')