LCD Arduino - V2
LCD Arduino - V2
2018
The LCDs have a parallel interface, meaning that
the microcontroller has to manipulate several
interface pins at once to control the display. The
interface consists of the following pins:
A register select (RS) pin that controls where in
the LCD's memory you're writing data to. You
can select either the data register, which holds
what goes on the screen, or an instruction
register, which is where the LCD's controller
looks for instructions on what to do next.
Parameters
lcd: a variable of type LiquidCrystal
data: the data to print (char, byte, int, long, or
string)
Description
Position the LCD cursor; that is, set the location
at which subsequent text written to the LCD will
be displayed.
Syntax
lcd.setCursor(col, row)
Parameters
lcd: a variable of type LiquidCrystal.
col: the column at which to position the cursor
(with 0 being the first column).
row: the row at which to position the cursor
(with 0 being the first row)
Fotografía de un LCD 2x16 con controlador
Hitachi 44780 y Backlight en color amarillo.
https://www.arduino.cc/en/Reference/LiquidCry
stalBegin
https://www.arduino.cc/en/Reference/LiquidCry
stalSetCursor
https://www.arduino.cc/en/Reference/LiquidCry
stalPrint
https://www.arduino.cc/en/Tutorial/HelloWorld
https://programmingelectronics.com/liquidcryst
al-library-functions-tour-part-1/