logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

lightsaver.c (1746B)


  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 "quantum.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. bool led_update_kb(led_t led_state) {
  40. bool res = led_update_user(led_state);
  41. if(res) {
  42. bool leds[8] = {
  43. led_state.caps_lock,
  44. led_state.scroll_lock,
  45. led_state.num_lock,
  46. layer_state & (1<<1),
  47. layer_state & (1<<2),
  48. layer_state & (1<<3),
  49. layer_state & (1<<4),
  50. layer_state & (1<<5)
  51. };
  52. indicator_leds_set(leds);
  53. }
  54. return res;
  55. }