aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix.h
diff options
context:
space:
mode:
authorXScorpion2 <rcalt2vt@gmail.com>2019-04-14 20:50:35 -0400
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-04-14 17:50:35 -0700
commit5fcd744ddba591829a129560992b2e43fb615d4d (patch)
tree33b78133af1563f5dfa1e125a37f86e30a7df1cb /quantum/rgb_matrix.h
parentd7ba190cd9b90bce3a00dfa2a9afe4b3bf0a1dbb (diff)
downloadqmk_firmware-5fcd744ddba591829a129560992b2e43fb615d4d.tar.gz
qmk_firmware-5fcd744ddba591829a129560992b2e43fb615d4d.zip
Features/ws2812 matrix driver (#5418)
* WS2812 driver implementation for RGB Matrix * Added driver configuration docs
Diffstat (limited to 'quantum/rgb_matrix.h')
-rw-r--r--quantum/rgb_matrix.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/quantum/rgb_matrix.h b/quantum/rgb_matrix.h
index 0e193dcb2..0a11f2692 100644
--- a/quantum/rgb_matrix.h
+++ b/quantum/rgb_matrix.h
@@ -28,9 +28,11 @@
28#ifdef IS31FL3731 28#ifdef IS31FL3731
29 #include "is31fl3731.h" 29 #include "is31fl3731.h"
30#elif defined (IS31FL3733) 30#elif defined (IS31FL3733)
31 #include "is31fl3733.h" 31 #include "is31fl3733.h"
32#elif defined (IS31FL3737) 32#elif defined (IS31FL3737)
33 #include "is31fl3737.h" 33 #include "is31fl3737.h"
34#elif defined (WS2812)
35 #include "ws2812.h"
34#endif 36#endif
35 37
36#ifndef RGB_MATRIX_LED_FLUSH_LIMIT 38#ifndef RGB_MATRIX_LED_FLUSH_LIMIT