Hi,
I'm using a Teensy4.1 with OctoWS2811 and 4 LED panels (256 LEDs per strip). Only 3 panels light up — the fourth one (connected to bleu and white_bleu) stays off.
This is my script :
I tested:
Interestingly, when I plug a second Ethernet cable connected to channel 0 (orange pair), and modify the script to light 5 strips, then all 4 panels light up — suggesting that data can still be sent through a second path.
I don't know If anyone has an idea why the blue and blue-white wires of the Ethernet cable aren't working?
Thanks!
Lc
I'm using a Teensy4.1 with OctoWS2811 and 4 LED panels (256 LEDs per strip). Only 3 panels light up — the fourth one (connected to bleu and white_bleu) stays off.
This is my script :
Code:
#include <OctoWS2811.h>
const int ledsPerStrip = 256;
DMAMEM int displayMemory[ledsPerStrip * 6];
int drawingMemory[ledsPerStrip * 6];
const int config = WS2811_GRB | WS2811_800kHz;
OctoWS2811 leds(ledsPerStrip, displayMemory, drawingMemory, config);
void setup() {
leds.begin();
leds.show();
}
void loop() {
for (int strip = 0; strip < 4; strip++) {
for (int i = 0; i < ledsPerStrip; i++) {
leds.setPixel(i + strip * ledsPerStrip, leds.color(255, 255, 255));
}
}
leds.show();
}
- Different Teensy boards and OctoWS2811 adapters
- Swapped LED panels (they all work on other channels)
- Different Ethernet cables (all 8 wires have continuity, including blue & white/blue)
Interestingly, when I plug a second Ethernet cable connected to channel 0 (orange pair), and modify the script to light 5 strips, then all 4 panels light up — suggesting that data can still be sent through a second path.
Code:
#include <OctoWS2811.h>
const int ledsPerStrip = 256;
DMAMEM int displayMemory[ledsPerStrip * 6];
int drawingMemory[ledsPerStrip * 6];
const int config = WS2811_GRB | WS2811_800kHz;
OctoWS2811 leds(ledsPerStrip, displayMemory, drawingMemory, config);
void setup() {
leds.begin();
leds.show();
}
void loop() {
for (int strip = 0; strip < 5; strip++) {
for (int i = 0; i < ledsPerStrip; i++) {
leds.setPixel(i + strip * ledsPerStrip, leds.color(255, 255, 255));
}
}
leds.show();
}
I don't know If anyone has an idea why the blue and blue-white wires of the Ethernet cable aren't working?
Thanks!
Lc