Puts a character to the LCD
void lcd_putc (
uint8_t chr /* Character code */
);
The specified character is put on the current cursor position and then the cursor moves to next column. When the cursor is end of row, it moves top of next row. If the cursor is out of display area, the character will be discarded.
Some control characters are processed internally. '\r' moves the cursor to the top of the current row, '\n' moves the cursor top of the next row, '\b' moves the cursor left, '\f' clears display and move the cursor home (left-top) and any ohter control codes are passed through.