Hello folks!
I bought a ws2811 (segmented control, 5 leds on 1 ws2811 chip) led strip from govee and have successfully controlled it several times with my Arduino and the Fastled library. For a larger project I have now bought the 20m set from Govee, consisting of 2x10 meter led strips (24v). I was able to control one of the two strips as usual with my arduino, but not the other. I can rule out hardware errors. Does anyone have any idea what could have happened? Both strips work with the supplied Goove LED controller.
For anyone asking: I bought the Govee strips so that I already have a suitable power supply unit with me and can control the strips with the supplied controller and app after the project has been completed.
I have also verified that the chips are actually ws2811 and tried to mix ground and data.
Maybe the chinese supplier has used two types of strips in one set and implemented the different protocolls in their controller code and I just dont have this information…
)
#include <FastLED.h>
#define LED_PIN 6 // Pin für den LED-Streifen
#define NUM_LEDS 1 // Anzahl der LEDs
CRGB leds[NUM_LEDS]; // Array für LED-Farben
void setup() {
FastLED.addLeds<WS2811, LED_PIN, RGB>(leds, NUM_LEDS);
}
void loop() {
leds[0] = CRGB::Red;
FastLED.show();
delay(1000);
leds[0] = CRGB::Green;
FastLED.show();
delay(1000);
leds[0] = CRGB::Blue;
FastLED.show();
delay(1000);
}