Close

LED driver

A project log for Ultra low power LED

<1.5µA current consumption when continuously on, optional flashing mode

christoph-tackChristoph Tack 03/13/2020 at 21:050 Comments

Lessons learned from #TritiLED 

Series resistor

The simplest, but certainly not the most efficient way to drive an LED.  To limit power consumption, the resistor should be chosen as large as possible.  Unluckily LEDs are not very efficient at these low currents.

Fly back diode on inductor

The current through the LED will be a sawtooth with a falling slope (unlike a rising slope in the image below).  That doesn't impact the RMS-value.

RMS value of a sawtooth impulse

In our case, delta will be 100%, or 1.  So the peak current in the saw tooth is 1.73 times the RMS-current in the sawtooth pulse.  For an RMS-current of 5mA, we must generate a sawtooth with a peak current close to 9mA. 

As our supply voltage will be fixed, the only parameters left to play with, are the inductance value and the pulse width.

Parameters

Simplified calculations

Simplified in a way that no losses are taken into account.

Needed pulse width

Calculation of the pulse width at the gate of the MOSFET.

Calculation of the pulse width at the gate of the MOSFET.

Example for an inductor of 1mH, 3V supply voltage and a peak inductor current (top of the sawtooth) of 9mA

You could choose a smaller inductor value, but this also decreases the pulse width.  Smaller pulse widths require smaller RC-combinations for the one-shot timer.  This will lead to increased loss (smaller R) or less precision (C is only a few picofarads).

Either one or two LEDs will be used as a load.  When two LEDs are connected in series, the inductor current drops to zero in about half the time as when only one LED would be connected.  Either the LEDs are still bright enough, then the 1mH inductor can remain.  If not, then the inductor value and pulse width can be doubled.

Current consumption

Here we calculate the DC-current consumption, as would be shown on a multimeter feeding this circuit.

Example calculation with inductor = 1mH, peak inductor current is 9mA, pulse repetition frequency is 64Hz and a LED voltage of 2.6V (when the current through the LED is 9mA).

Schematic

LED driver for one or two LEDs
LED driver for one or two LEDs

The LED driver itself is quite simple.  If Q2 conducts, current starts rising in the inductors.  Once Q2 stops conducting, the inductor will create a negative voltage on the cathode of D2, and the current will flow through the LEDs.

The extra inverter consisting of Q6 and R14 has been added because I didn't want to add an extra transistor to the BoM, instead I reused the FDV301 and the SI3401A.

This circuit doesn't work as intended, i.e. creating 3µs ON-times for Q2.  Can you spot the error?

I overlooked the discharging of the Q2 gate capacitance.  To pull Q2 into conduction, Q6 conducts and charges Q2 fast.  When Q6 stops conducting however, the Q2's gate has to discharge through R14, which is 100K.  This takes about 180µs!

The dirty remedy would be to drastically lower R14, but that will also lead to a waste in current.  The nice solution is to replace Q6 by a low Rdson NMOS and connect the LEDs and the inductors between the VCC and the drain of Q6. 

For Q6, #TritiLED  uses the IRLML6244TRPBF, but that MOSFET has a total gate charge of 8.9nC.

I think there's no point in selecting the NFET with the lowest possible Rdson, because the bulk of the resistive loss occurs in the inductors, which have 1.85ohm series resistance each.

Replacing Q6 by a ZXMN2F30FHTA
Replacing Q6 by a ZXMN2F30FHTA and correcting the other components.

The current consumption of this setup is about 1.45µA, which is much higher than what was expected. What is going on?

  1. When replacing the inductor || LED with a 1Mohm resistor, the current consumption is still 280nA.
  2. Replacing Q6 with a 1Mohm resistor to GND : 77nA.
  3. When disconnecting the Q output of the monostable, current consumption drops to 66nA.

It's clear that the (gate) losses of the MOSFET have to be taken into account, as pointed out on MOSFET power losses and how they affect power-supply efficiency.  The BSS806NH6327XTSA1 might be a better choice as switching element because of its much lower gate charge.  When the monostable drives the BSS806 with a 1Mohm resistor, the current consumption is 220nA.  So we win 60nA in comparison to the ZXMN2F30FHTA.

Discussions