2011-07-13 01:13:19 +02:00
|
|
|
void lcdPrint(const char *string);
|
|
|
|
void lcdNl(void);
|
|
|
|
void lcdPrintln(const char *string);
|
|
|
|
void lcdPrintInt(const int num);
|
|
|
|
void lcdPrintIntHex(const int num);
|
2011-07-16 20:09:08 +02:00
|
|
|
void lcdPrintCharHex(const uint8_t num);
|
|
|
|
void lcdPrintShortHex(const uint16_t num);
|
2011-07-13 01:13:19 +02:00
|
|
|
void lcdClear();
|
|
|
|
void lcdRefresh();
|
2011-07-13 02:15:47 +02:00
|
|
|
void lcdMoveCrsr(signed int dx,signed int dy);
|
|
|
|
void lcdSetCrsr(int dx,int dy);
|
2011-07-16 20:09:08 +02:00
|
|
|
void lcdSetCrsrX(int dx);
|
2011-08-02 00:03:37 +02:00
|
|
|
void setSystemFont(void);
|
|
|
|
int lcdGetVisibleLines(void);
|