Descripción
Circuito
Código
// include the library code:
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.print("hola chicos!!");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print(millis()/1000);