From ace372d90de13dafc815df5d8049497cb351b69b Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 11 Mar 2023 00:34:34 +1100 Subject: Move matrix config to info.json, part 3 (#19991) Co-authored-by: Nick Brassel --- keyboards/ebastler/isometria_75/rev1/config.h | 7 ------- keyboards/ebastler/isometria_75/rev1/info.json | 5 +++++ 2 files changed, 5 insertions(+), 7 deletions(-) (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/isometria_75/rev1/config.h b/keyboards/ebastler/isometria_75/rev1/config.h index 979424c64a..42a4a77d69 100644 --- a/keyboards/ebastler/isometria_75/rev1/config.h +++ b/keyboards/ebastler/isometria_75/rev1/config.h @@ -17,13 +17,6 @@ along with this program. If not, see . #pragma once - -#define MATRIX_ROW_PINS { A15, B4, B5, B6, B7, B8} -#define MATRIX_COL_PINS { B12, B13, B14, B15, A8, A10, A13, A14, B9, C13, F0, F1, A0, B2, B10, B11 } - -/* COL2ROW, ROW2COL*/ -#define DIODE_DIRECTION COL2ROW - /* Backlight */ #define BACKLIGHT_PWM_DRIVER PWMD1 #define BACKLIGHT_PWM_CHANNEL 2 diff --git a/keyboards/ebastler/isometria_75/rev1/info.json b/keyboards/ebastler/isometria_75/rev1/info.json index 83061d92df..e470045744 100644 --- a/keyboards/ebastler/isometria_75/rev1/info.json +++ b/keyboards/ebastler/isometria_75/rev1/info.json @@ -8,6 +8,11 @@ "pid": "0x1337", "device_version": "0.0.1" }, + "matrix_pins": { + "cols": ["B12", "B13", "B14", "B15", "A8", "A10", "A13", "A14", "B9", "C13", "F0", "F1", "A0", "B2", "B10", "B11"], + "rows": ["A15", "B4", "B5", "B6", "B7", "B8"] + }, + "diode_direction": "COL2ROW", "encoder": { "rotary": [ {"pin_a": "C15", "pin_b": "C14", "resolution": 2} -- cgit v1.2.3 From 02ccc50e6085a9d0a4f38f252960e2d14ffe4d1f Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 17 Mar 2023 14:02:04 +1100 Subject: Remove more empty headers (#20155) --- keyboards/ebastler/isometria_75/rev1/rev1.c | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 keyboards/ebastler/isometria_75/rev1/rev1.c (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/isometria_75/rev1/rev1.c b/keyboards/ebastler/isometria_75/rev1/rev1.c deleted file mode 100644 index 8b703dfbd1..0000000000 --- a/keyboards/ebastler/isometria_75/rev1/rev1.c +++ /dev/null @@ -1,17 +0,0 @@ -/* Copyright 2020 Moritz Plattner - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#include "rev1.h" -- cgit v1.2.3 From 36ce81df592ca8e9f9fed498e513437aa1cae54f Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 26 Mar 2023 18:22:12 +1100 Subject: Move `WS2812_DRIVER` to data driven (#20248) --- keyboards/ebastler/isometria_75/rev1/info.json | 3 +++ keyboards/ebastler/isometria_75/rev1/rules.mk | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/isometria_75/rev1/info.json b/keyboards/ebastler/isometria_75/rev1/info.json index e470045744..5758d1fe31 100644 --- a/keyboards/ebastler/isometria_75/rev1/info.json +++ b/keyboards/ebastler/isometria_75/rev1/info.json @@ -8,6 +8,9 @@ "pid": "0x1337", "device_version": "0.0.1" }, + "ws2812": { + "driver": "pwm" + }, "matrix_pins": { "cols": ["B12", "B13", "B14", "B15", "A8", "A10", "A13", "A14", "B9", "C13", "F0", "F1", "A0", "B2", "B10", "B11"], "rows": ["A15", "B4", "B5", "B6", "B7", "B8"] diff --git a/keyboards/ebastler/isometria_75/rev1/rules.mk b/keyboards/ebastler/isometria_75/rev1/rules.mk index bd6499b239..2fd78a13f1 100644 --- a/keyboards/ebastler/isometria_75/rev1/rules.mk +++ b/keyboards/ebastler/isometria_75/rev1/rules.mk @@ -11,7 +11,6 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow AUDIO_ENABLE = no # Audio output ENCODER_ENABLE = yes -WS2812_DRIVER = pwm # Enter lower-power sleep mode when on the ChibiOS idle thread OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE -- cgit v1.2.3 From 47966dc2a65c88ac90fcd64d12243d72f3f6753b Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 6 Apr 2023 18:00:54 +1000 Subject: Migrate `rgblight.pin` and `RGB_DI_PIN` to `ws2812.pin` (#20303) --- keyboards/ebastler/isometria_75/rev1/config.h | 1 - keyboards/ebastler/isometria_75/rev1/info.json | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/isometria_75/rev1/config.h b/keyboards/ebastler/isometria_75/rev1/config.h index 42a4a77d69..68f54a8014 100644 --- a/keyboards/ebastler/isometria_75/rev1/config.h +++ b/keyboards/ebastler/isometria_75/rev1/config.h @@ -24,7 +24,6 @@ along with this program. If not, see . #define BACKLIGHT_PWM_OUTPUT_FREQUENCY 1000 // Increases backlight PWM freq if compiled with an unmerged PR. Does no harm without it. /* Underglow */ -#define RGB_DI_PIN B3 #define RGBLED_NUM 17 #define WS2812_PWM_DRIVER PWMD2 #define WS2812_PWM_CHANNEL 2 diff --git a/keyboards/ebastler/isometria_75/rev1/info.json b/keyboards/ebastler/isometria_75/rev1/info.json index 5758d1fe31..f279d22543 100644 --- a/keyboards/ebastler/isometria_75/rev1/info.json +++ b/keyboards/ebastler/isometria_75/rev1/info.json @@ -9,6 +9,7 @@ "device_version": "0.0.1" }, "ws2812": { + "pin": "B3", "driver": "pwm" }, "matrix_pins": { -- cgit v1.2.3 From f111bea3cda240b7c54bff2e12b5043b7b0797f7 Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 25 Apr 2023 02:38:35 +1000 Subject: Move miscellaneous layouts to data driven (#20516) --- keyboards/ebastler/isometria_75/rev1/info.json | 187 +++++++++++++------------ keyboards/ebastler/isometria_75/rev1/rev1.h | 35 ----- 2 files changed, 99 insertions(+), 123 deletions(-) delete mode 100644 keyboards/ebastler/isometria_75/rev1/rev1.h (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/isometria_75/rev1/info.json b/keyboards/ebastler/isometria_75/rev1/info.json index f279d22543..8151451a32 100644 --- a/keyboards/ebastler/isometria_75/rev1/info.json +++ b/keyboards/ebastler/isometria_75/rev1/info.json @@ -32,94 +32,105 @@ "layouts": { "LAYOUT_iso": { "layout": [ - {"label":"Esc", "x":0, "y":0}, - {"label":"F1", "x":1.25, "y":0}, - {"label":"F2", "x":2.25, "y":0}, - {"label":"F3", "x":3.25, "y":0}, - {"label":"F4", "x":4.25, "y":0}, - {"label":"F5", "x":5.5, "y":0}, - {"label":"F6", "x":6.5, "y":0}, - {"label":"F7", "x":7.5, "y":0}, - {"label":"F8", "x":8.5, "y":0}, - {"label":"F9", "x":9.75, "y":0}, - {"label":"F10", "x":10.75, "y":0}, - {"label":"F11", "x":11.75, "y":0}, - {"label":"F12", "x":12.75, "y":0}, - {"label":"PRINT SCREEN", "x":14, "y":0}, - {"label":"PLAY/PAUSE", "x":15.25, "y":0}, - - {"label":"`", "x":0, "y":1.25}, - {"label":"1", "x":1, "y":1.25}, - {"label":"2", "x":2, "y":1.25}, - {"label":"3", "x":3, "y":1.25}, - {"label":"4", "x":4, "y":1.25}, - {"label":"5", "x":5, "y":1.25}, - {"label":"6", "x":6, "y":1.25}, - {"label":"7", "x":7, "y":1.25}, - {"label":"8", "x":8, "y":1.25}, - {"label":"9", "x":9, "y":1.25}, - {"label":"0", "x":10, "y":1.25}, - {"label":"-", "x":11, "y":1.25}, - {"label":"=", "x":12, "y":1.25}, - {"label":"BACKSPACE", "x":13, "y":1.25, "w":2}, - {"label":"HOME", "x":15.25, "y":1.25}, - - {"label":"TAB", "x":0, "y":2.25, "w":1.5}, - {"label":"Q", "x":1.5, "y":2.25}, - {"label":"W", "x":2.5, "y":2.25}, - {"label":"E", "x":3.5, "y":2.25}, - {"label":"R", "x":4.5, "y":2.25}, - {"label":"T", "x":5.5, "y":2.25}, - {"label":"Y", "x":6.5, "y":2.25}, - {"label":"U", "x":7.5, "y":2.25}, - {"label":"I", "x":8.5, "y":2.25}, - {"label":"O", "x":9.5, "y":2.25}, - {"label":"P", "x":10.5, "y":2.25}, - {"label":"[", "x":11.5, "y":2.25}, - {"label":"]", "x":12.5, "y":2.25}, - {"label":"PAGE UP", "x":15.25, "y":2.25}, - - {"label":"CAPS LOCK", "x":0, "y":3.25, "w":1.75}, - {"label":"A", "x":1.75, "y":3.25}, - {"label":"S", "x":2.75, "y":3.25}, - {"label":"D", "x":3.75, "y":3.25}, - {"label":"F", "x":4.75, "y":3.25}, - {"label":"G", "x":5.75, "y":3.25}, - {"label":"H", "x":6.75, "y":3.25}, - {"label":"J", "x":7.75, "y":3.25}, - {"label":"K", "x":8.75, "y":3.25}, - {"label":"L", "x":9.75, "y":3.25}, - {"label":";", "x":10.75, "y":3.25}, - {"label":"'", "x":11.75, "y":3.25}, - {"label":"ISO #", "x":12.75, "y":3.25}, - {"label":"ENTER", "x":13.75, "y":2.25, "w":1.25, "h":2}, - {"label":"PAGE DOWN", "x":15.25, "y":3.25}, - - {"label":"SHIFT", "x":0, "y":4.25, "w":1.25}, - {"label":"ISO \\", "x":1.25, "y":4.25}, - {"label":"Z", "x":2.25, "y":4.25}, - {"label":"X", "x":3.25, "y":4.25}, - {"label":"C", "x":4.25, "y":4.25}, - {"label":"V", "x":5.25, "y":4.25}, - {"label":"B", "x":6.25, "y":4.25}, - {"label":"N", "x":7.25, "y":4.25}, - {"label":"M", "x":8.25, "y":4.25}, - {"label":",", "x":9.25, "y":4.25}, - {"label":".", "x":10.25, "y":4.25}, - {"label":"/", "x":11.25, "y":4.25}, - {"label":"SHIFT", "x":12.25, "y":4.25, "w":1.5}, - {"label":"UP", "x":14, "y":4.5}, - {"label":"END", "x":15.25, "y":4.25}, - - {"label":"CTRL", "x":0, "y":5.25, "w":1.25}, - {"label":"SUPER", "x":1.25, "y":5.25, "w":1.25}, - {"label":"ALT", "x":2.5, "y":5.25, "w":1.25}, - {"label":"SPACE", "x":3.75, "y":5.25, "w":6.25}, - {"label":"ALT", "x":10, "y":5.25, "w":1.5}, - {"label":"FUNC", "x":11.5, "y":5.25, "w":1.25}, - {"label":"LEFT", "x":13, "y":5.5}, - {"label":"DOWN", "x":14, "y":5.5}, - {"label":"RIGHT", "x":15, "y":5.5} + {"matrix": [0, 0], "x": 0, "y": 0}, + + {"matrix": [0, 1], "x": 1.25, "y": 0}, + {"matrix": [0, 2], "x": 2.25, "y": 0}, + {"matrix": [0, 3], "x": 3.25, "y": 0}, + {"matrix": [0, 4], "x": 4.25, "y": 0}, + + {"matrix": [0, 6], "x": 5.5, "y": 0}, + {"matrix": [0, 7], "x": 6.5, "y": 0}, + {"matrix": [0, 8], "x": 7.5, "y": 0}, + {"matrix": [0, 9], "x": 8.5, "y": 0}, + + {"matrix": [0, 10], "x": 9.75, "y": 0}, + {"matrix": [0, 11], "x": 10.75, "y": 0}, + {"matrix": [0, 12], "x": 11.75, "y": 0}, + {"matrix": [0, 13], "x": 12.75, "y": 0}, + + {"matrix": [0, 14], "x": 14, "y": 0}, + + {"matrix": [0, 15], "x": 15.25, "y": 0}, + + {"matrix": [1, 0], "x": 0, "y": 1.25}, + {"matrix": [1, 1], "x": 1, "y": 1.25}, + {"matrix": [1, 2], "x": 2, "y": 1.25}, + {"matrix": [1, 3], "x": 3, "y": 1.25}, + {"matrix": [1, 4], "x": 4, "y": 1.25}, + {"matrix": [1, 5], "x": 5, "y": 1.25}, + {"matrix": [1, 6], "x": 6, "y": 1.25}, + {"matrix": [1, 7], "x": 7, "y": 1.25}, + {"matrix": [1, 8], "x": 8, "y": 1.25}, + {"matrix": [1, 9], "x": 9, "y": 1.25}, + {"matrix": [1, 10], "x": 10, "y": 1.25}, + {"matrix": [1, 11], "x": 11, "y": 1.25}, + {"matrix": [1, 12], "x": 12, "y": 1.25}, + {"matrix": [1, 14], "x": 13, "y": 1.25, "w": 2}, + + {"matrix": [1, 15], "x": 15.25, "y": 1.25}, + + {"matrix": [2, 0], "x": 0, "y": 2.25, "w": 1.5}, + {"matrix": [2, 2], "x": 1.5, "y": 2.25}, + {"matrix": [2, 3], "x": 2.5, "y": 2.25}, + {"matrix": [2, 4], "x": 3.5, "y": 2.25}, + {"matrix": [2, 5], "x": 4.5, "y": 2.25}, + {"matrix": [2, 6], "x": 5.5, "y": 2.25}, + {"matrix": [2, 7], "x": 6.5, "y": 2.25}, + {"matrix": [2, 8], "x": 7.5, "y": 2.25}, + {"matrix": [2, 9], "x": 8.5, "y": 2.25}, + {"matrix": [2, 10], "x": 9.5, "y": 2.25}, + {"matrix": [2, 11], "x": 10.5, "y": 2.25}, + {"matrix": [2, 12], "x": 11.5, "y": 2.25}, + {"matrix": [2, 13], "x": 12.5, "y": 2.25}, + + {"matrix": [2, 15], "x": 15.25, "y": 2.25}, + + {"matrix": [3, 0], "x": 0, "y": 3.25, "w": 1.75}, + {"matrix": [3, 2], "x": 1.75, "y": 3.25}, + {"matrix": [3, 3], "x": 2.75, "y": 3.25}, + {"matrix": [3, 4], "x": 3.75, "y": 3.25}, + {"matrix": [3, 5], "x": 4.75, "y": 3.25}, + {"matrix": [3, 6], "x": 5.75, "y": 3.25}, + {"matrix": [3, 7], "x": 6.75, "y": 3.25}, + {"matrix": [3, 8], "x": 7.75, "y": 3.25}, + {"matrix": [3, 9], "x": 8.75, "y": 3.25}, + {"matrix": [3, 10], "x": 9.75, "y": 3.25}, + {"matrix": [3, 11], "x": 10.75, "y": 3.25}, + {"matrix": [3, 12], "x": 11.75, "y": 3.25}, + {"matrix": [3, 13], "x": 12.75, "y": 3.25}, + {"matrix": [3, 14], "x": 13.75, "y": 2.25, "w": 1.25, "h": 2}, + + {"matrix": [3, 15], "x": 15.25, "y": 3.25}, + + {"matrix": [4, 0], "x": 0, "y": 4.25, "w": 1.25}, + {"matrix": [4, 1], "x": 1.25, "y": 4.25}, + {"matrix": [4, 2], "x": 2.25, "y": 4.25}, + {"matrix": [4, 3], "x": 3.25, "y": 4.25}, + {"matrix": [4, 4], "x": 4.25, "y": 4.25}, + {"matrix": [4, 5], "x": 5.25, "y": 4.25}, + {"matrix": [4, 6], "x": 6.25, "y": 4.25}, + {"matrix": [4, 7], "x": 7.25, "y": 4.25}, + {"matrix": [4, 8], "x": 8.25, "y": 4.25}, + {"matrix": [4, 9], "x": 9.25, "y": 4.25}, + {"matrix": [4, 10], "x": 10.25, "y": 4.25}, + {"matrix": [4, 11], "x": 11.25, "y": 4.25}, + {"matrix": [4, 13], "x": 12.25, "y": 4.25, "w": 1.5}, + + {"matrix": [4, 14], "x": 14, "y": 4.5}, + + {"matrix": [4, 15], "x": 15.25, "y": 4.25}, + + {"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25}, + {"matrix": [5, 1], "x": 1.25, "y": 5.25, "w": 1.25}, + {"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25}, + {"matrix": [5, 6], "x": 3.75, "y": 5.25, "w": 6.25}, + {"matrix": [5, 10], "x": 10, "y": 5.25, "w": 1.5}, + {"matrix": [5, 11], "x": 11.5, "y": 5.25, "w": 1.25}, + + {"matrix": [5, 13], "x": 13, "y": 5.5}, + {"matrix": [5, 14], "x": 14, "y": 5.5}, + {"matrix": [5, 15], "x": 15, "y": 5.5} ] } } diff --git a/keyboards/ebastler/isometria_75/rev1/rev1.h b/keyboards/ebastler/isometria_75/rev1/rev1.h deleted file mode 100644 index 9aea3a06d7..0000000000 --- a/keyboards/ebastler/isometria_75/rev1/rev1.h +++ /dev/null @@ -1,35 +0,0 @@ -/* Copyright 2020 Moritz Plattner - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#pragma once - -#include "quantum.h" - -#define LAYOUT_iso( \ - K000, K001, K002, K003, K004, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015, \ - K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K114, K115, \ - K200, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K215, \ - K300, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, K315, \ - K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K413, K414, K415, \ - K500, K501, K502, K506, K510, K511, K513, K514, K515 \ -) { \ - { K000, K001, K002, K003, K004, KC_NO, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015 } , \ - { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, KC_NO, K114, K115 } , \ - { K200, KC_NO, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, KC_NO, K215 } , \ - { K300, KC_NO, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, K315 } , \ - { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, KC_NO, K413, K414, K415 } , \ - { K500, K501, K502, KC_NO, KC_NO, KC_NO, K506, KC_NO, KC_NO, KC_NO, K510, K511, KC_NO, K513, K514, K515 } \ -} -- cgit v1.2.3 From 79aa31994698c9050141714f77c0177edbcd9488 Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 2 May 2023 08:25:15 +1000 Subject: `info.json` whitespace cleanups (#20651) --- keyboards/ebastler/e80_1800/info.json | 1042 ++++++++++++++++----------------- 1 file changed, 521 insertions(+), 521 deletions(-) (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/e80_1800/info.json b/keyboards/ebastler/e80_1800/info.json index d44ec001bd..8f4ef69f2d 100644 --- a/keyboards/ebastler/e80_1800/info.json +++ b/keyboards/ebastler/e80_1800/info.json @@ -22,8 +22,8 @@ "mousekey": false }, "matrix_pins": { - "cols": [ "A1", "A0", "C3", "C2", "F1", "F0", "C15", "C14", "C13", "C4", "C5", "B0", "B1", "B2", "B9", "A13", "A8", "C9", "C8" ], - "rows": [ "B7", "B3", "D2", "C12", "C11", "C10", "A15" ] + "cols": ["A1", "A0", "C3", "C2", "F1", "F0", "C15", "C14", "C13", "C4", "C5", "B0", "B1", "B2", "B9", "A13", "A8", "C9", "C8"], + "rows": ["B7", "B3", "D2", "C12", "C11", "C10", "A15"] }, "backlight": { "breathing": true, @@ -40,566 +40,566 @@ "layouts": { "LAYOUT_1800_all": { "layout": [ - {"matrix":[0,0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0,1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0,2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0,3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0,4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0,6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0,7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0,8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0,9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0,10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0,11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0,12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0,13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0,15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0,16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0,17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0,18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, + {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, + {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, + {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, + {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, + {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, + {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, + {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, + {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, + {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, + {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, + {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, + {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, + {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, + {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, + {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, + {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, - {"matrix":[1,15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1,16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1,17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1,18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, + {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, + {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, + {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, - {"matrix":[2,0], "label":"tild", "x":0, "y":2}, - {"matrix":[2,1], "label":"1", "x":1, "y":2}, - {"matrix":[2,2], "label":"2", "x":2, "y":2}, - {"matrix":[2,3], "label":"3", "x":3, "y":2}, - {"matrix":[2,4], "label":"4", "x":4, "y":2}, - {"matrix":[2,5], "label":"5", "x":5, "y":2}, - {"matrix":[2,6], "label":"6", "x":6, "y":2}, - {"matrix":[2,7], "label":"7", "x":7, "y":2}, - {"matrix":[2,8], "label":"8", "x":8, "y":2}, - {"matrix":[2,9], "label":"9", "x":9, "y":2}, - {"matrix":[2,10], "label":"0", "x":10, "y":2}, - {"matrix":[2,11], "label":"-", "x":11, "y":2}, - {"matrix":[2,12], "label":"=", "x":12, "y":2}, - {"matrix":[2,14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2,15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2,16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2,17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2,18], "label":"Pause", "x":18.5, "y":2}, + {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, + {"matrix":[2, 1], "label":"1", "x":1, "y":2}, + {"matrix":[2, 2], "label":"2", "x":2, "y":2}, + {"matrix":[2, 3], "label":"3", "x":3, "y":2}, + {"matrix":[2, 4], "label":"4", "x":4, "y":2}, + {"matrix":[2, 5], "label":"5", "x":5, "y":2}, + {"matrix":[2, 6], "label":"6", "x":6, "y":2}, + {"matrix":[2, 7], "label":"7", "x":7, "y":2}, + {"matrix":[2, 8], "label":"8", "x":8, "y":2}, + {"matrix":[2, 9], "label":"9", "x":9, "y":2}, + {"matrix":[2, 10], "label":"0", "x":10, "y":2}, + {"matrix":[2, 11], "label":"-", "x":11, "y":2}, + {"matrix":[2, 12], "label":"=", "x":12, "y":2}, + {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, + {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, + {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, + {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, + {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, - {"matrix":[3,0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3,2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3,3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3,4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3,5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3,6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3,7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3,8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3,9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3,10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3,11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3,12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3,13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3,14], "label":"|", "x":13.5, "y":3, "w":1.5}, - {"matrix":[3,15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3,16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3,17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3,18], "label":"-", "x":18.5, "y":3}, + {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, + {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, + {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, + {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, + {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, + {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, + {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, + {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, + {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, + {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, + {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, + {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, + {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, + {"matrix":[3, 14], "label":"|", "x":13.5, "y":3, "w":1.5}, + {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, + {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, + {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, + {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, - {"matrix":[4,0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4,2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4,3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4,4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4,5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4,6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4,7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4,8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4,9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4,10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4,11], "label":";", "x":10.75, "y":4}, - {"matrix":[4,12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4,13], "label":"#", "x":12.75, "y":4}, - {"matrix":[4,14], "label":"Enter", "x":13.75, "y":3, "w":1.25}, - {"matrix":[4,15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4,16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4,17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4,18], "label":"+", "x":18.5, "y":4}, + {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, + {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, + {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, + {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, + {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, + {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, + {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, + {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, + {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, + {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, + {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, + {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, + {"matrix":[4, 13], "label":"#", "x":12.75, "y":4}, + {"matrix":[4, 14], "label":"Enter", "x":13.75, "y":3, "w":1.25}, + {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, + {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, + {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, + {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, - {"matrix":[5,0], "label":"Shift", "x":0, "y":5, "w":1.25}, - {"matrix":[5,1], "label":"|", "x":1.25, "y":5}, - {"matrix":[5,2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5,3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5,4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5,5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5,6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5,7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5,8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5,9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5,10], "label":">", "x":10.25, "y":5}, - {"matrix":[5,11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5,13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5,14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5,15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5,16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5,17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5,18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":1.25}, + {"matrix":[5, 1], "label":"|", "x":1.25, "y":5}, + {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, + {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, + {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, + {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, + {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, + {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, + {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, + {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, + {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, + {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, + {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, + {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, + {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, + {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, + {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, + {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, - {"matrix":[6,0], "label":"Ctrl", "x":0, "y":6}, - {"matrix":[6,1], "label":"Win", "x":1, "y":6}, - {"matrix":[6,2], "label":"Alt", "x":2, "y":6}, - {"matrix":[6,6], "label":"Space", "x":3, "y":6, "w":6}, - {"matrix":[6,9], "label":"AltGr", "x":9, "y":6}, - {"matrix":[6,10], "label":"Win", "x":10, "y":6}, - {"matrix":[6,11], "label":"Menu", "x":11, "y":6}, - {"matrix":[6,12], "label":"Ctrl", "x":12, "y":6}, - {"matrix":[6,13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6,14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6,15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6,16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6,17], "label":".", "x":17.5, "y":6}] + {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6}, + {"matrix":[6, 1], "label":"Win", "x":1, "y":6}, + {"matrix":[6, 2], "label":"Alt", "x":2, "y":6}, + {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":6}, + {"matrix":[6, 9], "label":"AltGr", "x":9, "y":6}, + {"matrix":[6, 10], "label":"Win", "x":10, "y":6}, + {"matrix":[6, 11], "label":"Menu", "x":11, "y":6}, + {"matrix":[6, 12], "label":"Ctrl", "x":12, "y":6}, + {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, + {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, + {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, + {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, + {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] }, "LAYOUT_1800_iso_6u": { "layout": [ - {"matrix":[0,0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0,1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0,2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0,3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0,4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0,6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0,7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0,8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0,9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0,10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0,11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0,12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0,13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0,15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0,16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0,17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0,18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, + {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, + {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, + {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, + {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, + {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, + {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, + {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, + {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, + {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, + {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, + {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, + {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, + {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, + {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, + {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, + {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, - {"matrix":[1,15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1,16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1,17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1,18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, + {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, + {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, + {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, - {"matrix":[2,0], "label":"tild", "x":0, "y":2}, - {"matrix":[2,1], "label":"1", "x":1, "y":2}, - {"matrix":[2,2], "label":"2", "x":2, "y":2}, - {"matrix":[2,3], "label":"3", "x":3, "y":2}, - {"matrix":[2,4], "label":"4", "x":4, "y":2}, - {"matrix":[2,5], "label":"5", "x":5, "y":2}, - {"matrix":[2,6], "label":"6", "x":6, "y":2}, - {"matrix":[2,7], "label":"7", "x":7, "y":2}, - {"matrix":[2,8], "label":"8", "x":8, "y":2}, - {"matrix":[2,9], "label":"9", "x":9, "y":2}, - {"matrix":[2,10], "label":"0", "x":10, "y":2}, - {"matrix":[2,11], "label":"-", "x":11, "y":2}, - {"matrix":[2,12], "label":"=", "x":12, "y":2}, - {"matrix":[2,14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2,15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2,16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2,17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2,18], "label":"Pause", "x":18.5, "y":2}, + {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, + {"matrix":[2, 1], "label":"1", "x":1, "y":2}, + {"matrix":[2, 2], "label":"2", "x":2, "y":2}, + {"matrix":[2, 3], "label":"3", "x":3, "y":2}, + {"matrix":[2, 4], "label":"4", "x":4, "y":2}, + {"matrix":[2, 5], "label":"5", "x":5, "y":2}, + {"matrix":[2, 6], "label":"6", "x":6, "y":2}, + {"matrix":[2, 7], "label":"7", "x":7, "y":2}, + {"matrix":[2, 8], "label":"8", "x":8, "y":2}, + {"matrix":[2, 9], "label":"9", "x":9, "y":2}, + {"matrix":[2, 10], "label":"0", "x":10, "y":2}, + {"matrix":[2, 11], "label":"-", "x":11, "y":2}, + {"matrix":[2, 12], "label":"=", "x":12, "y":2}, + {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, + {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, + {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, + {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, + {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, - {"matrix":[3,0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3,2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3,3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3,4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3,5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3,6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3,7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3,8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3,9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3,10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3,11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3,12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3,13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3,15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3,16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3,17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3,18], "label":"-", "x":18.5, "y":3}, + {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, + {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, + {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, + {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, + {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, + {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, + {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, + {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, + {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, + {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, + {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, + {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, + {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, + {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, + {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, + {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, + {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, - {"matrix":[4,0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4,2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4,3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4,4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4,5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4,6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4,7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4,8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4,9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4,10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4,11], "label":";", "x":10.75, "y":4}, - {"matrix":[4,12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4,13], "label":"#", "x":12.75, "y":4}, - {"matrix":[4,14], "label":"Enter", "x":13.75, "y":3, "w":1.25, "h":2}, - {"matrix":[4,15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4,16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4,17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4,18], "label":"+", "x":18.5, "y":4}, + {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, + {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, + {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, + {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, + {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, + {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, + {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, + {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, + {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, + {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, + {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, + {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, + {"matrix":[4, 13], "label":"#", "x":12.75, "y":4}, + {"matrix":[4, 14], "label":"Enter", "x":13.75, "y":3, "w":1.25, "h":2}, + {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, + {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, + {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, + {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, - {"matrix":[5,0], "label":"Shift", "x":0, "y":5, "w":1.25}, - {"matrix":[5,1], "label":"|", "x":1.25, "y":5}, - {"matrix":[5,2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5,3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5,4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5,5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5,6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5,7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5,8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5,9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5,10], "label":">", "x":10.25, "y":5}, - {"matrix":[5,11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5,13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5,14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5,15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5,16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5,17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5,18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":1.25}, + {"matrix":[5, 1], "label":"|", "x":1.25, "y":5}, + {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, + {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, + {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, + {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, + {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, + {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, + {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, + {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, + {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, + {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, + {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, + {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, + {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, + {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, + {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, + {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, - {"matrix":[6,0], "label":"Ctrl", "x":0, "y":6}, - {"matrix":[6,1], "label":"Win", "x":1, "y":6}, - {"matrix":[6,2], "label":"Alt", "x":2, "y":6}, - {"matrix":[6,6], "label":"Space", "x":3, "y":6, "w":6}, - {"matrix":[6,9], "label":"AltGr", "x":9, "y":6}, - {"matrix":[6,10], "label":"Win", "x":10, "y":6}, - {"matrix":[6,11], "label":"Menu", "x":11, "y":6}, - {"matrix":[6,12], "label":"Ctrl", "x":12, "y":6}, - {"matrix":[6,13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6,14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6,15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6,16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6,17], "label":".", "x":17.5, "y":6}] + {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6}, + {"matrix":[6, 1], "label":"Win", "x":1, "y":6}, + {"matrix":[6, 2], "label":"Alt", "x":2, "y":6}, + {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":6}, + {"matrix":[6, 9], "label":"AltGr", "x":9, "y":6}, + {"matrix":[6, 10], "label":"Win", "x":10, "y":6}, + {"matrix":[6, 11], "label":"Menu", "x":11, "y":6}, + {"matrix":[6, 12], "label":"Ctrl", "x":12, "y":6}, + {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, + {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, + {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, + {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, + {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] }, "LAYOUT_1800_iso_7u": { "layout": [ - {"matrix":[0,0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0,1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0,2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0,3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0,4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0,6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0,7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0,8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0,9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0,10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0,11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0,12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0,13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0,15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0,16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0,17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0,18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, + {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, + {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, + {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, + {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, + {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, + {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, + {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, + {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, + {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, + {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, + {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, + {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, + {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, + {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, + {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, + {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, - {"matrix":[1,15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1,16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1,17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1,18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, + {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, + {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, + {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, - {"matrix":[2,0], "label":"tild", "x":0, "y":2}, - {"matrix":[2,1], "label":"1", "x":1, "y":2}, - {"matrix":[2,2], "label":"2", "x":2, "y":2}, - {"matrix":[2,3], "label":"3", "x":3, "y":2}, - {"matrix":[2,4], "label":"4", "x":4, "y":2}, - {"matrix":[2,5], "label":"5", "x":5, "y":2}, - {"matrix":[2,6], "label":"6", "x":6, "y":2}, - {"matrix":[2,7], "label":"7", "x":7, "y":2}, - {"matrix":[2,8], "label":"8", "x":8, "y":2}, - {"matrix":[2,9], "label":"9", "x":9, "y":2}, - {"matrix":[2,10], "label":"0", "x":10, "y":2}, - {"matrix":[2,11], "label":"-", "x":11, "y":2}, - {"matrix":[2,12], "label":"=", "x":12, "y":2}, - {"matrix":[2,14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2,15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2,16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2,17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2,18], "label":"Pause", "x":18.5, "y":2}, + {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, + {"matrix":[2, 1], "label":"1", "x":1, "y":2}, + {"matrix":[2, 2], "label":"2", "x":2, "y":2}, + {"matrix":[2, 3], "label":"3", "x":3, "y":2}, + {"matrix":[2, 4], "label":"4", "x":4, "y":2}, + {"matrix":[2, 5], "label":"5", "x":5, "y":2}, + {"matrix":[2, 6], "label":"6", "x":6, "y":2}, + {"matrix":[2, 7], "label":"7", "x":7, "y":2}, + {"matrix":[2, 8], "label":"8", "x":8, "y":2}, + {"matrix":[2, 9], "label":"9", "x":9, "y":2}, + {"matrix":[2, 10], "label":"0", "x":10, "y":2}, + {"matrix":[2, 11], "label":"-", "x":11, "y":2}, + {"matrix":[2, 12], "label":"=", "x":12, "y":2}, + {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, + {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, + {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, + {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, + {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, - {"matrix":[3,0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3,2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3,3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3,4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3,5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3,6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3,7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3,8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3,9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3,10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3,11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3,12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3,13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3,15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3,16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3,17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3,18], "label":"-", "x":18.5, "y":3}, + {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, + {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, + {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, + {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, + {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, + {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, + {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, + {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, + {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, + {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, + {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, + {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, + {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, + {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, + {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, + {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, + {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, - {"matrix":[4,0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4,2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4,3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4,4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4,5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4,6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4,7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4,8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4,9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4,10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4,11], "label":";", "x":10.75, "y":4}, - {"matrix":[4,12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4,13], "label":"#", "x":12.75, "y":4}, - {"matrix":[4,14], "label":"Enter", "x":13.75, "y":3, "w":1.25, "h":2}, - {"matrix":[4,15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4,16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4,17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4,18], "label":"+", "x":18.5, "y":4}, + {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, + {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, + {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, + {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, + {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, + {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, + {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, + {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, + {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, + {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, + {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, + {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, + {"matrix":[4, 13], "label":"#", "x":12.75, "y":4}, + {"matrix":[4, 14], "label":"Enter", "x":13.75, "y":3, "w":1.25, "h":2}, + {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, + {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, + {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, + {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, - {"matrix":[5,0], "label":"Shift", "x":0, "y":5, "w":1.25}, - {"matrix":[5,1], "label":"|", "x":1.25, "y":5}, - {"matrix":[5,2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5,3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5,4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5,5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5,6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5,7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5,8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5,9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5,10], "label":">", "x":10.25, "y":5}, - {"matrix":[5,11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5,13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5,14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5,15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5,16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5,17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5,18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":1.25}, + {"matrix":[5, 1], "label":"|", "x":1.25, "y":5}, + {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, + {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, + {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, + {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, + {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, + {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, + {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, + {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, + {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, + {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, + {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, + {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, + {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, + {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, + {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, + {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, - {"matrix":[6,0], "label":"Ctrl", "x":0, "y":6, "w":1.5}, - {"matrix":[6,2], "label":"Alt", "x":1.5, "y":6, "w":1.5}, - {"matrix":[6,6], "label":"Space", "x":3, "y":6, "w":7}, - {"matrix":[6,9], "label":"AltGr", "x":10, "y":6, "w":1.5}, - {"matrix":[6,12], "label":"Ctrl", "x":11.5, "y":6, "w":1.5}, - {"matrix":[6,13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6,14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6,15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6,16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6,17], "label":".", "x":17.5, "y":6}] + {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6, "w":1.5}, + {"matrix":[6, 2], "label":"Alt", "x":1.5, "y":6, "w":1.5}, + {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":7}, + {"matrix":[6, 9], "label":"AltGr", "x":10, "y":6, "w":1.5}, + {"matrix":[6, 12], "label":"Ctrl", "x":11.5, "y":6, "w":1.5}, + {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, + {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, + {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, + {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, + {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] }, "LAYOUT_1800_ansi_6u": { "layout": [ - {"matrix":[0,0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0,1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0,2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0,3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0,4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0,6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0,7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0,8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0,9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0,10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0,11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0,12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0,13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0,15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0,16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0,17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0,18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, + {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, + {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, + {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, + {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, + {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, + {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, + {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, + {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, + {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, + {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, + {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, + {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, + {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, + {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, + {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, + {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, - {"matrix":[1,15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1,16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1,17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1,18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, + {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, + {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, + {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, - {"matrix":[2,0], "label":"tild", "x":0, "y":2}, - {"matrix":[2,1], "label":"1", "x":1, "y":2}, - {"matrix":[2,2], "label":"2", "x":2, "y":2}, - {"matrix":[2,3], "label":"3", "x":3, "y":2}, - {"matrix":[2,4], "label":"4", "x":4, "y":2}, - {"matrix":[2,5], "label":"5", "x":5, "y":2}, - {"matrix":[2,6], "label":"6", "x":6, "y":2}, - {"matrix":[2,7], "label":"7", "x":7, "y":2}, - {"matrix":[2,8], "label":"8", "x":8, "y":2}, - {"matrix":[2,9], "label":"9", "x":9, "y":2}, - {"matrix":[2,10], "label":"0", "x":10, "y":2}, - {"matrix":[2,11], "label":"-", "x":11, "y":2}, - {"matrix":[2,12], "label":"=", "x":12, "y":2}, - {"matrix":[2,14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2,15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2,16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2,17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2,18], "label":"Pause", "x":18.5, "y":2}, + {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, + {"matrix":[2, 1], "label":"1", "x":1, "y":2}, + {"matrix":[2, 2], "label":"2", "x":2, "y":2}, + {"matrix":[2, 3], "label":"3", "x":3, "y":2}, + {"matrix":[2, 4], "label":"4", "x":4, "y":2}, + {"matrix":[2, 5], "label":"5", "x":5, "y":2}, + {"matrix":[2, 6], "label":"6", "x":6, "y":2}, + {"matrix":[2, 7], "label":"7", "x":7, "y":2}, + {"matrix":[2, 8], "label":"8", "x":8, "y":2}, + {"matrix":[2, 9], "label":"9", "x":9, "y":2}, + {"matrix":[2, 10], "label":"0", "x":10, "y":2}, + {"matrix":[2, 11], "label":"-", "x":11, "y":2}, + {"matrix":[2, 12], "label":"=", "x":12, "y":2}, + {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, + {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, + {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, + {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, + {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, - {"matrix":[3,0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3,2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3,3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3,4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3,5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3,6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3,7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3,8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3,9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3,10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3,11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3,12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3,13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3,14], "label":"|", "x":13.5, "y":3, "w":1.5}, - {"matrix":[3,15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3,16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3,17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3,18], "label":"-", "x":18.5, "y":3}, + {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, + {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, + {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, + {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, + {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, + {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, + {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, + {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, + {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, + {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, + {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, + {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, + {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, + {"matrix":[3, 14], "label":"|", "x":13.5, "y":3, "w":1.5}, + {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, + {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, + {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, + {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, - {"matrix":[4,0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4,2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4,3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4,4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4,5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4,6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4,7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4,8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4,9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4,10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4,11], "label":";", "x":10.75, "y":4}, - {"matrix":[4,12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4,14], "label":"Enter", "x":12.75, "y":3, "w":2.25}, - {"matrix":[4,15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4,16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4,17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4,18], "label":"+", "x":18.5, "y":4}, + {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, + {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, + {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, + {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, + {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, + {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, + {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, + {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, + {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, + {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, + {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, + {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, + {"matrix":[4, 14], "label":"Enter", "x":12.75, "y":3, "w":2.25}, + {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, + {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, + {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, + {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, - {"matrix":[5,0], "label":"Shift", "x":0, "y":5, "w":2.25}, - {"matrix":[5,2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5,3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5,4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5,5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5,6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5,7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5,8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5,9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5,10], "label":">", "x":10.25, "y":5}, - {"matrix":[5,11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5,13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5,14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5,15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5,16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5,17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5,18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":2.25}, + {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, + {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, + {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, + {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, + {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, + {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, + {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, + {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, + {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, + {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, + {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, + {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, + {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, + {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, + {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, + {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, - {"matrix":[6,0], "label":"Ctrl", "x":0, "y":6}, - {"matrix":[6,1], "label":"Win", "x":1, "y":6}, - {"matrix":[6,2], "label":"Alt", "x":2, "y":6}, - {"matrix":[6,6], "label":"Space", "x":3, "y":6, "w":6}, - {"matrix":[6,9], "label":"AltGr", "x":9, "y":6}, - {"matrix":[6,10], "label":"Win", "x":10, "y":6}, - {"matrix":[6,11], "label":"Menu", "x":11, "y":6}, - {"matrix":[6,12], "label":"Ctrl", "x":12, "y":6}, - {"matrix":[6,13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6,14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6,15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6,16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6,17], "label":".", "x":17.5, "y":6}] + {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6}, + {"matrix":[6, 1], "label":"Win", "x":1, "y":6}, + {"matrix":[6, 2], "label":"Alt", "x":2, "y":6}, + {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":6}, + {"matrix":[6, 9], "label":"AltGr", "x":9, "y":6}, + {"matrix":[6, 10], "label":"Win", "x":10, "y":6}, + {"matrix":[6, 11], "label":"Menu", "x":11, "y":6}, + {"matrix":[6, 12], "label":"Ctrl", "x":12, "y":6}, + {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, + {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, + {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, + {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, + {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] }, "LAYOUT_1800_ansi_7u": { "layout": [ - {"matrix":[0,0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0,1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0,2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0,3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0,4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0,6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0,7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0,8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0,9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0,10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0,11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0,12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0,13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0,15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0,16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0,17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0,18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, + {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, + {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, + {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, + {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, + {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, + {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, + {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, + {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, + {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, + {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, + {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, + {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, + {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, + {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, + {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, + {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, - {"matrix":[1,15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1,16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1,17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1,18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, + {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, + {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, + {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, - {"matrix":[2,0], "label":"tild", "x":0, "y":2}, - {"matrix":[2,1], "label":"1", "x":1, "y":2}, - {"matrix":[2,2], "label":"2", "x":2, "y":2}, - {"matrix":[2,3], "label":"3", "x":3, "y":2}, - {"matrix":[2,4], "label":"4", "x":4, "y":2}, - {"matrix":[2,5], "label":"5", "x":5, "y":2}, - {"matrix":[2,6], "label":"6", "x":6, "y":2}, - {"matrix":[2,7], "label":"7", "x":7, "y":2}, - {"matrix":[2,8], "label":"8", "x":8, "y":2}, - {"matrix":[2,9], "label":"9", "x":9, "y":2}, - {"matrix":[2,10], "label":"0", "x":10, "y":2}, - {"matrix":[2,11], "label":"-", "x":11, "y":2}, - {"matrix":[2,12], "label":"=", "x":12, "y":2}, - {"matrix":[2,14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2,15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2,16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2,17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2,18], "label":"Pause", "x":18.5, "y":2}, + {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, + {"matrix":[2, 1], "label":"1", "x":1, "y":2}, + {"matrix":[2, 2], "label":"2", "x":2, "y":2}, + {"matrix":[2, 3], "label":"3", "x":3, "y":2}, + {"matrix":[2, 4], "label":"4", "x":4, "y":2}, + {"matrix":[2, 5], "label":"5", "x":5, "y":2}, + {"matrix":[2, 6], "label":"6", "x":6, "y":2}, + {"matrix":[2, 7], "label":"7", "x":7, "y":2}, + {"matrix":[2, 8], "label":"8", "x":8, "y":2}, + {"matrix":[2, 9], "label":"9", "x":9, "y":2}, + {"matrix":[2, 10], "label":"0", "x":10, "y":2}, + {"matrix":[2, 11], "label":"-", "x":11, "y":2}, + {"matrix":[2, 12], "label":"=", "x":12, "y":2}, + {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, + {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, + {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, + {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, + {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, - {"matrix":[3,0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3,2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3,3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3,4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3,5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3,6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3,7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3,8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3,9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3,10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3,11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3,12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3,13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3,14], "label":"|", "x":13.5, "y":3, "w":1.5}, - {"matrix":[3,15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3,16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3,17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3,18], "label":"-", "x":18.5, "y":3}, + {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, + {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, + {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, + {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, + {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, + {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, + {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, + {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, + {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, + {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, + {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, + {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, + {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, + {"matrix":[3, 14], "label":"|", "x":13.5, "y":3, "w":1.5}, + {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, + {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, + {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, + {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, - {"matrix":[4,0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4,2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4,3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4,4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4,5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4,6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4,7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4,8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4,9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4,10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4,11], "label":";", "x":10.75, "y":4}, - {"matrix":[4,12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4,14], "label":"Enter", "x":12.75, "y":3, "w":2.25}, - {"matrix":[4,15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4,16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4,17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4,18], "label":"+", "x":18.5, "y":4}, + {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, + {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, + {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, + {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, + {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, + {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, + {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, + {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, + {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, + {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, + {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, + {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, + {"matrix":[4, 14], "label":"Enter", "x":12.75, "y":3, "w":2.25}, + {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, + {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, + {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, + {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, - {"matrix":[5,0], "label":"Shift", "x":0, "y":5, "w":2.25}, - {"matrix":[5,2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5,3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5,4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5,5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5,6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5,7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5,8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5,9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5,10], "label":">", "x":10.25, "y":5}, - {"matrix":[5,11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5,13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5,14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5,15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5,16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5,17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5,18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":2.25}, + {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, + {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, + {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, + {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, + {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, + {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, + {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, + {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, + {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, + {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, + {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, + {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, + {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, + {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, + {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, + {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, - {"matrix":[6,0], "label":"Ctrl", "x":0, "y":6, "w":1.5}, - {"matrix":[6,2], "label":"Alt", "x":1.5, "y":6, "w":1.5}, - {"matrix":[6,6], "label":"Space", "x":3, "y":6, "w":7}, - {"matrix":[6,9], "label":"AltGr", "x":10, "y":6, "w":1.5}, - {"matrix":[6,12], "label":"Ctrl", "x":11.5, "y":6, "w":1.5}, - {"matrix":[6,13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6,14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6,15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6,16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6,17], "label":".", "x":17.5, "y":6}] + {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6, "w":1.5}, + {"matrix":[6, 2], "label":"Alt", "x":1.5, "y":6, "w":1.5}, + {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":7}, + {"matrix":[6, 9], "label":"AltGr", "x":10, "y":6, "w":1.5}, + {"matrix":[6, 12], "label":"Ctrl", "x":11.5, "y":6, "w":1.5}, + {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, + {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, + {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, + {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, + {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] } } -} \ No newline at end of file +} -- cgit v1.2.3 From a5e46d80822797cd2e0dc2a2b81c4ccce9e167f4 Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 3 May 2023 12:19:34 +1000 Subject: More `info.json` whitespace cleanups (#20665) --- keyboards/ebastler/e80_1800/info.json | 1036 ++++++++++++++++----------------- 1 file changed, 518 insertions(+), 518 deletions(-) (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/e80_1800/info.json b/keyboards/ebastler/e80_1800/info.json index 8f4ef69f2d..b595c85118 100644 --- a/keyboards/ebastler/e80_1800/info.json +++ b/keyboards/ebastler/e80_1800/info.json @@ -40,566 +40,566 @@ "layouts": { "LAYOUT_1800_all": { "layout": [ - {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix": [0, 0], "label": "Esc", "x": 0, "y": 0}, + {"matrix": [0, 1], "label": "F1", "x": 1.25, "y": 0}, + {"matrix": [0, 2], "label": "F2", "x": 2.25, "y": 0}, + {"matrix": [0, 3], "label": "F3", "x": 3.25, "y": 0}, + {"matrix": [0, 4], "label": "F4", "x": 4.25, "y": 0}, + {"matrix": [0, 6], "label": "F5", "x": 5.5, "y": 0}, + {"matrix": [0, 7], "label": "F6", "x": 6.5, "y": 0}, + {"matrix": [0, 8], "label": "F7", "x": 7.5, "y": 0}, + {"matrix": [0, 9], "label": "F8", "x": 8.5, "y": 0}, + {"matrix": [0, 10], "label": "F9", "x": 9.75, "y": 0}, + {"matrix": [0, 11], "label": "F10", "x": 10.75, "y": 0}, + {"matrix": [0, 12], "label": "F11", "x": 11.75, "y": 0}, + {"matrix": [0, 13], "label": "F12", "x": 12.75, "y": 0}, + {"matrix": [0, 15], "label": "Insert", "x": 15.5, "y": 0}, + {"matrix": [0, 16], "label": "Home", "x": 16.5, "y": 0}, + {"matrix": [0, 17], "label": "PgUp", "x": 17.5, "y": 0}, + {"matrix": [0, 18], "label": "PrtSc", "x": 18.5, "y": 0}, - {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix": [1, 15], "label": "Delete", "x": 15.5, "y": 1}, + {"matrix": [1, 16], "label": "End", "x": 16.5, "y": 1}, + {"matrix": [1, 17], "label": "PgDn", "x": 17.5, "y": 1}, + {"matrix": [1, 18], "label": "Scroll Lock", "x": 18.5, "y": 1}, - {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, - {"matrix":[2, 1], "label":"1", "x":1, "y":2}, - {"matrix":[2, 2], "label":"2", "x":2, "y":2}, - {"matrix":[2, 3], "label":"3", "x":3, "y":2}, - {"matrix":[2, 4], "label":"4", "x":4, "y":2}, - {"matrix":[2, 5], "label":"5", "x":5, "y":2}, - {"matrix":[2, 6], "label":"6", "x":6, "y":2}, - {"matrix":[2, 7], "label":"7", "x":7, "y":2}, - {"matrix":[2, 8], "label":"8", "x":8, "y":2}, - {"matrix":[2, 9], "label":"9", "x":9, "y":2}, - {"matrix":[2, 10], "label":"0", "x":10, "y":2}, - {"matrix":[2, 11], "label":"-", "x":11, "y":2}, - {"matrix":[2, 12], "label":"=", "x":12, "y":2}, - {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, + {"matrix": [2, 0], "label": "tild", "x": 0, "y": 2}, + {"matrix": [2, 1], "label": "1", "x": 1, "y": 2}, + {"matrix": [2, 2], "label": "2", "x": 2, "y": 2}, + {"matrix": [2, 3], "label": "3", "x": 3, "y": 2}, + {"matrix": [2, 4], "label": "4", "x": 4, "y": 2}, + {"matrix": [2, 5], "label": "5", "x": 5, "y": 2}, + {"matrix": [2, 6], "label": "6", "x": 6, "y": 2}, + {"matrix": [2, 7], "label": "7", "x": 7, "y": 2}, + {"matrix": [2, 8], "label": "8", "x": 8, "y": 2}, + {"matrix": [2, 9], "label": "9", "x": 9, "y": 2}, + {"matrix": [2, 10], "label": "0", "x": 10, "y": 2}, + {"matrix": [2, 11], "label": "-", "x": 11, "y": 2}, + {"matrix": [2, 12], "label": "=", "x": 12, "y": 2}, + {"matrix": [2, 14], "label": "Backspace", "x": 13, "y": 2, "w": 2}, + {"matrix": [2, 15], "label": "Num Lock", "x": 15.5, "y": 2}, + {"matrix": [2, 16], "label": "/", "x": 16.5, "y": 2}, + {"matrix": [2, 17], "label": "*", "x": 17.5, "y": 2}, + {"matrix": [2, 18], "label": "Pause", "x": 18.5, "y": 2}, - {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3, 14], "label":"|", "x":13.5, "y":3, "w":1.5}, - {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, + {"matrix": [3, 0], "label": "Tab", "x": 0, "y": 3, "w": 1.5}, + {"matrix": [3, 2], "label": "Q", "x": 1.5, "y": 3}, + {"matrix": [3, 3], "label": "W", "x": 2.5, "y": 3}, + {"matrix": [3, 4], "label": "E", "x": 3.5, "y": 3}, + {"matrix": [3, 5], "label": "R", "x": 4.5, "y": 3}, + {"matrix": [3, 6], "label": "T", "x": 5.5, "y": 3}, + {"matrix": [3, 7], "label": "Y", "x": 6.5, "y": 3}, + {"matrix": [3, 8], "label": "U", "x": 7.5, "y": 3}, + {"matrix": [3, 9], "label": "I", "x": 8.5, "y": 3}, + {"matrix": [3, 10], "label": "O", "x": 9.5, "y": 3}, + {"matrix": [3, 11], "label": "P", "x": 10.5, "y": 3}, + {"matrix": [3, 12], "label": "[", "x": 11.5, "y": 3}, + {"matrix": [3, 13], "label": "]", "x": 12.5, "y": 3}, + {"matrix": [3, 14], "label": "|", "x": 13.5, "y": 3, "w": 1.5}, + {"matrix": [3, 15], "label": "7", "x": 15.5, "y": 3}, + {"matrix": [3, 16], "label": "8", "x": 16.5, "y": 3}, + {"matrix": [3, 17], "label": "9", "x": 17.5, "y": 3}, + {"matrix": [3, 18], "label": "-", "x": 18.5, "y": 3}, - {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, - {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4, 13], "label":"#", "x":12.75, "y":4}, - {"matrix":[4, 14], "label":"Enter", "x":13.75, "y":3, "w":1.25}, - {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, + {"matrix": [4, 0], "label": "Caps Lock", "x": 0, "y": 4, "w": 1.75}, + {"matrix": [4, 2], "label": "A", "x": 1.75, "y": 4}, + {"matrix": [4, 3], "label": "S", "x": 2.75, "y": 4}, + {"matrix": [4, 4], "label": "D", "x": 3.75, "y": 4}, + {"matrix": [4, 5], "label": "F", "x": 4.75, "y": 4}, + {"matrix": [4, 6], "label": "G", "x": 5.75, "y": 4}, + {"matrix": [4, 7], "label": "H", "x": 6.75, "y": 4}, + {"matrix": [4, 8], "label": "J", "x": 7.75, "y": 4}, + {"matrix": [4, 9], "label": "K", "x": 8.75, "y": 4}, + {"matrix": [4, 10], "label": "L", "x": 9.75, "y": 4}, + {"matrix": [4, 11], "label": ";", "x": 10.75, "y": 4}, + {"matrix": [4, 12], "label": "'", "x": 11.75, "y": 4}, + {"matrix": [4, 13], "label": "#", "x": 12.75, "y": 4}, + {"matrix": [4, 14], "label": "Enter", "x": 13.75, "y": 3, "w": 1.25}, + {"matrix": [4, 15], "label": "4", "x": 15.5, "y": 4}, + {"matrix": [4, 16], "label": "5", "x": 16.5, "y": 4}, + {"matrix": [4, 17], "label": "6", "x": 17.5, "y": 4}, + {"matrix": [4, 18], "label": "+", "x": 18.5, "y": 4}, - {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":1.25}, - {"matrix":[5, 1], "label":"|", "x":1.25, "y":5}, - {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, - {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix": [5, 0], "label": "Shift", "x": 0, "y": 5, "w": 1.25}, + {"matrix": [5, 1], "label": "|", "x": 1.25, "y": 5}, + {"matrix": [5, 2], "label": "Z", "x": 2.25, "y": 5}, + {"matrix": [5, 3], "label": "X", "x": 3.25, "y": 5}, + {"matrix": [5, 4], "label": "C", "x": 4.25, "y": 5}, + {"matrix": [5, 5], "label": "V", "x": 5.25, "y": 5}, + {"matrix": [5, 6], "label": "B", "x": 6.25, "y": 5}, + {"matrix": [5, 7], "label": "N", "x": 7.25, "y": 5}, + {"matrix": [5, 8], "label": "M", "x": 8.25, "y": 5}, + {"matrix": [5, 9], "label": "<", "x": 9.25, "y": 5}, + {"matrix": [5, 10], "label": ">", "x": 10.25, "y": 5}, + {"matrix": [5, 11], "label": "?", "x": 11.25, "y": 5}, + {"matrix": [5, 13], "label": "Shift", "x": 12.25, "y": 5, "w": 1.75}, + {"matrix": [5, 14], "label": "up", "x": 14.25, "y": 5.25}, + {"matrix": [5, 15], "label": "1", "x": 15.5, "y": 5}, + {"matrix": [5, 16], "label": "2", "x": 16.5, "y": 5}, + {"matrix": [5, 17], "label": "3", "x": 17.5, "y": 5}, + {"matrix": [5, 18], "label": "Enter", "x": 18.5, "y": 5, "h": 2}, - {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6}, - {"matrix":[6, 1], "label":"Win", "x":1, "y":6}, - {"matrix":[6, 2], "label":"Alt", "x":2, "y":6}, - {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":6}, - {"matrix":[6, 9], "label":"AltGr", "x":9, "y":6}, - {"matrix":[6, 10], "label":"Win", "x":10, "y":6}, - {"matrix":[6, 11], "label":"Menu", "x":11, "y":6}, - {"matrix":[6, 12], "label":"Ctrl", "x":12, "y":6}, - {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] + {"matrix": [6, 0], "label": "Ctrl", "x": 0, "y": 6}, + {"matrix": [6, 1], "label": "Win", "x": 1, "y": 6}, + {"matrix": [6, 2], "label": "Alt", "x": 2, "y": 6}, + {"matrix": [6, 6], "label": "Space", "x": 3, "y": 6, "w": 6}, + {"matrix": [6, 9], "label": "AltGr", "x": 9, "y": 6}, + {"matrix": [6, 10], "label": "Win", "x": 10, "y": 6}, + {"matrix": [6, 11], "label": "Menu", "x": 11, "y": 6}, + {"matrix": [6, 12], "label": "Ctrl", "x": 12, "y": 6}, + {"matrix": [6, 13], "label": "left", "x": 13.25, "y": 6.25}, + {"matrix": [6, 14], "label": "down", "x": 14.25, "y": 6.25}, + {"matrix": [6, 15], "label": "right", "x": 15.25, "y": 6.25}, + {"matrix": [6, 16], "label": "0", "x": 16.5, "y": 6}, + {"matrix": [6, 17], "label": ".", "x": 17.5, "y": 6}] }, "LAYOUT_1800_iso_6u": { "layout": [ - {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix": [0, 0], "label": "Esc", "x": 0, "y": 0}, + {"matrix": [0, 1], "label": "F1", "x": 1.25, "y": 0}, + {"matrix": [0, 2], "label": "F2", "x": 2.25, "y": 0}, + {"matrix": [0, 3], "label": "F3", "x": 3.25, "y": 0}, + {"matrix": [0, 4], "label": "F4", "x": 4.25, "y": 0}, + {"matrix": [0, 6], "label": "F5", "x": 5.5, "y": 0}, + {"matrix": [0, 7], "label": "F6", "x": 6.5, "y": 0}, + {"matrix": [0, 8], "label": "F7", "x": 7.5, "y": 0}, + {"matrix": [0, 9], "label": "F8", "x": 8.5, "y": 0}, + {"matrix": [0, 10], "label": "F9", "x": 9.75, "y": 0}, + {"matrix": [0, 11], "label": "F10", "x": 10.75, "y": 0}, + {"matrix": [0, 12], "label": "F11", "x": 11.75, "y": 0}, + {"matrix": [0, 13], "label": "F12", "x": 12.75, "y": 0}, + {"matrix": [0, 15], "label": "Insert", "x": 15.5, "y": 0}, + {"matrix": [0, 16], "label": "Home", "x": 16.5, "y": 0}, + {"matrix": [0, 17], "label": "PgUp", "x": 17.5, "y": 0}, + {"matrix": [0, 18], "label": "PrtSc", "x": 18.5, "y": 0}, - {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix": [1, 15], "label": "Delete", "x": 15.5, "y": 1}, + {"matrix": [1, 16], "label": "End", "x": 16.5, "y": 1}, + {"matrix": [1, 17], "label": "PgDn", "x": 17.5, "y": 1}, + {"matrix": [1, 18], "label": "Scroll Lock", "x": 18.5, "y": 1}, - {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, - {"matrix":[2, 1], "label":"1", "x":1, "y":2}, - {"matrix":[2, 2], "label":"2", "x":2, "y":2}, - {"matrix":[2, 3], "label":"3", "x":3, "y":2}, - {"matrix":[2, 4], "label":"4", "x":4, "y":2}, - {"matrix":[2, 5], "label":"5", "x":5, "y":2}, - {"matrix":[2, 6], "label":"6", "x":6, "y":2}, - {"matrix":[2, 7], "label":"7", "x":7, "y":2}, - {"matrix":[2, 8], "label":"8", "x":8, "y":2}, - {"matrix":[2, 9], "label":"9", "x":9, "y":2}, - {"matrix":[2, 10], "label":"0", "x":10, "y":2}, - {"matrix":[2, 11], "label":"-", "x":11, "y":2}, - {"matrix":[2, 12], "label":"=", "x":12, "y":2}, - {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, + {"matrix": [2, 0], "label": "tild", "x": 0, "y": 2}, + {"matrix": [2, 1], "label": "1", "x": 1, "y": 2}, + {"matrix": [2, 2], "label": "2", "x": 2, "y": 2}, + {"matrix": [2, 3], "label": "3", "x": 3, "y": 2}, + {"matrix": [2, 4], "label": "4", "x": 4, "y": 2}, + {"matrix": [2, 5], "label": "5", "x": 5, "y": 2}, + {"matrix": [2, 6], "label": "6", "x": 6, "y": 2}, + {"matrix": [2, 7], "label": "7", "x": 7, "y": 2}, + {"matrix": [2, 8], "label": "8", "x": 8, "y": 2}, + {"matrix": [2, 9], "label": "9", "x": 9, "y": 2}, + {"matrix": [2, 10], "label": "0", "x": 10, "y": 2}, + {"matrix": [2, 11], "label": "-", "x": 11, "y": 2}, + {"matrix": [2, 12], "label": "=", "x": 12, "y": 2}, + {"matrix": [2, 14], "label": "Backspace", "x": 13, "y": 2, "w": 2}, + {"matrix": [2, 15], "label": "Num Lock", "x": 15.5, "y": 2}, + {"matrix": [2, 16], "label": "/", "x": 16.5, "y": 2}, + {"matrix": [2, 17], "label": "*", "x": 17.5, "y": 2}, + {"matrix": [2, 18], "label": "Pause", "x": 18.5, "y": 2}, - {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, + {"matrix": [3, 0], "label": "Tab", "x": 0, "y": 3, "w": 1.5}, + {"matrix": [3, 2], "label": "Q", "x": 1.5, "y": 3}, + {"matrix": [3, 3], "label": "W", "x": 2.5, "y": 3}, + {"matrix": [3, 4], "label": "E", "x": 3.5, "y": 3}, + {"matrix": [3, 5], "label": "R", "x": 4.5, "y": 3}, + {"matrix": [3, 6], "label": "T", "x": 5.5, "y": 3}, + {"matrix": [3, 7], "label": "Y", "x": 6.5, "y": 3}, + {"matrix": [3, 8], "label": "U", "x": 7.5, "y": 3}, + {"matrix": [3, 9], "label": "I", "x": 8.5, "y": 3}, + {"matrix": [3, 10], "label": "O", "x": 9.5, "y": 3}, + {"matrix": [3, 11], "label": "P", "x": 10.5, "y": 3}, + {"matrix": [3, 12], "label": "[", "x": 11.5, "y": 3}, + {"matrix": [3, 13], "label": "]", "x": 12.5, "y": 3}, + {"matrix": [3, 15], "label": "7", "x": 15.5, "y": 3}, + {"matrix": [3, 16], "label": "8", "x": 16.5, "y": 3}, + {"matrix": [3, 17], "label": "9", "x": 17.5, "y": 3}, + {"matrix": [3, 18], "label": "-", "x": 18.5, "y": 3}, - {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, - {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4, 13], "label":"#", "x":12.75, "y":4}, - {"matrix":[4, 14], "label":"Enter", "x":13.75, "y":3, "w":1.25, "h":2}, - {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, + {"matrix": [4, 0], "label": "Caps Lock", "x": 0, "y": 4, "w": 1.75}, + {"matrix": [4, 2], "label": "A", "x": 1.75, "y": 4}, + {"matrix": [4, 3], "label": "S", "x": 2.75, "y": 4}, + {"matrix": [4, 4], "label": "D", "x": 3.75, "y": 4}, + {"matrix": [4, 5], "label": "F", "x": 4.75, "y": 4}, + {"matrix": [4, 6], "label": "G", "x": 5.75, "y": 4}, + {"matrix": [4, 7], "label": "H", "x": 6.75, "y": 4}, + {"matrix": [4, 8], "label": "J", "x": 7.75, "y": 4}, + {"matrix": [4, 9], "label": "K", "x": 8.75, "y": 4}, + {"matrix": [4, 10], "label": "L", "x": 9.75, "y": 4}, + {"matrix": [4, 11], "label": ";", "x": 10.75, "y": 4}, + {"matrix": [4, 12], "label": "'", "x": 11.75, "y": 4}, + {"matrix": [4, 13], "label": "#", "x": 12.75, "y": 4}, + {"matrix": [4, 14], "label": "Enter", "x": 13.75, "y": 3, "w": 1.25, "h": 2}, + {"matrix": [4, 15], "label": "4", "x": 15.5, "y": 4}, + {"matrix": [4, 16], "label": "5", "x": 16.5, "y": 4}, + {"matrix": [4, 17], "label": "6", "x": 17.5, "y": 4}, + {"matrix": [4, 18], "label": "+", "x": 18.5, "y": 4}, - {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":1.25}, - {"matrix":[5, 1], "label":"|", "x":1.25, "y":5}, - {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, - {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix": [5, 0], "label": "Shift", "x": 0, "y": 5, "w": 1.25}, + {"matrix": [5, 1], "label": "|", "x": 1.25, "y": 5}, + {"matrix": [5, 2], "label": "Z", "x": 2.25, "y": 5}, + {"matrix": [5, 3], "label": "X", "x": 3.25, "y": 5}, + {"matrix": [5, 4], "label": "C", "x": 4.25, "y": 5}, + {"matrix": [5, 5], "label": "V", "x": 5.25, "y": 5}, + {"matrix": [5, 6], "label": "B", "x": 6.25, "y": 5}, + {"matrix": [5, 7], "label": "N", "x": 7.25, "y": 5}, + {"matrix": [5, 8], "label": "M", "x": 8.25, "y": 5}, + {"matrix": [5, 9], "label": "<", "x": 9.25, "y": 5}, + {"matrix": [5, 10], "label": ">", "x": 10.25, "y": 5}, + {"matrix": [5, 11], "label": "?", "x": 11.25, "y": 5}, + {"matrix": [5, 13], "label": "Shift", "x": 12.25, "y": 5, "w": 1.75}, + {"matrix": [5, 14], "label": "up", "x": 14.25, "y": 5.25}, + {"matrix": [5, 15], "label": "1", "x": 15.5, "y": 5}, + {"matrix": [5, 16], "label": "2", "x": 16.5, "y": 5}, + {"matrix": [5, 17], "label": "3", "x": 17.5, "y": 5}, + {"matrix": [5, 18], "label": "Enter", "x": 18.5, "y": 5, "h": 2}, - {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6}, - {"matrix":[6, 1], "label":"Win", "x":1, "y":6}, - {"matrix":[6, 2], "label":"Alt", "x":2, "y":6}, - {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":6}, - {"matrix":[6, 9], "label":"AltGr", "x":9, "y":6}, - {"matrix":[6, 10], "label":"Win", "x":10, "y":6}, - {"matrix":[6, 11], "label":"Menu", "x":11, "y":6}, - {"matrix":[6, 12], "label":"Ctrl", "x":12, "y":6}, - {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] + {"matrix": [6, 0], "label": "Ctrl", "x": 0, "y": 6}, + {"matrix": [6, 1], "label": "Win", "x": 1, "y": 6}, + {"matrix": [6, 2], "label": "Alt", "x": 2, "y": 6}, + {"matrix": [6, 6], "label": "Space", "x": 3, "y": 6, "w": 6}, + {"matrix": [6, 9], "label": "AltGr", "x": 9, "y": 6}, + {"matrix": [6, 10], "label": "Win", "x": 10, "y": 6}, + {"matrix": [6, 11], "label": "Menu", "x": 11, "y": 6}, + {"matrix": [6, 12], "label": "Ctrl", "x": 12, "y": 6}, + {"matrix": [6, 13], "label": "left", "x": 13.25, "y": 6.25}, + {"matrix": [6, 14], "label": "down", "x": 14.25, "y": 6.25}, + {"matrix": [6, 15], "label": "right", "x": 15.25, "y": 6.25}, + {"matrix": [6, 16], "label": "0", "x": 16.5, "y": 6}, + {"matrix": [6, 17], "label": ".", "x": 17.5, "y": 6}] }, "LAYOUT_1800_iso_7u": { "layout": [ - {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix": [0, 0], "label": "Esc", "x": 0, "y": 0}, + {"matrix": [0, 1], "label": "F1", "x": 1.25, "y": 0}, + {"matrix": [0, 2], "label": "F2", "x": 2.25, "y": 0}, + {"matrix": [0, 3], "label": "F3", "x": 3.25, "y": 0}, + {"matrix": [0, 4], "label": "F4", "x": 4.25, "y": 0}, + {"matrix": [0, 6], "label": "F5", "x": 5.5, "y": 0}, + {"matrix": [0, 7], "label": "F6", "x": 6.5, "y": 0}, + {"matrix": [0, 8], "label": "F7", "x": 7.5, "y": 0}, + {"matrix": [0, 9], "label": "F8", "x": 8.5, "y": 0}, + {"matrix": [0, 10], "label": "F9", "x": 9.75, "y": 0}, + {"matrix": [0, 11], "label": "F10", "x": 10.75, "y": 0}, + {"matrix": [0, 12], "label": "F11", "x": 11.75, "y": 0}, + {"matrix": [0, 13], "label": "F12", "x": 12.75, "y": 0}, + {"matrix": [0, 15], "label": "Insert", "x": 15.5, "y": 0}, + {"matrix": [0, 16], "label": "Home", "x": 16.5, "y": 0}, + {"matrix": [0, 17], "label": "PgUp", "x": 17.5, "y": 0}, + {"matrix": [0, 18], "label": "PrtSc", "x": 18.5, "y": 0}, - {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix": [1, 15], "label": "Delete", "x": 15.5, "y": 1}, + {"matrix": [1, 16], "label": "End", "x": 16.5, "y": 1}, + {"matrix": [1, 17], "label": "PgDn", "x": 17.5, "y": 1}, + {"matrix": [1, 18], "label": "Scroll Lock", "x": 18.5, "y": 1}, - {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, - {"matrix":[2, 1], "label":"1", "x":1, "y":2}, - {"matrix":[2, 2], "label":"2", "x":2, "y":2}, - {"matrix":[2, 3], "label":"3", "x":3, "y":2}, - {"matrix":[2, 4], "label":"4", "x":4, "y":2}, - {"matrix":[2, 5], "label":"5", "x":5, "y":2}, - {"matrix":[2, 6], "label":"6", "x":6, "y":2}, - {"matrix":[2, 7], "label":"7", "x":7, "y":2}, - {"matrix":[2, 8], "label":"8", "x":8, "y":2}, - {"matrix":[2, 9], "label":"9", "x":9, "y":2}, - {"matrix":[2, 10], "label":"0", "x":10, "y":2}, - {"matrix":[2, 11], "label":"-", "x":11, "y":2}, - {"matrix":[2, 12], "label":"=", "x":12, "y":2}, - {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, + {"matrix": [2, 0], "label": "tild", "x": 0, "y": 2}, + {"matrix": [2, 1], "label": "1", "x": 1, "y": 2}, + {"matrix": [2, 2], "label": "2", "x": 2, "y": 2}, + {"matrix": [2, 3], "label": "3", "x": 3, "y": 2}, + {"matrix": [2, 4], "label": "4", "x": 4, "y": 2}, + {"matrix": [2, 5], "label": "5", "x": 5, "y": 2}, + {"matrix": [2, 6], "label": "6", "x": 6, "y": 2}, + {"matrix": [2, 7], "label": "7", "x": 7, "y": 2}, + {"matrix": [2, 8], "label": "8", "x": 8, "y": 2}, + {"matrix": [2, 9], "label": "9", "x": 9, "y": 2}, + {"matrix": [2, 10], "label": "0", "x": 10, "y": 2}, + {"matrix": [2, 11], "label": "-", "x": 11, "y": 2}, + {"matrix": [2, 12], "label": "=", "x": 12, "y": 2}, + {"matrix": [2, 14], "label": "Backspace", "x": 13, "y": 2, "w": 2}, + {"matrix": [2, 15], "label": "Num Lock", "x": 15.5, "y": 2}, + {"matrix": [2, 16], "label": "/", "x": 16.5, "y": 2}, + {"matrix": [2, 17], "label": "*", "x": 17.5, "y": 2}, + {"matrix": [2, 18], "label": "Pause", "x": 18.5, "y": 2}, - {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, + {"matrix": [3, 0], "label": "Tab", "x": 0, "y": 3, "w": 1.5}, + {"matrix": [3, 2], "label": "Q", "x": 1.5, "y": 3}, + {"matrix": [3, 3], "label": "W", "x": 2.5, "y": 3}, + {"matrix": [3, 4], "label": "E", "x": 3.5, "y": 3}, + {"matrix": [3, 5], "label": "R", "x": 4.5, "y": 3}, + {"matrix": [3, 6], "label": "T", "x": 5.5, "y": 3}, + {"matrix": [3, 7], "label": "Y", "x": 6.5, "y": 3}, + {"matrix": [3, 8], "label": "U", "x": 7.5, "y": 3}, + {"matrix": [3, 9], "label": "I", "x": 8.5, "y": 3}, + {"matrix": [3, 10], "label": "O", "x": 9.5, "y": 3}, + {"matrix": [3, 11], "label": "P", "x": 10.5, "y": 3}, + {"matrix": [3, 12], "label": "[", "x": 11.5, "y": 3}, + {"matrix": [3, 13], "label": "]", "x": 12.5, "y": 3}, + {"matrix": [3, 15], "label": "7", "x": 15.5, "y": 3}, + {"matrix": [3, 16], "label": "8", "x": 16.5, "y": 3}, + {"matrix": [3, 17], "label": "9", "x": 17.5, "y": 3}, + {"matrix": [3, 18], "label": "-", "x": 18.5, "y": 3}, - {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, - {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4, 13], "label":"#", "x":12.75, "y":4}, - {"matrix":[4, 14], "label":"Enter", "x":13.75, "y":3, "w":1.25, "h":2}, - {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, + {"matrix": [4, 0], "label": "Caps Lock", "x": 0, "y": 4, "w": 1.75}, + {"matrix": [4, 2], "label": "A", "x": 1.75, "y": 4}, + {"matrix": [4, 3], "label": "S", "x": 2.75, "y": 4}, + {"matrix": [4, 4], "label": "D", "x": 3.75, "y": 4}, + {"matrix": [4, 5], "label": "F", "x": 4.75, "y": 4}, + {"matrix": [4, 6], "label": "G", "x": 5.75, "y": 4}, + {"matrix": [4, 7], "label": "H", "x": 6.75, "y": 4}, + {"matrix": [4, 8], "label": "J", "x": 7.75, "y": 4}, + {"matrix": [4, 9], "label": "K", "x": 8.75, "y": 4}, + {"matrix": [4, 10], "label": "L", "x": 9.75, "y": 4}, + {"matrix": [4, 11], "label": ";", "x": 10.75, "y": 4}, + {"matrix": [4, 12], "label": "'", "x": 11.75, "y": 4}, + {"matrix": [4, 13], "label": "#", "x": 12.75, "y": 4}, + {"matrix": [4, 14], "label": "Enter", "x": 13.75, "y": 3, "w": 1.25, "h": 2}, + {"matrix": [4, 15], "label": "4", "x": 15.5, "y": 4}, + {"matrix": [4, 16], "label": "5", "x": 16.5, "y": 4}, + {"matrix": [4, 17], "label": "6", "x": 17.5, "y": 4}, + {"matrix": [4, 18], "label": "+", "x": 18.5, "y": 4}, - {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":1.25}, - {"matrix":[5, 1], "label":"|", "x":1.25, "y":5}, - {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, - {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix": [5, 0], "label": "Shift", "x": 0, "y": 5, "w": 1.25}, + {"matrix": [5, 1], "label": "|", "x": 1.25, "y": 5}, + {"matrix": [5, 2], "label": "Z", "x": 2.25, "y": 5}, + {"matrix": [5, 3], "label": "X", "x": 3.25, "y": 5}, + {"matrix": [5, 4], "label": "C", "x": 4.25, "y": 5}, + {"matrix": [5, 5], "label": "V", "x": 5.25, "y": 5}, + {"matrix": [5, 6], "label": "B", "x": 6.25, "y": 5}, + {"matrix": [5, 7], "label": "N", "x": 7.25, "y": 5}, + {"matrix": [5, 8], "label": "M", "x": 8.25, "y": 5}, + {"matrix": [5, 9], "label": "<", "x": 9.25, "y": 5}, + {"matrix": [5, 10], "label": ">", "x": 10.25, "y": 5}, + {"matrix": [5, 11], "label": "?", "x": 11.25, "y": 5}, + {"matrix": [5, 13], "label": "Shift", "x": 12.25, "y": 5, "w": 1.75}, + {"matrix": [5, 14], "label": "up", "x": 14.25, "y": 5.25}, + {"matrix": [5, 15], "label": "1", "x": 15.5, "y": 5}, + {"matrix": [5, 16], "label": "2", "x": 16.5, "y": 5}, + {"matrix": [5, 17], "label": "3", "x": 17.5, "y": 5}, + {"matrix": [5, 18], "label": "Enter", "x": 18.5, "y": 5, "h": 2}, - {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6, "w":1.5}, - {"matrix":[6, 2], "label":"Alt", "x":1.5, "y":6, "w":1.5}, - {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":7}, - {"matrix":[6, 9], "label":"AltGr", "x":10, "y":6, "w":1.5}, - {"matrix":[6, 12], "label":"Ctrl", "x":11.5, "y":6, "w":1.5}, - {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] + {"matrix": [6, 0], "label": "Ctrl", "x": 0, "y": 6, "w": 1.5}, + {"matrix": [6, 2], "label": "Alt", "x": 1.5, "y": 6, "w": 1.5}, + {"matrix": [6, 6], "label": "Space", "x": 3, "y": 6, "w": 7}, + {"matrix": [6, 9], "label": "AltGr", "x": 10, "y": 6, "w": 1.5}, + {"matrix": [6, 12], "label": "Ctrl", "x": 11.5, "y": 6, "w": 1.5}, + {"matrix": [6, 13], "label": "left", "x": 13.25, "y": 6.25}, + {"matrix": [6, 14], "label": "down", "x": 14.25, "y": 6.25}, + {"matrix": [6, 15], "label": "right", "x": 15.25, "y": 6.25}, + {"matrix": [6, 16], "label": "0", "x": 16.5, "y": 6}, + {"matrix": [6, 17], "label": ".", "x": 17.5, "y": 6}] }, "LAYOUT_1800_ansi_6u": { "layout": [ - {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix": [0, 0], "label": "Esc", "x": 0, "y": 0}, + {"matrix": [0, 1], "label": "F1", "x": 1.25, "y": 0}, + {"matrix": [0, 2], "label": "F2", "x": 2.25, "y": 0}, + {"matrix": [0, 3], "label": "F3", "x": 3.25, "y": 0}, + {"matrix": [0, 4], "label": "F4", "x": 4.25, "y": 0}, + {"matrix": [0, 6], "label": "F5", "x": 5.5, "y": 0}, + {"matrix": [0, 7], "label": "F6", "x": 6.5, "y": 0}, + {"matrix": [0, 8], "label": "F7", "x": 7.5, "y": 0}, + {"matrix": [0, 9], "label": "F8", "x": 8.5, "y": 0}, + {"matrix": [0, 10], "label": "F9", "x": 9.75, "y": 0}, + {"matrix": [0, 11], "label": "F10", "x": 10.75, "y": 0}, + {"matrix": [0, 12], "label": "F11", "x": 11.75, "y": 0}, + {"matrix": [0, 13], "label": "F12", "x": 12.75, "y": 0}, + {"matrix": [0, 15], "label": "Insert", "x": 15.5, "y": 0}, + {"matrix": [0, 16], "label": "Home", "x": 16.5, "y": 0}, + {"matrix": [0, 17], "label": "PgUp", "x": 17.5, "y": 0}, + {"matrix": [0, 18], "label": "PrtSc", "x": 18.5, "y": 0}, - {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix": [1, 15], "label": "Delete", "x": 15.5, "y": 1}, + {"matrix": [1, 16], "label": "End", "x": 16.5, "y": 1}, + {"matrix": [1, 17], "label": "PgDn", "x": 17.5, "y": 1}, + {"matrix": [1, 18], "label": "Scroll Lock", "x": 18.5, "y": 1}, - {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, - {"matrix":[2, 1], "label":"1", "x":1, "y":2}, - {"matrix":[2, 2], "label":"2", "x":2, "y":2}, - {"matrix":[2, 3], "label":"3", "x":3, "y":2}, - {"matrix":[2, 4], "label":"4", "x":4, "y":2}, - {"matrix":[2, 5], "label":"5", "x":5, "y":2}, - {"matrix":[2, 6], "label":"6", "x":6, "y":2}, - {"matrix":[2, 7], "label":"7", "x":7, "y":2}, - {"matrix":[2, 8], "label":"8", "x":8, "y":2}, - {"matrix":[2, 9], "label":"9", "x":9, "y":2}, - {"matrix":[2, 10], "label":"0", "x":10, "y":2}, - {"matrix":[2, 11], "label":"-", "x":11, "y":2}, - {"matrix":[2, 12], "label":"=", "x":12, "y":2}, - {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, + {"matrix": [2, 0], "label": "tild", "x": 0, "y": 2}, + {"matrix": [2, 1], "label": "1", "x": 1, "y": 2}, + {"matrix": [2, 2], "label": "2", "x": 2, "y": 2}, + {"matrix": [2, 3], "label": "3", "x": 3, "y": 2}, + {"matrix": [2, 4], "label": "4", "x": 4, "y": 2}, + {"matrix": [2, 5], "label": "5", "x": 5, "y": 2}, + {"matrix": [2, 6], "label": "6", "x": 6, "y": 2}, + {"matrix": [2, 7], "label": "7", "x": 7, "y": 2}, + {"matrix": [2, 8], "label": "8", "x": 8, "y": 2}, + {"matrix": [2, 9], "label": "9", "x": 9, "y": 2}, + {"matrix": [2, 10], "label": "0", "x": 10, "y": 2}, + {"matrix": [2, 11], "label": "-", "x": 11, "y": 2}, + {"matrix": [2, 12], "label": "=", "x": 12, "y": 2}, + {"matrix": [2, 14], "label": "Backspace", "x": 13, "y": 2, "w": 2}, + {"matrix": [2, 15], "label": "Num Lock", "x": 15.5, "y": 2}, + {"matrix": [2, 16], "label": "/", "x": 16.5, "y": 2}, + {"matrix": [2, 17], "label": "*", "x": 17.5, "y": 2}, + {"matrix": [2, 18], "label": "Pause", "x": 18.5, "y": 2}, - {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3, 14], "label":"|", "x":13.5, "y":3, "w":1.5}, - {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, + {"matrix": [3, 0], "label": "Tab", "x": 0, "y": 3, "w": 1.5}, + {"matrix": [3, 2], "label": "Q", "x": 1.5, "y": 3}, + {"matrix": [3, 3], "label": "W", "x": 2.5, "y": 3}, + {"matrix": [3, 4], "label": "E", "x": 3.5, "y": 3}, + {"matrix": [3, 5], "label": "R", "x": 4.5, "y": 3}, + {"matrix": [3, 6], "label": "T", "x": 5.5, "y": 3}, + {"matrix": [3, 7], "label": "Y", "x": 6.5, "y": 3}, + {"matrix": [3, 8], "label": "U", "x": 7.5, "y": 3}, + {"matrix": [3, 9], "label": "I", "x": 8.5, "y": 3}, + {"matrix": [3, 10], "label": "O", "x": 9.5, "y": 3}, + {"matrix": [3, 11], "label": "P", "x": 10.5, "y": 3}, + {"matrix": [3, 12], "label": "[", "x": 11.5, "y": 3}, + {"matrix": [3, 13], "label": "]", "x": 12.5, "y": 3}, + {"matrix": [3, 14], "label": "|", "x": 13.5, "y": 3, "w": 1.5}, + {"matrix": [3, 15], "label": "7", "x": 15.5, "y": 3}, + {"matrix": [3, 16], "label": "8", "x": 16.5, "y": 3}, + {"matrix": [3, 17], "label": "9", "x": 17.5, "y": 3}, + {"matrix": [3, 18], "label": "-", "x": 18.5, "y": 3}, - {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, - {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4, 14], "label":"Enter", "x":12.75, "y":3, "w":2.25}, - {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, + {"matrix": [4, 0], "label": "Caps Lock", "x": 0, "y": 4, "w": 1.75}, + {"matrix": [4, 2], "label": "A", "x": 1.75, "y": 4}, + {"matrix": [4, 3], "label": "S", "x": 2.75, "y": 4}, + {"matrix": [4, 4], "label": "D", "x": 3.75, "y": 4}, + {"matrix": [4, 5], "label": "F", "x": 4.75, "y": 4}, + {"matrix": [4, 6], "label": "G", "x": 5.75, "y": 4}, + {"matrix": [4, 7], "label": "H", "x": 6.75, "y": 4}, + {"matrix": [4, 8], "label": "J", "x": 7.75, "y": 4}, + {"matrix": [4, 9], "label": "K", "x": 8.75, "y": 4}, + {"matrix": [4, 10], "label": "L", "x": 9.75, "y": 4}, + {"matrix": [4, 11], "label": ";", "x": 10.75, "y": 4}, + {"matrix": [4, 12], "label": "'", "x": 11.75, "y": 4}, + {"matrix": [4, 14], "label": "Enter", "x": 12.75, "y": 3, "w": 2.25}, + {"matrix": [4, 15], "label": "4", "x": 15.5, "y": 4}, + {"matrix": [4, 16], "label": "5", "x": 16.5, "y": 4}, + {"matrix": [4, 17], "label": "6", "x": 17.5, "y": 4}, + {"matrix": [4, 18], "label": "+", "x": 18.5, "y": 4}, - {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":2.25}, - {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, - {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix": [5, 0], "label": "Shift", "x": 0, "y": 5, "w": 2.25}, + {"matrix": [5, 2], "label": "Z", "x": 2.25, "y": 5}, + {"matrix": [5, 3], "label": "X", "x": 3.25, "y": 5}, + {"matrix": [5, 4], "label": "C", "x": 4.25, "y": 5}, + {"matrix": [5, 5], "label": "V", "x": 5.25, "y": 5}, + {"matrix": [5, 6], "label": "B", "x": 6.25, "y": 5}, + {"matrix": [5, 7], "label": "N", "x": 7.25, "y": 5}, + {"matrix": [5, 8], "label": "M", "x": 8.25, "y": 5}, + {"matrix": [5, 9], "label": "<", "x": 9.25, "y": 5}, + {"matrix": [5, 10], "label": ">", "x": 10.25, "y": 5}, + {"matrix": [5, 11], "label": "?", "x": 11.25, "y": 5}, + {"matrix": [5, 13], "label": "Shift", "x": 12.25, "y": 5, "w": 1.75}, + {"matrix": [5, 14], "label": "up", "x": 14.25, "y": 5.25}, + {"matrix": [5, 15], "label": "1", "x": 15.5, "y": 5}, + {"matrix": [5, 16], "label": "2", "x": 16.5, "y": 5}, + {"matrix": [5, 17], "label": "3", "x": 17.5, "y": 5}, + {"matrix": [5, 18], "label": "Enter", "x": 18.5, "y": 5, "h": 2}, - {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6}, - {"matrix":[6, 1], "label":"Win", "x":1, "y":6}, - {"matrix":[6, 2], "label":"Alt", "x":2, "y":6}, - {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":6}, - {"matrix":[6, 9], "label":"AltGr", "x":9, "y":6}, - {"matrix":[6, 10], "label":"Win", "x":10, "y":6}, - {"matrix":[6, 11], "label":"Menu", "x":11, "y":6}, - {"matrix":[6, 12], "label":"Ctrl", "x":12, "y":6}, - {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] + {"matrix": [6, 0], "label": "Ctrl", "x": 0, "y": 6}, + {"matrix": [6, 1], "label": "Win", "x": 1, "y": 6}, + {"matrix": [6, 2], "label": "Alt", "x": 2, "y": 6}, + {"matrix": [6, 6], "label": "Space", "x": 3, "y": 6, "w": 6}, + {"matrix": [6, 9], "label": "AltGr", "x": 9, "y": 6}, + {"matrix": [6, 10], "label": "Win", "x": 10, "y": 6}, + {"matrix": [6, 11], "label": "Menu", "x": 11, "y": 6}, + {"matrix": [6, 12], "label": "Ctrl", "x": 12, "y": 6}, + {"matrix": [6, 13], "label": "left", "x": 13.25, "y": 6.25}, + {"matrix": [6, 14], "label": "down", "x": 14.25, "y": 6.25}, + {"matrix": [6, 15], "label": "right", "x": 15.25, "y": 6.25}, + {"matrix": [6, 16], "label": "0", "x": 16.5, "y": 6}, + {"matrix": [6, 17], "label": ".", "x": 17.5, "y": 6}] }, "LAYOUT_1800_ansi_7u": { "layout": [ - {"matrix":[0, 0], "label":"Esc", "x":0, "y":0}, - {"matrix":[0, 1], "label":"F1", "x":1.25, "y":0}, - {"matrix":[0, 2], "label":"F2", "x":2.25, "y":0}, - {"matrix":[0, 3], "label":"F3", "x":3.25, "y":0}, - {"matrix":[0, 4], "label":"F4", "x":4.25, "y":0}, - {"matrix":[0, 6], "label":"F5", "x":5.5, "y":0}, - {"matrix":[0, 7], "label":"F6", "x":6.5, "y":0}, - {"matrix":[0, 8], "label":"F7", "x":7.5, "y":0}, - {"matrix":[0, 9], "label":"F8", "x":8.5, "y":0}, - {"matrix":[0, 10], "label":"F9", "x":9.75, "y":0}, - {"matrix":[0, 11], "label":"F10", "x":10.75, "y":0}, - {"matrix":[0, 12], "label":"F11", "x":11.75, "y":0}, - {"matrix":[0, 13], "label":"F12", "x":12.75, "y":0}, - {"matrix":[0, 15], "label":"Insert", "x":15.5, "y":0}, - {"matrix":[0, 16], "label":"Home", "x":16.5, "y":0}, - {"matrix":[0, 17], "label":"PgUp", "x":17.5, "y":0}, - {"matrix":[0, 18], "label":"PrtSc", "x":18.5, "y":0}, + {"matrix": [0, 0], "label": "Esc", "x": 0, "y": 0}, + {"matrix": [0, 1], "label": "F1", "x": 1.25, "y": 0}, + {"matrix": [0, 2], "label": "F2", "x": 2.25, "y": 0}, + {"matrix": [0, 3], "label": "F3", "x": 3.25, "y": 0}, + {"matrix": [0, 4], "label": "F4", "x": 4.25, "y": 0}, + {"matrix": [0, 6], "label": "F5", "x": 5.5, "y": 0}, + {"matrix": [0, 7], "label": "F6", "x": 6.5, "y": 0}, + {"matrix": [0, 8], "label": "F7", "x": 7.5, "y": 0}, + {"matrix": [0, 9], "label": "F8", "x": 8.5, "y": 0}, + {"matrix": [0, 10], "label": "F9", "x": 9.75, "y": 0}, + {"matrix": [0, 11], "label": "F10", "x": 10.75, "y": 0}, + {"matrix": [0, 12], "label": "F11", "x": 11.75, "y": 0}, + {"matrix": [0, 13], "label": "F12", "x": 12.75, "y": 0}, + {"matrix": [0, 15], "label": "Insert", "x": 15.5, "y": 0}, + {"matrix": [0, 16], "label": "Home", "x": 16.5, "y": 0}, + {"matrix": [0, 17], "label": "PgUp", "x": 17.5, "y": 0}, + {"matrix": [0, 18], "label": "PrtSc", "x": 18.5, "y": 0}, - {"matrix":[1, 15], "label":"Delete", "x":15.5, "y":1}, - {"matrix":[1, 16], "label":"End", "x":16.5, "y":1}, - {"matrix":[1, 17], "label":"PgDn", "x":17.5, "y":1}, - {"matrix":[1, 18], "label":"Scroll Lock", "x":18.5, "y":1}, + {"matrix": [1, 15], "label": "Delete", "x": 15.5, "y": 1}, + {"matrix": [1, 16], "label": "End", "x": 16.5, "y": 1}, + {"matrix": [1, 17], "label": "PgDn", "x": 17.5, "y": 1}, + {"matrix": [1, 18], "label": "Scroll Lock", "x": 18.5, "y": 1}, - {"matrix":[2, 0], "label":"tild", "x":0, "y":2}, - {"matrix":[2, 1], "label":"1", "x":1, "y":2}, - {"matrix":[2, 2], "label":"2", "x":2, "y":2}, - {"matrix":[2, 3], "label":"3", "x":3, "y":2}, - {"matrix":[2, 4], "label":"4", "x":4, "y":2}, - {"matrix":[2, 5], "label":"5", "x":5, "y":2}, - {"matrix":[2, 6], "label":"6", "x":6, "y":2}, - {"matrix":[2, 7], "label":"7", "x":7, "y":2}, - {"matrix":[2, 8], "label":"8", "x":8, "y":2}, - {"matrix":[2, 9], "label":"9", "x":9, "y":2}, - {"matrix":[2, 10], "label":"0", "x":10, "y":2}, - {"matrix":[2, 11], "label":"-", "x":11, "y":2}, - {"matrix":[2, 12], "label":"=", "x":12, "y":2}, - {"matrix":[2, 14], "label":"Backspace", "x":13, "y":2, "w":2}, - {"matrix":[2, 15], "label":"Num Lock", "x":15.5, "y":2}, - {"matrix":[2, 16], "label":"/", "x":16.5, "y":2}, - {"matrix":[2, 17], "label":"*", "x":17.5, "y":2}, - {"matrix":[2, 18], "label":"Pause", "x":18.5, "y":2}, + {"matrix": [2, 0], "label": "tild", "x": 0, "y": 2}, + {"matrix": [2, 1], "label": "1", "x": 1, "y": 2}, + {"matrix": [2, 2], "label": "2", "x": 2, "y": 2}, + {"matrix": [2, 3], "label": "3", "x": 3, "y": 2}, + {"matrix": [2, 4], "label": "4", "x": 4, "y": 2}, + {"matrix": [2, 5], "label": "5", "x": 5, "y": 2}, + {"matrix": [2, 6], "label": "6", "x": 6, "y": 2}, + {"matrix": [2, 7], "label": "7", "x": 7, "y": 2}, + {"matrix": [2, 8], "label": "8", "x": 8, "y": 2}, + {"matrix": [2, 9], "label": "9", "x": 9, "y": 2}, + {"matrix": [2, 10], "label": "0", "x": 10, "y": 2}, + {"matrix": [2, 11], "label": "-", "x": 11, "y": 2}, + {"matrix": [2, 12], "label": "=", "x": 12, "y": 2}, + {"matrix": [2, 14], "label": "Backspace", "x": 13, "y": 2, "w": 2}, + {"matrix": [2, 15], "label": "Num Lock", "x": 15.5, "y": 2}, + {"matrix": [2, 16], "label": "/", "x": 16.5, "y": 2}, + {"matrix": [2, 17], "label": "*", "x": 17.5, "y": 2}, + {"matrix": [2, 18], "label": "Pause", "x": 18.5, "y": 2}, - {"matrix":[3, 0], "label":"Tab", "x":0, "y":3, "w":1.5}, - {"matrix":[3, 2], "label":"Q", "x":1.5, "y":3}, - {"matrix":[3, 3], "label":"W", "x":2.5, "y":3}, - {"matrix":[3, 4], "label":"E", "x":3.5, "y":3}, - {"matrix":[3, 5], "label":"R", "x":4.5, "y":3}, - {"matrix":[3, 6], "label":"T", "x":5.5, "y":3}, - {"matrix":[3, 7], "label":"Y", "x":6.5, "y":3}, - {"matrix":[3, 8], "label":"U", "x":7.5, "y":3}, - {"matrix":[3, 9], "label":"I", "x":8.5, "y":3}, - {"matrix":[3, 10], "label":"O", "x":9.5, "y":3}, - {"matrix":[3, 11], "label":"P", "x":10.5, "y":3}, - {"matrix":[3, 12], "label":"[", "x":11.5, "y":3}, - {"matrix":[3, 13], "label":"]", "x":12.5, "y":3}, - {"matrix":[3, 14], "label":"|", "x":13.5, "y":3, "w":1.5}, - {"matrix":[3, 15], "label":"7", "x":15.5, "y":3}, - {"matrix":[3, 16], "label":"8", "x":16.5, "y":3}, - {"matrix":[3, 17], "label":"9", "x":17.5, "y":3}, - {"matrix":[3, 18], "label":"-", "x":18.5, "y":3}, + {"matrix": [3, 0], "label": "Tab", "x": 0, "y": 3, "w": 1.5}, + {"matrix": [3, 2], "label": "Q", "x": 1.5, "y": 3}, + {"matrix": [3, 3], "label": "W", "x": 2.5, "y": 3}, + {"matrix": [3, 4], "label": "E", "x": 3.5, "y": 3}, + {"matrix": [3, 5], "label": "R", "x": 4.5, "y": 3}, + {"matrix": [3, 6], "label": "T", "x": 5.5, "y": 3}, + {"matrix": [3, 7], "label": "Y", "x": 6.5, "y": 3}, + {"matrix": [3, 8], "label": "U", "x": 7.5, "y": 3}, + {"matrix": [3, 9], "label": "I", "x": 8.5, "y": 3}, + {"matrix": [3, 10], "label": "O", "x": 9.5, "y": 3}, + {"matrix": [3, 11], "label": "P", "x": 10.5, "y": 3}, + {"matrix": [3, 12], "label": "[", "x": 11.5, "y": 3}, + {"matrix": [3, 13], "label": "]", "x": 12.5, "y": 3}, + {"matrix": [3, 14], "label": "|", "x": 13.5, "y": 3, "w": 1.5}, + {"matrix": [3, 15], "label": "7", "x": 15.5, "y": 3}, + {"matrix": [3, 16], "label": "8", "x": 16.5, "y": 3}, + {"matrix": [3, 17], "label": "9", "x": 17.5, "y": 3}, + {"matrix": [3, 18], "label": "-", "x": 18.5, "y": 3}, - {"matrix":[4, 0], "label":"Caps Lock", "x":0, "y":4, "w":1.75}, - {"matrix":[4, 2], "label":"A", "x":1.75, "y":4}, - {"matrix":[4, 3], "label":"S", "x":2.75, "y":4}, - {"matrix":[4, 4], "label":"D", "x":3.75, "y":4}, - {"matrix":[4, 5], "label":"F", "x":4.75, "y":4}, - {"matrix":[4, 6], "label":"G", "x":5.75, "y":4}, - {"matrix":[4, 7], "label":"H", "x":6.75, "y":4}, - {"matrix":[4, 8], "label":"J", "x":7.75, "y":4}, - {"matrix":[4, 9], "label":"K", "x":8.75, "y":4}, - {"matrix":[4, 10], "label":"L", "x":9.75, "y":4}, - {"matrix":[4, 11], "label":";", "x":10.75, "y":4}, - {"matrix":[4, 12], "label":"'", "x":11.75, "y":4}, - {"matrix":[4, 14], "label":"Enter", "x":12.75, "y":3, "w":2.25}, - {"matrix":[4, 15], "label":"4", "x":15.5, "y":4}, - {"matrix":[4, 16], "label":"5", "x":16.5, "y":4}, - {"matrix":[4, 17], "label":"6", "x":17.5, "y":4}, - {"matrix":[4, 18], "label":"+", "x":18.5, "y":4}, + {"matrix": [4, 0], "label": "Caps Lock", "x": 0, "y": 4, "w": 1.75}, + {"matrix": [4, 2], "label": "A", "x": 1.75, "y": 4}, + {"matrix": [4, 3], "label": "S", "x": 2.75, "y": 4}, + {"matrix": [4, 4], "label": "D", "x": 3.75, "y": 4}, + {"matrix": [4, 5], "label": "F", "x": 4.75, "y": 4}, + {"matrix": [4, 6], "label": "G", "x": 5.75, "y": 4}, + {"matrix": [4, 7], "label": "H", "x": 6.75, "y": 4}, + {"matrix": [4, 8], "label": "J", "x": 7.75, "y": 4}, + {"matrix": [4, 9], "label": "K", "x": 8.75, "y": 4}, + {"matrix": [4, 10], "label": "L", "x": 9.75, "y": 4}, + {"matrix": [4, 11], "label": ";", "x": 10.75, "y": 4}, + {"matrix": [4, 12], "label": "'", "x": 11.75, "y": 4}, + {"matrix": [4, 14], "label": "Enter", "x": 12.75, "y": 3, "w": 2.25}, + {"matrix": [4, 15], "label": "4", "x": 15.5, "y": 4}, + {"matrix": [4, 16], "label": "5", "x": 16.5, "y": 4}, + {"matrix": [4, 17], "label": "6", "x": 17.5, "y": 4}, + {"matrix": [4, 18], "label": "+", "x": 18.5, "y": 4}, - {"matrix":[5, 0], "label":"Shift", "x":0, "y":5, "w":2.25}, - {"matrix":[5, 2], "label":"Z", "x":2.25, "y":5}, - {"matrix":[5, 3], "label":"X", "x":3.25, "y":5}, - {"matrix":[5, 4], "label":"C", "x":4.25, "y":5}, - {"matrix":[5, 5], "label":"V", "x":5.25, "y":5}, - {"matrix":[5, 6], "label":"B", "x":6.25, "y":5}, - {"matrix":[5, 7], "label":"N", "x":7.25, "y":5}, - {"matrix":[5, 8], "label":"M", "x":8.25, "y":5}, - {"matrix":[5, 9], "label":"<", "x":9.25, "y":5}, - {"matrix":[5, 10], "label":">", "x":10.25, "y":5}, - {"matrix":[5, 11], "label":"?", "x":11.25, "y":5}, - {"matrix":[5, 13], "label":"Shift", "x":12.25, "y":5, "w":1.75}, - {"matrix":[5, 14], "label":"up", "x":14.25, "y":5.25}, - {"matrix":[5, 15], "label":"1", "x":15.5, "y":5}, - {"matrix":[5, 16], "label":"2", "x":16.5, "y":5}, - {"matrix":[5, 17], "label":"3", "x":17.5, "y":5}, - {"matrix":[5, 18], "label":"Enter", "x":18.5, "y":5, "h":2}, + {"matrix": [5, 0], "label": "Shift", "x": 0, "y": 5, "w": 2.25}, + {"matrix": [5, 2], "label": "Z", "x": 2.25, "y": 5}, + {"matrix": [5, 3], "label": "X", "x": 3.25, "y": 5}, + {"matrix": [5, 4], "label": "C", "x": 4.25, "y": 5}, + {"matrix": [5, 5], "label": "V", "x": 5.25, "y": 5}, + {"matrix": [5, 6], "label": "B", "x": 6.25, "y": 5}, + {"matrix": [5, 7], "label": "N", "x": 7.25, "y": 5}, + {"matrix": [5, 8], "label": "M", "x": 8.25, "y": 5}, + {"matrix": [5, 9], "label": "<", "x": 9.25, "y": 5}, + {"matrix": [5, 10], "label": ">", "x": 10.25, "y": 5}, + {"matrix": [5, 11], "label": "?", "x": 11.25, "y": 5}, + {"matrix": [5, 13], "label": "Shift", "x": 12.25, "y": 5, "w": 1.75}, + {"matrix": [5, 14], "label": "up", "x": 14.25, "y": 5.25}, + {"matrix": [5, 15], "label": "1", "x": 15.5, "y": 5}, + {"matrix": [5, 16], "label": "2", "x": 16.5, "y": 5}, + {"matrix": [5, 17], "label": "3", "x": 17.5, "y": 5}, + {"matrix": [5, 18], "label": "Enter", "x": 18.5, "y": 5, "h": 2}, - {"matrix":[6, 0], "label":"Ctrl", "x":0, "y":6, "w":1.5}, - {"matrix":[6, 2], "label":"Alt", "x":1.5, "y":6, "w":1.5}, - {"matrix":[6, 6], "label":"Space", "x":3, "y":6, "w":7}, - {"matrix":[6, 9], "label":"AltGr", "x":10, "y":6, "w":1.5}, - {"matrix":[6, 12], "label":"Ctrl", "x":11.5, "y":6, "w":1.5}, - {"matrix":[6, 13], "label":"left", "x":13.25, "y":6.25}, - {"matrix":[6, 14], "label":"down", "x":14.25, "y":6.25}, - {"matrix":[6, 15], "label":"right", "x":15.25, "y":6.25}, - {"matrix":[6, 16], "label":"0", "x":16.5, "y":6}, - {"matrix":[6, 17], "label":".", "x":17.5, "y":6}] + {"matrix": [6, 0], "label": "Ctrl", "x": 0, "y": 6, "w": 1.5}, + {"matrix": [6, 2], "label": "Alt", "x": 1.5, "y": 6, "w": 1.5}, + {"matrix": [6, 6], "label": "Space", "x": 3, "y": 6, "w": 7}, + {"matrix": [6, 9], "label": "AltGr", "x": 10, "y": 6, "w": 1.5}, + {"matrix": [6, 12], "label": "Ctrl", "x": 11.5, "y": 6, "w": 1.5}, + {"matrix": [6, 13], "label": "left", "x": 13.25, "y": 6.25}, + {"matrix": [6, 14], "label": "down", "x": 14.25, "y": 6.25}, + {"matrix": [6, 15], "label": "right", "x": 15.25, "y": 6.25}, + {"matrix": [6, 16], "label": "0", "x": 16.5, "y": 6}, + {"matrix": [6, 17], "label": ".", "x": 17.5, "y": 6}] } } } -- cgit v1.2.3 From c7c510f53f4b2a591de6f3b0227c08d47014aa3b Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Tue, 9 May 2023 01:05:29 +0100 Subject: Specifying the default board file is redundant (#20807) --- keyboards/ebastler/e80_1800/info.json | 1 - 1 file changed, 1 deletion(-) (limited to 'keyboards/ebastler') diff --git a/keyboards/ebastler/e80_1800/info.json b/keyboards/ebastler/e80_1800/info.json index b595c85118..c735adc927 100644 --- a/keyboards/ebastler/e80_1800/info.json +++ b/keyboards/ebastler/e80_1800/info.json @@ -5,7 +5,6 @@ "url": "https://mpwr.xyz/projects/e80-1800.html", "bootloader": "stm32-dfu", "processor": "STM32F072", - "board": "GENERIC_STM32_F072XB", "usb": { "vid": "0x6562", "pid": "0x1338", -- cgit v1.2.3