Only use loop delay when not running, delaying or during a sequence
This commit is contained in:
parent
24baf8ae4d
commit
08257cbadb
|
@ -71,7 +71,8 @@ void loop () {
|
|||
}
|
||||
if (running) {
|
||||
Read_micro();
|
||||
} else {
|
||||
}
|
||||
if (!running && !sequence && !delaying){
|
||||
delay(LOOP_DELAY);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue