Arduino-Info - LCD-Blue-I2C
Arduino-Info - LCD-Blue-I2C
Búsqueda
LCD-Blue-I2C Editar 0 80 …
HOME
LCD Displays (Blue and YELLOW) with I2C/TWI Interface
ABOUT US!
YourDuinoShop
ALL the displays will now use the great NEWSLETTERS
Library written by F Malpartida . You
should download that Library HERE BLOG
(Click) THIS WIKI:
Below are Example Software Sketches for different displays. They will display
characters you type on the Serial Monitor screen on the LCD. NOTE: Line 1 only is
correct when writing a long sequence of characters. The characters fill the first line
and continue on the third, due to the way the LCD internal addressing works. So this is
"normal" and has to do with the LCD hardware. Usually you will set the cursor position
before writing characters. (Details in the document linked at the end of this page, if
you want them.)
(Cut and paste these examples into a blank page on the Arduino IDE).
// Wait and then tell user they can start the Serial Monitor and type in characters to
// Display. (Set Serial Monitor option to "No Line Ending")
lcd.clear();
lcd.setCursor(0,0); //Start at character 0 on line 0
lcd.print("Use Serial Mon");
lcd.setCursor(0,1);
lcd.print("Type to display");
/* ( THE END ) */
/* ( THE END ) */
/* ( THE END ) */
lcd.begin(20,4); // initialize the lcd for 20 chars 4 lines and turn on backlight
/* ( THE END ) */