Skip to content

ckoever/microterminal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

microterminal

A linux-like remote terminal for Micropython

status

image

Commands that are implemented yet

- ls
- cd
- exit

Required modules

os, usocket, _thread, time

Preparations

  1. Upload the microtreminal directory onto your micropython board

image

  1. 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()

Connect

Establish a RAW-TCP connection to the MCU('s IP address). With PuTTy for example.

image

About

A linux-like remote terminal for Micropython

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages