diff options
author | lokher <lokher@gmail.com> | 2022-08-13 21:39:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 14:39:06 +0100 |
commit | a02aff9c77c15ca9e248f84b09a88386a8f4b0a6 (patch) | |
tree | c37116d7c427cc40e61f87110f1f351b564e3676 /quantum/led_matrix/led_matrix.h | |
parent | ee664e0960f912876c19675b61219985abb11d0e (diff) |
Add led matrix support for CKLED2001 (#17643)
Diffstat (limited to 'quantum/led_matrix/led_matrix.h')
-rw-r--r-- | quantum/led_matrix/led_matrix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/led_matrix/led_matrix.h b/quantum/led_matrix/led_matrix.h index b2abec7eb1..446f293c78 100644 --- a/quantum/led_matrix/led_matrix.h +++ b/quantum/led_matrix/led_matrix.h @@ -33,6 +33,9 @@ #ifdef IS31FL3733 # include "is31fl3733-simple.h" #endif +#ifdef CKLED2001 +# include "ckled2001-simple.h" +#endif #ifndef LED_MATRIX_LED_FLUSH_LIMIT # define LED_MATRIX_LED_FLUSH_LIMIT 16 |