Last year’s post showed how a packet transmission w/ ACK reception works out in terms of power consumption. It also uncovered a fairly large “power consumption bug”, with the scheduler idling only 0.1s at a time, causing the ATmega to exit power-down mode through its watchdog far more often than necessary.
Here’s the relevant code in the general-purpose Scheduler class in Ports.cpp:
And here’s what I ‘m going to change it to, to optimize and stay powered-down much longer:
This changes the wake-up period from 30 times per second, to roughly once every 8s, with blips like this:
My interpretation of this picture, is that the ATmega on this JeeNode needs a whopping 10 mA of power for 50 µs once every eight seconds to keep going. That 1 ms “lead-in” at < 1 mA is probably clock startup, or something.
This current draw is the same as before (this capture was with PIR installed). But instead of 1800 wake-ups per minute, there will now be 10 or so. This will reduce the power consumption from 2,000 µC to roughly 10 µC!
Does that mean the Room Node will now last 200 times longer on a single battery? Unfortunately, no. With these low-power games, the weakest link determines total battery life. In this case, there’s a PIR sensor which has to be constantly on, drawing about 50 µA. That’s 3,000 microcoulombs per minute.
But still, this little optimization should add quite a bit to the lifetime of a battery:
- old: 3000 (PIR) + 130 (radio) + 600 (estimated) ATmega/regulator + 2,000 (scheduler) = 5730 µC/min
- new situation, again per minute: 3,000 + 130 + 600 + 10 = 3740 µC/min
If you’re wondering what “microcoulombs/minute” means: that’s just current, so rescaling it to µC/s (i.e. µA’s), we get: old ≈ 96 µA, new = 63 µA. With a 2000 mAh 3x AA battery pack, that’s 2.5 vs 3.6 years of run time.
Note that these values are fairly optimistic. With motion in the room, there will be more than one packet transmission per minute. I have yet to see the real-life battery life of these room nodes, although right now it’s looking quite good: the nodes I have around here have been working for many months – 2012 will tell!
But either way, that change of just a few lines of C code should add about 50% to the battery life. Crazy, eh?
Ah – so the math function starting point is controlled by the corresponding channel trigger? Neat.
All ist klar
Have you ever considered adding a RTC like the PCF8563P? You can configure it to generate an interrupt every second. It draws less than a uA, it works at 3V3 and you have the benefit of having the correct time and date available.
Wilko
Hi jcw, I’m enjoying the blog as ever. One comment would be that you should probably be careful talking about power consumption and then using units of charge, it could get confusing.