Esempio n. 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
Esempio n. 2
0
def is_bluetooth_available():
    return connman.is_technology_available("bluetooth")
Esempio n. 3
0
def is_bluetooth_available():
    return connman.is_technology_available('bluetooth')
Esempio n. 4
0
def is_wifi_available():
    return connman.is_technology_available('wifi')
Esempio n. 5
0
def is_wifi_available():
    return connman.is_technology_available('wifi')