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