LCD EL 1602A

From air
Revision as of 15:20, 12 May 2011 by Donsez (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Le LCD EL 1602A est un afficheur caractères 2 lignes


Exemple:

 #include <LiquidCrystal.h> // include the library code:
 LiquidCrystal lcd(5, 4, 3, 2, 1, 0); // initialize the library with the numbers of the interface pins
 
 void setup() {
   pinMode(7, OUTPUT);  
   digitalWrite(7, HIGH);  // set the LED on  
   lcd.begin(16, 2);	 // set up the LCD's number of rows and columns:
 
 }
 
 void loop() {
    lcd.setCursor(0, 0);
    // Regla ("1......8......16")
    lcd.print("Saludos a todos ");// Print a message to the LCD.
    lcd.setCursor(0, 1);
    lcd.print("del Newbie: Heke");// Print a message to the LCD.  
 }