Might have bricked 60 WS2811 RGB leds


  • Mod

    Yesterday I was very happy with my latest project: a dimmable 1m, 60 led light. The setup:

    • 1m RGB 60 led WS2811 (12V) (this, and no it is not 5 meter as the headline says, it is 1 meter)
    • A potentiometer
    • An Arduino Leonardo
    • 300uF capactior between gnd and +12V
    • 470 ohm resistor between the Arduino data pin and Din on the led strip

    The Arduino reads the potentiometer and sets the brightness level. The loop is very simple:

    void loop() {
      colorFill(strip.Color(255, 32, 153)); // This seems to be warm white
      strip.setBrightness(analogRead(INPUT_PIN) / 600.0  * 255);
      strip.show();
    }
    void colorFill(uint32_t c) {
      for (byte i = 0; i < strip.numPixels(); i++) {
        strip.setPixelColor(i, c);
      }
      strip.show();
    }
    

    It was working great. I was powering the Arduino through the USB connection. before putting the Arduino inside the wall I decided to remove the 5V power and power the Arduino on RAW with 12V instead. The Arduino didn't like that. Probably a bad regulator. The power led only glows faintly now, even when powering through USB again and the Arduino no longer shows up as a com port when connected to my PC.

    So I loaded the sketch on another Arduino of the same model. The strip starts dark, as it should. When the Arduino turns on the strip, the first three leds power up at 100% (regardless of the brightness set from the Arduino). No other leds light up.

    My guess is that the strip was overloaded when the Arduino broke. I tried cutting off the first 3-led segment of the strip, thinking that maybe the first section died to save the rest of the strip. Now the next three leds light up. Nothing changes if I turn the potentiometer.

    So it looks like I have broken one Arduino and the 60 led strip. Good thing this stuff is cheap. But before I throw the strip, does anyone have any ideas on how to troubleshoot if it is really dead?

    I have added a PWM-driven led to the same Arduino, and that led is dimmed up and down when I turn the potentiometer, so the new Arduino seems to be working fine. The new code for reference:

    void loop() {
      brightness = analogRead(INPUT_PIN) / 600.0  * 255;
      colorFill(strip.Color(255, 32, 153)); // This seems to be warm white
      strip.setBrightness(brightness);
      strip.show();
      analogWrite(LED, brightness);
    }
    

  • Hero Member

    @mfalkvidd Does not look to good. Did you power the strip from the arduino regulator? 60 WS2011 leds can consume 60 * 30mA = 1.8A ....


  • Mod

    I powered the Arduiono on RAW with the same 12V power source I power the led strip.


  • Hero Member

    @mfalkvidd You are using a 12V strip? If the supply voltage has not been above the rating chances are that the strip can still (partly) function. Have you read the überguide?


  • Mod

    Yes, the strip is 12V. Thanks for asking. I've added that to the original post.
    I have read the überguide but not lately. Will read it and see if I find any hints.


  • Mod

    I was already using a capacitor between +12V and GND (I'm using 300uF and the überguide recommends 1000uF though)
    I already had a resistor between the Arduino data pin and Din on the led strip.
    can't seem to find anything else useful.

    I measured the voltage on Din on the first section. It is 1.3-1.7V depending on the brightness level. When measuring Dout on the first section, I get no voltage. So the data signal is not forwarded to the next section.

    I am able to faintly light up the leds in the sections when using the diode tester mode on my cheap multimeter. From this my guess is that the logic chips are busted but the leds are still intact. Controlling them without the logic chips is a mess though.


  • Hero Member

    @mfalkvidd I am a little confused... the WS2811 chip is a logic chip that does pass a digital code signal not PWM.. or am I missing the point here..😕


  • Mod

    @AWI are you referring to "I have added a PWM-driven led to the same Arduino"?
    If so, this has nothing to do with the led strip. It is only used to show that the Arduino updates the brightness when I turn the potentiometer (since I'm no longer able to see the led strip). It uses a different output pin.


  • Mod

    I realized you might refer to my way of measuring the data signal. Just measuring the DC voltage is a crude way of measuring the signal, but that Dout of the first section has 0V all the time probably means that the signal is not getting through.


  • Admin

    @mfalkvidd

    Are you absolutely sure that the LED strip is 12V? ws2811 chips are 5V only.. If you need higher supply voltage on the LED's you need to add FET's / Transistors to the ws2811.

    If you read the specifications on the link, that you provided in the first post, then it also says 5V

    0_1461275219251_aliexpress-5mRGB.png


  • Mod

    I am pretty sure but one can never be really sure when buying electronics from China :). I ran the strips at 12V för 10+ minutes before I decided to switch the Arduino power from 5V through the usb connector to 12V on the raw pin. I doubt 5V leds would survive 10+ minutes on 12V.
    Also, the datasheet says 12V on page 5, application circuit 2.
    0_1461276995789_image.jpeg the text on the strip also says 12V



  • I'm not 100% sure on this but I think the LED's are ran at 12v (as described on Page 5) but the IC that controls the signal is 6-7v (see page 2 Absolute Maximum Ratings).

    Again, i'm still new and could be wrong.


  • Hero Member

    @mfalkvidd 12V on the a WS2811 is normal the Led's are connected in series. The chip cannot handle 12V itself but has a 'stabilivolt' feature which lets you run the chip upto 24V if you put a resistor in series.

    0_1461301232757_upload-e43b1ce4-f39d-4efa-8318-df1939f44263

    The data input (DIN) however is not very tolerant but is not connected to the output internally (some signal reshaping circuitry and logic in between). I would think that a peak voltage on the input would not be able to burn the whole chain.

    Back to the resque: Do you have another proven setup where can connect the strip after removing the first 2 to 3 WS2811 (3 Led) segments from the strip?


  • Mod

    @AWI said:

    if you put a resistor in series.

    by "you", do you mean me, mfalkvidd? Or the designer of the rgb strip? I think the rgb strip already has the necessary components built-in (especially since I got it working before frying the Arduino), but it could also be that the first Arduino happened to deliver a signal that got the strip working.

    I cut off the last section of the strip and connected only that section to the Arduino. Nothing happens. So my guess is that the ICs of the entire strip are broken.


  • Hero Member

    @mfalkvidd you != @mfalkvidd (the resistor should be in the strip) 😉 I'll guess you are right that they died 😢 Destructive testing is a pain...


  • Contest Winner

    I fried up a ProMini when I provided 12V. Even though the specs says that it can handle 12V. Luckily I can stell power the Arduino through the FDTI power supply.

    I still feed the arduino from the 12V power adaptor, that came with the LED strip. I'm doing it in two steps from 12V to 8V and from 8V to 3.3V. The LD33V can handle 12V but it get's really hot even with heat sink. By stepping down in two Phases both regulators get warm but not hot. After running this setup for a couple of weeks, I would dare to put that in a wall mount.

    The schematics can be found at https://www.openhardware.io/view/50/Gesture-controlled-MySensors-Floor-lamp


  • Mod

    This post is deleted!


  • Just echoing the 12V fried silicon. Specs don't really apply to these components, that is why they are not published. I smoked a Nano on 12V in less time than it takes to think "This might work"


  • Hero Member

    Perhaps when the arduino died , the full 12v was put down the data pin to your led strip.... subsequently killing all ws2811 chips....
    🤔

    What voltage do you see on the data pin on the arduino now if you connect it back to the 12v raw??

    As you said, good thing these are cheap....


  • Mod

    @gregl I don't think I have that Arduino around anymore so I can't check. Sorry.


Log in to reply
 

Suggested Topics

  • 3
  • 24
  • 2
  • 15
  • 10
  • 3

0
Online

11.2k
Users

11.1k
Topics

112.5k
Posts