led_matrix.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. #ifndef BACKLIGHT_ENABLE
  21. # error You must define BACKLIGHT_ENABLE with LED_MATRIX_ENABLE
  22. #endif
  23. typedef struct Point {
  24. uint8_t x;
  25. uint8_t y;
  26. } __attribute__((packed)) Point;
  27. typedef struct led_matrix {
  28. union {
  29. uint8_t raw;
  30. struct {
  31. uint8_t row : 4; // 16 max
  32. uint8_t col : 4; // 16 max
  33. };
  34. } matrix_co;
  35. Point point;
  36. uint8_t modifier : 1;
  37. } __attribute__((packed)) led_matrix;
  38. extern const led_matrix g_leds[LED_DRIVER_LED_COUNT];
  39. typedef struct {
  40. uint8_t index;
  41. uint8_t value;
  42. } led_indicator;
  43. typedef union {
  44. uint32_t raw;
  45. struct {
  46. bool enable : 1;
  47. uint8_t mode : 6;
  48. uint8_t hue : 8; // Unused by led_matrix
  49. uint8_t sat : 8; // Unused by led_matrix
  50. uint8_t val : 8;
  51. uint8_t speed : 8; // EECONFIG needs to be increased to support this
  52. };
  53. } led_config_t;
  54. enum led_matrix_effects {
  55. LED_MATRIX_UNIFORM_BRIGHTNESS = 1,
  56. // All new effects go above this line
  57. LED_MATRIX_EFFECT_MAX
  58. };
  59. void led_matrix_set_index_value(int index, uint8_t value);
  60. void led_matrix_set_index_value_all(uint8_t value);
  61. // This runs after another backlight effect and replaces
  62. // colors already set
  63. void led_matrix_indicators(void);
  64. void led_matrix_indicators_kb(void);
  65. void led_matrix_indicators_user(void);
  66. void led_matrix_init(void);
  67. void led_matrix_setup_drivers(void);
  68. void led_matrix_set_suspend_state(bool state);
  69. void led_matrix_set_indicator_state(uint8_t state);
  70. void led_matrix_task(void);
  71. // This should not be called from an interrupt
  72. // (eg. from a timer interrupt).
  73. // Call this while idle (in between matrix scans).
  74. // If the buffer is dirty, it will update the driver with the buffer.
  75. void led_matrix_update_pwm_buffers(void);
  76. bool process_led_matrix(uint16_t keycode, keyrecord_t *record);
  77. uint32_t led_matrix_get_tick(void);
  78. void led_matrix_toggle(void);
  79. void led_matrix_enable(void);
  80. void led_matrix_enable_noeeprom(void);
  81. void led_matrix_disable(void);
  82. void led_matrix_disable_noeeprom(void);
  83. void led_matrix_step(void);
  84. void led_matrix_step_reverse(void);
  85. void led_matrix_increase_val(void);
  86. void led_matrix_decrease_val(void);
  87. void led_matrix_increase_speed(void);
  88. void led_matrix_decrease_speed(void);
  89. void led_matrix_mode(uint8_t mode, bool eeprom_write);
  90. void led_matrix_mode_noeeprom(uint8_t mode);
  91. uint8_t led_matrix_get_mode(void);
  92. void led_matrix_set_value(uint8_t mode);
  93. void led_matrix_set_value_noeeprom(uint8_t mode);
  94. typedef struct {
  95. /* Perform any initialisation required for the other driver functions to work. */
  96. void (*init)(void);
  97. /* Set the brightness of a single LED in the buffer. */
  98. void (*set_value)(int index, uint8_t value);
  99. /* Set the brightness of all LEDS on the keyboard in the buffer. */
  100. void (*set_value_all)(uint8_t value);
  101. /* Flush any buffered changes to the hardware. */
  102. void (*flush)(void);
  103. } led_matrix_driver_t;
  104. extern const led_matrix_driver_t led_matrix_driver;