diff options
| author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2019-03-03 18:31:12 -0500 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-03-03 15:31:12 -0800 |
| commit | 043ef40b92deee76a048612e82436c1b25f03433 (patch) | |
| tree | 2276a0fcb9588913f7bdc67a3396f75439f4f377 /users/stanrc85 | |
| parent | 3305df8e79e02fb785650e9720923ea11e6bcf09 (diff) | |
| download | qmk_firmware-043ef40b92deee76a048612e82436c1b25f03433.tar.gz qmk_firmware-043ef40b92deee76a048612e82436c1b25f03433.zip | |
[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
Diffstat (limited to 'users/stanrc85')
| -rw-r--r-- | users/stanrc85/config.h | 5 | ||||
| -rw-r--r-- | users/stanrc85/layer_rgb.c | 26 | ||||
| -rw-r--r-- | users/stanrc85/rules.mk | 5 |
3 files changed, 36 insertions, 0 deletions
diff --git a/users/stanrc85/config.h b/users/stanrc85/config.h index 904a7f524..14284435b 100644 --- a/users/stanrc85/config.h +++ b/users/stanrc85/config.h | |||
| @@ -2,3 +2,8 @@ | |||
| 2 | 2 | ||
| 3 | #define TAPPING_TERM 200 | 3 | #define TAPPING_TERM 200 |
| 4 | #define RETRO_TAPPING | 4 | #define RETRO_TAPPING |
| 5 | |||
| 6 | #ifdef RGBLIGHT_ENABLE | ||
| 7 | #define RGBLIGHT_LIMIT_VAL 175 | ||
| 8 | #define RGBLIGHT_SLEEP | ||
| 9 | #endif | ||
diff --git a/users/stanrc85/layer_rgb.c b/users/stanrc85/layer_rgb.c new file mode 100644 index 000000000..ac5d18122 --- /dev/null +++ b/users/stanrc85/layer_rgb.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | #include "stanrc85.h" | ||
| 2 | |||
| 3 | void matrix_init_user(void) { | ||
| 4 | rgblight_setrgb(0xFF, 0x00, 0x00); | ||
| 5 | }; | ||
| 6 | |||
| 7 | uint32_t layer_state_set_user(uint32_t state) { | ||
| 8 | switch (biton32(state)) { | ||
| 9 | case 0: | ||
| 10 | rgblight_setrgb (0xFF, 0x00, 0x00); | ||
| 11 | break; | ||
| 12 | case 1: | ||
| 13 | rgblight_setrgb (0x00, 0xFF, 0x00); | ||
| 14 | break; | ||
| 15 | case 2: | ||
| 16 | rgblight_setrgb (0x00, 0x00, 0xFF); | ||
| 17 | break; | ||
| 18 | case 3: | ||
| 19 | rgblight_setrgb (0xFF, 0xFF, 0xFF); | ||
| 20 | break; | ||
| 21 | default: // for any other layers, or the default layer | ||
| 22 | rgblight_setrgb (0xFF, 0x00, 0x00); | ||
| 23 | break; | ||
| 24 | } | ||
| 25 | return state; | ||
| 26 | } | ||
diff --git a/users/stanrc85/rules.mk b/users/stanrc85/rules.mk index 19ad62475..c94dca0b7 100644 --- a/users/stanrc85/rules.mk +++ b/users/stanrc85/rules.mk | |||
| @@ -7,3 +7,8 @@ MOUSEKEY_ENABLE = no | |||
| 7 | AUDIO_ENABLE = no | 7 | AUDIO_ENABLE = no |
| 8 | CONSOLE_ENABLE = no | 8 | CONSOLE_ENABLE = no |
| 9 | NKRO_ENABLE = no | 9 | NKRO_ENABLE = no |
| 10 | |||
| 11 | ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) | ||
| 12 | # Include my fancy rgb functions source here | ||
| 13 | SRC += layer_rgb.c | ||
| 14 | endif | ||
