Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Data appearing on multiple strips #5

Open
IS512 opened this issue Feb 26, 2023 · 1 comment
Open

Data appearing on multiple strips #5

IS512 opened this issue Feb 26, 2023 · 1 comment

Comments

@IS512
Copy link

IS512 commented Feb 26, 2023

Unable to use multiple strips, data appears on both lines.

Sample Code

#include <esp32WS2811.h>

WS2811 ws2811_Strip1(14, 50);
WS2811 ws2811_Strip2(15, 50);

void setup() {

  // start led strip
  ws2811_Strip1.begin();
  ws2811_Strip2.begin();
}

void loop() {

  ws2811_Strip1.setAll(255, 0, 0);
  ws2811_Strip2.setAll(0, 255, 0);

  ws2811_Strip1.show();
  ws2811_Strip2.show();
}
@bertmelis
Copy link
Owner

I have to look into this. I never really tried it myself because I only have one strip.

Can't give a deadline...

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants