Konfigurasi LCD 16x2
Konfigurasi LCD 16x2 + Wiring
Berikut ini adalah Konfigurasi Pin pada LCD 16x2 yang kalian punya.
Dalam pengkabelan Yang kalian butuhkan adalah 1 buat Potensio Meter berukuran 10.000 Ohm atau 10K Ohm.
Pin Arduino | Pin LCD |
2 | RS |
3 | E |
4 | D4 |
5 | D5 |
6 | D6 |
7 | D7 |
Rangkai lah sesuai Intruksi :
- Hubungkan kaki Kanan Potensio dengan VCC
- Hubungkan Kaki kiri Potensio dengan GND
- Hubungkan pin 1, 5, dan 16 LCD ke GND
- Hubungkan pin 2, dan 15 ke VCC
- Hubungkan pin 3 LCD ke kaki Tengah Potensio Meter
- Hubungkan pin 4 LCD ke pin Arduino (2)
- Hubungkan pin 6 LCD ke pin Arduino (3)
- Hubungkan pin 11 LCD ke pin Arduino (4)
- Hubungkan pin 12 LCD ke pin Arduino (5)
- Hubungkan pin 13 LCD ke pin Arduino (6)
- Hubungkan pin 14 LCD ke pin Arduino (7)
Sisah pin nya kosongkan saja.
Berikut Sample Sketch dari lcd 16x2 yang saya ambil dari Program Hello World! di arduino
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
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);
}
Berikut Sample Sketch dari lcd 16x2 yang saya ambil dari Program Hello World! di arduino
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
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);
}
Selamat Mencoba !!! #Jangan Sungkan untuk bertanya
No comments