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