Skip to content

Commit

Permalink
Fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nullboundary committed Jan 23, 2015
1 parent 446899e commit 6b6caee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/Sleep_n0m1_Interrupt/Sleep_n0m1_Interrupt.ino
Expand Up @@ -21,7 +21,10 @@ void loop()
delay(100); //delay to allow serial to fully print before sleep

sleep.pwrDownMode(); //set sleep mode
sleep.sleepInterrupt(0,FALLING); //sleep for: sleepTime

//Sleep till interrupt pin equals a particular state.
//In this case "falling" change from 1 to 0.
sleep.sleepInterrupt(0,FALLING); //(interrupt Number, interrupt State)



Expand Down

0 comments on commit 6b6caee

Please sign in to comment.