From b567357f55afbbc9fb14b150d72badc972f150fe Mon Sep 17 00:00:00 2001 From: NitemareReal Date: Fri, 12 Aug 2022 02:45:24 +0200 Subject: [PATCH] Add files via upload Extra key (KEY_NON_US_BS) added to matrix to allow '<' and '>' key to be recognized by driver. Don't forget to select 'Spanish' language in Arduino IDE (tools -> keyboard layout) if you are using a spanish layout keyboard!! --- .../Lenovo_G550/Lenovo_G550_Keyboard_Teensy_4p0.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Example_Keyboards/Lenovo_G550/Lenovo_G550_Keyboard_Teensy_4p0.ino b/Example_Keyboards/Lenovo_G550/Lenovo_G550_Keyboard_Teensy_4p0.ino index 309aedc..ff7a7c7 100644 --- a/Example_Keyboards/Lenovo_G550/Lenovo_G550_Keyboard_Teensy_4p0.ino +++ b/Example_Keyboards/Lenovo_G550/Lenovo_G550_Keyboard_Teensy_4p0.ino @@ -22,7 +22,7 @@ // #define MODIFIERKEY_FN 0x8f // give Fn key a HID code #define CAPS_LED 13 // Teensy LED shows Caps-Lock -// + const byte rows_max = 16; // sets the number of rows in the matrix const byte cols_max = 8; // sets the number of columns in the matrix // @@ -34,7 +34,7 @@ int normal[rows_max][cols_max] = { {KEY_TAB,0,KEY_Z,KEY_A,KEY_1,KEY_Q,KEY_TILDE,KEY_ESC}, {KEY_Y,KEY_N,KEY_M,KEY_J,KEY_7,KEY_U,KEY_6,KEY_H}, {KEY_F3,KEYPAD_PERIOD,KEY_C,KEY_D,KEY_3,KEY_E,KEY_F2,KEY_F4}, - {KEY_CAPS_LOCK,KEYPAD_MINUS,KEY_X,KEY_S,KEY_2,KEY_W,KEY_F1,0}, + {KEY_CAPS_LOCK,KEYPAD_MINUS,KEY_X,KEY_S,KEY_2,KEY_W,KEY_F1,KEY_NON_US_BS}, {KEY_T,KEY_B,KEY_V,KEY_F,KEY_4,KEY_R,KEY_5,KEY_G}, {KEY_LEFT_BRACE,KEY_SLASH,KEY_BACKSLASH,KEY_SEMICOLON,KEY_0,KEY_P,KEY_MINUS,KEY_QUOTE}, {0,0,0,0,0,0,0,0},