[Keyboard] move enum_layers in keymaps, in sync with the other mlego/m* (#15832)
This commit is contained in:
parent
a3af4b09b0
commit
2c8098ea88
3 changed files with 84 additions and 46 deletions
|
@ -17,6 +17,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
enum layer_names {
|
||||
_QW = 0,
|
||||
_LWR,
|
||||
_RSE,
|
||||
_ADJ
|
||||
};
|
||||
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
|
||||
const rgblight_segment_t PROGMEM my_qwerty_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_PURPLE});
|
||||
|
@ -148,14 +155,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef ENCODER_ENABLE
|
||||
|
||||
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||
my_encoders(index, clockwise);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
|
||||
|
@ -180,3 +179,38 @@ void keyboard_post_init_user(void) {
|
|||
rgblight_layers = my_rgb_layers;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef ENCODER_ENABLE
|
||||
|
||||
# define MEDIA_KEY_DELAY 10
|
||||
|
||||
static inline void my_encoders(const uint8_t index, const bool clockwise) {
|
||||
if (index == 0) { /* First encoder */
|
||||
if (IS_LAYER_ON(_LWR)) {
|
||||
if (clockwise) {
|
||||
rgblight_decrease_val_noeeprom();
|
||||
} else {
|
||||
rgblight_increase_val_noeeprom();
|
||||
}
|
||||
} else if (IS_LAYER_ON(_RSE)) {
|
||||
if (clockwise) {
|
||||
rgblight_decrease_hue_noeeprom();
|
||||
} else {
|
||||
rgblight_increase_hue_noeeprom();
|
||||
}
|
||||
|
||||
} else {
|
||||
if (clockwise) {
|
||||
tap_code_delay(KC_VOLD, MEDIA_KEY_DELAY);
|
||||
} else {
|
||||
tap_code_delay(KC_VOLU, MEDIA_KEY_DELAY);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||
my_encoders(index, clockwise);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -17,6 +17,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
enum layer_names {
|
||||
_QW = 0,
|
||||
_LWR,
|
||||
_RSE,
|
||||
_ADJ
|
||||
};
|
||||
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
|
||||
const rgblight_segment_t PROGMEM my_qwerty_layer[] = RGBLIGHT_LAYER_SEGMENTS({0, RGBLED_NUM, HSV_PURPLE});
|
||||
|
@ -103,14 +110,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef ENCODER_ENABLE
|
||||
|
||||
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||
my_encoders(index, clockwise);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
||||
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||
#ifdef RGBLIGHT_ENABLE
|
||||
|
||||
|
@ -135,3 +134,38 @@ void keyboard_post_init_user(void) {
|
|||
rgblight_layers = my_rgb_layers;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef ENCODER_ENABLE
|
||||
|
||||
# define MEDIA_KEY_DELAY 10
|
||||
|
||||
static inline void my_encoders(const uint8_t index, const bool clockwise) {
|
||||
if (index == 0) { /* First encoder */
|
||||
if (IS_LAYER_ON(_LWR)) {
|
||||
if (clockwise) {
|
||||
rgblight_decrease_val_noeeprom();
|
||||
} else {
|
||||
rgblight_increase_val_noeeprom();
|
||||
}
|
||||
} else if (IS_LAYER_ON(_RSE)) {
|
||||
if (clockwise) {
|
||||
rgblight_decrease_hue_noeeprom();
|
||||
} else {
|
||||
rgblight_increase_hue_noeeprom();
|
||||
}
|
||||
|
||||
} else {
|
||||
if (clockwise) {
|
||||
tap_code_delay(KC_VOLD, MEDIA_KEY_DELAY);
|
||||
} else {
|
||||
tap_code_delay(KC_VOLU, MEDIA_KEY_DELAY);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool encoder_update_user(uint8_t index, bool clockwise) {
|
||||
my_encoders(index, clockwise);
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -31,7 +31,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
{ K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311 } \
|
||||
}
|
||||
|
||||
enum layer_names { _QW = 0, _LWR, _RSE, _ADJ };
|
||||
static inline void led_lwr(const bool on) {
|
||||
#ifdef LED_NUM_LOCK_PIN
|
||||
writePin(LED_NUM_LOCK_PIN, on);
|
||||
|
@ -49,32 +48,3 @@ static inline void led_caps(const bool on) {
|
|||
#endif
|
||||
}
|
||||
|
||||
#ifdef ENCODER_ENABLE
|
||||
|
||||
# define MEDIA_KEY_DELAY 10
|
||||
|
||||
static inline void my_encoders(const uint8_t index, const bool clockwise) {
|
||||
if (index == 0) { /* First encoder */
|
||||
if (IS_LAYER_ON(_LWR)) {
|
||||
if (clockwise) {
|
||||
rgblight_decrease_val_noeeprom();
|
||||
} else {
|
||||
rgblight_increase_val_noeeprom();
|
||||
}
|
||||
} else if (IS_LAYER_ON(_RSE)) {
|
||||
if (clockwise) {
|
||||
rgblight_decrease_hue_noeeprom();
|
||||
} else {
|
||||
rgblight_increase_hue_noeeprom();
|
||||
}
|
||||
|
||||
} else {
|
||||
if (clockwise) {
|
||||
tap_code_delay(KC_VOLD, MEDIA_KEY_DELAY);
|
||||
} else {
|
||||
tap_code_delay(KC_VOLU, MEDIA_KEY_DELAY);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue