diff options
Diffstat (limited to 'users/sethBarberee/rgb_light.c')
| -rw-r--r-- | users/sethBarberee/rgb_light.c | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/users/sethBarberee/rgb_light.c b/users/sethBarberee/rgb_light.c new file mode 100644 index 000000000..51cc938c5 --- /dev/null +++ b/users/sethBarberee/rgb_light.c | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* Copyright 2021 SethBarberee <seth.barberee@gmail.com> | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include "rgb_light.h" | ||
| 17 | |||
| 18 | #if defined(RGBLIGHT_ENABLE) | ||
| 19 | layer_state_t layer_state_set_rgb_light(layer_state_t state){ | ||
| 20 | switch(get_highest_layer(state)) { | ||
| 21 | case _QWERTY: | ||
| 22 | rgblight_set_hsv_and_mode(HSV_RED, RGBLIGHT_MODE_BREATHING + 3); | ||
| 23 | break; | ||
| 24 | case _LOWER: | ||
| 25 | rgblight_set_hsv_and_mode(HSV_GREEN, RGBLIGHT_MODE_BREATHING + 3); | ||
| 26 | break; | ||
| 27 | case _RAISE: | ||
| 28 | rgblight_set_hsv_and_mode(HSV_BLUE, RGBLIGHT_MODE_BREATHING + 3); | ||
| 29 | break; | ||
| 30 | case _ADJUST: | ||
| 31 | rgblight_set_hsv_and_mode(HSV_GOLDENROD, RGBLIGHT_MODE_BREATHING + 3); | ||
| 32 | break; | ||
| 33 | default: | ||
| 34 | rgblight_set_hsv_and_mode(HSV_PINK, RGBLIGHT_MODE_TWINKLE + 3); | ||
| 35 | break; | ||
| 36 | |||
| 37 | } | ||
| 38 | return state; | ||
| 39 | } | ||
| 40 | |||
| 41 | void rgblight_set_hsv_and_mode(uint8_t hue, uint8_t sat, uint8_t val, uint8_t mode) { | ||
| 42 | rgblight_sethsv_noeeprom(hue, sat, val); | ||
| 43 | // wait_us(175); // Add a slight delay between color and mode to ensure it's processed correctly | ||
| 44 | rgblight_mode_noeeprom(mode); | ||
| 45 | } | ||
| 46 | |||
| 47 | void keyboard_post_init_rgb_light(void) | ||
| 48 | { | ||
| 49 | layer_state_set_rgb_light(layer_state); | ||
| 50 | } | ||
| 51 | #endif | ||
| 52 | |||
