Update RGB Matrix configuration for Planck EZ

Use LED Flags for RGB matrix control instead

Cleanup
This commit is contained in:
Drashna Jael're
2019-08-07 08:42:57 -07:00
committed by Florian Didron
parent 5a30142914
commit 4de36ce45b
3 changed files with 46 additions and 2 deletions

View File

@@ -60,13 +60,16 @@ void planck_ez_left_led_level(uint8_t level);
enum planck_ez_keycodes {
LED_LEVEL = SAFE_RANGE,
TOGGLE_LAYER_COLOR,
EZ_SAFE_RANGE,
};
typedef union {
uint32_t raw;
struct {
uint8_t led_level :3;
uint8_t led_level :3;
bool disable_layer_led :1;
bool rgb_matrix_enable :1;
};
} keyboard_config_t;