- Bread Board
- Arduino Board ( UNO, MEGA, MINI)
- Laptop
- LCD Panel 16x02
- Jumper wire
- Potentiometer (untuk kawal kecerahan Backlight)
Contoh LCD PANEL
Lepas tu kene download software dari arduino.cc sebab latest update banyak kat situ. Ni link nye
pastu pilih la korang pakai MAC or WINDOWS. Dalam tu sume dah ade library pastu boleh la try. Code lebih kurang macam nih. Schematic ade kat bawah
#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2); // Pin pin yang penting
void setup()
{
lcd.begin(16, 2);
lcd.clear();
lcd.setCursor(0,0); // Baris atas
lcd.print("HELLO DUNIA");
lcd.setCursor(0,1); // baris bawah
lcd.print("TAIP LA APE AJE");
}
void loop()
{
}
UNTUK SPECIAL CHARACTER @ CUSTOM, TUNGGU POST SETERUSNYA....
No comments:
Post a Comment