parent
b5fc6f0682
commit
c01a8b030e
9 changed files with 513 additions and 458 deletions
|
@ -3,41 +3,122 @@
|
||||||
#include "config_common.h"
|
#include "config_common.h"
|
||||||
|
|
||||||
/* USB Device descriptor parameter */
|
/* USB Device descriptor parameter */
|
||||||
#define VENDOR_ID 0x7983
|
#define VENDOR_ID 0x7983
|
||||||
#define PRODUCT_ID 0x0512
|
#define PRODUCT_ID 0x0512
|
||||||
#define DEVICE_VER 0x0001
|
#define DEVICE_VER 0x0001
|
||||||
#define MANUFACTURER Keycapsss
|
#define MANUFACTURER Keycapsss
|
||||||
#define PRODUCT O4L:5x12
|
#define PRODUCT O4L:5x12
|
||||||
#define DESCRIPTION A 60 key ortholinear keyboard
|
|
||||||
|
|
||||||
/* key matrix size */
|
/* key matrix size */
|
||||||
#define MATRIX_ROWS 5
|
#define MATRIX_ROWS 5
|
||||||
#define MATRIX_COLS 12
|
#define MATRIX_COLS 12
|
||||||
|
|
||||||
/* key matrix pins */
|
/*
|
||||||
|
* 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 { F7, B1, B3, B2, B6 }
|
#define MATRIX_ROW_PINS { F7, B1, B3, B2, B6 }
|
||||||
#define MATRIX_COL_PINS { B5, B4, E6, D7, C6, D4, D0, D1, D2, F6, F5, F4 }
|
#define MATRIX_COL_PINS { B5, B4, E6, D7, C6, D4, D0, D1, D2, F6, F5, F4 }
|
||||||
#define UNUSED_PINS
|
#define UNUSED_PINS
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
/* COL2ROW, ROW2COL */
|
||||||
#define DIODE_DIRECTION COL2ROW
|
#define DIODE_DIRECTION COL2ROW
|
||||||
|
|
||||||
/* WS2812 RGB LED */
|
//#define BACKLIGHT_PIN B7
|
||||||
#define RGB_DI_PIN D3
|
//#define BACKLIGHT_LEVELS 3
|
||||||
|
//#define BACKLIGHT_BREATHING
|
||||||
|
|
||||||
|
#define RGB_DI_PIN D3
|
||||||
#ifdef RGB_DI_PIN
|
#ifdef RGB_DI_PIN
|
||||||
#define RGBLIGHT_ANIMATIONS
|
# define RGBLED_NUM 12
|
||||||
#define RGBLED_NUM 12 // Number of LEDs
|
# define RGBLIGHT_HUE_STEP 4
|
||||||
#define RGBLIGHT_HUE_STEP 4
|
# define RGBLIGHT_SAT_STEP 4
|
||||||
#define RGBLIGHT_SAT_STEP 4
|
# define RGBLIGHT_VAL_STEP 4
|
||||||
#define RGBLIGHT_VAL_STEP 4
|
//# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
|
||||||
|
//# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
|
||||||
|
/*== all animations enable ==*/
|
||||||
|
# define RGBLIGHT_ANIMATIONS
|
||||||
|
/*== or choose animations ==*/
|
||||||
|
//# define RGBLIGHT_EFFECT_BREATHING
|
||||||
|
//# define RGBLIGHT_EFFECT_RAINBOW_MOOD
|
||||||
|
//# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
|
||||||
|
//# define RGBLIGHT_EFFECT_SNAKE
|
||||||
|
//# define RGBLIGHT_EFFECT_KNIGHT
|
||||||
|
//# define RGBLIGHT_EFFECT_CHRISTMAS
|
||||||
|
//# define RGBLIGHT_EFFECT_STATIC_GRADIENT
|
||||||
|
//# define RGBLIGHT_EFFECT_RGB_TEST
|
||||||
|
//# define RGBLIGHT_EFFECT_ALTERNATING
|
||||||
|
/*== customize breathing effect ==*/
|
||||||
|
/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
|
||||||
|
//# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
|
||||||
|
/*==== use exp() and sin() ====*/
|
||||||
|
//# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
|
||||||
|
//# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Set 0 if debouncing isn't needed */
|
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
||||||
#define DEBOUNCE 5
|
#define DEBOUNCE 5
|
||||||
|
|
||||||
|
/* define if matrix has ghost (lacks anti-ghosting diodes) */
|
||||||
|
//#define MATRIX_HAS_GHOST
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
||||||
|
/* 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
|
||||||
|
* These options are also useful to firmware size reduction.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* disable debug print */
|
||||||
|
//#define NO_DEBUG
|
||||||
|
|
||||||
|
/* disable print */
|
||||||
|
//#define NO_PRINT
|
||||||
|
|
||||||
|
/* disable action features */
|
||||||
|
//#define NO_ACTION_LAYER
|
||||||
|
//#define NO_ACTION_TAPPING
|
||||||
|
//#define NO_ACTION_ONESHOT
|
||||||
|
|
||||||
|
/* 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
|
||||||
|
|
|
@ -7,195 +7,204 @@
|
||||||
"height": 5,
|
"height": 5,
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT_ortho_5x12": {
|
"LAYOUT_ortho_5x12": {
|
||||||
"key_count": 60,
|
|
||||||
"layout": [
|
"layout": [
|
||||||
{"w": 1, "x": 0, "y": 0},
|
{"x": 0, "y": 0},
|
||||||
{"w": 1, "x": 1, "y": 0},
|
{"x": 1, "y": 0},
|
||||||
{"w": 1, "x": 2, "y": 0},
|
{"x": 2, "y": 0},
|
||||||
{"w": 1, "x": 3, "y": 0},
|
{"x": 3, "y": 0},
|
||||||
{"w": 1, "x": 4, "y": 0},
|
{"x": 4, "y": 0},
|
||||||
{"w": 1, "x": 5, "y": 0},
|
{"x": 5, "y": 0},
|
||||||
{"w": 1, "x": 6, "y": 0},
|
{"x": 6, "y": 0},
|
||||||
{"w": 1, "x": 7, "y": 0},
|
{"x": 7, "y": 0},
|
||||||
{"w": 1, "x": 8, "y": 0},
|
{"x": 8, "y": 0},
|
||||||
{"w": 1, "x": 9, "y": 0},
|
{"x": 9, "y": 0},
|
||||||
{"w": 1, "x": 10, "y": 0},
|
{"x": 10, "y": 0},
|
||||||
{"w": 1, "x": 11, "y": 0},
|
{"x": 11, "y": 0},
|
||||||
{"w": 1, "x": 0, "y": 1},
|
|
||||||
{"w": 1, "x": 1, "y": 1},
|
{"x": 0, "y": 1},
|
||||||
{"w": 1, "x": 2, "y": 1},
|
{"x": 1, "y": 1},
|
||||||
{"w": 1, "x": 3, "y": 1},
|
{"x": 2, "y": 1},
|
||||||
{"w": 1, "x": 4, "y": 1},
|
{"x": 3, "y": 1},
|
||||||
{"w": 1, "x": 5, "y": 1},
|
{"x": 4, "y": 1},
|
||||||
{"w": 1, "x": 6, "y": 1},
|
{"x": 5, "y": 1},
|
||||||
{"w": 1, "x": 7, "y": 1},
|
{"x": 6, "y": 1},
|
||||||
{"w": 1, "x": 8, "y": 1},
|
{"x": 7, "y": 1},
|
||||||
{"w": 1, "x": 9, "y": 1},
|
{"x": 8, "y": 1},
|
||||||
{"w": 1, "x": 10, "y": 1},
|
{"x": 9, "y": 1},
|
||||||
{"w": 1, "x": 11, "y": 1},
|
{"x": 10, "y": 1},
|
||||||
{"w": 1, "x": 0, "y": 2},
|
{"x": 11, "y": 1},
|
||||||
{"w": 1, "x": 1, "y": 2},
|
|
||||||
{"w": 1, "x": 2, "y": 2},
|
{"x": 0, "y": 2},
|
||||||
{"w": 1, "x": 3, "y": 2},
|
{"x": 1, "y": 2},
|
||||||
{"w": 1, "x": 4, "y": 2},
|
{"x": 2, "y": 2},
|
||||||
{"w": 1, "x": 5, "y": 2},
|
{"x": 3, "y": 2},
|
||||||
{"w": 1, "x": 6, "y": 2},
|
{"x": 4, "y": 2},
|
||||||
{"w": 1, "x": 7, "y": 2},
|
{"x": 5, "y": 2},
|
||||||
{"w": 1, "x": 8, "y": 2},
|
{"x": 6, "y": 2},
|
||||||
{"w": 1, "x": 9, "y": 2},
|
{"x": 7, "y": 2},
|
||||||
{"w": 1, "x": 10, "y": 2},
|
{"x": 8, "y": 2},
|
||||||
{"w": 1, "x": 11, "y": 2},
|
{"x": 9, "y": 2},
|
||||||
{"w": 1, "x": 0, "y": 3},
|
{"x": 10, "y": 2},
|
||||||
{"w": 1, "x": 1, "y": 3},
|
{"x": 11, "y": 2},
|
||||||
{"w": 1, "x": 2, "y": 3},
|
|
||||||
{"w": 1, "x": 3, "y": 3},
|
{"x": 0, "y": 3},
|
||||||
{"w": 1, "x": 4, "y": 3},
|
{"x": 1, "y": 3},
|
||||||
{"w": 1, "x": 5, "y": 3},
|
{"x": 2, "y": 3},
|
||||||
{"w": 1, "x": 6, "y": 3},
|
{"x": 3, "y": 3},
|
||||||
{"w": 1, "x": 7, "y": 3},
|
{"x": 4, "y": 3},
|
||||||
{"w": 1, "x": 8, "y": 3},
|
{"x": 5, "y": 3},
|
||||||
{"w": 1, "x": 9, "y": 3},
|
{"x": 6, "y": 3},
|
||||||
{"w": 1, "x": 10, "y": 3},
|
{"x": 7, "y": 3},
|
||||||
{"w": 1, "x": 11, "y": 3},
|
{"x": 8, "y": 3},
|
||||||
{"w": 1, "x": 0, "y": 4},
|
{"x": 9, "y": 3},
|
||||||
{"w": 1, "x": 1, "y": 4},
|
{"x": 10, "y": 3},
|
||||||
{"w": 1, "x": 2, "y": 4},
|
{"x": 11, "y": 3},
|
||||||
{"w": 1, "x": 3, "y": 4},
|
|
||||||
{"w": 1, "x": 4, "y": 4},
|
{"x": 0, "y": 4},
|
||||||
{"w": 1, "x": 5, "y": 4},
|
{"x": 1, "y": 4},
|
||||||
{"w": 1, "x": 6, "y": 4},
|
{"x": 2, "y": 4},
|
||||||
{"w": 1, "x": 7, "y": 4},
|
{"x": 3, "y": 4},
|
||||||
{"w": 1, "x": 8, "y": 4},
|
{"x": 4, "y": 4},
|
||||||
{"w": 1, "x": 9, "y": 4},
|
{"x": 5, "y": 4},
|
||||||
{"w": 1, "x": 10, "y": 4},
|
{"x": 6, "y": 4},
|
||||||
{"w": 1, "x": 11, "y": 4}
|
{"x": 7, "y": 4},
|
||||||
|
{"x": 8, "y": 4},
|
||||||
|
{"x": 9, "y": 4},
|
||||||
|
{"x": 10, "y": 4},
|
||||||
|
{"x": 11, "y": 4}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_ortho_5x12_1x2uC": {
|
"LAYOUT_ortho_5x12_1x2uC": {
|
||||||
"key_count": 59,
|
|
||||||
"layout": [
|
"layout": [
|
||||||
{"w": 1, "x": 0, "y": 0},
|
{"x": 0, "y": 0},
|
||||||
{"w": 1, "x": 1, "y": 0},
|
{"x": 1, "y": 0},
|
||||||
{"w": 1, "x": 2, "y": 0},
|
{"x": 2, "y": 0},
|
||||||
{"w": 1, "x": 3, "y": 0},
|
{"x": 3, "y": 0},
|
||||||
{"w": 1, "x": 4, "y": 0},
|
{"x": 4, "y": 0},
|
||||||
{"w": 1, "x": 5, "y": 0},
|
{"x": 5, "y": 0},
|
||||||
{"w": 1, "x": 6, "y": 0},
|
{"x": 6, "y": 0},
|
||||||
{"w": 1, "x": 7, "y": 0},
|
{"x": 7, "y": 0},
|
||||||
{"w": 1, "x": 8, "y": 0},
|
{"x": 8, "y": 0},
|
||||||
{"w": 1, "x": 9, "y": 0},
|
{"x": 9, "y": 0},
|
||||||
{"w": 1, "x": 10, "y": 0},
|
{"x": 10, "y": 0},
|
||||||
{"w": 1, "x": 11, "y": 0},
|
{"x": 11, "y": 0},
|
||||||
{"w": 1, "x": 0, "y": 1},
|
|
||||||
{"w": 1, "x": 1, "y": 1},
|
{"x": 0, "y": 1},
|
||||||
{"w": 1, "x": 2, "y": 1},
|
{"x": 1, "y": 1},
|
||||||
{"w": 1, "x": 3, "y": 1},
|
{"x": 2, "y": 1},
|
||||||
{"w": 1, "x": 4, "y": 1},
|
{"x": 3, "y": 1},
|
||||||
{"w": 1, "x": 5, "y": 1},
|
{"x": 4, "y": 1},
|
||||||
{"w": 1, "x": 6, "y": 1},
|
{"x": 5, "y": 1},
|
||||||
{"w": 1, "x": 7, "y": 1},
|
{"x": 6, "y": 1},
|
||||||
{"w": 1, "x": 8, "y": 1},
|
{"x": 7, "y": 1},
|
||||||
{"w": 1, "x": 9, "y": 1},
|
{"x": 8, "y": 1},
|
||||||
{"w": 1, "x": 10, "y": 1},
|
{"x": 9, "y": 1},
|
||||||
{"w": 1, "x": 11, "y": 1},
|
{"x": 10, "y": 1},
|
||||||
{"w": 1, "x": 0, "y": 2},
|
{"x": 11, "y": 1},
|
||||||
{"w": 1, "x": 1, "y": 2},
|
|
||||||
{"w": 1, "x": 2, "y": 2},
|
{"x": 0, "y": 2},
|
||||||
{"w": 1, "x": 3, "y": 2},
|
{"x": 1, "y": 2},
|
||||||
{"w": 1, "x": 4, "y": 2},
|
{"x": 2, "y": 2},
|
||||||
{"w": 1, "x": 5, "y": 2},
|
{"x": 3, "y": 2},
|
||||||
{"w": 1, "x": 6, "y": 2},
|
{"x": 4, "y": 2},
|
||||||
{"w": 1, "x": 7, "y": 2},
|
{"x": 5, "y": 2},
|
||||||
{"w": 1, "x": 8, "y": 2},
|
{"x": 6, "y": 2},
|
||||||
{"w": 1, "x": 9, "y": 2},
|
{"x": 7, "y": 2},
|
||||||
{"w": 1, "x": 10, "y": 2},
|
{"x": 8, "y": 2},
|
||||||
{"w": 1, "x": 11, "y": 2},
|
{"x": 9, "y": 2},
|
||||||
{"w": 1, "x": 0, "y": 3},
|
{"x": 10, "y": 2},
|
||||||
{"w": 1, "x": 1, "y": 3},
|
{"x": 11, "y": 2},
|
||||||
{"w": 1, "x": 2, "y": 3},
|
|
||||||
{"w": 1, "x": 3, "y": 3},
|
{"x": 0, "y": 3},
|
||||||
{"w": 1, "x": 4, "y": 3},
|
{"x": 1, "y": 3},
|
||||||
{"w": 1, "x": 5, "y": 3},
|
{"x": 2, "y": 3},
|
||||||
{"w": 1, "x": 6, "y": 3},
|
{"x": 3, "y": 3},
|
||||||
{"w": 1, "x": 7, "y": 3},
|
{"x": 4, "y": 3},
|
||||||
{"w": 1, "x": 8, "y": 3},
|
{"x": 5, "y": 3},
|
||||||
{"w": 1, "x": 9, "y": 3},
|
{"x": 6, "y": 3},
|
||||||
{"w": 1, "x": 10, "y": 3},
|
{"x": 7, "y": 3},
|
||||||
{"w": 1, "x": 11, "y": 3},
|
{"x": 8, "y": 3},
|
||||||
{"w": 1, "x": 0, "y": 4},
|
{"x": 9, "y": 3},
|
||||||
{"w": 1, "x": 1, "y": 4},
|
{"x": 10, "y": 3},
|
||||||
{"w": 1, "x": 2, "y": 4},
|
{"x": 11, "y": 3},
|
||||||
{"w": 1, "x": 3, "y": 4},
|
|
||||||
{"w": 1, "x": 4, "y": 4},
|
{"x": 0, "y": 4},
|
||||||
{"w": 2, "x": 5, "y": 4},
|
{"x": 1, "y": 4},
|
||||||
{"w": 1, "x": 7, "y": 4},
|
{"x": 2, "y": 4},
|
||||||
{"w": 1, "x": 8, "y": 4},
|
{"x": 3, "y": 4},
|
||||||
{"w": 1, "x": 9, "y": 4},
|
{"x": 4, "y": 4},
|
||||||
{"w": 1, "x": 10, "y": 4},
|
{"x": 5, "y": 4, "w": 2},
|
||||||
{"w": 1, "x": 11, "y": 4}
|
{"x": 7, "y": 4},
|
||||||
|
{"x": 8, "y": 4},
|
||||||
|
{"x": 9, "y": 4},
|
||||||
|
{"x": 10, "y": 4},
|
||||||
|
{"x": 11, "y": 4}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_ortho_5x12_2x2u": {
|
"LAYOUT_ortho_5x12_2x2u": {
|
||||||
"key_count": 58,
|
|
||||||
"layout": [
|
"layout": [
|
||||||
{"w": 1, "x": 0, "y": 0},
|
{"x": 0, "y": 0},
|
||||||
{"w": 1, "x": 1, "y": 0},
|
{"x": 1, "y": 0},
|
||||||
{"w": 1, "x": 2, "y": 0},
|
{"x": 2, "y": 0},
|
||||||
{"w": 1, "x": 3, "y": 0},
|
{"x": 3, "y": 0},
|
||||||
{"w": 1, "x": 4, "y": 0},
|
{"x": 4, "y": 0},
|
||||||
{"w": 1, "x": 5, "y": 0},
|
{"x": 5, "y": 0},
|
||||||
{"w": 1, "x": 6, "y": 0},
|
{"x": 6, "y": 0},
|
||||||
{"w": 1, "x": 7, "y": 0},
|
{"x": 7, "y": 0},
|
||||||
{"w": 1, "x": 8, "y": 0},
|
{"x": 8, "y": 0},
|
||||||
{"w": 1, "x": 9, "y": 0},
|
{"x": 9, "y": 0},
|
||||||
{"w": 1, "x": 10, "y": 0},
|
{"x": 10, "y": 0},
|
||||||
{"w": 1, "x": 11, "y": 0},
|
{"x": 11, "y": 0},
|
||||||
{"w": 1, "x": 0, "y": 1},
|
|
||||||
{"w": 1, "x": 1, "y": 1},
|
{"x": 0, "y": 1},
|
||||||
{"w": 1, "x": 2, "y": 1},
|
{"x": 1, "y": 1},
|
||||||
{"w": 1, "x": 3, "y": 1},
|
{"x": 2, "y": 1},
|
||||||
{"w": 1, "x": 4, "y": 1},
|
{"x": 3, "y": 1},
|
||||||
{"w": 1, "x": 5, "y": 1},
|
{"x": 4, "y": 1},
|
||||||
{"w": 1, "x": 6, "y": 1},
|
{"x": 5, "y": 1},
|
||||||
{"w": 1, "x": 7, "y": 1},
|
{"x": 6, "y": 1},
|
||||||
{"w": 1, "x": 8, "y": 1},
|
{"x": 7, "y": 1},
|
||||||
{"w": 1, "x": 9, "y": 1},
|
{"x": 8, "y": 1},
|
||||||
{"w": 1, "x": 10, "y": 1},
|
{"x": 9, "y": 1},
|
||||||
{"w": 1, "x": 11, "y": 1},
|
{"x": 10, "y": 1},
|
||||||
{"w": 1, "x": 0, "y": 2},
|
{"x": 11, "y": 1},
|
||||||
{"w": 1, "x": 1, "y": 2},
|
|
||||||
{"w": 1, "x": 2, "y": 2},
|
{"x": 0, "y": 2},
|
||||||
{"w": 1, "x": 3, "y": 2},
|
{"x": 1, "y": 2},
|
||||||
{"w": 1, "x": 4, "y": 2},
|
{"x": 2, "y": 2},
|
||||||
{"w": 1, "x": 5, "y": 2},
|
{"x": 3, "y": 2},
|
||||||
{"w": 1, "x": 6, "y": 2},
|
{"x": 4, "y": 2},
|
||||||
{"w": 1, "x": 7, "y": 2},
|
{"x": 5, "y": 2},
|
||||||
{"w": 1, "x": 8, "y": 2},
|
{"x": 6, "y": 2},
|
||||||
{"w": 1, "x": 9, "y": 2},
|
{"x": 7, "y": 2},
|
||||||
{"w": 1, "x": 10, "y": 2},
|
{"x": 8, "y": 2},
|
||||||
{"w": 1, "x": 11, "y": 2},
|
{"x": 9, "y": 2},
|
||||||
{"w": 1, "x": 0, "y": 3},
|
{"x": 10, "y": 2},
|
||||||
{"w": 1, "x": 1, "y": 3},
|
{"x": 11, "y": 2},
|
||||||
{"w": 1, "x": 2, "y": 3},
|
|
||||||
{"w": 1, "x": 3, "y": 3},
|
{"x": 0, "y": 3},
|
||||||
{"w": 1, "x": 4, "y": 3},
|
{"x": 1, "y": 3},
|
||||||
{"w": 1, "x": 5, "y": 3},
|
{"x": 2, "y": 3},
|
||||||
{"w": 1, "x": 6, "y": 3},
|
{"x": 3, "y": 3},
|
||||||
{"w": 1, "x": 7, "y": 3},
|
{"x": 4, "y": 3},
|
||||||
{"w": 1, "x": 8, "y": 3},
|
{"x": 5, "y": 3},
|
||||||
{"w": 1, "x": 9, "y": 3},
|
{"x": 6, "y": 3},
|
||||||
{"w": 1, "x": 10, "y": 3},
|
{"x": 7, "y": 3},
|
||||||
{"w": 1, "x": 11, "y": 3},
|
{"x": 8, "y": 3},
|
||||||
{"w": 1, "x": 0, "y": 4},
|
{"x": 9, "y": 3},
|
||||||
{"w": 1, "x": 1, "y": 4},
|
{"x": 10, "y": 3},
|
||||||
{"w": 1, "x": 2, "y": 4},
|
{"x": 11, "y": 3},
|
||||||
{"w": 1, "x": 3, "y": 4},
|
|
||||||
{"w": 2, "x": 4, "y": 4},
|
{"x": 0, "y": 4},
|
||||||
{"w": 2, "x": 6, "y": 4},
|
{"x": 1, "y": 4},
|
||||||
{"w": 1, "x": 8, "y": 4},
|
{"x": 2, "y": 4},
|
||||||
{"w": 1, "x": 9, "y": 4},
|
{"x": 3, "y": 4},
|
||||||
{"w": 1, "x": 10, "y": 4},
|
{"x": 4, "y": 4, "w": 2},
|
||||||
{"w": 1, "x": 11, "y": 4}
|
{"x": 6, "y": 4, "w": 2},
|
||||||
|
{"x": 8, "y": 4},
|
||||||
|
{"x": 9, "y": 4},
|
||||||
|
{"x": 10, "y": 4},
|
||||||
|
{"x": 11, "y": 4}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
// place overrides here
|
|
|
@ -1,83 +1,73 @@
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
enum layer_names {
|
||||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
_QWERTY,
|
||||||
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
_LOWER
|
||||||
// entirely and just use numbers.
|
|
||||||
enum o4l5x12_layers {
|
|
||||||
_QWERTY,
|
|
||||||
_LOWER
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Layers get their own keys. These are defined to make them not mess up
|
enum custom_keycodes {
|
||||||
// the grid.
|
QWERTY = SAFE_RANGE,
|
||||||
enum o4l5x12_keycodes {
|
LOWER
|
||||||
QWERTY = SAFE_RANGE,
|
|
||||||
LOWER
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
/* Qwerty
|
||||||
|
* ,-----------------------------------------------------------------------------------.
|
||||||
|
* | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = |
|
||||||
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
|
* | ESC | Q | W | E | R | T | Y | U | I | O | P | BSPC |
|
||||||
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
|
* | Tab | A | S | D | F | G | H | J | K | L | ; | " |
|
||||||
|
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||||
|
* | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
|
||||||
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
|
* | Ctrl | Alt | GUI |Lower | Enter | Space | Left | Down | Up |Right |
|
||||||
|
* `-----------------------------------------------------------------------------------'
|
||||||
|
*/
|
||||||
|
[_QWERTY] = LAYOUT_ortho_5x12_2x2u(
|
||||||
|
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_GESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
||||||
|
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
|
||||||
|
KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_ENT, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
|
||||||
|
),
|
||||||
|
|
||||||
/* Qwerty
|
/* Lower
|
||||||
* ,-----------------------------------------------------------------------------------.
|
* ,-----------------------------------------------------------------------------------.
|
||||||
* | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = |
|
* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
* | ESC | Q | W | E | R | T | Y | U | I | O | P | BSPC |
|
* | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | | Del |
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
* | Tab | A | S | D | F | G | H | J | K | L | ; | " |
|
* |RGBPLA| { | [ | ( | | | ) | ] | } | | | | |
|
||||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||||
* | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
|
* |RGBMOD| | | | | | | | | | | |
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
* | Ctrl | Alt | GUI |Lower | Enter | Space | Left | Down | Up |Right |
|
* |UGlow | Reset| | | | | Next | Vol- | Vol+ | Play |
|
||||||
* `-----------------------------------------------------------------------------------'
|
* `-----------------------------------------------------------------------------------'
|
||||||
*/
|
*/
|
||||||
[_QWERTY] = LAYOUT_ortho_5x12_2x2u(
|
[_LOWER] = LAYOUT_ortho_5x12_2x2u(
|
||||||
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_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
|
||||||
KC_GESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, KC_DEL,
|
||||||
KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
RGB_M_P, KC_LCBR, KC_LBRC, KC_LPRN, KC_SLSH, KC_BSLS, KC_RPRN, KC_RBRC, KC_RCBR, _______, _______, KC_PIPE,
|
||||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
|
RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||||
KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_ENT, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
|
RGB_TOG, RESET, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
|
||||||
),
|
)
|
||||||
|
|
||||||
/* Lower
|
|
||||||
* ,-----------------------------------------------------------------------------------.
|
|
||||||
* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
|
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
|
||||||
* | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | | Del |
|
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
|
||||||
* |RGBPLA| { | [ | ( | | | ) | ] | } | | | | |
|
|
||||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
|
||||||
* |RGBMOD| | | | | | | | | | | |
|
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
|
||||||
* |UGlow | Reset| | | | | Next | Vol- | Vol+ | Play |
|
|
||||||
* `-----------------------------------------------------------------------------------'
|
|
||||||
*/
|
|
||||||
[_LOWER] = LAYOUT_ortho_5x12_2x2u(
|
|
||||||
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_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, KC_DEL,
|
|
||||||
RGB_M_P, KC_LCBR, KC_LBRC, KC_LPRN, KC_SLSH, KC_BSLS, KC_RPRN, KC_RBRC, KC_RCBR, _______, _______, KC_PIPE,
|
|
||||||
RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
RGB_TOG, RESET, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
|
|
||||||
),
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
case QWERTY:
|
case QWERTY:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
set_single_persistent_default_layer(_QWERTY);
|
set_single_persistent_default_layer(_QWERTY);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
break;
|
|
||||||
case LOWER:
|
case LOWER:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
layer_on(_LOWER);
|
layer_on(_LOWER);
|
||||||
} else {
|
} else {
|
||||||
layer_off(_LOWER);
|
layer_off(_LOWER);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
break;
|
}
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
// place overrides here
|
|
|
@ -1,140 +1,129 @@
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
enum layer_names {
|
||||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
_QWERTY,
|
||||||
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
_LOWER,
|
||||||
// entirely and just use numbers.
|
_RAISE,
|
||||||
enum preonic_layers {
|
_ADJUST
|
||||||
_QWERTY,
|
|
||||||
_LOWER,
|
|
||||||
_RAISE,
|
|
||||||
_ADJUST
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Layers get their own keys. These are defined to make them not mess up
|
enum custom_keycodes {
|
||||||
// the grid.
|
QWERTY = SAFE_RANGE,
|
||||||
enum preonic_keycodes {
|
LOWER,
|
||||||
QWERTY = SAFE_RANGE,
|
RAISE
|
||||||
LOWER,
|
|
||||||
RAISE
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
/* Qwerty (Preonic Layer Style)
|
||||||
|
* ,-----------------------------------------------------------------------------------.
|
||||||
|
* | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
|
||||||
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
|
* | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
|
||||||
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
|
* | Esc | A | S | D | F | G | H | J | K | L | ; | " |
|
||||||
|
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||||
|
* | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
|
||||||
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
|
* | | Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
|
||||||
|
* `-----------------------------------------------------------------------------------'
|
||||||
|
*/
|
||||||
|
[_QWERTY] = LAYOUT_ortho_5x12(
|
||||||
|
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
|
||||||
|
KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
|
||||||
|
RGB_TOG, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
|
||||||
|
),
|
||||||
|
|
||||||
/* Qwerty (Preonic Layer Style)
|
/* Lower (Preonic Layer Style)
|
||||||
* ,-----------------------------------------------------------------------------------.
|
* ,-----------------------------------------------------------------------------------.
|
||||||
* | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
|
* | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
* | Tab | Q | W | E | R | T | Y | U | I | O | P | Del |
|
* | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Del |
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
* | Esc | A | S | D | F | G | H | J | K | L | ; | " |
|
* | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | |
|
||||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||||
* | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
|
* | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | | | |
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
* | | Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
|
* | | | | | | | | | Next | Vol- | Vol+ | Play |
|
||||||
* `-----------------------------------------------------------------------------------'
|
* `-----------------------------------------------------------------------------------'
|
||||||
*/
|
*/
|
||||||
[_QWERTY] = LAYOUT_ortho_5x12(
|
[_LOWER] = LAYOUT_ortho_5x12(
|
||||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
|
||||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
|
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
|
||||||
KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
|
||||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
|
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, S(KC_NUHS), S(KC_NUBS), KC_HOME, KC_END, _______,
|
||||||
RGB_TOG, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
|
_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Lower (Preonic Layer Style)
|
/* Raise (Preonic Layer Style)
|
||||||
* ,-----------------------------------------------------------------------------------.
|
* ,-----------------------------------------------------------------------------------.
|
||||||
* | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
|
* | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
* | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Del |
|
* | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Del |
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
* | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | |
|
* | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
|
||||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||||
* | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | | | |
|
* | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | | | |
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
* | | | | | | | | | Next | Vol- | Vol+ | Play |
|
* | | | | | | | | | Next | Vol- | Vol+ | Play |
|
||||||
* `-----------------------------------------------------------------------------------'
|
* `-----------------------------------------------------------------------------------'
|
||||||
*/
|
*/
|
||||||
[_LOWER] = LAYOUT_ortho_5x12(
|
[_RAISE] = LAYOUT_ortho_5x12(
|
||||||
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
|
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||||
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL,
|
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL,
|
||||||
KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
|
KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
|
||||||
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),KC_HOME, KC_END, _______,
|
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
|
_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
|
||||||
),
|
),
|
||||||
|
|
||||||
/* Raise (Preonic Layer Style)
|
|
||||||
* ,-----------------------------------------------------------------------------------.
|
|
||||||
* | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
|
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
|
||||||
* | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Del |
|
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
|
||||||
* | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
|
|
||||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
|
||||||
* | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | | | |
|
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
|
||||||
* | | | | | | | | | Next | Vol- | Vol+ | Play |
|
|
||||||
* `-----------------------------------------------------------------------------------'
|
|
||||||
*/
|
|
||||||
[_RAISE] = LAYOUT_ortho_5x12(
|
|
||||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
|
||||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL,
|
|
||||||
KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
|
|
||||||
_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
|
|
||||||
),
|
|
||||||
|
|
||||||
/* Adjust (Lower + Raise) (Preonic Layer Style)
|
|
||||||
* ,-----------------------------------------------------------------------------------.
|
|
||||||
* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
|
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
|
||||||
* | | Reset| | | | | | | | | | Del |
|
|
||||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
|
||||||
* | | | |Aud on|AudOff|AGnorm|AGswap|Qwerty| | | | |
|
|
||||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
|
||||||
* | |Voice-|Voice+|Mus on|MusOff|MidiOn|MidOff| | | | | |
|
|
||||||
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
|
||||||
* | | | | | | | | | | | | |
|
|
||||||
* `-----------------------------------------------------------------------------------'
|
|
||||||
*/
|
|
||||||
[_ADJUST] = LAYOUT_ortho_5x12(
|
|
||||||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
|
|
||||||
_______, RESET, DEBUG, _______, _______, _______, _______, TERM_ON, TERM_OFF,_______, _______, KC_DEL,
|
|
||||||
_______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, _______, _______, _______, _______,
|
|
||||||
_______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
||||||
)
|
|
||||||
|
|
||||||
|
/* Adjust (Lower + Raise) (Preonic Layer Style)
|
||||||
|
* ,-----------------------------------------------------------------------------------.
|
||||||
|
* | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 |
|
||||||
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
|
* | | Reset| | | | | | | | | | Del |
|
||||||
|
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||||
|
* | | | |Aud on|AudOff|AGnorm|AGswap|Qwerty| | | | |
|
||||||
|
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||||
|
* | |Voice-|Voice+|Mus on|MusOff|MidiOn|MidOff| | | | | |
|
||||||
|
* |------+------+------+------+------+------+------+------+------+------+------+------|
|
||||||
|
* | | | | | | | | | | | | |
|
||||||
|
* `-----------------------------------------------------------------------------------'
|
||||||
|
*/
|
||||||
|
[_ADJUST] = LAYOUT_ortho_5x12(
|
||||||
|
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
|
||||||
|
_______, RESET, DEBUG, _______, _______, _______, _______, TERM_ON, TERM_OFF,_______, _______, KC_DEL,
|
||||||
|
_______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, _______, _______, _______, _______,
|
||||||
|
_______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, _______, _______, _______, _______, _______,
|
||||||
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||||
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
case QWERTY:
|
case QWERTY:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
set_single_persistent_default_layer(_QWERTY);
|
set_single_persistent_default_layer(_QWERTY);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
break;
|
|
||||||
case LOWER:
|
case LOWER:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
layer_on(_LOWER);
|
layer_on(_LOWER);
|
||||||
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
} else {
|
} else {
|
||||||
layer_off(_LOWER);
|
layer_off(_LOWER);
|
||||||
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
break;
|
|
||||||
case RAISE:
|
case RAISE:
|
||||||
if (record->event.pressed) {
|
if (record->event.pressed) {
|
||||||
layer_on(_RAISE);
|
layer_on(_RAISE);
|
||||||
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
} else {
|
} else {
|
||||||
layer_off(_RAISE);
|
layer_off(_RAISE);
|
||||||
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
update_tri_layer(_LOWER, _RAISE, _ADJUST);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
break;
|
}
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,47 +4,44 @@
|
||||||
|
|
||||||
#define XXX KC_NO
|
#define XXX KC_NO
|
||||||
|
|
||||||
#define LAYOUT_ortho_5x12( \
|
#define LAYOUT_ortho_5x12( \
|
||||||
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, \
|
||||||
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \
|
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, \
|
||||||
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \
|
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, \
|
||||||
k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, \
|
k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, \
|
||||||
k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b \
|
k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4A, k4B \
|
||||||
) \
|
) { \
|
||||||
{ \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B }, \
|
||||||
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
|
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B }, \
|
||||||
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B }, \
|
||||||
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B }, \
|
||||||
{ k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, }, \
|
{ k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4A, k4B } \
|
||||||
{ k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b } \
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#define LAYOUT_ortho_5x12_1x2uC( \
|
#define LAYOUT_ortho_5x12_1x2uC( \
|
||||||
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, \
|
||||||
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \
|
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, \
|
||||||
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \
|
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, \
|
||||||
k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, \
|
k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, \
|
||||||
k40, k41, k42, k43, k44, k45, k47, k48, k49, k4a, k4b \
|
k40, k41, k42, k43, k44, k45, k47, k48, k49, k4A, k4B \
|
||||||
) \
|
) { \
|
||||||
{ \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B }, \
|
||||||
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
|
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B }, \
|
||||||
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B }, \
|
||||||
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B }, \
|
||||||
{ k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, }, \
|
{ k40, k41, k42, k43, k44, k45, XXX, k47, k48, k49, k4A, k4B } \
|
||||||
{ k40, k41, k42, k43, k44, k45, XXX, k47, k48, k49, k4a, k4b } \
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#define LAYOUT_ortho_5x12_2x2u( \
|
#define LAYOUT_ortho_5x12_2x2u( \
|
||||||
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
|
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, \
|
||||||
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \
|
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, \
|
||||||
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \
|
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, \
|
||||||
k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, \
|
k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, \
|
||||||
k40, k41, k42, k43, k44, k46, k48, k49, k4a, k4b \
|
k40, k41, k42, k43, k44, k46, k48, k49, k4A, k4B \
|
||||||
) \
|
) { \
|
||||||
{ \
|
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B }, \
|
||||||
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
|
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B }, \
|
||||||
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, }, \
|
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B }, \
|
||||||
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \
|
{ k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B }, \
|
||||||
{ k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, }, \
|
{ k40, k41, k42, k43, k44, XXX, k46, XXX, k48, k49, k4A, k4B } \
|
||||||
{ k40, k41, k42, k43, k44, XXX, k46, XXX, k48, k49, k4a, k4b } \
|
}
|
||||||
}
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
A ortholinear 5x12 keyboard made and sold by Keycapsss. [More info at Keycapsss.com](https://keycapsss.com).
|
A ortholinear 5x12 keyboard made and sold by Keycapsss. [More info at Keycapsss.com](https://keycapsss.com).
|
||||||
|
|
||||||
<img src="https://i.imgur.com/5p8rDme.jpg" height="500px">
|
![o4l_5x12](https://i.imgur.com/5p8rDmel.jpg)
|
||||||
|
|
||||||
## Features:
|
## Features:
|
||||||
|
|
||||||
|
@ -14,18 +14,16 @@ A ortholinear 5x12 keyboard made and sold by Keycapsss. [More info at Keycapsss.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
- Keyboard Maintainer: BenRoe [GitHub](https://github.com/BenRoe) / [Twitter](https://twitter.com/ben_roe)
|
* Keyboard Maintainer: BenRoe [GitHub](https://github.com/BenRoe) / [Twitter](https://twitter.com/ben_roe)
|
||||||
- Hardware Supported: Pro Micro
|
* Hardware Supported: Pro Micro
|
||||||
- Hardware Availability: [Keycapsss.com](https://keycapsss.com)
|
* Hardware Availability: [Keycapsss.com](https://keycapsss.com)
|
||||||
|
|
||||||
|
Make example for this keyboard (after setting up your build environment):
|
||||||
|
|
||||||
Make firmware .hex for this keyboard (after setting up your build environment):
|
|
||||||
|
|
||||||
make keycapsss/o4l_5x12:default
|
make keycapsss/o4l_5x12:default
|
||||||
|
|
||||||
Example of flashing this keyboard (or use [QMK Toolbox](https://github.com/qmk/qmk_toolbox)):
|
Flashing example for this keyboard:
|
||||||
|
|
||||||
make keycapsss/o4l_5x12:default:avrdude
|
make keycapsss/o4l_5x12: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).
|
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).
|
||||||
|
|
|
@ -2,26 +2,23 @@
|
||||||
MCU = atmega32u4
|
MCU = atmega32u4
|
||||||
|
|
||||||
# Bootloader selection
|
# Bootloader selection
|
||||||
# Teensy halfkay
|
|
||||||
# Pro Micro caterina
|
|
||||||
# Atmel DFU atmel-dfu
|
|
||||||
# LUFA DFU lufa-dfu
|
|
||||||
# QMK DFU qmk-dfu
|
|
||||||
# ATmega32A bootloadHID
|
|
||||||
# ATmega328P USBasp
|
|
||||||
BOOTLOADER = caterina
|
BOOTLOADER = caterina
|
||||||
|
|
||||||
|
# Build Options
|
||||||
|
# change yes to no to disable
|
||||||
|
#
|
||||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
|
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
MOUSEKEY_ENABLE = no # 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 = no # Console for debug
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||||
NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
MIDI_ENABLE = no # MIDI controls
|
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
AUDIO_ENABLE = no # Audio output on port C6
|
NKRO_ENABLE = no # USB Nkey Rollover
|
||||||
UNICODE_ENABLE = no # Unicode
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
||||||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
|
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
||||||
|
AUDIO_ENABLE = no # Audio output
|
||||||
|
|
||||||
LAYOUTS = ortho_5x12
|
LAYOUTS = ortho_5x12
|
||||||
|
|
Loading…
Reference in a new issue