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

Data appearing on multiple strips  #5

Open
@IS512

Description

@IS512

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();
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions