This library provides a simple API for the LCD display provided by FlamingoEda. The display uses serial communication at 9600 baud/sec and responds to commands i written in the format:
"$COMMAND arguments\r\n"
Available commands are:
$CLEARclear the screen$GO x ymove the cursor to the x-th line y-th column$PRINT textprint the text$CURSOR display blinkenable (1) or disable (0) the cursor displaying and blinking
The library wraps such commands in the class FLCD:
clear()go(int line, int column)print()andFLCD.append()cursor(bool display, bool blink)
Library written by Paolo D'Apice paolo.dapice@gmail.com