#include <LiquidCrystal.h>
LiquidCrystal lcd(7,6,5,4,3,2);
int n;
void setup() {
lcd.begin(16,2);
lcd.print("#-%+={{^`Renaldi bayu Andriyanto ");
// put your setup code here, to run once:
}
void loop() {
n=random(10);
lcd.setCursor(7,1);lcd.print(n);
delay(1000);
lcd.setCursor(7,1);lcd.print("...");
// put your main code here, to run repeatedly:
}