Skip to content
Snippets Groups Projects

st3m: Add a setting for auto-connecting to camp wifi

Merged rahix requested to merge rahix/wifi into main
Files
5
+ 13
0
from st3m.goose import Optional
STA_IF: int
class WLAN:
def __init__(self, mode: int) -> None:
pass
def active(self, active: bool) -> bool:
return False
def connect(self, ssid: bytes, key: Optional[bytes] = None) -> None:
pass
def isconnected(self) -> bool:
return False
Loading