Created
February 2, 2015 19:44
-
-
Save DzikuVx/1f1b998cccf8883ec2fb to your computer and use it in GitHub Desktop.
Sleep mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void enterSleep(void) { | |
set_sleep_mode(SLEEP_MODE_PWR_DOWN); | |
sleep_enable(); | |
sleep_mode(); | |
sleep_disable(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment