13 lines
383 B
Markdown
13 lines
383 B
Markdown
# console.h
|
|
|
|
## `void consoleInit(gfxScreen_t screen, NULL);`
|
|
Show the (default) console on the specified screen.
|
|
Apparently no need for any gfx function.
|
|
|
|
## `void consoleClear(void);`
|
|
Clear the console.
|
|
|
|
## CONSOLE_*
|
|
CONSOLE_ESC(x): use ASCII escape code. ("\e[" + x)
|
|
CONSOLE_RESET: reset font style.
|
|
CONSOLE_{BLACK|RED|GREEN|YELLOW|BLUE|MAGENTA|CYAN|WHITE}: use a specific color.
|