2011-07-12 23:13:19 +00: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 18:09:08 +00:00
|
|
|
void lcdPrintCharHex(const uint8_t num);
|
|
|
|
void lcdPrintShortHex(const uint16_t num);
|
2011-07-12 23:13:19 +00:00
|
|
|
void lcdClear();
|
|
|
|
void lcdRefresh();
|
2011-07-13 00:15:47 +00:00
|
|
|
void lcdMoveCrsr(signed int dx,signed int dy);
|
|
|
|
void lcdSetCrsr(int dx,int dy);
|
2011-07-16 18:09:08 +00:00
|
|
|
void lcdSetCrsrX(int dx);
|
2011-08-01 22:03:37 +00:00
|
|
|
void setSystemFont(void);
|
|
|
|
int lcdGetVisibleLines(void);
|