EXIBIÇÃO DE PERSONAGENS COM TECLADO 3x4 E WEMOS D1 R1

Boa tarde a todos,
venho tentando exibir caracteres inseridos com o teclado no monitor serial com o cartão wemos d1 r1 há algum tempo, mas nada a fazer não vejo nenhum caractere.O compilador não me fornece erros e caracteres estranhos nem aparecem ... abaixo você encontra o código que eu usei no arduino.
Obrigado a todos

#define D0 3
#define D1 1
#define D2 16
#define D3 5
#define D4 4
#define D5 0
#define D6 2
#define D7 14
#define D8 12
#define D9 13
#define D10 15

#include <Keypad.h>
const byte ROWS = 4; //four rows
const byte COLS = 3; //three columns
char keys[ROWS][COLS] = {
 {'1','2','3'},
 {'4','5','6'},
 {'7','8','9'},
 {'*','0','#'}
};


byte rowPins[ROWS] = {D7, D6, D5, D4}; //connect to the row pinouts of the keypad
byte colPins[COLS] = {D3, D2, D1}; //connect to the column pinouts of the keypad


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);
 }
}

Como ligaste o teclado? O Wemos tem esses pinos todos disponíveis?? E os pinos são como meteste no código?