logo

qmk_firmware

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

ap2_led.h (3714B)


  1. /* Copyright 2021 OpenAnnePro community
  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. #pragma once
  17. #include "protocol.h"
  18. // Struct defining an LED and its RGB color components
  19. // Compatible with Shine firmware.
  20. typedef union {
  21. struct {
  22. /* Little endian ordering to match uint32_t */
  23. uint8_t blue, green, red;
  24. /* Used in mask; nonzero means - use color from mask. */
  25. uint8_t alpha;
  26. } p; /* parts */
  27. /* Parts vector access: 0 - blue, 1 - green, 2 - red */
  28. uint8_t pv[4];
  29. /* 0xrgb in mem is b g r a */
  30. uint32_t rgb;
  31. } ap2_led_t;
  32. #define ROWCOL2IDX(row, col) (NUM_COLUMN * (row) + (col))
  33. #define NUM_COLUMN 14
  34. #define NUM_ROW 5
  35. #define KEY_COUNT 70
  36. /* Local copy of led_mask, used to override colors on the board */
  37. extern ap2_led_t led_mask[KEY_COUNT];
  38. extern ap2_led_t led_colors[KEY_COUNT];
  39. /* Handle incoming messages */
  40. extern void led_command_callback(const message_t *msg);
  41. void ap2_set_IAP(void);
  42. void ap2_led_disable(void);
  43. void ap2_led_enable(void);
  44. void ap2_led_set_profile(uint8_t prof);
  45. void ap2_led_next_profile(void);
  46. void ap2_led_prev_profile(void);
  47. void ap2_led_next_intensity(void);
  48. void ap2_led_next_animation_speed(void);
  49. void ap2_led_forward_keypress(uint8_t row, uint8_t col);
  50. /* Set single key to a given color; alpha controls which is displayed */
  51. void ap2_led_mask_set_key(uint8_t row, uint8_t col, ap2_led_t color);
  52. /* Push a whole local row to the shine */
  53. void ap2_led_mask_set_row(uint8_t row);
  54. /* Synchronize all rows */
  55. void ap2_led_mask_set_all(void);
  56. /* Set all keys to a given color */
  57. void ap2_led_mask_set_mono(ap2_led_t color);
  58. /* Set single key to a given color; alpha controls which is displayed */
  59. void ap2_led_colors_set_key(uint8_t row, uint8_t col, ap2_led_t color);
  60. /* Push a whole local row to the shine */
  61. void ap2_led_colors_set_row(uint8_t row);
  62. /* Synchronize all rows */
  63. void ap2_led_colors_set_all(void);
  64. /* Set all keys to a given color */
  65. void ap2_led_colors_set_mono(ap2_led_t color);
  66. void ap2_led_set_manual_control(uint8_t manual);
  67. /* Blink given key `count` times by masking it with a `color`. Blink takes `hundredths` of a second */
  68. void ap2_led_blink(uint8_t row, uint8_t col, ap2_led_t color, uint8_t count, uint8_t hundredths);
  69. /* Kept for compatibility, but implemented using masks */
  70. void ap2_led_set_foreground_color(uint8_t red, uint8_t green, uint8_t blue);
  71. void ap2_led_reset_foreground_color(void);
  72. void ap2_led_sticky_set_key(uint8_t row, uint8_t col, ap2_led_t color);
  73. void ap2_led_unset_sticky_key(uint8_t row, uint8_t col);
  74. void ap2_led_unset_sticky_row(uint8_t row);
  75. void ap2_led_unset_sticky_all(void);
  76. typedef struct {
  77. uint8_t amount_of_profiles;
  78. uint8_t current_profile;
  79. uint8_t matrix_enabled;
  80. uint8_t is_reactive;
  81. uint8_t led_intensity;
  82. uint8_t errors;
  83. } ap2_led_status_t;
  84. extern ap2_led_status_t ap2_led_status;
  85. #ifdef RGB_MATRIX_ENABLE
  86. /* RGB driver functions */
  87. void init(void);
  88. void flush(void);
  89. void set_color(int index, uint8_t r, uint8_t g, uint8_t b);
  90. void set_color_all(uint8_t r, uint8_t g, uint8_t b);
  91. #endif