示例#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')