-
-
Notifications
You must be signed in to change notification settings - Fork 40.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
1 parent
3305df8
commit 043ef40
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include "stanrc85.h" | ||
|
||
void matrix_init_user(void) { | ||
rgblight_setrgb(0xFF, 0x00, 0x00); | ||
}; | ||
|
||
uint32_t layer_state_set_user(uint32_t state) { | ||
switch (biton32(state)) { | ||
case 0: | ||
rgblight_setrgb (0xFF, 0x00, 0x00); | ||
break; | ||
case 1: | ||
rgblight_setrgb (0x00, 0xFF, 0x00); | ||
break; | ||
case 2: | ||
rgblight_setrgb (0x00, 0x00, 0xFF); | ||
break; | ||
case 3: | ||
rgblight_setrgb (0xFF, 0xFF, 0xFF); | ||
break; | ||
default: // for any other layers, or the default layer | ||
rgblight_setrgb (0xFF, 0x00, 0x00); | ||
break; | ||
} | ||
return state; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters