#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
lcd.init();
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Proc. integrados");
lcd.setCursor(0,1);
lcd.print("X.Y.Z.-DD/MM/YY");
}
void loop() {
delay(10); // this speeds up the simulation
}