Electronic – arduino – How to Sleep Arduino

arduinoprogrammingsleep

How do you program a sleep mode for your Arduino?
Especially for battery powered designs, what are good techniques for sleeping the CPU but waking up only when needed?

Best Answer

avr/sleep.h might have what you need - documentation is at http://www.nongnu.org/avr-libc/user-manual/group__avr__sleep.html

There are some warnings about putting the CPU to sleep though :)

Hope this helps.