esp32WS2811 icon indicating copy to clipboard operation
esp32WS2811 copied to clipboard

Arduino library for ESP32 to drive WS2811 LEDs using the RMT peripheral

Results 2 esp32WS2811 issues
Sort by recently updated
recently updated
newest added

Whilst testing this library against a string of 50 WS2811 LED's I noticed that Colour(r, g, b) seemed to be mixing up the red and green channels. Upon investigation it...

Unable to use multiple strips, data appears on both lines. Sample Code ```` #include WS2811 ws2811_Strip1(14, 50); WS2811 ws2811_Strip2(15, 50); void setup() { // start led strip ws2811_Strip1.begin(); ws2811_Strip2.begin(); }...