summaryrefslogtreecommitdiffstats
path: root/quantum/led_matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/led_matrix.h')
-rw-r--r--quantum/led_matrix.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/quantum/led_matrix.h b/quantum/led_matrix.h
index ba8f0279a6..48c9483b2d 100644
--- a/quantum/led_matrix.h
+++ b/quantum/led_matrix.h
@@ -48,8 +48,11 @@
#endif
enum led_matrix_effects {
- LED_MATRIX_UNIFORM_BRIGHTNESS = 1,
+ LED_MATRIX_NONE = 0,
+
+ LED_MATRIX_UNIFORM_BRIGHTNESS,
// All new effects go above this line
+
LED_MATRIX_EFFECT_MAX
};
@@ -63,7 +66,7 @@ uint8_t led_matrix_map_row_column_to_led(uint8_t row, uint8_t column, uint8_t *l
void led_matrix_set_value(int index, uint8_t value);
void led_matrix_set_value_all(uint8_t value);
-bool process_led_matrix(uint16_t keycode, keyrecord_t *record);
+void process_led_matrix(uint8_t row, uint8_t col, bool pressed);
void led_matrix_task(void);