Outils pour utilisateurs

Outils du site


wiki:projets:codepourpavenumerique_21.7_2016

Ceci est une ancienne révision du document !


#include <Keypad.h>
const byte ROWS = 4; 
const byte COLS = 4; 
char keys[ROWS][COLS] = {
  {'1','2','3','A'},
  {'4','5','6','B'},
  {'7','8','9','C'},
  {'*','0','#','D'},
};
byte rowPins[ROWS] = {53,51,49,47}; //connect to row pinouts 
byte colPins[COLS] = {45,43,41,39}; //connect to column pinouts
Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
void setup(){
  Serial.begin(9600);
}
void loop(){
  char key = keypad.getKey();
  if (key != NO_KEY){
    Serial.println(key);
 }
}   
wiki/projets/codepourpavenumerique_21.7_2016.1473591586.txt.gz · Dernière modification: 2016/11/01 15:16 (modification externe)