Skip to content

A minimal terminal for TinyGo devices supporting 256-color ANSI escape codes

License

Notifications You must be signed in to change notification settings

tinygo-org/tinyterm

Repository files navigation

tinyterm - TinyGo Terminal Emulator

Build

A minimal terminal for TinyGo devices supporting 256-color ANSI escape codes.

examples/colors/main.go running on PyPortal

How to compile examples

Most of the examples will work with any of the following hardware:

basic

Displays basic text.

tinygo flash -target pyportal ./examples/basic

colors

Displays ANSI colors.

tinygo flash -target pyportal ./examples/colors

httpclient

Connects to an http server and displays the results. Runs on PyPortal and WioTerminal only, since it requires a connected WiFi coprocessor.

tinygo flash -target pyportal -ldflags="-X main.ssid=MYSSID -X main.pass=MYPASS" ./examples/httpclient