#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(3, 0);
lcd.print("Ola, Paulo");
lcd.setCursor(1, 1);
lcd.print("Seja Bem Vindo!");
}
void loop() {
// put your main code here, to run repeatedly:
}