Can I use multiple strips on an ESP32? #529
-
Can I use multiple strips on an ESP32?
In my setup() I do this:
When I send commands to a strip they work perfectly, but instead of using different strips they always use the last one (waveStrip2) for everything.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This wiki entry contains some information on this. https://github.com/Makuna/NeoPixelBus/wiki/ESP32-NeoMethods Try NeoEsp32Rmt0800KbpsMethod , NeoEsp32Rmt1800KbpsMethod , NeoEsp32Rmt2800KbpsMethod for each of your NeoPixelBus and it will work. |
Beta Was this translation helpful? Give feedback.
This wiki entry contains some information on this. https://github.com/Makuna/NeoPixelBus/wiki/ESP32-NeoMethods
Due to the hardware requirement, you can't instance the exact same "method" as it will reuse the same hardware feature to send, thus what you are experiencing.
Try NeoEsp32Rmt0800KbpsMethod , NeoEsp32Rmt1800KbpsMethod , NeoEsp32Rmt2800KbpsMethod for each of your NeoPixelBus and it will work.