When I press a key on a matrix I need to send the corresponding hex value to a function. Is there any way to use a byte matrix for the keymap instead of a char one? I've tried just changing the variable type of the matrix (seen bellow) but I get all kinds of errors...
byte keys[ROWS][COLS] = {
  {0xE1, 0x05, 0x06},
  {0x07, 0x08, 0x09},
  {0x0A, 0x0B, 0x0C},
};
