PennController for IBEX › Forums › Support › problems with timeout › Reply To: problems with timeout
May 2, 2023 at 10:54 am
#10499
Jeremy
Keymaster
Hi Noelia,
All the Timer elements in your trial are start
ed and wait
ed for upon creation: defaultTimer.start().wait()
This applies to the one named “hurry” too, so newTimer("hurry", 1000).log().start()
implicitly stands for newTimer("hurry", 1000).start().wait().log().start()
Remove .wait()
from the default commands, and include it explicitly where you need it
Jeremy