#include <LiquidCrystal.h>
// Define the LCD connections
LiquidCrystal lcd(12, 11, 5, 6, 7, 8);
int analogPin=0;
int val=0;
void setup() {
// Set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("Cert. 1,Module 3");
}
void loop() {
// Set the cursor to column 0, line 1 (the second line)
lcd.setCursor(0, 1);
val=analogRead(analogPin);
// Print the number of seconds since the Arduino was reset:
lcd.print(val);
}