diff options
| author | Ryan | 2021-03-13 01:38:26 +0100 |
|---|---|---|
| committer | GitHub | 2021-03-13 01:38:26 +0100 |
| commit | f23639517683378bed12792903e0d9cc6a1a6794 (patch) | |
| tree | 7af76715dedcbf70dfc180f3ea4af27d132cf188 /quantum/led_matrix.h | |
| parent | 5590c40b5b5a718ab2af270ea9974d98db68d8ef (diff) | |
LED Matrix: Clean up includes (#12197)
Diffstat (limited to 'quantum/led_matrix.h')
| -rw-r--r-- | quantum/led_matrix.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/quantum/led_matrix.h b/quantum/led_matrix.h index 0817d13573..e4322a1509 100644 --- a/quantum/led_matrix.h +++ b/quantum/led_matrix.h @@ -19,7 +19,14 @@ #pragma once +#include <stdint.h> +#include <stdbool.h> #include "led_matrix_types.h" +#include "quantum.h" + +#ifdef IS31FL3731 +# include "is31fl3731-simple.h" +#endif enum led_matrix_effects { LED_MATRIX_UNIFORM_BRIGHTNESS = 1, |