mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 19:40:29 +08:00
Whitefox refactor (#10175)
This commit is contained in:
parent
381884fa9b
commit
7437a38899
|
@ -15,42 +15,78 @@ You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CONFIG_H
|
#pragma once
|
||||||
#define CONFIG_H
|
|
||||||
|
|
||||||
/* USB Device descriptor parameter */
|
/* USB Device descriptor parameter */
|
||||||
#define VENDOR_ID 0x1c11
|
#define VENDOR_ID 0x1C11
|
||||||
#define PRODUCT_ID 0xb04d
|
#define PRODUCT_ID 0xB04D
|
||||||
#define DEVICE_VER 0x0001
|
#define DEVICE_VER 0x0001
|
||||||
#define MANUFACTURER Input Club
|
#define MANUFACTURER Input:Club
|
||||||
#define PRODUCT WhiteFox/QMK
|
#define PRODUCT WhiteFox (QMK)
|
||||||
|
|
||||||
/* key matrix size */
|
/* key matrix size */
|
||||||
#define MATRIX_ROWS 9
|
#define MATRIX_ROWS 8
|
||||||
#define MATRIX_COLS 8
|
#define MATRIX_COLS 9
|
||||||
|
|
||||||
/* number of backlight levels */
|
/*
|
||||||
#define BACKLIGHT_LEVELS 3
|
* Keyboard Matrix Assignments
|
||||||
|
*
|
||||||
|
* Change this to how you wired your keyboard
|
||||||
|
* COLS: AVR pins used for columns, left to right
|
||||||
|
* ROWS: AVR pins used for rows, top to bottom
|
||||||
|
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
||||||
|
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#define MATRIX_ROW_PINS { D0, D1, D4, D5, D6, D7, C1, C2 }
|
||||||
|
#define MATRIX_COL_PINS { B2, B3, B18, B19, C0, C8, C9, C10, C11 }
|
||||||
|
#define UNUSED_PINS
|
||||||
|
|
||||||
#define LED_BRIGHTNESS_LO 100
|
/* COL2ROW, ROW2COL */
|
||||||
#define LED_BRIGHTNESS_HI 255
|
#define DIODE_DIRECTION COL2ROW
|
||||||
|
|
||||||
/* define if matrix has ghost */
|
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
||||||
|
#define DEBOUNCE 5
|
||||||
|
|
||||||
|
/* define if matrix has ghost (lacks anti-ghosting diodes) */
|
||||||
//#define MATRIX_HAS_GHOST
|
//#define MATRIX_HAS_GHOST
|
||||||
|
|
||||||
/* Set 0 if debouncing isn't needed */
|
|
||||||
#define DEBOUNCE 6
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
//#define LOCKING_SUPPORT_ENABLE
|
//#define LOCKING_SUPPORT_ENABLE
|
||||||
/* Locking resynchronize hack */
|
/* Locking resynchronize hack */
|
||||||
//#define LOCKING_RESYNC_ENABLE
|
//#define LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
/* Keymap for Infinity prototype */
|
/* number of backlight levels */
|
||||||
//#define INFINITY_PROTOTYPE
|
#define BACKLIGHT_LEVELS 3
|
||||||
|
|
||||||
/* Keymap for Infinity 1.1a (first revision with LED support) */
|
#define LED_BRIGHTNESS_LO 100
|
||||||
//#define INFINITY_LED
|
#define LED_BRIGHTNESS_HI 255
|
||||||
|
|
||||||
|
/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
|
||||||
|
* This is useful for the Windows task manager shortcut (ctrl+shift+esc).
|
||||||
|
*/
|
||||||
|
//#define GRAVE_ESC_CTRL_OVERRIDE
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Force NKRO
|
||||||
|
*
|
||||||
|
* Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
|
||||||
|
* state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
|
||||||
|
* makefile for this to work.)
|
||||||
|
*
|
||||||
|
* If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
|
||||||
|
* until the next keyboard reset.
|
||||||
|
*
|
||||||
|
* NKRO may prevent your keystrokes from being detected in the BIOS, but it is
|
||||||
|
* fully operational during normal computer usage.
|
||||||
|
*
|
||||||
|
* For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
|
||||||
|
* or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
|
||||||
|
* bootmagic, NKRO mode will always be enabled until it is toggled again during a
|
||||||
|
* power-up.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
//#define FORCE_NKRO
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Feature disable options
|
* Feature disable options
|
||||||
|
@ -67,7 +103,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
//#define NO_ACTION_LAYER
|
//#define NO_ACTION_LAYER
|
||||||
//#define NO_ACTION_TAPPING
|
//#define NO_ACTION_TAPPING
|
||||||
//#define NO_ACTION_ONESHOT
|
//#define NO_ACTION_ONESHOT
|
||||||
//#define NO_ACTION_MACRO
|
|
||||||
//#define NO_ACTION_FUNCTION
|
|
||||||
|
|
||||||
#endif
|
/* disable these deprecated features by default */
|
||||||
|
#define NO_ACTION_MACRO
|
||||||
|
#define NO_ACTION_FUNCTION
|
||||||
|
|
||||||
|
/* Bootmagic Lite key configuration */
|
||||||
|
//#define BOOTMAGIC_LITE_ROW 0
|
||||||
|
//#define BOOTMAGIC_LITE_COLUMN 0
|
||||||
|
|
|
@ -1,91 +1,544 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "Whitefox",
|
"keyboard_name": "Whitefox",
|
||||||
"maintainer": "qmk",
|
"maintainer": "qmk",
|
||||||
"width": 16,
|
"width": 16,
|
||||||
"height": 5,
|
"height": 5,
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT": {
|
"LAYOUT_all": {
|
||||||
"layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"x":13, "y":0}, {"x":14, "y":0}, {"x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"x":12.75, "y":2}, {"label":"Enter", "x":13.75, "y":2, "w":1.25}, {"x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4}, {"label":"Win", "x":11, "y":4}, {"x":12, "y":4}, {"x":13, "y":4}, {"x":14, "y":4}, {"x":15, "y":4}]
|
"layout": [
|
||||||
},
|
{"x": 0, "y": 0},
|
||||||
|
{"x": 1, "y": 0},
|
||||||
|
{"x": 2, "y": 0},
|
||||||
|
{"x": 3, "y": 0},
|
||||||
|
{"x": 4, "y": 0},
|
||||||
|
{"x": 5, "y": 0},
|
||||||
|
{"x": 6, "y": 0},
|
||||||
|
{"x": 7, "y": 0},
|
||||||
|
{"x": 8, "y": 0},
|
||||||
|
{"x": 9, "y": 0},
|
||||||
|
{"x": 10, "y": 0},
|
||||||
|
{"x": 11, "y": 0},
|
||||||
|
{"x": 12, "y": 0},
|
||||||
|
{"x": 13, "y": 0},
|
||||||
|
{"x": 14, "y": 0},
|
||||||
|
{"x": 15, "y": 0},
|
||||||
|
|
||||||
"LAYOUT_truefox": {
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
"layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"x":13, "y":0}, {"x":14, "y":0}, {"x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"x":13, "y":4}, {"x":14, "y":4}, {"x":15, "y":4}]
|
{"x": 1.5, "y": 1},
|
||||||
},
|
{"x": 2.5, "y": 1},
|
||||||
|
{"x": 3.5, "y": 1},
|
||||||
|
{"x": 4.5, "y": 1},
|
||||||
|
{"x": 5.5, "y": 1},
|
||||||
|
{"x": 6.5, "y": 1},
|
||||||
|
{"x": 7.5, "y": 1},
|
||||||
|
{"x": 8.5, "y": 1},
|
||||||
|
{"x": 9.5, "y": 1},
|
||||||
|
{"x": 10.5, "y": 1},
|
||||||
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 13.5, "y": 1, "w": 1.5},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
"LAYOUT_aria": {
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
"layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"x":13, "y":4}, {"x":14, "y":4}, {"x":15, "y":4}]
|
{"x": 1.75, "y": 2},
|
||||||
},
|
{"x": 2.75, "y": 2},
|
||||||
"LAYOUT_vanilla": {
|
{"x": 3.75, "y": 2},
|
||||||
"layout": [
|
{"x": 4.75, "y": 2},
|
||||||
{"label": "~","x": 0,"y": 0},
|
{"x": 5.75, "y": 2},
|
||||||
{"label": "!","x": 1,"y": 0},
|
{"x": 6.75, "y": 2},
|
||||||
{"label": "@","x": 2,"y": 0},
|
{"x": 7.75, "y": 2},
|
||||||
{"label": "#","x": 3,"y": 0},
|
{"x": 8.75, "y": 2},
|
||||||
{"label": "$","x": 4,"y": 0},
|
{"x": 9.75, "y": 2},
|
||||||
{"label": "%","x": 5,"y": 0},
|
{"x": 10.75, "y": 2},
|
||||||
{"label": "^","x": 6,"y": 0},
|
{"x": 11.75, "y": 2},
|
||||||
{"label": "&","x": 7,"y": 0},
|
{"x": 12.75, "y": 2},
|
||||||
{"label": "*","x": 8,"y": 0},
|
{"x": 13.75, "y": 2, "w": 1.25},
|
||||||
{"label": "(","x": 9,"y": 0},
|
{"x": 15, "y": 2},
|
||||||
{"label": ")","x": 10,"y": 0},
|
|
||||||
{"label": "_","x": 11,"y": 0},
|
{"x": 0, "y": 3, "w": 1.25},
|
||||||
{"label": "+","x": 12,"y": 0},
|
{"x": 1.25, "y": 3},
|
||||||
{"label": "Backspace","x": 13,"y": 0,"w": 2},
|
{"x": 2.25, "y": 3},
|
||||||
{"x": 15,"y": 0},
|
{"x": 3.25, "y": 3},
|
||||||
{"label": "Tab","x": 0,"y": 1,"w": 1.5},
|
{"x": 4.25, "y": 3},
|
||||||
{"label": "Q","x": 1.5,"y": 1},
|
{"x": 5.25, "y": 3},
|
||||||
{"label": "W","x": 2.5,"y": 1},
|
{"x": 6.25, "y": 3},
|
||||||
{"label": "E","x": 3.5,"y": 1},
|
{"x": 7.25, "y": 3},
|
||||||
{"label": "R","x": 4.5,"y": 1},
|
{"x": 8.25, "y": 3},
|
||||||
{"label": "T","x": 5.5,"y": 1},
|
{"x": 9.25, "y": 3},
|
||||||
{"label": "Y","x": 6.5,"y": 1},
|
{"x": 10.25, "y": 3},
|
||||||
{"label": "U","x": 7.5,"y": 1},
|
{"x": 11.25, "y": 3},
|
||||||
{"label": "I","x": 8.5,"y": 1},
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
{"label": "O","x": 9.5,"y": 1},
|
{"x": 14, "y": 3},
|
||||||
{"label": "P","x": 10.5,"y": 1},
|
{"x": 15, "y": 3},
|
||||||
{"label": "{","x": 11.5,"y": 1},
|
|
||||||
{"label": "}","x": 12.5,"y": 1},
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
{"label": "|","x": 13.5,"y": 1,"w": 1.5},
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
{"x": 15,"y": 1},
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
{"label": "Caps Lock","x": 0,"y": 2,"w": 1.75},
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
{"label": "A","x": 1.75,"y": 2},
|
{"x": 10, "y": 4},
|
||||||
{"label": "S","x": 2.75,"y": 2},
|
{"x": 11, "y": 4},
|
||||||
{"label": "D","x": 3.75,"y": 2},
|
{"x": 12, "y": 4},
|
||||||
{"label": "F","x": 4.75,"y": 2},
|
{"x": 13, "y": 4},
|
||||||
{"label": "G","x": 5.75,"y": 2},
|
{"x": 14, "y": 4},
|
||||||
{"label": "H","x": 6.75,"y": 2},
|
{"x": 15, "y": 4}
|
||||||
{"label": "J","x": 7.75,"y": 2},
|
]
|
||||||
{"label": "K","x": 8.75,"y": 2},
|
},
|
||||||
{"label": "L","x": 9.75,"y": 2},
|
"LAYOUT_65_ansi": {
|
||||||
{"label": ":","x": 10.75,"y": 2},
|
"layout": [
|
||||||
{"label": "\"","x": 11.75,"y": 2},
|
{"x": 0, "y": 0},
|
||||||
{"label": "Enter","x": 12.75,"y": 2,"w": 2.25},
|
{"x": 1, "y": 0},
|
||||||
{"x": 15,"y": 2},
|
{"x": 2, "y": 0},
|
||||||
{"label": "Shift","x": 0,"y": 3,"w": 2.25},
|
{"x": 3, "y": 0},
|
||||||
{"label": "Z","x": 2.25,"y": 3},
|
{"x": 4, "y": 0},
|
||||||
{"label": "X","x": 3.25,"y": 3},
|
{"x": 5, "y": 0},
|
||||||
{"label": "C","x": 4.25,"y": 3},
|
{"x": 6, "y": 0},
|
||||||
{"label": "V","x": 5.25,"y": 3},
|
{"x": 7, "y": 0},
|
||||||
{"label": "B","x": 6.25,"y": 3},
|
{"x": 8, "y": 0},
|
||||||
{"label": "N","x": 7.25,"y": 3},
|
{"x": 9, "y": 0},
|
||||||
{"label": "M","x": 8.25,"y": 3},
|
{"x": 10, "y": 0},
|
||||||
{"label": "<","x": 9.25,"y": 3},
|
{"x": 11, "y": 0},
|
||||||
{"label": ">","x": 10.25,"y": 3},
|
{"x": 12, "y": 0},
|
||||||
{"label": "?","x": 11.25,"y": 3},
|
{"x": 13, "y": 0, "w": 2},
|
||||||
{"label": "Shift","x": 12.25,"y": 3,"w": 1.75},
|
{"x": 15, "y": 0},
|
||||||
{"x": 14,"y": 3},
|
|
||||||
{"x": 15,"y": 3},
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
{"label": "Ctrl","x": 0,"y": 4,"w": 1.25},
|
{"x": 1.5, "y": 1},
|
||||||
{"label": "Win","x": 1.25,"y": 4,"w": 1.25},
|
{"x": 2.5, "y": 1},
|
||||||
{"label": "Alt","x": 2.5,"y": 4,"w": 1.25},
|
{"x": 3.5, "y": 1},
|
||||||
{"x": 3.75,"y": 4,"w": 6.25},
|
{"x": 4.5, "y": 1},
|
||||||
{"label": "Alt","x": 10,"y": 4,"w": 1},
|
{"x": 5.5, "y": 1},
|
||||||
{"label": "Win","x": 11,"y": 4,"w": 1},
|
{"x": 6.5, "y": 1},
|
||||||
{"label": "Ctrl","x": 12,"y": 4,"w": 1},
|
{"x": 7.5, "y": 1},
|
||||||
{"x": 13,"y": 4},
|
{"x": 8.5, "y": 1},
|
||||||
{"x": 14,"y": 4},
|
{"x": 9.5, "y": 1},
|
||||||
{"x": 15,"y": 4}
|
{"x": 10.5, "y": 1},
|
||||||
]
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 13.5, "y": 1, "w": 1.5},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"x": 1.75, "y": 2},
|
||||||
|
{"x": 2.75, "y": 2},
|
||||||
|
{"x": 3.75, "y": 2},
|
||||||
|
{"x": 4.75, "y": 2},
|
||||||
|
{"x": 5.75, "y": 2},
|
||||||
|
{"x": 6.75, "y": 2},
|
||||||
|
{"x": 7.75, "y": 2},
|
||||||
|
{"x": 8.75, "y": 2},
|
||||||
|
{"x": 9.75, "y": 2},
|
||||||
|
{"x": 10.75, "y": 2},
|
||||||
|
{"x": 11.75, "y": 2},
|
||||||
|
{"x": 12.75, "y": 2, "w": 2.25},
|
||||||
|
{"x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"x": 0, "y": 3, "w": 2.25},
|
||||||
|
{"x": 2.25, "y": 3},
|
||||||
|
{"x": 3.25, "y": 3},
|
||||||
|
{"x": 4.25, "y": 3},
|
||||||
|
{"x": 5.25, "y": 3},
|
||||||
|
{"x": 6.25, "y": 3},
|
||||||
|
{"x": 7.25, "y": 3},
|
||||||
|
{"x": 8.25, "y": 3},
|
||||||
|
{"x": 9.25, "y": 3},
|
||||||
|
{"x": 10.25, "y": 3},
|
||||||
|
{"x": 11.25, "y": 3},
|
||||||
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
|
{"x": 14, "y": 3},
|
||||||
|
{"x": 15, "y": 3},
|
||||||
|
|
||||||
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
|
{"x": 10, "y": 4},
|
||||||
|
{"x": 11, "y": 4},
|
||||||
|
{"x": 12, "y": 4},
|
||||||
|
{"x": 13, "y": 4},
|
||||||
|
{"x": 14, "y": 4},
|
||||||
|
{"x": 15, "y": 4}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_65_ansi_blocker": {
|
||||||
|
"layout": [
|
||||||
|
{"x": 0, "y": 0},
|
||||||
|
{"x": 1, "y": 0},
|
||||||
|
{"x": 2, "y": 0},
|
||||||
|
{"x": 3, "y": 0},
|
||||||
|
{"x": 4, "y": 0},
|
||||||
|
{"x": 5, "y": 0},
|
||||||
|
{"x": 6, "y": 0},
|
||||||
|
{"x": 7, "y": 0},
|
||||||
|
{"x": 8, "y": 0},
|
||||||
|
{"x": 9, "y": 0},
|
||||||
|
{"x": 10, "y": 0},
|
||||||
|
{"x": 11, "y": 0},
|
||||||
|
{"x": 12, "y": 0},
|
||||||
|
{"x": 13, "y": 0, "w": 2},
|
||||||
|
{"x": 15, "y": 0},
|
||||||
|
|
||||||
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
|
{"x": 1.5, "y": 1},
|
||||||
|
{"x": 2.5, "y": 1},
|
||||||
|
{"x": 3.5, "y": 1},
|
||||||
|
{"x": 4.5, "y": 1},
|
||||||
|
{"x": 5.5, "y": 1},
|
||||||
|
{"x": 6.5, "y": 1},
|
||||||
|
{"x": 7.5, "y": 1},
|
||||||
|
{"x": 8.5, "y": 1},
|
||||||
|
{"x": 9.5, "y": 1},
|
||||||
|
{"x": 10.5, "y": 1},
|
||||||
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 13.5, "y": 1, "w": 1.5},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"x": 1.75, "y": 2},
|
||||||
|
{"x": 2.75, "y": 2},
|
||||||
|
{"x": 3.75, "y": 2},
|
||||||
|
{"x": 4.75, "y": 2},
|
||||||
|
{"x": 5.75, "y": 2},
|
||||||
|
{"x": 6.75, "y": 2},
|
||||||
|
{"x": 7.75, "y": 2},
|
||||||
|
{"x": 8.75, "y": 2},
|
||||||
|
{"x": 9.75, "y": 2},
|
||||||
|
{"x": 10.75, "y": 2},
|
||||||
|
{"x": 11.75, "y": 2},
|
||||||
|
{"x": 12.75, "y": 2, "w": 2.25},
|
||||||
|
{"x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"x": 0, "y": 3, "w": 2.25},
|
||||||
|
{"x": 2.25, "y": 3},
|
||||||
|
{"x": 3.25, "y": 3},
|
||||||
|
{"x": 4.25, "y": 3},
|
||||||
|
{"x": 5.25, "y": 3},
|
||||||
|
{"x": 6.25, "y": 3},
|
||||||
|
{"x": 7.25, "y": 3},
|
||||||
|
{"x": 8.25, "y": 3},
|
||||||
|
{"x": 9.25, "y": 3},
|
||||||
|
{"x": 10.25, "y": 3},
|
||||||
|
{"x": 11.25, "y": 3},
|
||||||
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
|
{"x": 14, "y": 3},
|
||||||
|
{"x": 15, "y": 3},
|
||||||
|
|
||||||
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
|
{"x": 10, "y": 4, "w": 1.25},
|
||||||
|
{"x": 11.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 13, "y": 4},
|
||||||
|
{"x": 14, "y": 4},
|
||||||
|
{"x": 15, "y": 4}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_65_ansi_blocker_split_bs": {
|
||||||
|
"layout": [
|
||||||
|
{"x": 0, "y": 0},
|
||||||
|
{"x": 1, "y": 0},
|
||||||
|
{"x": 2, "y": 0},
|
||||||
|
{"x": 3, "y": 0},
|
||||||
|
{"x": 4, "y": 0},
|
||||||
|
{"x": 5, "y": 0},
|
||||||
|
{"x": 6, "y": 0},
|
||||||
|
{"x": 7, "y": 0},
|
||||||
|
{"x": 8, "y": 0},
|
||||||
|
{"x": 9, "y": 0},
|
||||||
|
{"x": 10, "y": 0},
|
||||||
|
{"x": 11, "y": 0},
|
||||||
|
{"x": 12, "y": 0},
|
||||||
|
{"x": 13, "y": 0},
|
||||||
|
{"x": 14, "y": 0},
|
||||||
|
{"x": 15, "y": 0},
|
||||||
|
|
||||||
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
|
{"x": 1.5, "y": 1},
|
||||||
|
{"x": 2.5, "y": 1},
|
||||||
|
{"x": 3.5, "y": 1},
|
||||||
|
{"x": 4.5, "y": 1},
|
||||||
|
{"x": 5.5, "y": 1},
|
||||||
|
{"x": 6.5, "y": 1},
|
||||||
|
{"x": 7.5, "y": 1},
|
||||||
|
{"x": 8.5, "y": 1},
|
||||||
|
{"x": 9.5, "y": 1},
|
||||||
|
{"x": 10.5, "y": 1},
|
||||||
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 13.5, "y": 1, "w": 1.5},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"x": 1.75, "y": 2},
|
||||||
|
{"x": 2.75, "y": 2},
|
||||||
|
{"x": 3.75, "y": 2},
|
||||||
|
{"x": 4.75, "y": 2},
|
||||||
|
{"x": 5.75, "y": 2},
|
||||||
|
{"x": 6.75, "y": 2},
|
||||||
|
{"x": 7.75, "y": 2},
|
||||||
|
{"x": 8.75, "y": 2},
|
||||||
|
{"x": 9.75, "y": 2},
|
||||||
|
{"x": 10.75, "y": 2},
|
||||||
|
{"x": 11.75, "y": 2},
|
||||||
|
{"x": 12.75, "y": 2, "w": 2.25},
|
||||||
|
{"x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"x": 0, "y": 3, "w": 2.25},
|
||||||
|
{"x": 2.25, "y": 3},
|
||||||
|
{"x": 3.25, "y": 3},
|
||||||
|
{"x": 4.25, "y": 3},
|
||||||
|
{"x": 5.25, "y": 3},
|
||||||
|
{"x": 6.25, "y": 3},
|
||||||
|
{"x": 7.25, "y": 3},
|
||||||
|
{"x": 8.25, "y": 3},
|
||||||
|
{"x": 9.25, "y": 3},
|
||||||
|
{"x": 10.25, "y": 3},
|
||||||
|
{"x": 11.25, "y": 3},
|
||||||
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
|
{"x": 14, "y": 3},
|
||||||
|
{"x": 15, "y": 3},
|
||||||
|
|
||||||
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
|
{"x": 10, "y": 4, "w": 1.25},
|
||||||
|
{"x": 11.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 13, "y": 4},
|
||||||
|
{"x": 14, "y": 4},
|
||||||
|
{"x": 15, "y": 4}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_65_iso": {
|
||||||
|
"layout": [
|
||||||
|
{"x": 0, "y": 0},
|
||||||
|
{"x": 1, "y": 0},
|
||||||
|
{"x": 2, "y": 0},
|
||||||
|
{"x": 3, "y": 0},
|
||||||
|
{"x": 4, "y": 0},
|
||||||
|
{"x": 5, "y": 0},
|
||||||
|
{"x": 6, "y": 0},
|
||||||
|
{"x": 7, "y": 0},
|
||||||
|
{"x": 8, "y": 0},
|
||||||
|
{"x": 9, "y": 0},
|
||||||
|
{"x": 10, "y": 0},
|
||||||
|
{"x": 11, "y": 0},
|
||||||
|
{"x": 12, "y": 0},
|
||||||
|
{"x": 13, "y": 0, "w": 2},
|
||||||
|
{"x": 15, "y": 0},
|
||||||
|
|
||||||
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
|
{"x": 1.5, "y": 1},
|
||||||
|
{"x": 2.5, "y": 1},
|
||||||
|
{"x": 3.5, "y": 1},
|
||||||
|
{"x": 4.5, "y": 1},
|
||||||
|
{"x": 5.5, "y": 1},
|
||||||
|
{"x": 6.5, "y": 1},
|
||||||
|
{"x": 7.5, "y": 1},
|
||||||
|
{"x": 8.5, "y": 1},
|
||||||
|
{"x": 9.5, "y": 1},
|
||||||
|
{"x": 10.5, "y": 1},
|
||||||
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"x": 1.75, "y": 2},
|
||||||
|
{"x": 2.75, "y": 2},
|
||||||
|
{"x": 3.75, "y": 2},
|
||||||
|
{"x": 4.75, "y": 2},
|
||||||
|
{"x": 5.75, "y": 2},
|
||||||
|
{"x": 6.75, "y": 2},
|
||||||
|
{"x": 7.75, "y": 2},
|
||||||
|
{"x": 8.75, "y": 2},
|
||||||
|
{"x": 9.75, "y": 2},
|
||||||
|
{"x": 10.75, "y": 2},
|
||||||
|
{"x": 11.75, "y": 2},
|
||||||
|
{"x": 12.75, "y": 2},
|
||||||
|
{"x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||||
|
{"x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"x": 0, "y": 3, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 3},
|
||||||
|
{"x": 2.25, "y": 3},
|
||||||
|
{"x": 3.25, "y": 3},
|
||||||
|
{"x": 4.25, "y": 3},
|
||||||
|
{"x": 5.25, "y": 3},
|
||||||
|
{"x": 6.25, "y": 3},
|
||||||
|
{"x": 7.25, "y": 3},
|
||||||
|
{"x": 8.25, "y": 3},
|
||||||
|
{"x": 9.25, "y": 3},
|
||||||
|
{"x": 10.25, "y": 3},
|
||||||
|
{"x": 11.25, "y": 3},
|
||||||
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
|
{"x": 14, "y": 3},
|
||||||
|
{"x": 15, "y": 3},
|
||||||
|
|
||||||
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
|
{"x": 10, "y": 4},
|
||||||
|
{"x": 11, "y": 4},
|
||||||
|
{"x": 12, "y": 4},
|
||||||
|
{"x": 13, "y": 4},
|
||||||
|
{"x": 14, "y": 4},
|
||||||
|
{"x": 15, "y": 4}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_65_iso_blocker": {
|
||||||
|
"layout": [
|
||||||
|
{"x": 0, "y": 0},
|
||||||
|
{"x": 1, "y": 0},
|
||||||
|
{"x": 2, "y": 0},
|
||||||
|
{"x": 3, "y": 0},
|
||||||
|
{"x": 4, "y": 0},
|
||||||
|
{"x": 5, "y": 0},
|
||||||
|
{"x": 6, "y": 0},
|
||||||
|
{"x": 7, "y": 0},
|
||||||
|
{"x": 8, "y": 0},
|
||||||
|
{"x": 9, "y": 0},
|
||||||
|
{"x": 10, "y": 0},
|
||||||
|
{"x": 11, "y": 0},
|
||||||
|
{"x": 12, "y": 0},
|
||||||
|
{"x": 13, "y": 0, "w": 2},
|
||||||
|
{"x": 15, "y": 0},
|
||||||
|
|
||||||
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
|
{"x": 1.5, "y": 1},
|
||||||
|
{"x": 2.5, "y": 1},
|
||||||
|
{"x": 3.5, "y": 1},
|
||||||
|
{"x": 4.5, "y": 1},
|
||||||
|
{"x": 5.5, "y": 1},
|
||||||
|
{"x": 6.5, "y": 1},
|
||||||
|
{"x": 7.5, "y": 1},
|
||||||
|
{"x": 8.5, "y": 1},
|
||||||
|
{"x": 9.5, "y": 1},
|
||||||
|
{"x": 10.5, "y": 1},
|
||||||
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"x": 1.75, "y": 2},
|
||||||
|
{"x": 2.75, "y": 2},
|
||||||
|
{"x": 3.75, "y": 2},
|
||||||
|
{"x": 4.75, "y": 2},
|
||||||
|
{"x": 5.75, "y": 2},
|
||||||
|
{"x": 6.75, "y": 2},
|
||||||
|
{"x": 7.75, "y": 2},
|
||||||
|
{"x": 8.75, "y": 2},
|
||||||
|
{"x": 9.75, "y": 2},
|
||||||
|
{"x": 10.75, "y": 2},
|
||||||
|
{"x": 11.75, "y": 2},
|
||||||
|
{"x": 12.75, "y": 2},
|
||||||
|
{"x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||||
|
{"x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"x": 0, "y": 3, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 3},
|
||||||
|
{"x": 2.25, "y": 3},
|
||||||
|
{"x": 3.25, "y" :3},
|
||||||
|
{"x": 4.25, "y": 3},
|
||||||
|
{"x": 5.25, "y": 3},
|
||||||
|
{"x": 6.25, "y": 3},
|
||||||
|
{"x": 7.25, "y": 3},
|
||||||
|
{"x": 8.25, "y": 3},
|
||||||
|
{"x": 9.25, "y": 3},
|
||||||
|
{"x": 10.25, "y": 3},
|
||||||
|
{"x": 11.25, "y": 3},
|
||||||
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
|
{"x": 14, "y": 3},
|
||||||
|
{"x": 15, "y": 3},
|
||||||
|
|
||||||
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
|
{"x": 10, "y": 4, "w": 1.25},
|
||||||
|
{"x": 11.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 13, "y": 4},
|
||||||
|
{"x": 14, "y": 4},
|
||||||
|
{"x": 15, "y": 4}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_65_iso_blocker_split_bs": {
|
||||||
|
"layout": [
|
||||||
|
{"x": 0, "y": 0},
|
||||||
|
{"x": 1, "y": 0},
|
||||||
|
{"x": 2, "y": 0},
|
||||||
|
{"x": 3, "y": 0},
|
||||||
|
{"x": 4, "y": 0},
|
||||||
|
{"x": 5, "y": 0},
|
||||||
|
{"x": 6, "y": 0},
|
||||||
|
{"x": 7, "y": 0},
|
||||||
|
{"x": 8, "y": 0},
|
||||||
|
{"x": 9, "y": 0},
|
||||||
|
{"x": 10, "y": 0},
|
||||||
|
{"x": 11, "y": 0},
|
||||||
|
{"x": 12, "y": 0},
|
||||||
|
{"x": 13, "y": 0},
|
||||||
|
{"x": 14, "y": 0},
|
||||||
|
{"x": 15, "y": 0},
|
||||||
|
|
||||||
|
{"x": 0, "y": 1, "w": 1.5},
|
||||||
|
{"x": 1.5, "y": 1},
|
||||||
|
{"x": 2.5, "y": 1},
|
||||||
|
{"x": 3.5, "y": 1},
|
||||||
|
{"x": 4.5, "y": 1},
|
||||||
|
{"x": 5.5, "y": 1},
|
||||||
|
{"x": 6.5, "y": 1},
|
||||||
|
{"x": 7.5, "y": 1},
|
||||||
|
{"x": 8.5, "y": 1},
|
||||||
|
{"x": 9.5, "y": 1},
|
||||||
|
{"x": 10.5, "y": 1},
|
||||||
|
{"x": 11.5, "y": 1},
|
||||||
|
{"x": 12.5, "y": 1},
|
||||||
|
{"x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"x": 1.75, "y": 2},
|
||||||
|
{"x": 2.75, "y": 2},
|
||||||
|
{"x": 3.75, "y": 2},
|
||||||
|
{"x": 4.75, "y": 2},
|
||||||
|
{"x": 5.75, "y": 2},
|
||||||
|
{"x": 6.75, "y": 2},
|
||||||
|
{"x": 7.75, "y": 2},
|
||||||
|
{"x": 8.75, "y": 2},
|
||||||
|
{"x": 9.75, "y": 2},
|
||||||
|
{"x": 10.75, "y": 2},
|
||||||
|
{"x": 11.75, "y": 2},
|
||||||
|
{"x": 12.75, "y": 2},
|
||||||
|
{"x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||||
|
{"x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"x": 0, "y": 3, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 3},
|
||||||
|
{"x": 2.25, "y": 3},
|
||||||
|
{"x": 3.25, "y" :3},
|
||||||
|
{"x": 4.25, "y": 3},
|
||||||
|
{"x": 5.25, "y": 3},
|
||||||
|
{"x": 6.25, "y": 3},
|
||||||
|
{"x": 7.25, "y": 3},
|
||||||
|
{"x": 8.25, "y": 3},
|
||||||
|
{"x": 9.25, "y": 3},
|
||||||
|
{"x": 10.25, "y": 3},
|
||||||
|
{"x": 11.25, "y": 3},
|
||||||
|
{"x": 12.25, "y": 3, "w": 1.75},
|
||||||
|
{"x": 14, "y": 3},
|
||||||
|
{"x": 15, "y": 3},
|
||||||
|
|
||||||
|
{"x": 0, "y": 4, "w": 1.25},
|
||||||
|
{"x": 1.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 2.5, "y": 4, "w": 1.25},
|
||||||
|
{"x": 3.75, "y": 4, "w": 6.25},
|
||||||
|
{"x": 10, "y": 4, "w": 1.25},
|
||||||
|
{"x": 11.25, "y": 4, "w": 1.25},
|
||||||
|
{"x": 13, "y": 4},
|
||||||
|
{"x": 14, "y": 4},
|
||||||
|
{"x": 15, "y": 4}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,31 +17,44 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
/* Layer 0: Default Layer
|
/*
|
||||||
* ,---------------------------------------------------------------.
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
|
||||||
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| \| `|Ins|
|
* │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ \ │ ` │Ins│
|
||||||
* |---------------------------------------------------------------|
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┼───┤
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]|Backs|Del|
|
* │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ Bspc│Del│
|
||||||
* |---------------------------------------------------------------|
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬────┼───┤
|
||||||
* |CapsLo| A| S| D| F| G| H| J| K| L| ;| '|Enter |PgU|
|
* │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ # │ Ent│PgU│
|
||||||
* |---------------------------------------------------------------|
|
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┼───┤
|
||||||
* |Shif| | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
* │Shft│ < │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│ ↑ │PgD│
|
||||||
* |---------------------------------------------------------------|
|
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┼───┼───┤
|
||||||
* |Ctrl|Gui |Alt | Space |Fn0 |Alt |Gui | |Lef|Dow|Rig|
|
* │Ctrl│GUI │Alt │ │Alt│ Fn│Ctl│ ← │ ↓ │ → │
|
||||||
* `---------------------------------------------------------------'
|
* └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘
|
||||||
*/
|
*/
|
||||||
[0] = LAYOUT( \
|
[0] = LAYOUT_all(
|
||||||
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,KC_EQL, KC_BSLS,KC_GRV, KC_INS, \
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV, KC_INS,
|
||||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,KC_RBRC,KC_BSPC, KC_DEL, \
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC, KC_DEL,
|
||||||
KC_CAPS,KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT,KC_NUHS,KC_ENT, KC_PGUP,\
|
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, KC_PGUP,
|
||||||
KC_LSFT,KC_NUBS,KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH,KC_RSFT, KC_UP, KC_PGDN,\
|
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN,
|
||||||
KC_LCTL,KC_LGUI,KC_LALT, KC_SPC, KC_RALT,MO(1), KC_RCTL, KC_LEFT,KC_DOWN,KC_RGHT \
|
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
|
||||||
),
|
|
||||||
[1] = LAYOUT( \
|
|
||||||
KC_TRNS,KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_TRNS,KC_TRNS,KC_MUTE,\
|
|
||||||
KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_PSCR,KC_SLCK,KC_PAUS,KC_TRNS, KC_TRNS,\
|
|
||||||
KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_VOLU,\
|
|
||||||
KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_PGUP,KC_VOLD,\
|
|
||||||
KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, KC_HOME,KC_PGDN,KC_END \
|
|
||||||
),
|
),
|
||||||
|
/*
|
||||||
|
* ┌───┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐───┬───┌───┐
|
||||||
|
* │ │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ │ │Mut│
|
||||||
|
* ├───└───┴───┴───┴───┴───┴───┴───┴───┴───┴─┬─┴─┬─┴─┬─┴─┐─┴───└───┘
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │Psc│Slk│Pse│ │ │
|
||||||
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──└───┴───┴───┘┬────┌───┐
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │Vl+│
|
||||||
|
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┌───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │PgU│Vl-│
|
||||||
|
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┌───┼───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │Hom│PgD│End│
|
||||||
|
* └────┴────┴────┴────────────────────────┴───┴───┴───└───┴───┴───┘
|
||||||
|
*/
|
||||||
|
[1] = LAYOUT_all(
|
||||||
|
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, KC_MUTE,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PGUP, KC_VOLD,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_END
|
||||||
|
)
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
|
||||||
|
|
||||||
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 <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "hal.h"
|
|
||||||
|
|
||||||
#include "led.h"
|
|
||||||
|
|
||||||
|
|
||||||
void led_set(uint8_t usb_led) {
|
|
||||||
}
|
|
|
@ -1,135 +0,0 @@
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include "hal.h"
|
|
||||||
#include "timer.h"
|
|
||||||
#include "wait.h"
|
|
||||||
#include "print.h"
|
|
||||||
#include "matrix.h"
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Matt3o's WhiteFox
|
|
||||||
* Column pins are input with internal pull-down. Row pins are output and strobe with high.
|
|
||||||
* Key is high or 1 when it turns on.
|
|
||||||
*
|
|
||||||
* col: { PTD0, PTD1, PTD4, PTD5, PTD6, PTD7, PTC1, PTC2 }
|
|
||||||
* row: { PTB2, PTB3, PTB18, PTB19, PTC0, PTC8, PTC9, PTC10, PTC11 }
|
|
||||||
*/
|
|
||||||
/* matrix state(1:on, 0:off) */
|
|
||||||
static matrix_row_t matrix[MATRIX_ROWS];
|
|
||||||
static matrix_row_t matrix_debouncing[MATRIX_ROWS];
|
|
||||||
static bool debouncing = false;
|
|
||||||
static uint16_t debouncing_time = 0;
|
|
||||||
|
|
||||||
|
|
||||||
void matrix_init(void)
|
|
||||||
{
|
|
||||||
//debug_matrix = true;
|
|
||||||
/* Column(sense) */
|
|
||||||
palSetPadMode(GPIOD, 0, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOD, 1, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOD, 4, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOD, 5, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOD, 6, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOD, 7, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOC, 1, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
palSetPadMode(GPIOC, 2, PAL_MODE_INPUT_PULLDOWN);
|
|
||||||
|
|
||||||
/* Row(strobe) */
|
|
||||||
palSetPadMode(GPIOB, 2, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOB, 3, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOB, 18, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOB, 19, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOC, 0, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOC, 8, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOC, 9, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOC, 10, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
palSetPadMode(GPIOC, 11, PAL_MODE_OUTPUT_PUSHPULL);
|
|
||||||
|
|
||||||
memset(matrix, 0, MATRIX_ROWS * sizeof(matrix_row_t));
|
|
||||||
memset(matrix_debouncing, 0, MATRIX_ROWS * sizeof(matrix_row_t));
|
|
||||||
|
|
||||||
matrix_init_quantum();
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t matrix_scan(void)
|
|
||||||
{
|
|
||||||
for (int row = 0; row < MATRIX_ROWS; row++) {
|
|
||||||
matrix_row_t data = 0;
|
|
||||||
|
|
||||||
// strobe row
|
|
||||||
switch (row) {
|
|
||||||
case 0: palSetPad(GPIOB, 2); break;
|
|
||||||
case 1: palSetPad(GPIOB, 3); break;
|
|
||||||
case 2: palSetPad(GPIOB, 18); break;
|
|
||||||
case 3: palSetPad(GPIOB, 19); break;
|
|
||||||
case 4: palSetPad(GPIOC, 0); break;
|
|
||||||
case 5: palSetPad(GPIOC, 8); break;
|
|
||||||
case 6: palSetPad(GPIOC, 9); break;
|
|
||||||
case 7: palSetPad(GPIOC, 10); break;
|
|
||||||
case 8: palSetPad(GPIOC, 11); break;
|
|
||||||
}
|
|
||||||
|
|
||||||
wait_us(20); // need wait to settle pin state
|
|
||||||
|
|
||||||
// read col data: { PTD0, PTD1, PTD4, PTD5, PTD6, PTD7, PTC1, PTC2 }
|
|
||||||
data = ((palReadPort(GPIOC) & 0x06UL) << 5) |
|
|
||||||
((palReadPort(GPIOD) & 0xF0UL) >> 2) |
|
|
||||||
(palReadPort(GPIOD) & 0x03UL);
|
|
||||||
|
|
||||||
// un-strobe row
|
|
||||||
switch (row) {
|
|
||||||
case 0: palClearPad(GPIOB, 2); break;
|
|
||||||
case 1: palClearPad(GPIOB, 3); break;
|
|
||||||
case 2: palClearPad(GPIOB, 18); break;
|
|
||||||
case 3: palClearPad(GPIOB, 19); break;
|
|
||||||
case 4: palClearPad(GPIOC, 0); break;
|
|
||||||
case 5: palClearPad(GPIOC, 8); break;
|
|
||||||
case 6: palClearPad(GPIOC, 9); break;
|
|
||||||
case 7: palClearPad(GPIOC, 10); break;
|
|
||||||
case 8: palClearPad(GPIOC, 11); break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matrix_debouncing[row] != data) {
|
|
||||||
matrix_debouncing[row] = data;
|
|
||||||
debouncing = true;
|
|
||||||
debouncing_time = timer_read();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (debouncing && timer_elapsed(debouncing_time) > DEBOUNCE) {
|
|
||||||
for (int row = 0; row < MATRIX_ROWS; row++) {
|
|
||||||
matrix[row] = matrix_debouncing[row];
|
|
||||||
}
|
|
||||||
debouncing = false;
|
|
||||||
}
|
|
||||||
matrix_scan_quantum();
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool matrix_is_on(uint8_t row, uint8_t col)
|
|
||||||
{
|
|
||||||
return (matrix[row] & (1<<col));
|
|
||||||
}
|
|
||||||
|
|
||||||
matrix_row_t matrix_get_row(uint8_t row)
|
|
||||||
{
|
|
||||||
return matrix[row];
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_print(void)
|
|
||||||
{
|
|
||||||
xprintf("\nr/c 01234567\n");
|
|
||||||
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
|
|
||||||
xprintf("%X0: ", row);
|
|
||||||
matrix_row_t data = matrix_get_row(row);
|
|
||||||
for (int col = 0; col < MATRIX_COLS; col++) {
|
|
||||||
if (data & (1<<col))
|
|
||||||
xprintf("1");
|
|
||||||
else
|
|
||||||
xprintf("0");
|
|
||||||
}
|
|
||||||
xprintf("\n");
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,12 +2,16 @@
|
||||||
|
|
||||||
A compact 65% keyboard.
|
A compact 65% keyboard.
|
||||||
|
|
||||||
Keyboard Maintainer: QMK Community
|
* Keyboard Maintainer: QMK Community
|
||||||
Hardware Supported: Whitefox PCB
|
* Hardware Supported: Whitefox PCB
|
||||||
Hardware Availability: https://input.club/whitefox/
|
* Hardware Availability: https://input.club/whitefox/
|
||||||
|
|
||||||
Make example for this keyboard (after setting up your build environment):
|
Make example for this keyboard (after setting up your build environment):
|
||||||
|
|
||||||
make whitefox:default
|
make whitefox:default
|
||||||
|
|
||||||
See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
|
Flashing example for this keyboard:
|
||||||
|
|
||||||
|
make whitefox:default:flash
|
||||||
|
|
||||||
|
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
||||||
|
|
|
@ -14,29 +14,29 @@ BOOTLOADER = kiibohd
|
||||||
BOARD = IC_TEENSY_3_1
|
BOARD = IC_TEENSY_3_1
|
||||||
|
|
||||||
# Build Options
|
# Build Options
|
||||||
# comment out to disable the options.
|
# change yes to no to disable
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
|
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
|
||||||
## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
#CONSOLE_ENABLE = yes # Console for debug
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
NKRO_ENABLE = yes # USB Nkey Rollover
|
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
CUSTOM_MATRIX = yes # Custom matrix file
|
NKRO_ENABLE = yes # USB Nkey Rollover
|
||||||
BACKLIGHT_ENABLE = yes
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
|
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||||
|
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
||||||
|
AUDIO_ENABLE = no # Audio output
|
||||||
BACKLIGHT_DRIVER = custom
|
BACKLIGHT_DRIVER = custom
|
||||||
VISUALIZER_ENABLE = yes
|
VISUALIZER_ENABLE = yes
|
||||||
|
|
||||||
# project specific files
|
|
||||||
SRC = matrix.c \
|
|
||||||
led.c
|
|
||||||
|
|
||||||
LED_DRIVER = is31fl3731c
|
LED_DRIVER = is31fl3731c
|
||||||
LED_WIDTH = 16
|
LED_WIDTH = 16
|
||||||
LED_HEIGHT = 5
|
LED_HEIGHT = 5
|
||||||
|
|
||||||
|
LAYOUTS = 65_ansi 65_ansi_blocker 65_ansi_blocker_split_bs 65_iso 65_iso_blocker
|
||||||
|
|
||||||
# Enter lower-power sleep mode when on the ChibiOS idle thread
|
# Enter lower-power sleep mode when on the ChibiOS idle thread
|
||||||
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
|
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
|
||||||
|
|
|
@ -14,28 +14,22 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KEYBOARDS_WHITEFOX_SIMPLE_VISUALIZER_H_
|
|
||||||
#define KEYBOARDS_WHITEFOX_SIMPLE_VISUALIZER_H_
|
|
||||||
|
|
||||||
#include "visualizer.h"
|
#include "visualizer.h"
|
||||||
#include "visualizer_keyframes.h"
|
#include "visualizer_keyframes.h"
|
||||||
#include "led.h"
|
|
||||||
#include "default_animations.h"
|
#include "default_animations.h"
|
||||||
|
|
||||||
|
|
||||||
static bool initial_update = true;
|
static bool initial_update = true;
|
||||||
|
|
||||||
// Feel free to modify the animations below, or even add new ones if needed
|
// Feel free to modify the animations below, or even add new ones if needed
|
||||||
|
|
||||||
void initialize_user_visualizer(visualizer_state_t* state) {
|
void initialize_user_visualizer(visualizer_state_t *state) {
|
||||||
// The brightness will be dynamically adjustable in the future
|
// The brightness will be dynamically adjustable in the future
|
||||||
// But for now, change it here.
|
// But for now, change it here.
|
||||||
initial_update = true;
|
initial_update = true;
|
||||||
start_keyframe_animation(&default_startup_animation);
|
start_keyframe_animation(&default_startup_animation);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void update_user_visualizer_state(visualizer_state_t *state, visualizer_keyboard_status_t *prev_status) {
|
||||||
void update_user_visualizer_state(visualizer_state_t* state, visualizer_keyboard_status_t* prev_status) {
|
|
||||||
// Add more tests, change the colors and layer texts here
|
// Add more tests, change the colors and layer texts here
|
||||||
// Usually you want to check the high bits (higher layers first)
|
// Usually you want to check the high bits (higher layers first)
|
||||||
// because that's the order layers are processed for keypresses
|
// because that's the order layers are processed for keypresses
|
||||||
|
@ -44,17 +38,17 @@ void update_user_visualizer_state(visualizer_state_t* state, visualizer_keyboard
|
||||||
// state->status.default_layer
|
// state->status.default_layer
|
||||||
// state->status.leds (see led.h for available statuses)
|
// state->status.leds (see led.h for available statuses)
|
||||||
|
|
||||||
if (initial_update) { initial_update=false; start_keyframe_animation(&led_test_animation); }
|
if (initial_update) {
|
||||||
|
initial_update = false;
|
||||||
|
start_keyframe_animation(&led_test_animation);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void user_visualizer_suspend(visualizer_state_t *state) {
|
||||||
void user_visualizer_suspend(visualizer_state_t* state) {
|
|
||||||
start_keyframe_animation(&default_suspend_animation);
|
start_keyframe_animation(&default_suspend_animation);
|
||||||
}
|
}
|
||||||
|
|
||||||
void user_visualizer_resume(visualizer_state_t* state) {
|
void user_visualizer_resume(visualizer_state_t *state) {
|
||||||
initial_update = true;
|
initial_update = true;
|
||||||
start_keyframe_animation(&default_startup_animation);
|
start_keyframe_animation(&default_startup_animation);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* KEYBOARDS_WHITEFOX_SIMPLE_VISUALIZER_H_ */
|
|
||||||
|
|
|
@ -14,21 +14,5 @@ GNU General Public License for more details.
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "whitefox.h"
|
#include "whitefox.h"
|
||||||
|
|
||||||
__attribute__ ((weak))
|
|
||||||
void matrix_init_user(void) {
|
|
||||||
}
|
|
||||||
|
|
||||||
__attribute__ ((weak))
|
|
||||||
void matrix_scan_user(void) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void matrix_init_kb(void) {
|
|
||||||
matrix_init_user();
|
|
||||||
};
|
|
||||||
|
|
||||||
void matrix_scan_kb(void) {
|
|
||||||
matrix_scan_user();
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
|
@ -14,156 +14,225 @@ GNU General Public License for more details.
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#ifndef WHITEFOX_H
|
|
||||||
#define WHITEFOX_H
|
#pragma once
|
||||||
|
|
||||||
#include "quantum.h"
|
#include "quantum.h"
|
||||||
|
|
||||||
/* WhiteFox
|
#define XXX KC_NO
|
||||||
* ,---------------------------------------------------------------.
|
|
||||||
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| \| `|Ins|
|
/*
|
||||||
* |---------------------------------------------------------------|
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]|Backs|Del|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┼───┤
|
||||||
* |CapsL | A| S| D| F| G| H| J| K| L| ;| '|Enter |PgU|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬────┼───┤
|
||||||
* |Shif| | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┼───┤
|
||||||
* |Ctrl|Gui |Alt | Space |App |Alt |Gui | |Lef|Dow|Rig|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* `---------------------------------------------------------------'
|
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┼───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘
|
||||||
*/
|
*/
|
||||||
|
#define LAYOUT_all( \
|
||||||
#define LAYOUT( \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k14, k15, k16, \
|
||||||
K00, K10, K20, K30, K40, K50, K60, K70, K80, K01, K11, K21, K31, K41, K51, K61, \
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k32, k33, \
|
||||||
K71, K81, K02, K12, K22, K32, K42, K52, K62, K72, K82, K03, K13, K23, K33, \
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k47, k48, k50, \
|
||||||
K43, K53, K63, K73, K83, K04, K14, K24, K34, K44, K54, K64, K74, K84, K05, \
|
k51, k52, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
K15, K25, K35, K45, K55, K65, K75, K85, K06, K16, K26, K36, K46, K56, K66, \
|
k67, k68, k70, k71, k72, k73, k74, k75, k76, k77 \
|
||||||
K76, K86, K07, K17, K27, K37, K47, K57, K67, K77 \
|
|
||||||
) { \
|
) { \
|
||||||
{ K00, K01, K02, K03, K04, K05, K06, K07 }, \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
{ K10, K11, K12, K13, K14, K15, K16, K17 }, \
|
{ k10, k11, k12, k13, k14, k15, k16, k17, k18 }, \
|
||||||
{ K20, K21, K22, K23, K24, K25, K26, K27 }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
{ K30, K31, K32, K33, K34, K35, K36, K37 }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38 }, \
|
||||||
{ K40, K41, K42, K43, K44, K45, K46, K47 }, \
|
{ k40, k41, k42, k43, k44, k45, k46, k47, k48 }, \
|
||||||
{ K50, K51, K52, K53, K54, K55, K56, K57 }, \
|
{ k50, k51, k52, k53, k54, k55, k56, k57, k58 }, \
|
||||||
{ K60, K61, K62, K63, K64, K65, K66, K67 }, \
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
{ K70, K71, K72, K73, K74, K75, K76, K77 }, \
|
{ k70, k71, k72, k73, k74, k75, k76, k77, XXX } \
|
||||||
{ K80, K81, K82, K83, K84, K85, K86, KC_NO } \
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Keymap for truefox layout */
|
/*
|
||||||
#define LAYOUT_truefox( \
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
|
||||||
K00, K10, K20, K30, K40, K50, K60, K70, K80, K01, K11, K21, K31, K41, K51, K61, \
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
K71, K81, K02, K12, K22, K32, K42, K52, K62, K72, K82, K03, K13, K23, K33, \
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
|
||||||
K43, K53, K63, K73, K83, K04, K14, K24, K34, K44, K54, K64, K84, K05, \
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
K15, K35, K45, K55, K65, K75, K85, K06, K16, K26, K36, K46, K56, K66, \
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
|
||||||
K76, K86, K07, K17, K27, K37, K57, K67, K77 \
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
) { \
|
* ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
|
||||||
{ K00, K01, K02, K03, K04, K05, K06, K07 }, \
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
{ K10, K11, K12, K13, K14, K15, K16, K17 }, \
|
* ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┼───┼───┤
|
||||||
{ K20, K21, K22, K23, K24, KC_NO, K26, K27 }, \
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
{ K30, K31, K32, K33, K34, K35, K36, K37 }, \
|
* └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘
|
||||||
{ K40, K41, K42, K43, K44, K45, K46, KC_NO }, \
|
|
||||||
{ K50, K51, K52, K53, K54, K55, K56, K57 }, \
|
|
||||||
{ K60, K61, K62, K63, K64, K65, K66, K67 }, \
|
|
||||||
{ K70, K71, K72, K73, KC_NO, K75, K76, K77 }, \
|
|
||||||
{ K80, K81, K82, K83, K84, K85, K86, KC_NO } \
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ISO WhiteFox
|
|
||||||
* ,---------------------------------------------------------------.
|
|
||||||
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| Backsp|Ins|
|
|
||||||
* |---------------------------------------------------------------|
|
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]|Enter|Del|
|
|
||||||
* |------------------------------------------------------` |---|
|
|
||||||
* |CapsLo| A| S| D| F| G| H| J| K| L| ;| '| \| |PgU|
|
|
||||||
* |---------------------------------------------------------------|
|
|
||||||
* |Shif| | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
|
||||||
* |---------------------------------------------------------------|
|
|
||||||
* |Ctrl|Gui |Alt | Space |Fn0 |Alt |Gui | |Lef|Dow|Rig|
|
|
||||||
* `---------------------------------------------------------------'
|
|
||||||
*/
|
*/
|
||||||
|
#define LAYOUT_65_ansi( \
|
||||||
#define LAYOUT_iso( \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k15, k16, \
|
||||||
K00, K10, K20, K30, K40, K50, K60, K70, K80, K01, K11, K21, K31, K51, K61, \
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k32, k33, \
|
||||||
K71, K81, K02, K12, K22, K32, K42, K52, K62, K72, K82, K03, K13, K33, \
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k48, k50, \
|
||||||
K43, K53, K63, K73, K83, K04, K14, K24, K34, K44, K54, K64, K74, K84, K05, \
|
k51, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
K15, K25, K35, K45, K55, K65, K75, K85, K06, K16, K26, K36, K46, K56, K66, \
|
k67, k68, k70, k71, k72, k73, k74, k75, k76, k77 \
|
||||||
K76, K86, K07, K17, K27, K37, K47, K57, K67, K77 \
|
|
||||||
) { \
|
) { \
|
||||||
{ K00, K01, K02, K03, K04, K05, K06, K07 }, \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
{ K10, K11, K12, K13, K14, K15, K16, K17 }, \
|
{ k10, k11, k12, k13, XXX, k15, k16, k17, k18 }, \
|
||||||
{ K20, K21, K22, KC_NO, K24, K25, K26, K27 }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
{ K30, K31, K32, K33, K34, K35, K36, K37 }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38 }, \
|
||||||
{ K40, KC_NO, K42, K43, K44, K45, K46, K47 }, \
|
{ k40, k41, k42, k43, k44, k45, k46, XXX, k48 }, \
|
||||||
{ K50, K51, K52, K53, K54, K55, K56, K57 }, \
|
{ k50, k51, XXX, k53, k54, k55, k56, k57, k58 }, \
|
||||||
{ K60, K61, K62, K63, K64, K65, K66, K67 }, \
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
{ K70, K71, K72, K73, K74, K75, K76, K77 }, \
|
{ k70, k71, k72, k73, k74, k75, k76, k77, XXX } \
|
||||||
{ K80, K81, K82, K83, K84, K85, K86, KC_NO } \
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ARIA WhiteFox
|
/*
|
||||||
* ,---------------------------------------------------------------.
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
|
||||||
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| Backsp|Ins|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|Del|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
|
||||||
* |CapsL | A| S| D| F| G| H| J| K| L| ;| '|Enter |PgU|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
|
||||||
* |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
|
||||||
* |Ctrl|GUI |Alt | Space |Alt |Ctrl| |Lef|Dow|Rig|
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
* `---------------------------------------------------------------'
|
* └────┴────┴────┴────────────────────────┴────┴────┘ └───┴───┴───┘
|
||||||
*/
|
*/
|
||||||
|
#define LAYOUT_65_ansi_blocker( \
|
||||||
#define LAYOUT_aria( \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k15, k16, \
|
||||||
K00, K10, K20, K30, K40, K50, K60, K70, K80, K01, K11, K21, K31, K51, K61, \
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k32, k33, \
|
||||||
K71, K81, K02, K12, K22, K32, K42, K52, K62, K72, K82, K03, K13, K23, K33, \
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k48, k50, \
|
||||||
K43, K53, K63, K73, K83, K04, K14, K24, K34, K44, K54, K64, K84, K05, \
|
k51, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
K15, K35, K45, K55, K65, K75, K85, K06, K16, K26, K36, K46, K56, K66, \
|
k67, k68, k70, k71, k72, k73, k75, k76, k77 \
|
||||||
K76, K86, K07, K17, K27, K37, K57, K67, K77 \
|
|
||||||
) { \
|
) { \
|
||||||
{ K00, K01, K02, K03, K04, K05, K06, K07 }, \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
{ K10, K11, K12, K13, K14, K15, K16, K17 }, \
|
{ k10, k11, k12, k13, XXX, k15, k16, k17, k18 }, \
|
||||||
{ K20, K21, K22, K23, K24, KC_NO, K26, K27 }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
{ K30, K31, K32, K33, K34, K35, K36, K37 }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38 }, \
|
||||||
{ K40, KC_NO, K42, K43, K44, K45, K46, KC_NO }, \
|
{ k40, k41, k42, k43, k44, k45, k46, XXX, k48 }, \
|
||||||
{ K50, K51, K52, K53, K54, K55, K56, K57 }, \
|
{ k50, k51, XXX, k53, k54, k55, k56, k57, k58 }, \
|
||||||
{ K60, K61, K62, K63, K64, K65, K66, K67 }, \
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
{ K70, K71, K72, K73, KC_NO, K75, K76, K77 }, \
|
{ k70, k71, k72, k73, XXX, k75, k76, k77, XXX } \
|
||||||
{ K80, K81, K82, K83, K84, K85, K86, KC_NO } \
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Vanilla WhiteFox
|
/*
|
||||||
* ,---------------------------------------------------------------.
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
|
||||||
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| Backsp| `|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┼───┤
|
||||||
* |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|Del|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
|
||||||
* |CapsL | A| S| D| F| G| H| J| K| L| ;| '|Enter |PgU|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
|
||||||
* |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |Up |PgD|
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
* |---------------------------------------------------------------|
|
* ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
|
||||||
* |Ctrl|GUI |Alt | Space |Alt|GUI|Ctl|Lef|Dow|Rig|
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
* `---------------------------------------------------------------'
|
* └────┴────┴────┴────────────────────────┴────┴────┘ └───┴───┴───┘
|
||||||
*/
|
*/
|
||||||
|
#define LAYOUT_65_ansi_blocker_split_bs( \
|
||||||
#define LAYOUT_vanilla( \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k14, k15, k16, \
|
||||||
K00, K10, K20, K30, K40, K50, K60, K70, K80, K01, K11, K21, K31, K51, K61, \
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k32, k33, \
|
||||||
K71, K81, K02, K12, K22, K32, K42, K52, K62, K72, K82, K03, K13, K23, K33, \
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k48, k50, \
|
||||||
K43, K53, K63, K73, K83, K04, K14, K24, K34, K44, K54, K64, K84, K05, \
|
k51, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
K15, K35, K45, K55, K65, K75, K85, K06, K16, K26, K36, K46, K56, K66, \
|
k67, k68, k70, k71, k72, k73, k75, k76, k77 \
|
||||||
K76, K86, K07, K17, K27, K37, K47, K57, K67, K77 \
|
|
||||||
) { \
|
) { \
|
||||||
{ K00, K01, K02, K03, K04, K05, K06, K07 }, \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
{ K10, K11, K12, K13, K14, K15, K16, K17 }, \
|
{ k10, k11, k12, k13, k14, k15, k16, k17, k18 }, \
|
||||||
{ K20, K21, K22, K23, K24, KC_NO, K26, K27 }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
{ K30, K31, K32, K33, K34, K35, K36, K37 }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38 }, \
|
||||||
{ K40, KC_NO, K42, K43, K44, K45, K46, K47 }, \
|
{ k40, k41, k42, k43, k44, k45, k46, XXX, k48 }, \
|
||||||
{ K50, K51, K52, K53, K54, K55, K56, K57 }, \
|
{ k50, k51, XXX, k53, k54, k55, k56, k57, k58 }, \
|
||||||
{ K60, K61, K62, K63, K64, K65, K66, K67 }, \
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
{ K70, K71, K72, K73, KC_NO, K75, K76, K77 }, \
|
{ k70, k71, k72, k73, XXX, k75, k76, k77, XXX } \
|
||||||
{ K80, K81, K82, K83, K84, K85, K86, KC_NO } \
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
/*
|
||||||
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ ├───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┼───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┴───┘
|
||||||
|
*/
|
||||||
|
#define LAYOUT_65_iso( \
|
||||||
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k15, k16, \
|
||||||
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k33, \
|
||||||
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k47, k48, k50, \
|
||||||
|
k51, k52, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
|
k67, k68, k70, k71, k72, k73, k74, k75, k76, k77 \
|
||||||
|
) { \
|
||||||
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
|
{ k10, k11, k12, k13, XXX, k15, k16, k17, k18 }, \
|
||||||
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
|
{ k30, k31, XXX, k33, k34, k35, k36, k37, k38 }, \
|
||||||
|
{ k40, k41, k42, k43, k44, k45, k46, k47, k48 }, \
|
||||||
|
{ k50, k51, k52, k53, k54, k55, k56, k57, k58 }, \
|
||||||
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
|
{ k70, k71, k72, k73, k74, k75, k76, k77, XXX } \
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ ├───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* └────┴────┴────┴────────────────────────┴────┴────┘ └───┴───┴───┘
|
||||||
|
*/
|
||||||
|
#define LAYOUT_65_iso_blocker( \
|
||||||
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k15, k16, \
|
||||||
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k33, \
|
||||||
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k47, k48, k50, \
|
||||||
|
k51, k52, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
|
k67, k68, k70, k71, k72, k73, k75, k76, k77 \
|
||||||
|
) { \
|
||||||
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
|
{ k10, k11, k12, k13, XXX, k15, k16, k17, k18 }, \
|
||||||
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
|
{ k30, k31, XXX, k33, k34, k35, k36, k37, k38 }, \
|
||||||
|
{ k40, k41, k42, k43, k44, k45, k46, k47, k48 }, \
|
||||||
|
{ k50, k51, k52, k53, k54, k55, k56, k57, k58 }, \
|
||||||
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
|
{ k70, k71, k72, k73, XXX, k75, k76, k77, XXX } \
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ ├───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
|
||||||
|
* │ │ │ │ │ │ │ │ │ │ │
|
||||||
|
* └────┴────┴────┴────────────────────────┴────┴────┘ └───┴───┴───┘
|
||||||
|
*/
|
||||||
|
#define LAYOUT_65_iso_blocker_split_bs( \
|
||||||
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k10, k11, k12, k13, k14, k15, k16, \
|
||||||
|
k17, k18, k20, k21, k22, k23, k24, k25, k26, k27, k28, k30, k31, k33, \
|
||||||
|
k34, k35, k36, k37, k38, k40, k41, k42, k43, k44, k45, k46, k47, k48, k50, \
|
||||||
|
k51, k52, k53, k54, k55, k56, k57, k58, k60, k61, k62, k63, k64, k65, k66, \
|
||||||
|
k67, k68, k70, k71, k72, k73, k75, k76, k77 \
|
||||||
|
) { \
|
||||||
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08 }, \
|
||||||
|
{ k10, k11, k12, k13, k14, k15, k16, k17, k18 }, \
|
||||||
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28 }, \
|
||||||
|
{ k30, k31, XXX, k33, k34, k35, k36, k37, k38 }, \
|
||||||
|
{ k40, k41, k42, k43, k44, k45, k46, k47, k48 }, \
|
||||||
|
{ k50, k51, k52, k53, k54, k55, k56, k57, k58 }, \
|
||||||
|
{ k60, k61, k62, k63, k64, k65, k66, k67, k68 }, \
|
||||||
|
{ k70, k71, k72, k73, XXX, k75, k76, k77, XXX } \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define LAYOUT LAYOUT_all
|
||||||
|
#define LAYOUT_aria LAYOUT_65_ansi_blocker
|
||||||
|
#define LAYOUT_iso LAYOUT_65_iso
|
||||||
|
#define LAYOUT_truefox LAYOUT_65_ansi_blocker_split_bs
|
||||||
|
#define LAYOUT_vanilla LAYOUT_65_ansi
|
||||||
|
|
Loading…
Reference in a new issue