[아두이노] 키패드 입력받기IoT/Arduino2020. 5. 26. 19:26
Table of Contents
#include <Keypad.h>
const byte rows = 4; //four rows
const byte cols = 4; //three columns
char keys[rows][cols] = {
{'1','2','3','A'},
{'4','5','6','B'},
{'7','8','9','C'},
{'*','0','#','D'}
};
byte rowPins[rows] = {9, 8, 7, 6}; //connect to the row pinouts of the keypad
byte colPins[cols] = {5, 4, 3, 2}; //connect to the column pinouts of the keypad
Keypad customKeypad = Keypad( makeKeymap(keys), rowPins, colPins, rows, cols );
void setup()
{
Serial.begin(9600);
}
void loop()
{
char customKey = customKeypad.getKey();
if(customKey){
Serial.println(customKey);
}
}
반응형
'IoT > Arduino' 카테고리의 다른 글
[Wemos D1] 1. WiFi 연결하는 법 (0) | 2020.06.29 |
---|---|
[아두이노] LCD 알파벳 표현하기 (0) | 2020.06.26 |
[아두이노] 아날로그 핀으로 모터움직이기(MAP함수) (0) | 2020.05.26 |
[아두이노] IR리모컨을 이용한 LED RGB변경 (0) | 2020.05.26 |
[아두이노] LCD 텍스트 출력 (0) | 2020.05.21 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!