[Keymap] Add RGB config and controls to userspace (#5299)

* Add INSERT and EEP_RST to HS60 keymap

* Add INSERT to keymap

* Layer based RGB colors

* Move RGB code to layer_rgb.c

* New file with layer based RGB colors

* Use RGB code if RGBLIGHT is enabled

* Set RGB options in config.h

* Remove rgb enable from init user
This commit is contained in:
stanrc85 2019-03-03 18:31:12 -05:00 committed by MechMerlin
parent 3305df8e79
commit 043ef40b92
3 changed files with 36 additions and 0 deletions

View file

@ -7,3 +7,8 @@ MOUSEKEY_ENABLE = no
AUDIO_ENABLE = no
CONSOLE_ENABLE = no
NKRO_ENABLE = no
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
# Include my fancy rgb functions source here
SRC += layer_rgb.c
endif