/* lcd hitung maju di buat oleh aulia
2022 */
#include <LiquidCrystal.h>
LiquidCrystal lcd(7,6,9,10,11,12);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.print("waktu tidur anda");
}
int hitung = 110;
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,1);
lcd.print( hitung++ );
if(hitung >=1000){
hitung = 100;
}
}