Sleepy Arduino Saves Batteries

06_11 (Custom)

Battery life is often overlooked when building projects, especially for beginners. This tutorial takes you through the setup of power saving modes for the Arduino. Utilizing the watchdog and sleep functions, they put the chip into a hibernation mode between cycles. An optimum configuration could take your battery life from 4 days to about 3 years.  For a lot of you, this is old news. But for the rest, this is really good stuff. You can download a sample application from the site that mimics the singing of a nightingale when the sun goes down.

23 thoughts on “Sleepy Arduino Saves Batteries

  1. Is this just the atmega chip itself providing the watchdog and power saving functionalities, and therefor the energy saving potential?
    So all you need is activate it by code when you have time/cycles to spare in your implementation?

    And if yes, are there any drawbacks associated with going into power saving mode and handing execution over to the watchdog (except from not being able to execute code during power saving, obviously)?
    How about switching to power saving/watchdog more often for shorter amounts of time? Will there still be a benefit?

    Thanks for your input =)
    cun83

    P.S.: First \o/

  2. AVRs and other microcontroller architectures have sleep modes for at least 10 years. the guys who made Arduino just decided to do a full-speed main loop; I guess they thought it was easier for non-tech people to deal with, and the board’s hardware isn’t exactly prepared for low power consumption either.

    The serial port would not work at 38400bps without a crystal. There are “workarounds”, but work is needed.

    hey guys, I’m seeing some more-hype-than-tech posts here lately; please leave those for Make: and let’s get back to more “real” stuff as before, please :)

  3. The atmegaX8 series (like the atmega168) have a useful feature to get accurate periodic wake up and sleep operation.

    You run the AVR on internal oscillator, I choose 1 MHz and change the clock divider to 4MHz so it will operate from 1.8V to 5.5V.

    You connect a 32KHz watch crystal to the crystal connections of the AVR. Dont forget the load capacitors.

    When you turn on timer 2 in asynchronous mode, and enable to use the crystal oscillator. You can go to power-save mode where most of the controller is powered down, but the timer 2 interrupt will periodically wake the AVR up.

    Using the interrupt of timer 2, and the proper divisor you can wake up 1024 times per second. Useful for a small operating system scheduler.

    I use this setup in a small wireless sensor network I am developing. I need a quite accurate timer to have reasonably accurate synchronisation between nodes. It is not really needed but improves power efficiency.

  4. Timed sleep states are a great power saver when you don’t need real-time availability. But what I’m interested in is how to permanently put it to sleep and wake it up on button press (ground int pin). I know it’s possible, but I haven’t found any good write ups on how to do this. I’ve read what’s out there, and nothing is really clear to me.

  5. God are most of the commenters here annoying. You’re obviously too good for hackaday, so move on. This is a perfectly fine article. There’s no ‘hype’, there’s good, useful information for beginners on how to better use the ATmega in the Arduino.

  6. I didn’t mean to imply the article wasn’t good. It’s a great introduction to sleep states and the watchdog timer. I’ve bookmarked it for future reference. I was just saying that I would *also* like a write up on the other method. I could use either/or depending on the application. It just so happens that my current application requires the other.

  7. The AVR used in the arduino can wake up from deep sleep if you make the interrupt pin low for at least X microseconds.

    A much better solution would be to use the pin change interrupts. They can wake up the MCU from all sleep modes when a pin changes. Perfect from wake up on button press.

  8. It is not that hard but I am not familiar with the arduino environment on how to implement it. I program the AVR series in C and/or assembler.

    Basically you setup the registers to what pins the MCU will wake up, Create an ISR(Interrupt Service Routine) and enable interrupts. Then execute the sleep setup and sleep instruction.

    When exiting you can read out the pin change interrupt registers to see what pin caused the interrupt.

  9. Actually, my pin change setup story was not completely correct.

    You just setup the pins, and there are 3 interrupts for each AVR port. If you wish to know what pin changed you need to keep a backup register so you can see what pin changed by XORing the backup register with the current port.

  10. I hate geeks. I mean really hate them. Particularly the geekier-than-thou kind. “I mean arduino, is soooooooo mainstream dude, real men build their own microcontroller from two pins and a lemon.”

  11. Thank you for walking through a very practical topic on power management. I have a question in the setup section of the code, i have included it below

    cbi( SMCR,SE ); // sleep enable, power down mode
    cbi( SMCR,SM0 ); // power down mode
    sbi( SMCR,SM1 ); // power down mode
    cbi( SMCR,SM2 ); // power down mode

    My question is why is it necessary here, you are executing set_sleep_mode(SLEEP_MODE_PWR_DOWN);
    and sleep_enable() in the system_sleep() function.

    I did not follow the need for having it in the setup() as well. Would appreciate if you can shed some light on what i am missing?

    Thank you.

Leave a Reply to addictronicsCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.