Only use loop delay when not running, delaying or during a sequence

This commit is contained in:
Matt 2016-05-12 22:49:09 -04:00
parent 24baf8ae4d
commit 08257cbadb
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ void loop () {
}
if (running) {
Read_micro();
} else {
}
if (!running && !sequence && !delaying){
delay(LOOP_DELAY);
}
}