You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.8 KiB

  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. #if defined(RGBLIGHT_ENABLE)
  18. layer_state_t layer_state_set_rgb_light(layer_state_t state){
  19. switch(get_highest_layer(state)) {
  20. case _QWERTY:
  21. rgblight_set_hsv_and_mode(HSV_RED, RGBLIGHT_MODE_BREATHING + 3);
  22. break;
  23. case _LOWER:
  24. rgblight_set_hsv_and_mode(HSV_GREEN, RGBLIGHT_MODE_BREATHING + 3);
  25. break;
  26. case _RAISE:
  27. rgblight_set_hsv_and_mode(HSV_BLUE, RGBLIGHT_MODE_BREATHING + 3);
  28. break;
  29. case _ADJUST:
  30. rgblight_set_hsv_and_mode(HSV_GOLDENROD, RGBLIGHT_MODE_BREATHING + 3);
  31. break;
  32. default:
  33. rgblight_set_hsv_and_mode(HSV_PINK, RGBLIGHT_MODE_TWINKLE + 3);
  34. break;
  35. }
  36. return state;
  37. }
  38. void rgblight_set_hsv_and_mode(uint8_t hue, uint8_t sat, uint8_t val, uint8_t mode) {
  39. rgblight_sethsv_noeeprom(hue, sat, val);
  40. // wait_us(175); // Add a slight delay between color and mode to ensure it's processed correctly
  41. rgblight_mode_noeeprom(mode);
  42. }
  43. void keyboard_post_init_rgb_light(void)
  44. {
  45. layer_state_set_rgb_light(layer_state);
  46. }
  47. #endif