User manual

pins (D0 to D7) and connect them to the Arduino-PCB.
001 LiquidCrystal lcd(rs, enable, d4, d5, d6, d7)
002 LiquidCrystal lcd(rs, rw, enable, d4, d5, d6, d7)
003 LiquidCrystal lcd(rs, enable, d0, d1, d2, d3, d4, d5, d6, d7)
004 LiquidCrystal lcd(rs, rw, enable, d0, d1, d2, d3, d4,
d5, d6, d7)
Our learning package uses the following configuration:
001 // RS, E, D4, D5, D6, D7
002 LiquidCrystal lcd(11, 10, 2, 3, 4, 5);
RS= Arduino™-Pin D11
E = Arduino™-Pin D10
D4= Arduino™-Pin D2
D3= Arduino™-Pin D3
D2= Arduino™-Pin D4
D1= Arduino™-Pin D5
.begin()
initialises the LCD with the indicating rows and columns.
Our LCD has 2 rows and 16 columns. Parametrisation therefore
needs to be as follows:
001 lcd.begin(16, 2)
.clear()
deletes the displayed characters and positions the cursor
in the upper left corner.
001 lcd.clear()