Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 207 Bytes

File metadata and controls

16 lines (11 loc) · 207 Bytes

Sleepy

Arduino low power sleep utility, based on WTD (watchdog timer interrupt)

//Enable WDT ISR(WDT_vect) { Sleepy::watchdogEvent(); }

void loop(){ ...

//sleep 10s
sleepDelay(10)
...

}