diff options
Diffstat (limited to 'layouts/community/ortho_4x12')
| -rw-r--r-- | layouts/community/ortho_4x12/brandonschlack/keymap.c | 3 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/brandonschlack/rules.mk | 2 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/buswerks/rules.mk | 2 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/drashna/config.h | 2 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/drashna/keymap.c | 146 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/drashna/rules.mk | 16 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/juno/keymap.c | 3 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/junonum/keymap.c | 3 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/junonum/rules.mk | 2 | ||||
| -rw-r--r-- | layouts/community/ortho_4x12/mguterl/keymap.c | 3 |
10 files changed, 83 insertions, 99 deletions
diff --git a/layouts/community/ortho_4x12/brandonschlack/keymap.c b/layouts/community/ortho_4x12/brandonschlack/keymap.c index ea9d29506..4877a0b44 100644 --- a/layouts/community/ortho_4x12/brandonschlack/keymap.c +++ b/layouts/community/ortho_4x12/brandonschlack/keymap.c | |||
| @@ -154,7 +154,7 @@ bool encoder_update_keymap(uint8_t index, bool clockwise) { | |||
| 154 | return true; | 154 | return true; |
| 155 | } | 155 | } |
| 156 | 156 | ||
| 157 | void dip_switch_update_user(uint8_t index, bool active) { | 157 | bool dip_switch_update_user(uint8_t index, bool active) { |
| 158 | switch (index) { | 158 | switch (index) { |
| 159 | case 0: { | 159 | case 0: { |
| 160 | #ifdef AUDIO_ENABLE | 160 | #ifdef AUDIO_ENABLE |
| @@ -183,6 +183,7 @@ void dip_switch_update_user(uint8_t index, bool active) { | |||
| 183 | muse_mode = false; | 183 | muse_mode = false; |
| 184 | } | 184 | } |
| 185 | } | 185 | } |
| 186 | return true; | ||
| 186 | } | 187 | } |
| 187 | 188 | ||
| 188 | void matrix_scan_keymap(void) { | 189 | void matrix_scan_keymap(void) { |
diff --git a/layouts/community/ortho_4x12/brandonschlack/rules.mk b/layouts/community/ortho_4x12/brandonschlack/rules.mk index e36b073d2..d27ef6420 100644 --- a/layouts/community/ortho_4x12/brandonschlack/rules.mk +++ b/layouts/community/ortho_4x12/brandonschlack/rules.mk | |||
| @@ -6,5 +6,5 @@ MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | |||
| 6 | BACKLIGHT_ENABLE = no # No backlights installed | 6 | BACKLIGHT_ENABLE = no # No backlights installed |
| 7 | 7 | ||
| 8 | ifeq ($(strip $(KEYBOARD)), jnao) | 8 | ifeq ($(strip $(KEYBOARD)), jnao) |
| 9 | BOOTMAGIC_ENABLE = lite | 9 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
| 10 | endif | 10 | endif |
diff --git a/layouts/community/ortho_4x12/buswerks/rules.mk b/layouts/community/ortho_4x12/buswerks/rules.mk index 72f825732..d08db7130 100644 --- a/layouts/community/ortho_4x12/buswerks/rules.mk +++ b/layouts/community/ortho_4x12/buswerks/rules.mk | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
| 2 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
| 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 4 | CONSOLE_ENABLE = no # Console for debug(+400) | 4 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/layouts/community/ortho_4x12/drashna/config.h b/layouts/community/ortho_4x12/drashna/config.h index f4abd64f5..43143c3a3 100644 --- a/layouts/community/ortho_4x12/drashna/config.h +++ b/layouts/community/ortho_4x12/drashna/config.h | |||
| @@ -37,7 +37,7 @@ | |||
| 37 | # define RGB_MATRIX_FRAMEBUFFER_EFFECTS | 37 | # define RGB_MATRIX_FRAMEBUFFER_EFFECTS |
| 38 | // #define RGB_DISABLE_AFTER_TIMEOUT 0 // number of ticks to wait until disabling effects | 38 | // #define RGB_DISABLE_AFTER_TIMEOUT 0 // number of ticks to wait until disabling effects |
| 39 | // #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 200 // limits maximum brightness of LEDs to 200 out of 255. If not defined maximum brightness is set to 255 | 39 | // #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 200 // limits maximum brightness of LEDs to 200 out of 255. If not defined maximum brightness is set to 255 |
| 40 | # define RGB_DISABLE_WHEN_USB_SUSPENDED true // turn off effects when suspended | 40 | # define RGB_DISABLE_WHEN_USB_SUSPENDED // turn off effects when suspended |
| 41 | # undef RGB_MATRIX_LED_PROCESS_LIMIT | 41 | # undef RGB_MATRIX_LED_PROCESS_LIMIT |
| 42 | # undef RGB_MATRIX_LED_FLUSH_LIMIT | 42 | # undef RGB_MATRIX_LED_FLUSH_LIMIT |
| 43 | # ifdef KEYBOARD_planck_rev6 | 43 | # ifdef KEYBOARD_planck_rev6 |
diff --git a/layouts/community/ortho_4x12/drashna/keymap.c b/layouts/community/ortho_4x12/drashna/keymap.c index 82594b9fd..9ef2317f4 100644 --- a/layouts/community/ortho_4x12/drashna/keymap.c +++ b/layouts/community/ortho_4x12/drashna/keymap.c | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | 16 | ||
| 17 | #include "drashna.h" | 17 | #include "drashna.h" |
| 18 | 18 | ||
| 19 | |||
| 20 | #ifdef BACKLIGHT_ENABLE | 19 | #ifdef BACKLIGHT_ENABLE |
| 21 | enum planck_keycodes { | 20 | enum planck_keycodes { |
| 22 | BACKLIT = NEW_SAFE_RANGE, | 21 | BACKLIT = NEW_SAFE_RANGE, |
| @@ -62,58 +61,32 @@ enum planck_keycodes { | |||
| 62 | KC_MLSF, CTL_T(K21), K22, K23, K24, K25, K26, K27, K28, K29, RCTL_T(K2A), KC_ENT, \ | 61 | KC_MLSF, CTL_T(K21), K22, K23, K24, K25, K26, K27, K28, K29, RCTL_T(K2A), KC_ENT, \ |
| 63 | BACKLIT, OS_LCTL, OS_LALT, OS_LGUI, PLNK_1, PLNK_2, PLNK_3, PLNK_4, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \ | 62 | BACKLIT, OS_LCTL, OS_LALT, OS_LGUI, PLNK_1, PLNK_2, PLNK_3, PLNK_4, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \ |
| 64 | ) | 63 | ) |
| 65 | #define LAYOUT_ortho_4x12_base_wrapper(...) LAYOUT_ortho_4x12_base(__VA_ARGS__) | 64 | #define LAYOUT_base_wrapper(...) LAYOUT_ortho_4x12_base(__VA_ARGS__) |
| 66 | 65 | ||
| 67 | 66 | ||
| 68 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 67 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 69 | 68 | [_DEFAULT_LAYER_1] = LAYOUT_base_wrapper( | |
| 70 | [_QWERTY] = LAYOUT_ortho_4x12_base_wrapper( | 69 | _________________QWERTY_L1_________________, _________________QWERTY_R1_________________, |
| 71 | _________________QWERTY_L1_________________, _________________QWERTY_R1_________________, | 70 | _________________QWERTY_L2_________________, _________________QWERTY_R2_________________, |
| 72 | _________________QWERTY_L2_________________, _________________QWERTY_R2_________________, | 71 | _________________QWERTY_L3_________________, _________________QWERTY_R3_________________ |
| 73 | _________________QWERTY_L3_________________, _________________QWERTY_R3_________________ | 72 | ), |
| 74 | ), | 73 | |
| 75 | 74 | [_DEFAULT_LAYER_2] = LAYOUT_base_wrapper( | |
| 76 | [_COLEMAK] = LAYOUT_ortho_4x12_base_wrapper( | 75 | ______________COLEMAK_MOD_DH_L1____________, ______________COLEMAK_MOD_DH_R1____________, |
| 77 | _________________COLEMAK_L1________________, _________________COLEMAK_R1________________, | 76 | ______________COLEMAK_MOD_DH_L2____________, ______________COLEMAK_MOD_DH_R2____________, |
| 78 | _________________COLEMAK_L2________________, _________________COLEMAK_R2________________, | 77 | ______________COLEMAK_MOD_DH_L3____________, ______________COLEMAK_MOD_DH_R3____________ |
| 79 | _________________COLEMAK_L3________________, _________________COLEMAK_R3________________ | 78 | ), |
| 80 | ), | 79 | [_DEFAULT_LAYER_3] = LAYOUT_base_wrapper( |
| 81 | 80 | _________________COLEMAK_L1________________, _________________COLEMAK_R1________________, | |
| 82 | [_DVORAK] = LAYOUT_ortho_4x12_base_wrapper( | 81 | _________________COLEMAK_L2________________, _________________COLEMAK_R2________________, |
| 83 | _________________DVORAK_L1_________________, _________________DVORAK_R1_________________, | 82 | _________________COLEMAK_L3________________, _________________COLEMAK_R3________________ |
| 84 | _________________DVORAK_L2_________________, _________________DVORAK_R2_________________, | 83 | ), |
| 85 | _________________DVORAK_L3_________________, _________________DVORAK_R3_________________ | 84 | |
| 86 | ), | 85 | [_DEFAULT_LAYER_4] = LAYOUT_base_wrapper( |
| 87 | 86 | _________________DVORAK_L1_________________, _________________DVORAK_R1_________________, | |
| 88 | [_WORKMAN] = LAYOUT_ortho_4x12_base_wrapper( | 87 | _________________DVORAK_L2_________________, _________________DVORAK_R2_________________, |
| 89 | _________________WORKMAN_L1________________, _________________WORKMAN_R1________________, | 88 | _________________DVORAK_L3_________________, _________________DVORAK_R3_________________ |
| 90 | _________________WORKMAN_L2________________, _________________WORKMAN_R2________________, | 89 | ), |
| 91 | _________________WORKMAN_L3________________, _________________WORKMAN_R3________________ | ||
| 92 | ), | ||
| 93 | |||
| 94 | [_NORMAN] = LAYOUT_ortho_4x12_base_wrapper( | ||
| 95 | _________________NORMAN_L1_________________, _________________NORMAN_L1_________________, | ||
| 96 | _________________NORMAN_L2_________________, _________________NORMAN_R2_________________, | ||
| 97 | _________________NORMAN_L3_________________, _________________NORMAN_R3_________________ | ||
| 98 | ), | ||
| 99 | |||
| 100 | [_MALTRON] = LAYOUT_ortho_4x12_base_wrapper( | ||
| 101 | _________________MALTRON_L1________________, _________________MALTRON_R1________________, | ||
| 102 | _________________MALTRON_L2________________, _________________MALTRON_R2________________, | ||
| 103 | _________________MALTRON_L3________________, _________________MALTRON_R3________________ | ||
| 104 | ), | ||
| 105 | |||
| 106 | [_EUCALYN] = LAYOUT_ortho_4x12_base_wrapper( | ||
| 107 | _________________EUCALYN_L1________________, _________________EUCALYN_R1________________, | ||
| 108 | _________________EUCALYN_L2________________, _________________EUCALYN_R2________________, | ||
| 109 | _________________EUCALYN_L3________________, _________________EUCALYN_R3________________ | ||
| 110 | ), | ||
| 111 | |||
| 112 | [_CARPLAX] = LAYOUT_ortho_4x12_base_wrapper( | ||
| 113 | _____________CARPLAX_QFMLWY_L1_____________, _____________CARPLAX_QFMLWY_R1_____________, | ||
| 114 | _____________CARPLAX_QFMLWY_L2_____________, _____________CARPLAX_QFMLWY_R2_____________, | ||
| 115 | _____________CARPLAX_QFMLWY_L3_____________, _____________CARPLAX_QFMLWY_R3_____________ | ||
| 116 | ), | ||
| 117 | 90 | ||
| 118 | [_LOWER] = LAYOUT_ortho_4x12_wrapper( | 91 | [_LOWER] = LAYOUT_ortho_4x12_wrapper( |
| 119 | KC_TILD, _________________LOWER_L1__________________, _________________LOWER_R1__________________, KC_BSPC, | 92 | KC_TILD, _________________LOWER_L1__________________, _________________LOWER_R1__________________, KC_BSPC, |
| @@ -137,6 +110,22 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 137 | ) | 110 | ) |
| 138 | 111 | ||
| 139 | }; | 112 | }; |
| 113 | |||
| 114 | #ifdef ENCODER_MAP_ENABLE | ||
| 115 | const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { | ||
| 116 | [_DEFAULT_LAYER_1] = { { KC_DOWN, KC_UP } }, | ||
| 117 | [_DEFAULT_LAYER_2] = { { _______, _______ } }, | ||
| 118 | [_DEFAULT_LAYER_3] = { { _______, _______ } }, | ||
| 119 | [_DEFAULT_LAYER_4] = { { _______, _______ } }, | ||
| 120 | [_GAMEPAD] = { { _______, _______ } }, | ||
| 121 | [_DIABLO] = { { _______, _______ } }, | ||
| 122 | [_MOUSE] = { { KC_WH_D, KC_WH_U } }, | ||
| 123 | [_MEDIA] = { { _______, _______ } }, | ||
| 124 | [_RAISE] = { { KC_VOLD, KC_VOLU } }, | ||
| 125 | [_LOWER] = { { RGB_MOD, RGB_RMOD} }, | ||
| 126 | [_ADJUST] = { { CK_DOWN, CK_UP } }, | ||
| 127 | }; | ||
| 128 | #endif | ||
| 140 | // clang-format on | 129 | // clang-format on |
| 141 | 130 | ||
| 142 | bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { | 131 | bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { |
| @@ -222,7 +211,6 @@ void suspend_wakeup_init_keymap(void) { | |||
| 222 | } | 211 | } |
| 223 | // clang-format on | 212 | // clang-format on |
| 224 | 213 | ||
| 225 | |||
| 226 | void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { | 214 | void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { |
| 227 | uint8_t this_mod = get_mods(); | 215 | uint8_t this_mod = get_mods(); |
| 228 | uint8_t this_led = host_keyboard_leds(); | 216 | uint8_t this_led = host_keyboard_leds(); |
| @@ -254,49 +242,38 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { | |||
| 254 | case _ADJUST: | 242 | case _ADJUST: |
| 255 | rgb_matrix_layer_helper(HSV_RED, 1, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | 243 | rgb_matrix_layer_helper(HSV_RED, 1, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); |
| 256 | break; | 244 | break; |
| 257 | default: { | 245 | default: |
| 258 | switch (get_highest_layer(default_layer_state)) { | 246 | { |
| 259 | case _QWERTY: | 247 | switch (get_highest_layer(default_layer_state)) { |
| 260 | rgb_matrix_layer_helper(HSV_CYAN, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | 248 | case _DEFAULT_LAYER_1: |
| 261 | break; | 249 | rgb_matrix_layer_helper(DEFAULT_LAYER_1_HSV, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); |
| 262 | case _COLEMAK: | 250 | break; |
| 263 | rgb_matrix_layer_helper(HSV_MAGENTA, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | 251 | case _DEFAULT_LAYER_2: |
| 264 | break; | 252 | rgb_matrix_layer_helper(DEFAULT_LAYER_2_HSV, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); |
| 265 | case _DVORAK: | 253 | break; |
| 266 | rgb_matrix_layer_helper(HSV_SPRINGGREEN, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | 254 | case _DEFAULT_LAYER_3: |
| 267 | break; | 255 | rgb_matrix_layer_helper(DEFAULT_LAYER_3_HSV, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); |
| 268 | case _WORKMAN: | 256 | break; |
| 269 | rgb_matrix_layer_helper(HSV_GOLDENROD, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | 257 | case _DEFAULT_LAYER_4: |
| 270 | break; | 258 | rgb_matrix_layer_helper(DEFAULT_LAYER_4_HSV, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); |
| 271 | case _NORMAN: | 259 | break; |
| 272 | rgb_matrix_layer_helper(HSV_CORAL, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | 260 | } |
| 273 | break; | 261 | break; |
| 274 | case _MALTRON: | ||
| 275 | rgb_matrix_layer_helper(HSV_YELLOW, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | ||
| 276 | break; | ||
| 277 | case _EUCALYN: | ||
| 278 | rgb_matrix_layer_helper(HSV_PINK, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | ||
| 279 | break; | ||
| 280 | case _CARPLAX: | ||
| 281 | rgb_matrix_layer_helper(HSV_BLUE, 0, rgb_matrix_config.speed, LED_FLAG_MODIFIER, led_min, led_max); | ||
| 282 | break; | ||
| 283 | } | 262 | } |
| 284 | break; | ||
| 285 | } | ||
| 286 | } | 263 | } |
| 287 | } | 264 | } |
| 288 | 265 | ||
| 289 | switch (get_highest_layer(default_layer_state)) { | 266 | switch (get_highest_layer(default_layer_state)) { |
| 290 | case _QWERTY: | 267 | case _DEFAULT_LAYER_1: |
| 291 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0x00, 0xFF, 0xFF); | 268 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0x00, 0xFF, 0xFF); |
| 292 | break; | 269 | break; |
| 293 | case _COLEMAK: | 270 | case _DEFAULT_LAYER_2: |
| 294 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0xFF, 0x00, 0xFF); | 271 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0xFF, 0x00, 0xFF); |
| 295 | break; | 272 | break; |
| 296 | case _DVORAK: | 273 | case _DEFAULT_LAYER_3: |
| 297 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0x00, 0xFF, 0x00); | 274 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0x00, 0xFF, 0x00); |
| 298 | break; | 275 | break; |
| 299 | case _WORKMAN: | 276 | case _DEFAULT_LAYER_4: |
| 300 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0xD9, 0xA5, 0x21); | 277 | RGB_MATRIX_INDICATOR_SET_COLOR((is_ez ? 41 : 42), 0xD9, 0xA5, 0x21); |
| 301 | break; | 278 | break; |
| 302 | } | 279 | } |
| @@ -368,7 +345,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
| 368 | #endif // ENCODER_ENABLE | 345 | #endif // ENCODER_ENABLE |
| 369 | 346 | ||
| 370 | #ifdef KEYBOARD_planck_rev6 | 347 | #ifdef KEYBOARD_planck_rev6 |
| 371 | void dip_update(uint8_t index, bool active) { | 348 | bool dip_switch_update_user(uint8_t index, bool active) { |
| 372 | switch (index) { | 349 | switch (index) { |
| 373 | case 0: | 350 | case 0: |
| 374 | if (active) { | 351 | if (active) { |
| @@ -391,6 +368,7 @@ void dip_update(uint8_t index, bool active) { | |||
| 391 | userspace_config.nuke_switch = active; | 368 | userspace_config.nuke_switch = active; |
| 392 | break; | 369 | break; |
| 393 | } | 370 | } |
| 371 | return true; | ||
| 394 | } | 372 | } |
| 395 | #endif // KEYBOARD_planck_rev6 | 373 | #endif // KEYBOARD_planck_rev6 |
| 396 | 374 | ||
diff --git a/layouts/community/ortho_4x12/drashna/rules.mk b/layouts/community/ortho_4x12/drashna/rules.mk index 06a250ee7..dc64fe63b 100644 --- a/layouts/community/ortho_4x12/drashna/rules.mk +++ b/layouts/community/ortho_4x12/drashna/rules.mk | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
| 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
| 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 4 | TAP_DANCE_ENABLE = no | 4 | TAP_DANCE_ENABLE = no |
| @@ -22,6 +22,7 @@ else | |||
| 22 | RGB_MATRIX_ENABLE = no | 22 | RGB_MATRIX_ENABLE = no |
| 23 | AUDIO_ENABLE = yes | 23 | AUDIO_ENABLE = yes |
| 24 | EEPROM_DRIVER = i2c | 24 | EEPROM_DRIVER = i2c |
| 25 | ENCODER_MAP_ENABLE = yes | ||
| 25 | endif | 26 | endif |
| 26 | ifeq ($(strip $(KEYBOARD)), planck/light) | 27 | ifeq ($(strip $(KEYBOARD)), planck/light) |
| 27 | RGB_MATRIX_ENABLE = yes | 28 | RGB_MATRIX_ENABLE = yes |
| @@ -31,13 +32,14 @@ ifeq ($(strip $(KEYBOARD)), planck/light) | |||
| 31 | # HAPTIC_ENABLE += SOLENOID | 32 | # HAPTIC_ENABLE += SOLENOID |
| 32 | endif | 33 | endif |
| 33 | ifeq ($(strip $(KEYBOARD)), planck/ez) | 34 | ifeq ($(strip $(KEYBOARD)), planck/ez) |
| 34 | RGBLIGHT_ENABLE = no | 35 | RGBLIGHT_ENABLE = no |
| 35 | ENCODER_ENABLE = yes | 36 | ENCODER_ENABLE = yes |
| 36 | RGB_MATRIX_ENABLE = yes | 37 | ENCODER_MAP_ENABLE = yes |
| 38 | RGB_MATRIX_ENABLE = yes | ||
| 37 | INDICATOR_LIGHTS = yes | 39 | INDICATOR_LIGHTS = yes |
| 38 | RGBLIGHT_TWINKLE = yes | 40 | RGBLIGHT_TWINKLE = yes |
| 39 | RGBLIGHT_STARTUP_ANIMATION = yes | 41 | RGBLIGHT_STARTUP_ANIMATION = yes |
| 40 | CONSOLE_ENABLE = yes | 42 | CONSOLE_ENABLE = yes |
| 41 | COMMAND_ENABLE = yes | 43 | COMMAND_ENABLE = yes |
| 42 | AUDIO_ENABLE = yes | 44 | AUDIO_ENABLE = yes |
| 43 | endif | 45 | endif |
diff --git a/layouts/community/ortho_4x12/juno/keymap.c b/layouts/community/ortho_4x12/juno/keymap.c index b3ef8fce5..344759ed1 100644 --- a/layouts/community/ortho_4x12/juno/keymap.c +++ b/layouts/community/ortho_4x12/juno/keymap.c | |||
| @@ -395,7 +395,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
| 395 | return true; | 395 | return true; |
| 396 | } | 396 | } |
| 397 | 397 | ||
| 398 | void dip_update(uint8_t index, bool active) { | 398 | bool dip_switch_update_user(uint8_t index, bool active) { |
| 399 | switch (index) { | 399 | switch (index) { |
| 400 | case 0: | 400 | case 0: |
| 401 | if (active) { | 401 | if (active) { |
| @@ -420,6 +420,7 @@ void dip_update(uint8_t index, bool active) { | |||
| 420 | #endif | 420 | #endif |
| 421 | } | 421 | } |
| 422 | } | 422 | } |
| 423 | return true; | ||
| 423 | } | 424 | } |
| 424 | 425 | ||
| 425 | void matrix_scan_user(void) { | 426 | void matrix_scan_user(void) { |
diff --git a/layouts/community/ortho_4x12/junonum/keymap.c b/layouts/community/ortho_4x12/junonum/keymap.c index 82ff4d63a..d4c840f17 100644 --- a/layouts/community/ortho_4x12/junonum/keymap.c +++ b/layouts/community/ortho_4x12/junonum/keymap.c | |||
| @@ -293,7 +293,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
| 293 | return true; | 293 | return true; |
| 294 | } | 294 | } |
| 295 | 295 | ||
| 296 | void dip_update(uint8_t index, bool active) { | 296 | bool dip_switch_update_user(uint8_t index, bool active) { |
| 297 | switch (index) { | 297 | switch (index) { |
| 298 | case 0: | 298 | case 0: |
| 299 | if (active) { | 299 | if (active) { |
| @@ -318,6 +318,7 @@ void dip_update(uint8_t index, bool active) { | |||
| 318 | #endif | 318 | #endif |
| 319 | } | 319 | } |
| 320 | } | 320 | } |
| 321 | return true; | ||
| 321 | } | 322 | } |
| 322 | 323 | ||
| 323 | void matrix_scan_user(void) { | 324 | void matrix_scan_user(void) { |
diff --git a/layouts/community/ortho_4x12/junonum/rules.mk b/layouts/community/ortho_4x12/junonum/rules.mk index 9f5d7e986..72e6214d2 100644 --- a/layouts/community/ortho_4x12/junonum/rules.mk +++ b/layouts/community/ortho_4x12/junonum/rules.mk | |||
| @@ -17,4 +17,4 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
| 17 | CONSOLE_ENABLE = no # Console for debug | 17 | CONSOLE_ENABLE = no # Console for debug |
| 18 | COMMAND_ENABLE = no # Commands for debug and configuration | 18 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 19 | 19 | ||
| 20 | BOOTMAGIC_ENABLE = no # mainly to save space \ No newline at end of file | 20 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite \ No newline at end of file |
diff --git a/layouts/community/ortho_4x12/mguterl/keymap.c b/layouts/community/ortho_4x12/mguterl/keymap.c index 66039b61e..f18ae14d4 100644 --- a/layouts/community/ortho_4x12/mguterl/keymap.c +++ b/layouts/community/ortho_4x12/mguterl/keymap.c | |||
| @@ -290,7 +290,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) { | |||
| 290 | return true; | 290 | return true; |
| 291 | } | 291 | } |
| 292 | 292 | ||
| 293 | void dip_switch_update_user(uint8_t index, bool active) { | 293 | bool dip_switch_update_user(uint8_t index, bool active) { |
| 294 | switch (index) { | 294 | switch (index) { |
| 295 | case 0: { | 295 | case 0: { |
| 296 | #ifdef AUDIO_ENABLE | 296 | #ifdef AUDIO_ENABLE |
| @@ -319,6 +319,7 @@ void dip_switch_update_user(uint8_t index, bool active) { | |||
| 319 | muse_mode = false; | 319 | muse_mode = false; |
| 320 | } | 320 | } |
| 321 | } | 321 | } |
| 322 | return true; | ||
| 322 | } | 323 | } |
| 323 | 324 | ||
| 324 | void matrix_scan_user(void) { | 325 | void matrix_scan_user(void) { |
