Keypad Arduino ile Nasıl Kullanılır?
Görüntülenme: 16.612
Arkadaşlar merhaba bu videoda arduino ile keypad kullanmayı öğreniyoruz. Video sadece 4×4 değil tüm keypad modelleri için geçerlidir. İyi seyirler 🙂
KÜTÜPHANE
Kütüphane ve kod: https://goo.gl/rG53Y8
Kütüphane Nasıl Kurulur? – https://youtu.be/6_Rtxce9HeA
MALZEMELER
- Arduino UNO R3 – SMD Klon (CH340 Çipli) – USB Kablo Hediyeli
- 4×4 Membran Keypad – Tuş Takımı
- Jumper Kablo
DEVRE ŞEMASI

ARDUINO KODU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Lezzetli Robot Tarifleri | |
https://lezzetlirobottarifleri.com/keypad-arduino-ile-nasil-kullanilir | |
*/ | |
#include <Keypad.h> | |
const byte satir = 4; | |
const byte sutun = 4; | |
char tus_takimi[satir][sutun] = { | |
{'1', '2', '3', 'A'}, | |
{'4', '5', '6', 'B'}, | |
{'7', '8', '9', 'C'}, | |
{'*', '0', '#', 'D'} | |
}; | |
byte satir_pinleri[satir] = {9, 8, 7, 6}; | |
byte sutun_pinleri[sutun] = {5, 4, 3, 2}; | |
Keypad mahmut = Keypad(makeKeymap(tus_takimi), satir_pinleri, sutun_pinleri, satir, sutun); | |
void setup() | |
{ | |
Serial.begin(9600); | |
} | |
void loop() | |
{ | |
char tus = mahmut.getKey(); | |
if (tus != NO_KEY) | |
{ | |
Serial.println(tus); | |
} | |
} |
Etiketler
4 Yorum
Bir yanıt yazın Yanıtı iptal et
Daha fazla sonuç göster
bende kodda hata var dıyo ne yapabilirim
Kütüphaneyi doğru indirdiysen ve açtıysan çalışıyor
bu düzeneği mekanik switchler ile nasıl multimedya tuşuna çevirebilirim
Hazırları var. Ama yine de kendiniz yapacaksanız https://circuitdigest.com/sites/default/files/inlineimages/u/4×4-Matrix-Keypad-Pinout.png
burada nasıl çalıştığı var.