Diferencia entre revisiones de «Keypad»
De ArduWiki
(→Referencias) |
|||
Línea 87: | Línea 87: | ||
== Referencias == | == Referencias == | ||
* [http://playground.arduino.cc/Code/Keypad Playground] | * [http://playground.arduino.cc/Code/Keypad Playground] | ||
− | * [https://www.luisllamas.es/arduino-teclado-matricial/#targetText=%C2%BFQu%C3%A9%20es%20un%20teclado%20matricial,o%20un%20procesador%20como%20Arduino. Teclado matricial] - Luis Llamas | + | * [https://www.luisllamas.es/arduino-teclado-matricial/#targetText=%C2%BFQu%C3%A9%20es%20un%20teclado%20matricial,o%20un%20procesador%20como%20Arduino. |
+ | Teclado matricial] - Luis Llamas | ||
+ | * [https://www.prometec.net/teclados-matriciales/] - Prometec | ||
[[Category:Librerias]] | [[Category:Librerias]] | ||
[[Category:Libreria Keypad]] | [[Category:Libreria Keypad]] |
Revisión del 22:44 7 oct 2019
Contenido
Descripción
Un teclado matricial es un dispositivo que agrupa en filas y columnas (de alli el nombre matricial, 3x3, 3x4, 4x4) varios pulsadores y permite controlarlos usando un número de pines inferior al que necesitaríamos al usarlos de forma individual.
Tip: Al ser simples pulsadores actuaremos igual que con ellos, poniendo cada linea con un pull-up.
Sintaxis
#include <Keypad.h>
Parámetros
Métodos
Método | Descripción |
---|---|
getKey() | |
getKeys() | |
getState() | |
isPressed() | |
addEventListener() | |
keyStateChanged() | |
findKeyInList() | |
bitMap() | |
pin_mode() | |
pin_read() | |
pin_write | |
findKeyInList() | |
setDebounceTime() | |
setHoldTime() | |
waitForKey() |
Comentarios
Advertencias
Ejemplo 1
#include <Keypad.h>
const byte ROWS = 4; //filas
const byte COLS = 3; //columnas
char keys[ROWS][COLS] = {
{'1','2','3'},
{'4','5','6'},
{'7','8','9'},
{'*','0','#'}
};
byte rowPins[ROWS] = {5, 4, 3, 2}; //Pines para filas
byte colPins[COLS] = {8, 7, 6}; //Pines para columnas
Keypad keypad = Keypad(makeKeymap(keys), rowPins, colPins, ROWS, COLS);
void setup(){
Serial.begin(9600);
}
void loop(){
char key = keypad.getKey();
if (key){
Serial.println(key);
}
}
Vea también
Referencias
- Playground
- [https://www.luisllamas.es/arduino-teclado-matricial/#targetText=%C2%BFQu%C3%A9%20es%20un%20teclado%20matricial,o%20un%20procesador%20como%20Arduino.
Teclado matricial] - Luis Llamas
- [1] - Prometec