Tugas Pendahuluan
Modul 1
[Back]
Ketika ditekan angka 5 pada keypad, muncul tulisan "Teknik Elektro Unand"
[Back]
- Arduino Uno
- Keypad
- LCD 16x2
- Button
Rangkaian pada Proteus |
4. Prinsip Kerja
[Back]
Sebelum melakukan simulasi, kita masukan program yang telah di compile di arduino sketch kemudian diupload ke arduino uno. Kemudian melakukan simulasi, ketika tombol angka 5 pada keypad ditekan maka akan timbul tulisan "Teknik Elektro Unand" pada LCD 16x2. Fungsi Button disini sebagai toombol reset pada Arduino Uno.
5. Flowchart
[Back]6. Listing Program
[Back]
#include <LiquidCrystal.h>
#include <Keypad.h>
const byte ROWS = 4;
const byte COLS = 3;
char keys[ROWS][COLS] =
{
{'1', '2', '3'},
{'4', '5', '6'},
{'7', '8', '9'},
{'*', '0', '#'}
};
byte rowPins[ROWS] = {10, 9, 8, 7};
byte colPins[COLS] = {13, 12, 11};
LiquidCrystal lcd(A0, A1, A2, A3, A4, A5);
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
void setup() {
// Set baris dan kolom LCD lcd.begin(20, 4);
lcd.setCursor(1, 2);
lcd.setCursor(4, 3);
lcd.setCursor(0, 0);
}
void loop() {
char key = keypad.getKey();
if (key) { lcd.print(key);
if (key = "5"){
lcd.print("Teknik Elektro Unand")
}
}
}
No comments:
Post a Comment