Add boot.py

This commit is contained in:
jimmy 2024-07-05 11:07:17 +00:00
parent 3e06e91499
commit c9aa1fc21b
1 changed files with 8 additions and 0 deletions

8
boot.py Normal file
View File

@ -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())