#include <LiquidCrystal.h>
const int rs= 12, en=11, d4=5, d5=4, d6=3, d7=2;
LiquidCrystal lcd (rs, en, d4, d5, d6, d7);
void setup() {
// put your setup code here, to run once:
lcd.begin(20,4);
//lcd.print("HELLO WORD");
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,0);
lcd.print("PEDRO");
lcd.setCursor(0,1);
lcd.print("AMOZOQUENO");
lcd.setCursor(0,2);
lcd.print("MORALES");
lcd.setCursor(0,3);
lcd.print("CACHORRO");
//lcd.setCursor(0,1);
//lcd.print(millis()/1000);
}