| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- STA_IF: int
- AP_IF: int
- STAT_IDLE: int
- STAT_CONNECTING: int
- STAT_WRONG_PASSWORD: int
- STAT_NO_AP_FOUND: int
- STAT_CONNECT_FAIL: int
- STAT_GOT_IP: int
- class WLAN:
- def __init__(self, interface_id: int): ...
- def active(self, is_active: int): ...
- def checkActive(self) -> int: ...
- def connect(self, ssid: str, key: str): ...
- def connectWithBssid(self, ssid: str, key: str, bssid: str): ...
- def disconnect(self): ...
- def status(self) -> int: ...
- def statusWithParam(self, param: str) -> int: ...
- def isconnected(self) -> int: ...
- def config(self, **kwargs): ...
- def checkConfig(self, param: str) -> any: ...
- def ifconfig(self, ip: str, mask: str, gateway: str, dns: str): ...
- def checkIfconfig(self) -> list: ...
- def scan(self) -> list: ...
- def close(self): ...
- def __init__(): ...
|