unsigned char code_my[]="T:00.0-H:00-L:00";
//define the symbols on the buttons of the keypads
char keys[ROWS][COLS] = {
{'-','1','2','3'},
{'-','4','5','6'},
{'-','7','8','9'},
{'-','*','0','#'}
};
byte rowPins[ROWS] = {7, 6, 5, 4}; //connect to the row pinouts of the keypad
byte colPins[COLS] = {A3,A0, A1, A2}; //connect to the column pinouts of the keypad
//initialize an instance of class NewKeypad
Adafruit_Keypad customKeypad = Adafruit_Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS);