diff --git a/Clockwork_Code/Clockwork_Code.ino b/Clockwork_Code/Clockwork_Code.ino index 6ab83dd..fdc1a6b 100644 --- a/Clockwork_Code/Clockwork_Code.ino +++ b/Clockwork_Code/Clockwork_Code.ino @@ -19,7 +19,7 @@ Shifting trigger sequencer, clock divider, and timing distributor for the 208. ——————————————————————————————————————————————————————————————————————————————————— - Version 1.1 + Version 1.2 Code by Triglav Modular Anti-copyright 2023 @@ -361,7 +361,7 @@ void loop() { currentMicros = micros(); - if (currentMicros - trigMicros > trigLength) { + if (currentMicros - trigMicros > (trigLength + 1000)) { trigLengthEnforcer(); } @@ -379,4 +379,4 @@ void loop() { nextStep(); } } -} \ No newline at end of file +}