lightsaver.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Copyright 2017 Rasmus Schults <rasmusx@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 "lightsaver.h"
  17. #include "indicator_leds.h"
  18. enum BACKLIGHT_AREAS {
  19. BACKLIGHT_ALPHAS = 0b00000010, // Alpha keys
  20. BACKLIGHT_FKEYS = 0b00000100, // Function row keys
  21. BACKLIGHT_MODNUM = 0b00001000, // Modifiers and number row
  22. BACKLIGHT_NUMPAD = 0b01000000 // Numpad area
  23. };
  24. void backlight_set(uint8_t level) {
  25. if (level > 0) {
  26. // Turn on leds
  27. PORTB &= ~BACKLIGHT_ALPHAS;
  28. PORTB &= ~BACKLIGHT_FKEYS;
  29. PORTB &= ~BACKLIGHT_MODNUM;
  30. PORTE &= ~BACKLIGHT_NUMPAD;
  31. } else {
  32. // Turn off leds
  33. PORTB |= BACKLIGHT_ALPHAS;
  34. PORTB |= BACKLIGHT_FKEYS;
  35. PORTB |= BACKLIGHT_MODNUM;
  36. PORTE |= BACKLIGHT_NUMPAD;
  37. }
  38. }
  39. void led_set_kb(uint8_t usb_led) {
  40. bool leds[8] = {
  41. usb_led & (1<<USB_LED_CAPS_LOCK),
  42. usb_led & (1<<USB_LED_SCROLL_LOCK),
  43. usb_led & (1<<USB_LED_NUM_LOCK),
  44. layer_state & (1<<1),
  45. layer_state & (1<<2),
  46. layer_state & (1<<3),
  47. layer_state & (1<<4),
  48. layer_state & (1<<5)
  49. };
  50. indicator_leds_set(leds);
  51. led_set_user(usb_led);
  52. }
  53. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  54. return process_record_user(keycode, record);
  55. }