예제 #1
0
def is_bt_up():
    if connman.is_technology_available('bluetooth') == False:
        journallog('No bluetooth hardware available.')
        #exit()
        return False
    if connman.is_technology_enabled('bluetooth') == False:
        journallog('Bluetooth is disabled.')
        #exit()
        return False
    return True
예제 #2
0
def is_bluetooth_available():
    return connman.is_technology_available("bluetooth")
예제 #3
0
def is_bluetooth_available():
    return connman.is_technology_available('bluetooth')
예제 #4
0
def is_wifi_available():
    return connman.is_technology_available('wifi')
예제 #5
0
def is_wifi_available():
    return connman.is_technology_available('wifi')