//CIRCUTO DE ARDUINO CON LCD (16X2) I2C
#include<LiquidCrystal_I2C.h>
#include<Wire.h>
//creamos un objeto de tipo LCD 16x2 I2C
LiquidCrystal_I2C LCD1(0x27,16,2);
void setup() {
// put your setup code here, to run once:
LCD1.init();//iniciamos el LCD1
LCD1.backlight();//se enciende la luz del lcd
LCD1.print("JAKE <3 THOM ");
delay(2000);
}
void loop() {
// put your main code here, to run repeatedly:
LCD1.clear();//borra la pantalla del lcd
LCD1.setCursor(2,0);//se ubica en la columna
LCD1.print("Gogogog");
LCD1.setCursor(2,1);
LCD1.print("JAKExTHOM");
delay(3000);
}