Light Up Earrings

Everything else

Now’s probably a good time to show you the whole schematic:

The battery and charging terminals aren’t actually components; I just drew them out of the traces on the PCB itself.

LEDs

The LEDs on the left are Charlieplexed which allowed me to connect a large number of LEDs with a small number of wires going to the front PCB.  This means that I can only light one at a time.  I used some multiplexing with PWM to give the appearance of one brighter LED surrounded by two dimmer ones.  This triplet is what travels around the display. The feathering of brightnesses smooths out the rotation animation a bit.

Battery sensing

R1 and R2 bring the battery voltage to the microcontroller.  The ATTiny24 has an internal 1.1V band gap reference which it can use to perform ADC measurements where 1.1V is equal to 0xFF.  This means that the LSB is worth around 0.0043V.  With this configuration, when the ADC reads a value of 125, the divider’s output is 0.54V and the battery voltage is  3.078.

That is assuming that the band gap and resistors are perfectly accurate.  In reality I got closer to 2.9V which I figured was close enough.

Hall Effect and Power Switch

With no buttons or switches accessible, I wanted some way to switch the circuit off.  This would be a convenience to the user trying to save the battery as well as a necessity during battery charging (more on that later).  U3 is a low-power magnetic or “Hall Effect” sensor.  I originally purchased a hand full of them when I was trying to find a replacement for the optical sensor on my longboard wheel displays, but I was disappointed to find that the low power draw of this model came at the cost of sample rate.

The MLX90248 only measures the magnetic field once every 40ms, but it also only draws an average of 6.5

    \[\mu\]

A.  It’s a bi-directional sensor too, so a sufficiently strong magnetic field in the north or south direction along its sensor axis will cause it to pull its output low.  What this means in practice is that if you put a strong enough neodymium magnet within a centimeter of it, it’ll trigger the output.

So what does the microcontroller do when the the hall-effect pin goes low?  The idea is to shut off and draw as little power as possible while still being able to keep the battery connected to the circuit and allow the circuit to recover out of the sleep state when the magnet is removed.

There are a number of shutdown modes available to the ATTiny24.  The lowest power option is “power-down mode” where all operations on the processor are halted and the part requires a transition on an interrupt pin to wake up.  In this state, it draws just 3-4

    \[\mu\]

A which is tiny.

My original plan was to finagle a sort of hardware clock similar to poor man’s capsense using C3.  The idea was to charge C3 and then switch the pin to a high-impedance input before going into power-down mode.  The tiny leakage current on the input pin would slowly drain the capacitor until its voltage dropped low enough to trigger a falling edge interrupt and wake back up again.

This was a great solution for the menorah where the circuit could stay in power-down indefinitely with no problems, but I was concerned with my earrings that the board could get stuck in power-down for an extended period of time and neglect the critical battery monitoring functions.  It was also generally flakey and not the kind of thing I wanted to implement in a place where I couldn’t easily access the circuit.

Of course, my real reason for ditching it was a short that developed somewhere in my prototype preventing it from working.  Now it’s just an extra capacitor that does nothing.

The next lowest power mode is “standby” which still draws less than 10

    \[\mu\]

A.  This mode keeps an oscillator running which can pull the chip out of standby after a certain number of clock cycles has passed. This is super useful in things like wristwatches and soil moisture sensors.

Sadly, this solution requires an external crystal oscillator which is A) large and B) not already implemented on the PCBs that I had already made.  For these reasons, I had to fall back to “idle” mode.

In idle mode, the microcontroller is more or less still totally awake.  It can be woken by pin change interrupts as well as software timers.  While this is super convenient, it also draws substantially more power.  Even using the system clock prescaler fuse to drop the clock frequency down to 1MHz and using the Power Reduction Register to disable the ADC, USI, and one of the timers, I was still orders of magnitude above the other modes.

Page 197 of the data sheet says I should be able to drop down to somewhere between 0.15mA and 0.25mA.  I measured closer to .45mA:

(note, this was before I added the pull up/pull down to the FETs.  The actual current draw should be higher.)

I’m not sure why this is so high.  I think it might have something to do with the need to keep the gate of my PFET pulled low.  Regardless, it’s still much lower than the 6mA I measured when the circuit was active, so I moved on.

Update: Multiple readers have brought it to my attention that I could have used the watchdog timer of the ATTiny24 to reset the device every 8 seconds or so.  This can run while the system is in power-down or standby mode and does not require an external oscillator.

When a magnet is brought close to the circuit, the microcontroller switches off the LEDs, starts a timer, and goes into idle mode.  Then when the timer expires, it wakes up for a moment, takes a brief measurement of the battery, checks to see the magnet is still there and goes to sleep.  If the battery is too low, it disconnects it from the circuit, and if the magnet is removed, it wakes up.

The only downside of this method is that lengthening the timer interval to decrease power draw also makes the earrings very slow to respond to being turned on.  Depending on the user’s timing, it can take anywhere from 0 to 16 seconds for the device to light up after they remove the magnet.  While this may be inconvenient, I consider it to be well within my use case.

Charging

Charging lithium polymer batteries is a strange process that’s usually split into two stages: the constant current stage and the constant voltage stage.

Unlike the capacitors used in a typical circuit, lithium polymer batteries have a maximum rate at which they can be charged.  Your typical battery can be modeled as a resistor and a voltage source:

When you begin charging a dead battery, the voltage is all the way down at 3V.  The goal of charging is to force current backwards through the voltage source.  This is done by attaching the battery to a larger voltage source.  The battery will have a rated charging voltage which in the case of my battery is 4.2V.

The current traveling backwards through the battery will be the voltage across the resistor divided by its resistance.  Let’s say the resistor starts out at 50

    \[\Omega\]

(it will change depending on a number of conditions, but I’m going to stick with 50

    \[\Omega\]

to keep things simple):

    \[\large I=\frac{4.2V-3V}{50\Omega} = 24mA\]

The only problem is that the datasheet for this battery lists its maximum charge current as 9mA.  We’re almost tripling that!  With this amount of current flowing across the battery’s internal resistance, it will start to heat up more than the battery can handle.  It could eventually cause the battery to balloon up and even start a fire (probably an exaggeration for such a small cell, but it will still damage the battery).

This phase of charging is known as the “constant current phase”.  This is where the charger needs to carefully limit its current to make sure that it doesn’t overdrive the battery.  This will involve using a voltage smaller than 4.2V starting out.  In this case, you could use:

    \[\large 9mA\times 50\Omega + 3V = 3.45V\]

As you pump current into this battery, its internal voltage will slowly rise. Soon you’ll be able to drive it at a higher voltage than 3.45V.  Eventually, you’ll get to the point that you can safely charge it at 4.2V, but then you’ve got another problem. In order to maintain 9mA of charging, you would need to drive the battery above the rated 4.2V charging voltage.  What do you do?

This is called the “constant voltage” stage of battery charging.  This means that you maintain the voltage at 4.2V and allow the current to slowly drop.  As the internal voltage rises closer to 4.2V, the voltage across the internal resistance will drop lowering the current.

Eventually, this current will drop below some cut off threshold (in my case, 1mA), and it will be okay to stop charging.  The battery is fully charged!

You might find that a number of cheap chargers for things like those little RC helicopters don’t even have a constant voltage mode.  This is because once you exit the constant current mode, you can be as high as 80% full.  The last 20% isn’t considered worth it especially since it takes so much longer to complete due to the lower charge current.

Charge management

So the question is, how do you implement this charging scheme?  I came up with this solution (click to enlarge):

This probably isn’t the cheapest or most effective way to charge a battery, but it could be done with parts that I happened to have lying around.  The charger is designed to run off of either microUSB or two AAA batteries (for portable use).  D4 and D5 act as ORing diodes.  Whichever voltage is higher (USB if it’s connected) will be used to power the circuit.  These are Schottky diodes, so the voltage drops about 0.3V across them.

That’s where U4 steps in.  U4 is the boost converter from my bullet counter circuit.  When configured correctly, this thing will take a voltage from as low as 2V and output a good 5V at up to 200mA.  This is enough to boost the AAA’s 3V output up to 5V or to overcome the Schottky diode voltage drop in the case of USB power.

The power switch originally controlled the enable pin on the boost converter until I realized that with the boost converter disabled, there is still a current path through L1 and D3, so switching it off won’t prevent the circuit from drawing power.

Now for the part that actually charges the batteries.  There are two independent chargers here (one for each earring). Here’s one of them:

This circuit only controls the negative terminal of the battery.  The positive terminal is connected directly to +5V.

Voltage Limiting

Voltage limiting is handled by Q2 and its op amp.  R1, R2, and R9 make up a voltage divider that outputs 0.8V (this could have been done with 2 resistors, but I wanted to make it work with values I had handy).  This 0.8V is fed into the inverting input of the op amp which is configured in a negative feedback mode through Q2.  The end result is that the drain of Q2 is kept at 0.8V which means that the maximum voltage possible across the battery is 4.2V

R28 was added after I tested the circuit due to a problem I discovered with this setup when the currents get very small.  In order for Q2 to maintain the 0.8V drop, it needs some amount of current traveling through its R

    \[_{DS}\]

.  When this current drops too low, the voltage drop decreases, and the battery sees a voltage higher than 4.2V.  R28 acts to maintain at least 4.2mA of current flowing across Q2 at all times.  This energy is wasted of course, but I figured it was okay to sacrifice energy for stability considering this charger is going to be plugged into USB most of the time.

Current Limiting

Q1 and its op amp are responsible for current limiting.  R3 and R4 combine to make a 31

    \[\Omega\]

current sense resistor.  When the charge current reaches 9mA, the voltage  across this 31

    \[\Omega\]

resistor should be:

    \[\large 31\Omega \times 9mA = .279V\]

When this is added to the 0.8V of the voltage limiting section below, it comes out to 1.079V.  The voltage divider comprised of R6, R7, and R8 creates a 1.071V reference and the Q1 op amp combo try to keep both of those outputs at the same level.  The op amp is only monitoring the voltage, but the addition of the current sense resistors turn this into a current limiting supply.

When the battery’s voltage increases high enough to exit constant current mode, this portion of the circuit will continue to try to raise the current, but because it only has 4.2V maximum to work with, it won’t be able to damage the battery and the circuit will effectively be in constant voltage mode.

Shutdown

The two lines leading off the right side of the page go to an onboard ATTiny24 micro controller.  This device monitors the charge current by looking at the voltage at the top of R3 and R4.  When this voltage drops below 0.843V, it means that the current has dropped below 1.4mA.

At this point, the micro controller pulls the top line down.  This overrides the output of the op amp which is weakened by R5 and shuts Q1 off effectively killing the output and disconnecting the battery from the charger.

The 1.4V represents the 1mA shutoff current of the battery added to the 0.4mA idle current of the micro controller.

23 thoughts on “Light Up Earrings

  1. Really nice project! Now get these 3D printed and start selling them on Tindie 🙂
    I still shy away from using LiPos for the reasons you mentioned. Maybe I should give them a try as well.

    A few comments regarding your circuit:
    – when measuring the current draw from your circuit, did you account for the voltage divider (I calculated about 8.5 uA)?
    – you don’t actually need a voltage divider at all! Using the ADC mux connect VCC as reference and the 1.1 V bandgap as input. From that measurement you can calculate VCC.
    – almost did not see this: so you pull low PB0, right? What about the current flowing through R12?
    – when in power-down mode you can still wake up the device with the Watchdog interrupt (see http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=135288). That way you can configure your MCU to only wake up every 8 s.

    • Great comments!

      -The voltage divider certainly contributed to the 0.45mA draw. Also that measurement was taken before I added R12 (I added a note to make this clear).

      -That ADC mux trick is brilliant. I’ll definitely use that next time.

      -Someone else suggested the WDT as well. I’ve never used one before. I always assumed it ran off the same clock as the application processor (or at least that it drew more current than that). I’ll definitely try that out next time.

  2. Your break off programmer has inspired me to use that design in a wearable project idea that I have. Awesome and Thank You!

  3. Nice project 🙂

    One idea that could help storing the earrings in a charged state would be to use a small reed switch between the battery and the rest of the circuit (while keeping the connection to the charger).
    I think you could use it to simply cut the power mechanically instead of having a sensor+code to manage the case.
    For over-discharge protection when it’s in its box, you would only have the self-discharge effect to worry about, and that would not be a problem as long as the earrings are used at least once every few month.

  4. Yeah, using the 1.1vref for voltage detection works out all right – it’s not 100% accurate, but if you set your threshold high enough, you don’t risk getting near the bottom end of the discharge curve for the LiPo cell. I’ve been fiddling around with adding navigation lights to my RC helicopters now that the sun is setting so early in the evening, and having the lights warn me before the low voltage cutout in the model kicks in is a design goal, and it’s within a few dozen mV of my goal voltage.

    (viz: http://jeelabs.org/2012/05/12/improved-vcc-measurement/ although I’m using a different method.)

    And white Sculpey is translucent, huh? I’ll have to give my blinkenlights a shot with it. Right now I’m using some HDPE medicine bottles to diffuse the LEDs a bit, but it’s a bit weird looking. Pressing them into Sculpey and baking it up might look a _bit_ nicer…

    • It’s actually marked as “translucent” Sculpey. I think the white stuff is different.

      Neat project. I really like the coulomb graph.

  5. Pingback: LED Earrings #WearableWednesday | electronics-trade blog

  6. Pingback: Community Corner: RGB Stick Man Costumes and Ten More Great Projects from the Past Week in Adafruit’s Community « adafruit industries blog

  7. Pingback: Community Corner: RGB Stick Man Costumes and Ten More Great Projects from the Past Week in Adafruit’s Community | electronics-trade blog

  8. Pingback: Light Up Earrings

  9. do you have a schematic for the charging circuit? Been throwing around an idea that this battery would work well in.
    – K-tWizel

    • Page 4 has the schematic for the charger. You can also download the .zip file at the bottom of page 5 which contains the Eagle schematic files for the earrings and the charger.

  10. Have some master models of the parts 3D printed. Smooth up the surfaces as needed with some primer and sanding. Then make RTV silicone molds for casting in urethane resin.

    Smooth-On has a fairly quick setting white that when cast thin enough, light can shine through.

    You could make a multiple cavity mold with only one set of 3D printed parts by first making a small mold to cast one set, then cast several sets from that mold to make one or more multi-cavity molds.

    Shrinkage of the resin, especially with small sized items like these, is next thing to zero.

  11. This is an awesome project. I’m also doing really small circuits as well. I’m sure you get this a lot but I need help finding a component. I need something that will detect voltage on a battery to about 2.5 volts. Then after hitting 2.5 volts it will direct the power somewhere until the voltage drops back down to about 1.7 volts. Or something similar to that. I just need to find out what kind of component that would be so I can see what there is to offer. thank you

    • I don’t know of a specific part that can do that. There may be a number of battery management ICs that can be configured to do something like that though. What kind of battery are you dealing with? What’s your application?

      • Well I’m actually dealing with a capacitor but treating it like a battery, just for energy storage. The application is a small energy harvester that takes in small amounts of energy over a period of about a minute and then dumps that collected energy into a motor or an LED. I found a part that could do the job but I’m going to test it in a few days to see if it’ll work. The LM8364 seems like it’ll work. What do you think? http://www.ti.com/general/docs/lit/getliterature.tsp?literatureNumber=snvs232b&fileType=pdf

        • Well, that part will certainly detect when the voltage drops below a threshold, but I still don’t quite understand your application. Will this connect to your charging circuit?

          • Sorry for the long reply. Basically the circuit has a small solar panel* made up of photo diodes. I’m getting a little over 3 volts in normal room light from the solar panel. In parallel with the solar panel I have a 1200uF capacitor as a battery to store the electrical energy made from the solar panel. I want that stored energy dumped into an LED or a small motor once the voltage in the capacitor gets to around 2 volts. I just finished building the circuit just now and it doesn’t work with the LM8364. But the circuit did show that the small solar panel and the capacitor could power an LED for a few msec. Then, i could have also heated the LM8364 to high when I was soldering it. I’ll test the component now to see if it actually functions.

          • So after testing the LM8364 I figured out the problem. The component basically detects whether there is enough power to run a processor or not. And in return tells the processor to shut down or turn on. For every failure I learn more about what I’m doing.

  12. Pingback: CNC machine, Christmas gifts, and I’m a dope | ch00ftech Industries

  13. Really good design work, unfortunately the Chinese have unlimited “research” funds
    and dirt cheap parts and labor. They are selling beautiful LED earrings on the web for 99 cents a pair. Including shipping!!! Sorry Guys!!!

  14. Pingback: CNC machine, Christmas gifts, and I’m a dope » Geko Geek

Leave a Reply to Galane Cancel reply

Your email address will not be published. Required fields are marked *