|
NIBO Library 2.11
|
Routinen zum Ansteuerung eines LC-Text-Displays. Mehr ...
#include <stdint.h>gehe zum Quellcode dieser Datei
Funktionen | |
| void | text_init (void) |
| void | text_clear (void) |
| void | text_gotoXY (int x, int y) |
| void | text_print_char (char c) |
| void | text_print (const char *str) |
| void | text_setCursorMode (int mode) |
Routinen zum Ansteuerung eines LC-Text-Displays.
| void text_clear | ( | void | ) |
Text Display löschen
Wird benutzt von nibocc::TextDisplay::clear().
| void text_gotoXY | ( | int | x, |
| int | y | ||
| ) |
Position des Text-Cursors setzen
| x | X-Position des Cursors |
| y | Y-Position des Cursors |
Wird benutzt von nibocc::TextDisplay::gotoXY().
| void text_init | ( | void | ) |
Text Display initialisieren
Wird benutzt von nibocc::TextDisplay::init().
| void text_print | ( | const char * | str | ) |
0-terminierten String an aktueller Cursorposition ausgeben
| str | Nullterminierter String |
Wird benutzt von nibocc::TextDisplay::print().
| void text_print_char | ( | char | c | ) |
Zeichen an aktueller Cursorposition ausgeben
| c | Ausgabezeichen |
Wird benutzt von nibocc::TextDisplay::print_char().
| void text_setCursorMode | ( | int | mode | ) |
Cursor Modus setzen
| mode | Cursormodus |
Wird benutzt von nibocc::TextDisplay::setCursorMode().
1.7.4-20110426