Skip to content

Commit

Permalink
[Keymap] Fixing keymap DYNAMIC_MACRO_RANGE keycode enumeration (#6248)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gam3cat authored and drashna committed Jul 5, 2019
1 parent cbf76a1 commit 509a34f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 18 deletions.
6 changes: 3 additions & 3 deletions keyboards/gonnerd/keymaps/gam3cat/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ enum layers {
};

enum custom_keycodes {
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
QMK_REV,
QMK_REV = SAFE_RANGE,
KC_WEB,
KC_SP4
KC_SP4,
DYNAMIC_MACRO_RANGE
};

extern backlight_config_t backlight_config;
Expand Down
1 change: 0 additions & 1 deletion keyboards/gonnerd/keymaps/gam3cat/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By defaul
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
KEY_LOCK_ENABLE = no # This enables key lock(+260)
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common

10 changes: 5 additions & 5 deletions keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ enum layers {
};

enum custom_keycodes {
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
QMK_REV,
QMK_REV = SAFE_RANGE,
KC_WEB,
KC_SP4
KC_SP4,
DYNAMIC_MACRO_RANGE
};

extern backlight_config_t backlight_config;
Expand Down Expand Up @@ -259,11 +259,11 @@ uint32_t layer_state_set_user(uint32_t state) {
break;
case _FL:
custom_backlight_level(2);
rgblight_sethsv_noeeprom(280,255,255);
rgblight_sethsv_noeeprom(240,255,255);
break;
case _AL:
custom_backlight_level(3);
rgblight_sethsv_noeeprom(350,255,255);
rgblight_sethsv_noeeprom(255,255,255);
break;
default:
custom_backlight_level(0);
Expand Down
8 changes: 4 additions & 4 deletions keyboards/jc65/v32u4/keymaps/gam3cat/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ enum layers {
};

enum custom_keycodes {
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
QMK_REV,
QMK_REV = SAFE_RANGE,
KC_WEB,
KC_SP4
KC_SP4,
DYNAMIC_MACRO_RANGE
};

extern backlight_config_t backlight_config;
Expand Down Expand Up @@ -251,7 +251,7 @@ uint32_t layer_state_set_user(uint32_t state) {
break;
case _AL:
custom_backlight_level(3);
rgblight_sethsv_noeeprom(350,255,255);
rgblight_sethsv_noeeprom(250,255,255);
break;
default:
custom_backlight_level(0);
Expand Down
1 change: 0 additions & 1 deletion keyboards/jc65/v32u4/keymaps/gam3cat/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By defaul
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
KEY_LOCK_ENABLE = no # This enables key lock(+260)
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common

6 changes: 3 additions & 3 deletions keyboards/m10a/keymaps/gam3cat/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ enum layers {
};

enum custom_keycodes {
DYNAMIC_MACRO_RANGE = SAFE_RANGE,
QMK_REV,
QMK_REV = SAFE_RANGE,
KC_WEB,
KC_WCLS
KC_WCLS,
DYNAMIC_MACRO_RANGE
};

extern backlight_config_t backlight_config;
Expand Down
1 change: 0 additions & 1 deletion keyboards/m10a/keymaps/gam3cat/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By defaul
API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390)
KEY_LOCK_ENABLE = no # This enables key lock(+260)
SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common

0 comments on commit 509a34f

Please sign in to comment.