#include <Keypad.h>

// Configuration du clavier matriciel
const byte ROWS = 2; // Nombre de rangées
const byte COLS = 5; // Nombre de colonnes

// Définit les broches de lignes et de colonnes
byte rowPins[ROWS] = {2, 3};
byte colPins[COLS] = {4, 5, 6, 7, 8};

// Définit les caractères correspondant aux touches
char keys[ROWS][COLS] = {
  {'0', '1', '2', '3', '4'},
  {'5', '6', '7', '8', '9'}
};

// Crée une instance de la bibliothèque Keypad
Keypad customKeypad = Keypad(makeKeymap(keys), rowPins, colPins, ROWS, COLS);

void setup() {
  Serial.begin(9600);
}

void loop() {
  char key = customKeypad.getKey();
  
  if (key) {
    Serial.println(key);
  }
}