Powering addressable LED WS2812 5V when system has only 3.3V

Intro

If you're designing modern battery-powered device most likely you use Li-Ion/LiPo rechargeable battery (typically 3.7V nominal voltage) and 3.3V MCU (ESP32, STM32, EFR32, nRF), so to correctly power up it you can use buck-boost converter, as I described in this article:

Enable Save Mode for your Battery Devices with DC-DC Converters | 🧨 Engineering Schematic Solutions

Image

🔺 Issue Description

If you connect addressable RGB LED WS2812 of similar directly to the 3.3V power rail or battery 3.7V you might get unstable working in edge cases  and out of specs.

❔ Causing

And if you use addressable LED for indicating something it need at least 3.5V according to the datasheet, so you can't power in directly using common LiPo/Li-Ion batteries (typical range: 3.0V-4.2V):

WS2812B-B/WVDD=3.7V-5.3V
ImageImage

🔧 Issue Fix

The most obvious solution is to use another boost or buck-boost converter to power up just RGB LED. The only little detail, is that it should be cheap and small as possible, so I'm showing you one of the good solution for it.

Image

✔ Fixed

Now the simplest powering strategy could be like that:

Image

Estimated Price:

MPNValuePrice, 10QPrice, 500Q
XT1861B502MRBoost 900mV~6.5V SOT-23-3L$0.0557$0.0379
CL10A106KP8NNNC10u 10V 0603$0.0055$0.0042
CL10A226MQ8NRNE22u 6.3V 0603$0.0075$0.0066
FHI2012F-100MT0110uH-±20%-100mA-500mΩ 0805$0.0109$0.0085
TOTAL PRICE:$0.0796$0.0572

🌟 Related Article

ImageQuiescent Current of Addressable LED WS2812 Measurement
 

Conclusions

  • Using normal LED with PWM control not always possible or inconvenient for FW side (but definitely cheaper due to lack of boost 5V and level shifter)
  • Cheap and small step-up DC-DC converter can save consistency of your designs and FW code
  • Due to limit of output current, if maximum LED current is 12mA, so you can connect up to 100/12=8.33=8 RGB LEDs using proposed schematic parts
1.17K
0
Dante12864 1 month ago #

I think powering boost DC-DC converter directly from battery would be a better solution then daisy-chaining one converter after the other Image

0
admin admin 1 month ago #

I can't see image.

But it's not good approach for most applications since boost DC-DC converter and load will always drain battery.

1) XT1861B502MR-G (DC-DC IC)

From datasheet:

  • 低静态电流:15µA
  • Low quiescent current: 15µA

2) WS2812B-B/T (Addressable LED IC)

My measurements:

  • Quiescent current: 720uA

3) SN74LV1T34DCKR (Level Translator IC for 3.3V -> 5V)

From datasheet:

  • Static supply current: 1-10uA

That means (15uA + 720uA +1uA) ≈ 736uA will significantly affect on device sleep-mode current and to prevent additional power drain it should have additional switch.

Since typical system already has 3.3V switch and LED power relatively small it make sense to just connect boost DC-DC to it, instead of using additional switch.

Cookies?