refactor: improve code for QMK merge (#532)
This commit is contained in:
@ -20,68 +20,55 @@
|
|||||||
#define VIAL_UNLOCK_COMBO_ROWS { 0, 1 }
|
#define VIAL_UNLOCK_COMBO_ROWS { 0, 1 }
|
||||||
#define VIAL_UNLOCK_COMBO_COLS { 0, 0 }
|
#define VIAL_UNLOCK_COMBO_COLS { 0, 0 }
|
||||||
|
|
||||||
#ifdef RGB_MATRIX_ENABLE
|
#define RGB_DISABLE_WHEN_USB_SUSPENDED // turn off effects when suspended
|
||||||
# define RGBLED_NUM 54 // Number of LEDs
|
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
||||||
# define RGB_MATRIX_LED_COUNT RGBLED_NUM
|
#define RGB_MATRIX_MAXIMUM_BRIGHTNESS 150 // limits maximum brightness of LEDs to 150 out of 255. Higher may cause the controller to crash.
|
||||||
# define RGB_MATRIX_SPLIT \
|
#define RGB_MATRIX_SAT_STEP 8
|
||||||
{ 27, 27 }
|
#define RGB_MATRIX_VAL_STEP 8
|
||||||
//# define SPLIT_TRANSPORT_MIRROR
|
#define RGB_MATRIX_SPD_STEP 10
|
||||||
# define RGB_MATRIX_KEYPRESSES // reacts to keypresses
|
|
||||||
// # define RGB_MATRIX_KEYRELEASES // reacts to keyreleases (instead of keypresses)
|
|
||||||
// # define RGB_DISABLE_AFTER_TIMEOUT 0 // number of ticks to wait until disabling effects
|
|
||||||
# define RGB_DISABLE_WHEN_USB_SUSPENDED // turn off effects when suspended
|
|
||||||
# define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
|
||||||
// # define RGB_MATRIX_LED_PROCESS_LIMIT (RGB_MATRIX_LED_COUNT + 4) / 5 // limits the number of LEDs to process in an animation per task run (increases keyboard responsiveness)
|
|
||||||
// # define RGB_MATRIX_LED_FLUSH_LIMIT 16 // limits in milliseconds how frequently an animation will update the LEDs. 16 (16ms) is equivalent to limiting to 60fps (increases keyboard responsiveness)
|
|
||||||
# define RGB_MATRIX_MAXIMUM_BRIGHTNESS 150 // limits maximum brightness of LEDs to 150 out of 255. Higher may cause the controller to crash.
|
|
||||||
# define RGB_MATRIX_HUE_STEP 8
|
|
||||||
# define RGB_MATRIX_SAT_STEP 8
|
|
||||||
# define RGB_MATRIX_VAL_STEP 8
|
|
||||||
# define RGB_MATRIX_SPD_STEP 10
|
|
||||||
|
|
||||||
# define ENABLE_RGB_MATRIX_ALPHAS_MODS
|
#define ENABLE_RGB_MATRIX_ALPHAS_MODS
|
||||||
# define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN
|
#define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN
|
||||||
# define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
|
#define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
|
||||||
# define ENABLE_RGB_MATRIX_BREATHING
|
#define ENABLE_RGB_MATRIX_BREATHING
|
||||||
# define ENABLE_RGB_MATRIX_BAND_SAT
|
#define ENABLE_RGB_MATRIX_BAND_SAT
|
||||||
# define ENABLE_RGB_MATRIX_BAND_VAL
|
#define ENABLE_RGB_MATRIX_BAND_VAL
|
||||||
# define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT
|
#define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT
|
||||||
# define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
|
#define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
|
||||||
# define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT
|
#define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT
|
||||||
# define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
|
#define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_ALL
|
#define ENABLE_RGB_MATRIX_CYCLE_ALL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
|
#define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
|
#define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
|
||||||
# define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
#define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
|
#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
|
#define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
|
#define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
|
||||||
# define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
|
#define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
|
||||||
# define ENABLE_RGB_MATRIX_DUAL_BEACON
|
#define ENABLE_RGB_MATRIX_DUAL_BEACON
|
||||||
# define ENABLE_RGB_MATRIX_RAINBOW_BEACON
|
#define ENABLE_RGB_MATRIX_RAINBOW_BEACON
|
||||||
# define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS
|
#define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS
|
||||||
# define ENABLE_RGB_MATRIX_RAINDROPS
|
#define ENABLE_RGB_MATRIX_RAINDROPS
|
||||||
# define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
|
#define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
|
||||||
# define ENABLE_RGB_MATRIX_HUE_BREATHING
|
#define ENABLE_RGB_MATRIX_HUE_BREATHING
|
||||||
# define ENABLE_RGB_MATRIX_HUE_PENDULUM
|
#define ENABLE_RGB_MATRIX_HUE_PENDULUM
|
||||||
# define ENABLE_RGB_MATRIX_HUE_WAVE
|
#define ENABLE_RGB_MATRIX_HUE_WAVE
|
||||||
# define ENABLE_RGB_MATRIX_PIXEL_RAIN
|
#define ENABLE_RGB_MATRIX_PIXEL_RAIN
|
||||||
# define ENABLE_RGB_MATRIX_PIXEL_FLOW
|
#define ENABLE_RGB_MATRIX_PIXEL_FLOW
|
||||||
# define ENABLE_RGB_MATRIX_PIXEL_FRACTAL
|
#define ENABLE_RGB_MATRIX_PIXEL_FRACTAL
|
||||||
// enabled only if RGB_MATRIX_FRAMEBUFFER_EFFECTS is defined
|
// enabled only if RGB_MATRIX_FRAMEBUFFER_EFFECTS is defined
|
||||||
# define ENABLE_RGB_MATRIX_TYPING_HEATMAP
|
#define ENABLE_RGB_MATRIX_TYPING_HEATMAP
|
||||||
# define ENABLE_RGB_MATRIX_DIGITAL_RAIN
|
#define ENABLE_RGB_MATRIX_DIGITAL_RAIN
|
||||||
// enabled only of RGB_MATRIX_KEYPRESSES or RGB_MATRIX_KEYRELEASES is defined
|
// enabled only of RGB_MATRIX_KEYPRESSES or RGB_MATRIX_KEYRELEASES is defined
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
|
#define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS
|
||||||
# define ENABLE_RGB_MATRIX_SPLASH
|
#define ENABLE_RGB_MATRIX_SPLASH
|
||||||
# define ENABLE_RGB_MATRIX_MULTISPLASH
|
#define ENABLE_RGB_MATRIX_MULTISPLASH
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_SPLASH
|
#define ENABLE_RGB_MATRIX_SOLID_SPLASH
|
||||||
# define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH
|
#define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH
|
||||||
#endif
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2022 Kevin Gee <info@controller.works>
|
|
||||||
*
|
|
||||||
* 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/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "quantum.h"
|
|
@ -12,23 +12,29 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
void led_set_user(uint8_t usb_led) {
|
bool led_update_user(led_t led_state) {
|
||||||
|
if (led_state.num_lock) {
|
||||||
if (usb_led & (1 << USB_LED_NUM_LOCK)) {
|
DDRB |= (1 << 5);
|
||||||
DDRB |= (1 << 5); PORTB &= ~(1 << 5);
|
PORTB &= ~(1 << 5);
|
||||||
} else {
|
} else {
|
||||||
DDRB &= ~(1 << 5); PORTB &= ~(1 << 5);
|
DDRB &= ~(1 << 5);
|
||||||
|
PORTB &= ~(1 << 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
|
if (led_state.caps_lock) {
|
||||||
DDRB |= (1 << 6); PORTB &= ~(1 << 6);
|
DDRB |= (1 << 6);
|
||||||
|
PORTB &= ~(1 << 6);
|
||||||
} else {
|
} else {
|
||||||
DDRB &= ~(1 << 6); PORTB &= ~(1 << 6);
|
DDRB &= ~(1 << 6);
|
||||||
|
PORTB &= ~(1 << 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
|
if (led_state.scroll_lock) {
|
||||||
DDRB |= (1 << 7); PORTB &= ~(1 << 7);
|
DDRB |= (1 << 7);
|
||||||
|
PORTB &= ~(1 << 7);
|
||||||
} else {
|
} else {
|
||||||
DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
|
DDRB &= ~(1 << 7);
|
||||||
|
PORTB &= ~(1 << 7);
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -22,23 +22,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_VOLU, 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_ENT,
|
KC_VOLU, 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_ENT,
|
||||||
KC_VOLD, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
|
KC_VOLD, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH,
|
||||||
KC_LCTL, KC_LALT, KC_SPC, KC_LWIN, KC_SPC, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
|
KC_LCTL, KC_LALT, KC_SPC, KC_LWIN, KC_SPC, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
|
||||||
),
|
)
|
||||||
[1] = LAYOUT(
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
||||||
),
|
|
||||||
[2] = LAYOUT(
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
||||||
),
|
|
||||||
[3] = LAYOUT(
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
VIA_ENABLE = yes
|
VIA_ENABLE = yes
|
||||||
VIAL_ENABLE = yes
|
VIAL_ENABLE = yes
|
||||||
OLED_ENABLE = yes
|
OLED_ENABLE = yes
|
||||||
OLED_DRIVER = SSD1306
|
|
||||||
MOUSEKEY_ENABLE = no
|
MOUSEKEY_ENABLE = no
|
||||||
EXTRAKEY_ENABLE = yes
|
EXTRAKEY_ENABLE = yes
|
||||||
WPM_ENABLE = yes
|
WPM_ENABLE = yes
|
||||||
|
@ -85,30 +85,24 @@ void matrix_init_user(void) {
|
|||||||
writePinLow(B3);
|
writePinLow(B3);
|
||||||
}
|
}
|
||||||
|
|
||||||
void led_set_user(uint8_t usb_led) {
|
bool led_update_user(led_t led_state) {
|
||||||
if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
|
if (led_state.num_lock) {
|
||||||
writePinHigh(B2);
|
writePinHigh(B2);
|
||||||
} else {
|
} else {
|
||||||
writePinLow(B2);
|
writePinLow(B2);
|
||||||
}
|
}
|
||||||
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
|
if (led_state.caps_lock) {
|
||||||
writePinHigh(B1);
|
writePinHigh(B1);
|
||||||
} else {
|
} else {
|
||||||
writePinLow(B1);
|
writePinLow(B1);
|
||||||
}
|
}
|
||||||
/*
|
return false;
|
||||||
if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
|
|
||||||
writePinHigh(B3);
|
|
||||||
} else {
|
|
||||||
writePinLow(B3);
|
|
||||||
}*/
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//function for layer indicator LED
|
//function for layer indicator LED
|
||||||
layer_state_t layer_state_set_user(layer_state_t state)
|
layer_state_t layer_state_set_user(layer_state_t state)
|
||||||
{
|
{
|
||||||
if (biton32(state) == 1) {
|
if (get_highest_layer(state) == 1) {
|
||||||
writePinHigh(B3);
|
writePinHigh(B3);
|
||||||
} else {
|
} else {
|
||||||
writePinLow(B3);
|
writePinLow(B3);
|
||||||
|
@ -1,47 +1,40 @@
|
|||||||
{
|
{
|
||||||
"manufacturer": "KnoblesseOblige",
|
|
||||||
"keyboard_name": "TW40",
|
"keyboard_name": "TW40",
|
||||||
|
"manufacturer": "KnoblesseOblige",
|
||||||
|
"url": "https://p3dstore.com/products/tw40-gb",
|
||||||
"maintainer": "KnoblesseOblige",
|
"maintainer": "KnoblesseOblige",
|
||||||
"bootloader": "atmel-dfu",
|
"usb": {
|
||||||
"diode_direction": "COL2ROW",
|
"vid": "0x503D",
|
||||||
"features": {
|
"pid": "0x5457",
|
||||||
"bootmagic": true,
|
"device_version": "0.0.1"
|
||||||
"extrakey": true,
|
},
|
||||||
"mousekey": true,
|
"rgblight": {
|
||||||
"nkro": false,
|
"led_count": 15,
|
||||||
"rgblight": true
|
"animations": {
|
||||||
|
"breathing": true,
|
||||||
|
"rainbow_mood": true,
|
||||||
|
"rainbow_swirl": true,
|
||||||
|
"snake": true,
|
||||||
|
"knight": true,
|
||||||
|
"christmas": true,
|
||||||
|
"static_gradient": true,
|
||||||
|
"rgb_test": true,
|
||||||
|
"alternating": true,
|
||||||
|
"twinkle": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "E6"
|
||||||
},
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F0", "F1", "F4", "F5", "F6", "F7", "C7", "C6", "B6", "B5", "B4", "D7", "D6", "D4"],
|
"cols": ["F0", "F1", "F4", "F5", "F6", "F7", "C7", "C6", "B6", "B5", "B4", "D7", "D6", "D4"],
|
||||||
"rows": ["B0", "D5", "D3", "D2"]
|
"rows": ["B0", "D5", "D3", "D2"]
|
||||||
},
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"rgblight": {
|
"bootloader": "atmel-dfu",
|
||||||
"led_count": 15,
|
|
||||||
"animations": {
|
|
||||||
"alternating": true,
|
|
||||||
"breathing": true,
|
|
||||||
"christmas": true,
|
|
||||||
"knight": true,
|
|
||||||
"rainbow_mood": true,
|
|
||||||
"rainbow_swirl": true,
|
|
||||||
"rgb_test": true,
|
|
||||||
"snake": true,
|
|
||||||
"static_gradient": true,
|
|
||||||
"twinkle": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"url": "https://p3dstore.com/products/tw40-gb",
|
|
||||||
"usb": {
|
|
||||||
"device_version": "0.0.1",
|
|
||||||
"pid": "0x5457",
|
|
||||||
"vid": "0x503D"
|
|
||||||
},
|
|
||||||
"ws2812": {
|
|
||||||
"pin": "E6"
|
|
||||||
},
|
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT_3_split_space_split_rshift_4x_125": {
|
"LAYOUT_all": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -57,6 +50,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -70,6 +64,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -83,66 +78,14 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 2.25},
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 4], "x": 6, "y": 3, "w": 1.25},
|
{"matrix": [3, 4], "x": 5, "y": 3, "w": 2.25},
|
||||||
{"matrix": [3, 6], "x": 7.25, "y": 3, "w": 2.75},
|
{"matrix": [3, 5], "x": 7.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
{"matrix": [3, 6], "x": 8.5, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"LAYOUT_3_split_space_split_rshift_5x_100": {
|
|
||||||
"layout": [
|
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
|
||||||
{"matrix": [0, 2], "x": 2.5, "y": 0},
|
|
||||||
{"matrix": [0, 3], "x": 3.5, "y": 0},
|
|
||||||
{"matrix": [0, 4], "x": 4.5, "y": 0},
|
|
||||||
{"matrix": [0, 5], "x": 5.5, "y": 0},
|
|
||||||
{"matrix": [0, 6], "x": 6.5, "y": 0},
|
|
||||||
{"matrix": [0, 7], "x": 7.5, "y": 0},
|
|
||||||
{"matrix": [0, 8], "x": 8.5, "y": 0},
|
|
||||||
{"matrix": [0, 9], "x": 9.5, "y": 0},
|
|
||||||
{"matrix": [0, 10], "x": 10.5, "y": 0},
|
|
||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
|
||||||
{"matrix": [1, 3], "x": 3.75, "y": 1},
|
|
||||||
{"matrix": [1, 4], "x": 4.75, "y": 1},
|
|
||||||
{"matrix": [1, 5], "x": 5.75, "y": 1},
|
|
||||||
{"matrix": [1, 6], "x": 6.75, "y": 1},
|
|
||||||
{"matrix": [1, 7], "x": 7.75, "y": 1},
|
|
||||||
{"matrix": [1, 8], "x": 8.75, "y": 1},
|
|
||||||
{"matrix": [1, 9], "x": 9.75, "y": 1},
|
|
||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
|
||||||
{"matrix": [2, 3], "x": 4.25, "y": 2},
|
|
||||||
{"matrix": [2, 4], "x": 5.25, "y": 2},
|
|
||||||
{"matrix": [2, 5], "x": 6.25, "y": 2},
|
|
||||||
{"matrix": [2, 6], "x": 7.25, "y": 2},
|
|
||||||
{"matrix": [2, 7], "x": 8.25, "y": 2},
|
|
||||||
{"matrix": [2, 8], "x": 9.25, "y": 2},
|
|
||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 2.25},
|
|
||||||
{"matrix": [3, 4], "x": 6, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 6], "x": 7.25, "y": 3, "w": 2.75},
|
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3},
|
{"matrix": [3, 9], "x": 10, "y": 3},
|
||||||
{"matrix": [3, 10], "x": 11, "y": 3},
|
{"matrix": [3, 10], "x": 11, "y": 3},
|
||||||
{"matrix": [3, 11], "x": 12, "y": 3},
|
{"matrix": [3, 11], "x": 12, "y": 3},
|
||||||
@ -166,6 +109,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -179,6 +123,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -191,6 +136,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
@ -219,6 +165,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -232,6 +179,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -244,6 +192,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
@ -257,7 +206,7 @@
|
|||||||
{"matrix": [3, 13], "x": 14, "y": 3}
|
{"matrix": [3, 13], "x": 14, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_4_split_space_split_rshift_4x_125": {
|
"LAYOUT_3_split_space_split_rshift_4x_125": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -273,6 +222,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -286,6 +236,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -299,20 +250,20 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.25},
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 2.25},
|
||||||
{"matrix": [3, 4], "x": 5, "y": 3, "w": 2.25},
|
{"matrix": [3, 4], "x": 6, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 5], "x": 7.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 6], "x": 7.25, "y": 3, "w": 2.75},
|
||||||
{"matrix": [3, 6], "x": 8.5, "y": 3, "w": 1.5},
|
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_4_split_space_split_rshift_5x_100": {
|
"LAYOUT_3_split_space_split_rshift_5x_100": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -328,6 +279,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -341,6 +293,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -354,13 +307,13 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.25},
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 2.25},
|
||||||
{"matrix": [3, 4], "x": 5, "y": 3, "w": 2.25},
|
{"matrix": [3, 4], "x": 6, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 5], "x": 7.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 6], "x": 7.25, "y": 3, "w": 2.75},
|
||||||
{"matrix": [3, 6], "x": 8.5, "y": 3, "w": 1.5},
|
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3},
|
{"matrix": [3, 9], "x": 10, "y": 3},
|
||||||
{"matrix": [3, 10], "x": 11, "y": 3},
|
{"matrix": [3, 10], "x": 11, "y": 3},
|
||||||
{"matrix": [3, 11], "x": 12, "y": 3},
|
{"matrix": [3, 11], "x": 12, "y": 3},
|
||||||
@ -384,6 +337,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -397,6 +351,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -409,6 +364,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
@ -438,6 +394,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -451,6 +408,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -463,6 +421,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
@ -477,7 +436,7 @@
|
|||||||
{"matrix": [3, 13], "x": 14, "y": 3}
|
{"matrix": [3, 13], "x": 14, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_625_split_rshift_4x_125": {
|
"LAYOUT_4_split_space_split_rshift_4x_125": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -493,6 +452,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -506,6 +466,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -519,17 +480,21 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 4], "x": 3.75, "y": 3, "w": 6.25},
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 4], "x": 5, "y": 3, "w": 2.25},
|
||||||
|
{"matrix": [3, 5], "x": 7.25, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 6], "x": 8.5, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_625_split_rshift_5x_100": {
|
"LAYOUT_4_split_space_split_rshift_5x_100": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -545,6 +510,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -558,6 +524,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -571,10 +538,14 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 4], "x": 3.75, "y": 3, "w": 6.25},
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 4], "x": 5, "y": 3, "w": 2.25},
|
||||||
|
{"matrix": [3, 5], "x": 7.25, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 6], "x": 8.5, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3},
|
{"matrix": [3, 9], "x": 10, "y": 3},
|
||||||
{"matrix": [3, 10], "x": 11, "y": 3},
|
{"matrix": [3, 10], "x": 11, "y": 3},
|
||||||
{"matrix": [3, 11], "x": 12, "y": 3},
|
{"matrix": [3, 11], "x": 12, "y": 3},
|
||||||
@ -598,6 +569,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -611,6 +583,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -623,6 +596,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
@ -649,6 +623,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -662,6 +637,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -674,6 +650,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
@ -685,7 +662,7 @@
|
|||||||
{"matrix": [3, 13], "x": 14, "y": 3}
|
{"matrix": [3, 13], "x": 14, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_700_split_rshift_4x_125": {
|
"LAYOUT_625_split_rshift_4x_125": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -701,6 +678,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -714,6 +692,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -727,16 +706,18 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 4], "x": 3.75, "y": 3, "w": 6.25},
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_700_split_rshift_5x_100": {
|
"LAYOUT_625_split_rshift_5x_100": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -752,6 +733,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -765,6 +747,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -778,9 +761,11 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 4], "x": 3.75, "y": 3, "w": 6.25},
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3},
|
{"matrix": [3, 9], "x": 10, "y": 3},
|
||||||
{"matrix": [3, 10], "x": 11, "y": 3},
|
{"matrix": [3, 10], "x": 11, "y": 3},
|
||||||
{"matrix": [3, 11], "x": 12, "y": 3},
|
{"matrix": [3, 11], "x": 12, "y": 3},
|
||||||
@ -804,6 +789,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -817,6 +803,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -829,6 +816,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
||||||
@ -854,6 +842,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -867,6 +856,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -879,6 +869,7 @@
|
|||||||
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
{"matrix": [2, 11], "x": 11.25, "y": 2},
|
||||||
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
{"matrix": [2, 12], "x": 12.25, "y": 2, "w": 2.75},
|
||||||
|
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
||||||
@ -889,7 +880,7 @@
|
|||||||
{"matrix": [3, 13], "x": 14, "y": 3}
|
{"matrix": [3, 13], "x": 14, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_all": {
|
"LAYOUT_700_split_rshift_4x_125": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
@ -905,6 +896,7 @@
|
|||||||
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
@ -918,6 +910,7 @@
|
|||||||
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
@ -931,13 +924,64 @@
|
|||||||
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 12], "x": 13, "y": 2},
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
{"matrix": [2, 13], "x": 14, "y": 2},
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
|
||||||
{"matrix": [3, 1], "x": 1.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.25},
|
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
||||||
{"matrix": [3, 4], "x": 5, "y": 3, "w": 2.25},
|
{"matrix": [3, 9], "x": 10, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 5], "x": 7.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 11], "x": 11.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 6], "x": 8.5, "y": 3, "w": 1.5},
|
{"matrix": [3, 12], "x": 12.5, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 13], "x": 13.75, "y": 3, "w": 1.25}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_700_split_rshift_5x_100": {
|
||||||
|
"layout": [
|
||||||
|
{"matrix": [0, 0], "x": 0, "y": 0, "w": 1.5},
|
||||||
|
{"matrix": [0, 1], "x": 1.5, "y": 0},
|
||||||
|
{"matrix": [0, 2], "x": 2.5, "y": 0},
|
||||||
|
{"matrix": [0, 3], "x": 3.5, "y": 0},
|
||||||
|
{"matrix": [0, 4], "x": 4.5, "y": 0},
|
||||||
|
{"matrix": [0, 5], "x": 5.5, "y": 0},
|
||||||
|
{"matrix": [0, 6], "x": 6.5, "y": 0},
|
||||||
|
{"matrix": [0, 7], "x": 7.5, "y": 0},
|
||||||
|
{"matrix": [0, 8], "x": 8.5, "y": 0},
|
||||||
|
{"matrix": [0, 9], "x": 9.5, "y": 0},
|
||||||
|
{"matrix": [0, 10], "x": 10.5, "y": 0},
|
||||||
|
{"matrix": [0, 11], "x": 11.5, "y": 0},
|
||||||
|
{"matrix": [0, 12], "x": 12.5, "y": 0},
|
||||||
|
{"matrix": [0, 13], "x": 13.5, "y": 0, "w": 1.5},
|
||||||
|
|
||||||
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.75},
|
||||||
|
{"matrix": [1, 1], "x": 1.75, "y": 1},
|
||||||
|
{"matrix": [1, 2], "x": 2.75, "y": 1},
|
||||||
|
{"matrix": [1, 3], "x": 3.75, "y": 1},
|
||||||
|
{"matrix": [1, 4], "x": 4.75, "y": 1},
|
||||||
|
{"matrix": [1, 5], "x": 5.75, "y": 1},
|
||||||
|
{"matrix": [1, 6], "x": 6.75, "y": 1},
|
||||||
|
{"matrix": [1, 7], "x": 7.75, "y": 1},
|
||||||
|
{"matrix": [1, 8], "x": 8.75, "y": 1},
|
||||||
|
{"matrix": [1, 9], "x": 9.75, "y": 1},
|
||||||
|
{"matrix": [1, 10], "x": 10.75, "y": 1},
|
||||||
|
{"matrix": [1, 11], "x": 11.75, "y": 1},
|
||||||
|
{"matrix": [1, 12], "x": 12.75, "y": 1, "w": 2.25},
|
||||||
|
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 2.25},
|
||||||
|
{"matrix": [2, 1], "x": 2.25, "y": 2},
|
||||||
|
{"matrix": [2, 2], "x": 3.25, "y": 2},
|
||||||
|
{"matrix": [2, 3], "x": 4.25, "y": 2},
|
||||||
|
{"matrix": [2, 4], "x": 5.25, "y": 2},
|
||||||
|
{"matrix": [2, 5], "x": 6.25, "y": 2},
|
||||||
|
{"matrix": [2, 6], "x": 7.25, "y": 2},
|
||||||
|
{"matrix": [2, 7], "x": 8.25, "y": 2},
|
||||||
|
{"matrix": [2, 8], "x": 9.25, "y": 2},
|
||||||
|
{"matrix": [2, 9], "x": 10.25, "y": 2},
|
||||||
|
{"matrix": [2, 11], "x": 11.25, "y": 2, "w": 1.75},
|
||||||
|
{"matrix": [2, 12], "x": 13, "y": 2},
|
||||||
|
{"matrix": [2, 13], "x": 14, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [3, 0], "x": 0, "y": 3, "w": 1.5},
|
||||||
|
{"matrix": [3, 1], "x": 1.5, "y": 3, "w": 1.5},
|
||||||
|
{"matrix": [3, 4], "x": 3, "y": 3, "w": 7},
|
||||||
{"matrix": [3, 9], "x": 10, "y": 3},
|
{"matrix": [3, 9], "x": 10, "y": 3},
|
||||||
{"matrix": [3, 10], "x": 11, "y": 3},
|
{"matrix": [3, 10], "x": 11, "y": 3},
|
||||||
{"matrix": [3, 11], "x": 12, "y": 3},
|
{"matrix": [3, 11], "x": 12, "y": 3},
|
||||||
|
@ -8,11 +8,6 @@
|
|||||||
#define VIAL_UNLOCK_COMBO_COLS { 0, 3 }
|
#define VIAL_UNLOCK_COMBO_COLS { 0, 3 }
|
||||||
|
|
||||||
/* USB Device descriptor parameter */
|
/* USB Device descriptor parameter */
|
||||||
#define VENDOR_ID 0x0002
|
|
||||||
#define PRODUCT_ID 0x0002
|
|
||||||
#define DEVICE_VER 0x0001
|
|
||||||
#define MANUFACTURER "Velocifire"
|
|
||||||
#define PRODUCT "Sun20pro"
|
|
||||||
|
|
||||||
/* key matrix size */
|
/* key matrix size */
|
||||||
#define MATRIX_ROWS 5
|
#define MATRIX_ROWS 5
|
||||||
@ -25,7 +20,6 @@
|
|||||||
#define ENCODERS_PAD_B { D7 }
|
#define ENCODERS_PAD_B { D7 }
|
||||||
|
|
||||||
/* COL2ROW or ROW2COL */
|
/* COL2ROW or ROW2COL */
|
||||||
#define DIODE_DIRECTION COL2ROW
|
|
||||||
|
|
||||||
/* number of backlight levels */
|
/* number of backlight levels */
|
||||||
#ifdef BACKLIGHT_PIN
|
#ifdef BACKLIGHT_PIN
|
||||||
@ -42,7 +36,6 @@
|
|||||||
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
||||||
#define RGB_MATRIX_KEYPRESSES
|
#define RGB_MATRIX_KEYPRESSES
|
||||||
|
|
||||||
#define WS2812_DI_PIN C7
|
|
||||||
// RGB Matrix
|
// RGB Matrix
|
||||||
# ifdef RGB_MATRIX_ENABLE
|
# ifdef RGB_MATRIX_ENABLE
|
||||||
# define RGB_MATRIX_LED_COUNT 25
|
# define RGB_MATRIX_LED_COUNT 25
|
||||||
|
@ -1,5 +1,23 @@
|
|||||||
{
|
{
|
||||||
|
"manufacturer": "Velocifire",
|
||||||
"keyboard_name": "Sun20pro",
|
"keyboard_name": "Sun20pro",
|
||||||
"url": "",
|
|
||||||
"maintainer": "qmk",
|
"maintainer": "qmk",
|
||||||
|
"bootloader": "atmel-dfu",
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
|
"encoder": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "WS2812"
|
||||||
|
},
|
||||||
|
"url": "",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "0.0.1",
|
||||||
|
"pid": "0x0002",
|
||||||
|
"vid": "0x0002"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "C7"
|
||||||
|
}
|
||||||
}
|
}
|
@ -14,29 +14,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
KC_HOME, KC_UP, KC_PGUP,
|
KC_HOME, KC_UP, KC_PGUP,
|
||||||
KC_LEFT, KC_NO, KC_RGHT, _______,
|
KC_LEFT, KC_NO, KC_RGHT, _______,
|
||||||
KC_END, KC_DOWN, KC_PGDN,
|
KC_END, KC_DOWN, KC_PGDN,
|
||||||
KC_INS, KC_DEL, _______),
|
KC_INS, KC_DEL, _______)
|
||||||
|
|
||||||
LAYOUT(
|
|
||||||
_______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______,
|
|
||||||
_______, _______, _______, _______,
|
|
||||||
_______, _______, _______,
|
|
||||||
_______, _______, _______),
|
|
||||||
|
|
||||||
LAYOUT(
|
|
||||||
_______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______,
|
|
||||||
_______, _______, _______, _______,
|
|
||||||
_______, _______, _______,
|
|
||||||
_______, _______, _______),
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(ENCODER_MAP_ENABLE)
|
#if defined(ENCODER_MAP_ENABLE)
|
||||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = {
|
||||||
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
|
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
|
||||||
[1] = { ENCODER_CCW_CW(_______, _______) },
|
[1] = { ENCODER_CCW_CW(_______, _______) }
|
||||||
[2] = { ENCODER_CCW_CW(_______, _______) },
|
|
||||||
[3] = { ENCODER_CCW_CW(_______, _______) },
|
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,10 +1,2 @@
|
|||||||
# MCU name
|
|
||||||
MCU = atmega32u4
|
|
||||||
|
|
||||||
# Bootloader selection
|
|
||||||
BOOTLOADER = atmel-dfu
|
|
||||||
|
|
||||||
ENCODER_ENABLE = yes
|
|
||||||
EXTRAKEY_ENABLE = yes
|
EXTRAKEY_ENABLE = yes
|
||||||
RGB_MATRIX_ENABLE = yes
|
RGB_MATRIX_ENABLE = yes
|
||||||
RGB_MATRIX_DRIVER = WS2812
|
|
||||||
|
@ -8,13 +8,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
|
|
||||||
[1] = LAYOUT(RGB_RMOD, RGB_VAI, RGB_MOD,
|
[1] = LAYOUT(RGB_RMOD, RGB_VAI, RGB_MOD,
|
||||||
RGB_HUI, QK_BOOT, RGB_SAI,
|
RGB_HUI, QK_BOOT, RGB_SAI,
|
||||||
RGB_HUD, RGB_VAD, RGB_SAD),
|
RGB_HUD, RGB_VAD, RGB_SAD)
|
||||||
|
|
||||||
[2] = LAYOUT(KC_TRNS, KC_TRNS, KC_TRNS,
|
|
||||||
KC_TRNS, KC_TRNS, KC_TRNS,
|
|
||||||
KC_TRNS, KC_TRNS, KC_TRNS),
|
|
||||||
|
|
||||||
[3] = LAYOUT(KC_TRNS, KC_TRNS, KC_TRNS,
|
|
||||||
KC_TRNS, KC_TRNS, KC_TRNS,
|
|
||||||
KC_TRNS, KC_TRNS, KC_TRNS),
|
|
||||||
};
|
};
|
||||||
|
@ -49,13 +49,5 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU, _______,
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU, _______,
|
||||||
_______, _______, _______, _______, _______, _______, KC_APP, KC_MPRV, KC_VOLD, KC_MNXT
|
_______, _______, _______, _______, _______, _______, KC_APP, KC_MPRV, KC_VOLD, KC_MNXT
|
||||||
),
|
)
|
||||||
[2] = LAYOUT(
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______ ,_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
||||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user