diff options
author | Ryan <fauxpark@gmail.com> | 2023-11-30 10:19:41 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 10:19:41 +1100 |
commit | 099eaefb40b4a39820930bfee90284af9743ef09 (patch) | |
tree | 4b1a0ec78e26d24be18a5b29dd39de2ac2cd4ebc /drivers/led | |
parent | 2886c335a0e8a9bb6b6549e648ece7e51519f787 (diff) |
Add `APA102_LED_COUNT` define (#22530)
Diffstat (limited to 'drivers/led')
-rw-r--r-- | drivers/led/apa102.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/led/apa102.h b/drivers/led/apa102.h index cd0a19d445..027221f434 100644 --- a/drivers/led/apa102.h +++ b/drivers/led/apa102.h @@ -19,6 +19,12 @@ #include "color.h" +#if defined(RGBLED_NUM) +# define APA102_LED_COUNT RGBLED_NUM +#elif defined(RGB_MATRIX_LED_COUNT) +# define APA102_LED_COUNT RGB_MATRIX_LED_COUNT +#endif + #ifndef APA102_DEFAULT_BRIGHTNESS # define APA102_DEFAULT_BRIGHTNESS 31 #endif |