20 lines
554 B
Python
20 lines
554 B
Python
# This file is executed on every boot (including wake-boot from deepsleep)
|
|
import esp
|
|
esp.osdebug(True)
|
|
#import webrepl
|
|
#webrepl.start()
|
|
|
|
def do_connect(ssid, pwd):
|
|
import network
|
|
sta_if = network.WLAN(network.STA_IF)
|
|
if not sta_if.isconnected():
|
|
print('connecting to network...')
|
|
sta_if.active(True)
|
|
sta_if.connect(ssid, pwd)
|
|
while not sta_if.isconnected():
|
|
pass
|
|
print('network config:', sta_if.ifconfig())
|
|
|
|
# Attempt to connect to WiFi network
|
|
# do_connect("Smartwave-1", 'Smartwave-prot-1')
|