added micropython firmware and setup for webrepl over wifi

simple_control
Simon Pirkelmann 2019-04-11 08:42:32 +02:00
parent fce305fd9a
commit 2ccfc37ae8
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import network
import time
# connect to local wifi network
sta_if = network.WLAN(network.STA_IF)
sta_if.active(True)
# TODO: edit this line
sta_if.connect("<SSID>", "<PASSWORD>")
sta_if.ifconfig()
# start terminal over wifi
time.sleep(5) # wait for wifi to connect
import webrepl
webrepl.start()

Binary file not shown.

View File

@ -0,0 +1 @@
# empty file