From c9aa1fc21b9a39c070174b83c9da602014aa83ef Mon Sep 17 00:00:00 2001 From: jimmy Date: Fri, 5 Jul 2024 11:07:17 +0000 Subject: [PATCH] Add boot.py --- boot.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 boot.py 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