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