User manual
this, there is a number of formatting parameters (BASE), that
are indicated as second parameter.
Arduino™-Syntax
001 lcd.print(data, BASE)
002
003 lcd.print("Arduino") // only a text is output
004
005 int variable1 = 100
006 lcd.print(variable1) // the value of "Variable 1"
is output
007
008 lcd.print(40 + 2) // the total of 40 + 2
is output
009
010 lcd.print(3.1415, 2) // only 3.14 is output
011
012 lcd.print(42, BIN) // 42 is output in binary
6.8 | .cursor()
.cursor
() switches on the cursor. If the cursor has been off, it
is visible again now.
Arduino™-Syntax
001 lcd.cursor()
6.9 | .noCursor()
.noCursor
() switches off the cursor (invisible).
Arduino™-Syntax
001 lcd.noCursor()
6.10 | .blink()
.blink
() switches on the cursor and makes it flash.
Arduino™-Syntax
001 lcd.blink()