Si encuentras algo que no comprendes puedes comentarlo y te responderemos lo más rápido posible.
Ejemplo 1: usar un teclado en arduino
#include const byte ROWS =4;const byte COLS =4;char hexaKeys[ROWS][COLS]='1','2','3','A','4','5','6','B','7','8','9','C','*','0','#','D';
byte rowPins[ROWS]=9,8,7,6;
byte colPins[COLS]=5,4,3,2;
Keypad customKeypad =Keypad(makeKeymap(hexaKeys), rowPins, colPins, ROWS, COLS);voidsetup()
Serial.begin(9600);voidloop()char customKey = customKeypad.getKey();if(customKey)
Serial.println(customKey);
Ejemplo 2: biblioteca de teclado arduino
const byte rows =4;//four rowsconst byte cols =3;//three columnschar keys[rows][cols]='1','2','3','4','5','6','7','8','9','#','0','*';
byte rowPins[rows]=5,4,3,2;//connect to the row pinouts of the keypad
byte colPins[cols]=8,7,6;//connect to the column pinouts of the keypad
Keypad keypad =Keypad(makeKeymap(keys), rowPins, colPins, rows, cols );
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)