diff --git a/boot.py b/boot.py new file mode 100644 index 0000000..de6ab64 --- /dev/null +++ b/boot.py @@ -0,0 +1,8 @@ +import network + +ap = network.WLAN(network.AP_IF) +ap.active(False) +ap.config(essid='light', password='1234567890') +ap.active(True) + +print(ap.ifconfig()) \ No newline at end of file