57 void lcd_clrxy(uint8_t x, uint8_t y, uint8_t count);
67 void lcd_word(uint16_t value, uint8_t width);
display on, cursor off, blink char
void lcd_clrxy(uint8_t x, uint8_t y, uint8_t count)
Clear count characters starting at position (x,y).
lcdDisplayMode_t
display on/off, cursor on/off, blinking char at cursor position
void lcd_puts_P(const char *s)
Write a string from progmem of chars to the LCD.
void lcd_clear(void)
Clear and home the LCD.
void lcd_putc(char c)
Write a character to the LCD.
void lcd_init(lcdDisplayMode_t dispAttr)
Initialize the LCD - call before anything else.
display on, cursor on, blink char
void lcd_word(uint16_t value, uint8_t width)
Write numeric value to the LCD.
void lcd_goto(uint8_t x, uint8_t y)
Go to the specified position.
void lcd_puts(const char *s)
Write a string of characters to the LCD.