Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.09 KB

readme.md

File metadata and controls

47 lines (30 loc) · 1.09 KB

Termbox for RT-Thread

中文说明文档

Getting started

Termbox's interface only consists of 12 functions:

tb_init() // initialization
tb_shutdown() // shutdown

tb_width() // width of the terminal screen
tb_height() // height of the terminal screen

tb_clear() // clear buffer
tb_present() // sync internal buffer with terminal

tb_put_cell()
tb_change_cell()
tb_blit() // drawing functions

tb_select_input_mode() // change input mode
tb_peek_event() // peek a keyboard event
tb_poll_event() // wait for a keyboard event

See termbox.h header file for full detail.

termbox-keyboard

How to obtain this package

 RT-Thread online packages  --->
    miscellaneous packages  --->
        [*] termbox: library for writing text-based user interfaces

Contact information

Maintainer: Meco Man

Homepage: https://github.com/mysterywolf/termbox

This repository forks from nullgemm/termbox_next and termbox2