Paso 3: Código de Arduino
Copie el código siguiente a nuevo documento de arduino. Seleccione la Junta Directiva y el puerto y ver los resultados.
#include < LiquidCrystal.h >
LiquidCrystal lcd (12, 11, 5, 4, 3, 2);
void setup() {}
LCD.Begin (16, 2);
}
void loop() {}
doble a = analogRead(A0);
a = (un / 1023) * 100;
String str;
Str=String(a);
lcd.setCursor (0, 0);
LCD.Print(""); FORMA SENCILLA LCD CLEAR
lcd.setCursor (0, 0);
LCD.Print ("LUX:" + str + '%');
un = analogRead(A1);
Str=String(a);
lcd.setCursor (0, 1);
LCD.Print("");
lcd.setCursor (0, 1);
LCD.Print ("TEMP:" + str);
Delay(1000);
}