55 lines
1.5 KiB
Python
Raw Normal View History

2023-01-24 21:00:02 +08:00
import _network
2023-01-24 21:10:06 +08:00
STA_IF = _network.STA_IF
AP_IF = _network.AP_IF
2023-01-24 21:00:02 +08:00
2023-01-24 21:10:06 +08:00
STAT_IDLE = _network.STAT_IDLE
STAT_CONNECTING = _network.STAT_CONNECTING
STAT_WRONG_PASSWORD = _network.STAT_WRONG_PASSWORD
STAT_NO_AP_FOUND = _network.STAT_NO_AP_FOUND
STAT_CONNECT_FAIL = _network.STAT_CONNECT_FAIL
STAT_GOT_IP = _network.STAT_GOT_IP
2023-01-24 21:00:02 +08:00
class WLAN(_network.WLAN):
def __init__(self, interface_id:int):
super().__init__(interface_id)
def active(self, is_active=None):
if is_active is None:
return super().checkActive()
else:
return super().active(is_active)
def connect(self, ssid=None, key=None, bssid=None):
if bssid is None:
return super().connect(ssid, key)
else:
return super().connectWithBssid(ssid, key, bssid)
def disconnect(self):
return super().disconnect()
def disconnect(self):
return super().disconnect()
def status(self, param=None):
if param is None:
return super().status()
else:
return super().statusWithParam(param)
def isconnected(self) -> int:
return super().isconnected()
def config(self, *para, **kwargs):
if len(para) == 1:
return super().checkConfig(para[0])
else:
return super().config(**kwargs)
def ifconfig(self, config=None):
if config is None:
return super().checkIfconfig()
else:
return super().ifconfig(config)