gtext.h 449 B

12345678910111213141516171819
  1. void cursor(unsigned char x, unsigned char y);
  2. void putchar(char c);
  3. void puttext(const char *text);
  4. void puttext_P(const char *text);
  5. //void clearline(void);
  6. void putchar_bg(char c);
  7. void clearfield(void);
  8. void clearline_bg(void);
  9. void puttext_bg_P(const char *text);
  10. void puttext_bg(const char *text);
  11. void clear_to(unsigned char pos);
  12. extern unsigned char blackbg, color;
  13. #define X_MAX 28
  14. #define Y_MAX 12
  15. #define clearline() clear_to(X_MAX)