Utilizando el ejemplo de YourDuino.com hice algunos cambios para obtener un código simple, ya que nos interesa incluirlo en otros proyectos más grandes.
GND - GND
SDA - A4
SCL - A5
Antes de compilar el programa hay que incluir la librería que se descarga de https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
void setup() /*----( SETUP: RUNS ONCE )----*/
{
Serial.begin(9600); // Used to type in characters
lcd.begin(16,2); // initialize the lcd for 16 chars 2 lines, turn on backlight
lcd.setCursor(0,0); //Start at character 4 on line 0
lcd.print("Hola mundo");
}/*--(end setup )---*/
void loop() /*----( LOOP: RUNS CONSTANTLY )----*/
{
}/* --(end main loop )-- */
Conexión:
5V - 5VGND - GND
SDA - A4
SCL - A5
Antes de compilar el programa hay que incluir la librería que se descarga de https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads
Programa:
#include <Wire.h>#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
void setup() /*----( SETUP: RUNS ONCE )----*/
{
Serial.begin(9600); // Used to type in characters
lcd.begin(16,2); // initialize the lcd for 16 chars 2 lines, turn on backlight
lcd.setCursor(0,0); //Start at character 4 on line 0
lcd.print("Hola mundo");
}/*--(end setup )---*/
void loop() /*----( LOOP: RUNS CONSTANTLY )----*/
{
}/* --(end main loop )-- */
Comments
Post a Comment