led_matrix.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* Copyright 2017 Jason Williams
  2. * Copyright 2017 Jack Humbert
  3. * Copyright 2018 Yiancar
  4. * Copyright 2019 Clueboard
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #pragma once
  20. #include "led_matrix_types.h"
  21. enum led_matrix_effects {
  22. LED_MATRIX_UNIFORM_BRIGHTNESS = 1,
  23. // All new effects go above this line
  24. LED_MATRIX_EFFECT_MAX
  25. };
  26. void led_matrix_set_index_value(int index, uint8_t value);
  27. void led_matrix_set_index_value_all(uint8_t value);
  28. // This runs after another backlight effect and replaces
  29. // colors already set
  30. void led_matrix_indicators(void);
  31. void led_matrix_indicators_kb(void);
  32. void led_matrix_indicators_user(void);
  33. void led_matrix_init(void);
  34. void led_matrix_setup_drivers(void);
  35. void led_matrix_set_suspend_state(bool state);
  36. void led_matrix_set_indicator_state(uint8_t state);
  37. void led_matrix_task(void);
  38. // This should not be called from an interrupt
  39. // (eg. from a timer interrupt).
  40. // Call this while idle (in between matrix scans).
  41. // If the buffer is dirty, it will update the driver with the buffer.
  42. void led_matrix_update_pwm_buffers(void);
  43. bool process_led_matrix(uint16_t keycode, keyrecord_t *record);
  44. uint32_t led_matrix_get_tick(void);
  45. void led_matrix_toggle(void);
  46. void led_matrix_enable(void);
  47. void led_matrix_enable_noeeprom(void);
  48. void led_matrix_disable(void);
  49. void led_matrix_disable_noeeprom(void);
  50. void led_matrix_step(void);
  51. void led_matrix_step_reverse(void);
  52. void led_matrix_increase_val(void);
  53. void led_matrix_decrease_val(void);
  54. void led_matrix_increase_speed(void);
  55. void led_matrix_decrease_speed(void);
  56. void led_matrix_mode(uint8_t mode, bool eeprom_write);
  57. void led_matrix_mode_noeeprom(uint8_t mode);
  58. uint8_t led_matrix_get_mode(void);
  59. void led_matrix_set_value(uint8_t mode);
  60. void led_matrix_set_value_noeeprom(uint8_t mode);
  61. typedef struct {
  62. /* Perform any initialisation required for the other driver functions to work. */
  63. void (*init)(void);
  64. /* Set the brightness of a single LED in the buffer. */
  65. void (*set_value)(int index, uint8_t value);
  66. /* Set the brightness of all LEDS on the keyboard in the buffer. */
  67. void (*set_value_all)(uint8_t value);
  68. /* Flush any buffered changes to the hardware. */
  69. void (*flush)(void);
  70. } led_matrix_driver_t;
  71. extern const led_matrix_driver_t led_matrix_driver;
  72. extern led_eeconfig_t led_matrix_eeconfig;
  73. extern led_config_t g_led_config;