void setup() {
// put your setup code here, to run once:
#include <LiquidCrystal.h>
LiquidCrystal Icd (2, 3, 4, 5, 6, 7);
void setup () {
icd.begin(16,2);
icd.print("Arduino UNO");
icd.setCursor(0, 1);
icd.print("Coba LCD 2x16")
delay(1000)
icd.clear ();
void loop() {
// put your main code here, to run repeatedly:
}