Paso 2: Añadir código
#include
LiquidCrystal impresión
por Peyt52
LiquidCrystal lcd (8, 13, 9, 4, 5, 6, 7);
void setup()
{
LCD.Clear();
LCD.Begin (16, 2);
}
void loop()
{
lcd.setCursor (0, 0);
LCD.Print(""); Primera línea de texto
lcd.setCursor (0, 1);
LCD.Print(""); Segunda línea de texto
}
Espero que haya sido bastante fácil. Preguntas en los comentarios!