A linux-like remote terminal for Micropython
- ls
- cd
- exit
os, usocket, _thread, time
- Upload the microtreminal directory onto your micropython board
- Edit your boot.py and add the following lines:
import network
import machine
#Connect to Wifi
GLOB_WLAN=network.WLAN(network.STA_IF)
GLOB_WLAN.active(True)
GLOB_WLAN.connect("ssid", "passwd")
while not GLOB_WLAN.isconnected():
machine.idle()
import microterminal
microterminal.start()
Establish a RAW-TCP connection to the MCU('s IP address). With PuTTy for example.