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