#include <LiquidCrystal.h>
const int rs = 2;
const int en = 3;
const int d4 = 4;
const int d5 = 5;
const int d6 = 6;
const int d7 = 7;
LiquidCrystal lcd (rs, en, d4, d5, d6, d7);
void setup() {
//set up LCD columns and rows :
lcd.begin(16, 2);
//Print a message LCD :
lcd.setCursor(0,0);
lcd.print("Nugrah Reswara");
lcd.setCursor(0,2);
lcd.print("#giniamathidup");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
// lcd.print(millis() / 1000);
}