Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A minimal terminal for TinyGo display devices. Supporting 256-color ANSI escape codes and also monochrome displays.

License

NotificationsYou must be signed in to change notification settings

tinygo-org/tinyterm

Repository files navigation

Build

A minimal terminal for TinyGo displays. Supporting 256-color ANSI escape codes, as well as monochrome displays such as e-ink or OLED.

examples/colors/main.go running on PyPortal

How to use it

package mainimport ("fmt""time""tinygo.org/x/tinyfont/proggy""tinygo.org/x/tinyterm""tinygo.org/x/tinyterm/displays")var (font=&proggy.TinySZ8pt7b)funcmain() {display:=displays.Init()terminal:=tinyterm.NewTerminal(display)terminal.Configure(&tinyterm.Config{Font:font,FontHeight:10,FontOffset:6,UseSoftwareScroll:displays.NeedsSoftwareScroll(),})for {time.Sleep(time.Second)fmt.Fprintf(terminal,"\ntime: %d",time.Now().UnixNano())terminal.Display()}}

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

About

A minimal terminal for TinyGo display devices. Supporting 256-color ANSI escape codes and also monochrome displays.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors3

  •  
  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp