Quote from
Gaev on April 3, 2021, 1:02 am
@pauljonestindall
Is there no way to run the actions at timer start and then run again at the interval?
a) For the Timer object ... Start >>> Wait for "TimerStart" action
b) Timer Interval
GoSub "TimerIntervalForTimer1"
c) Event (in PushButton etc.) that starts the timer
TimerStart "Timer1" "2000"
GoSub "TimerIntervalForTimer1"
d) Subroutine TimerIntervalForTimer1 ...
:TimerIntervalForTimer1
... commands for interval processing go here
Return
@pauljonestindall
Is there no way to run the actions at timer start and then run again at the interval?
a) For the Timer object ... Start >>> Wait for "TimerStart" action
b) Timer Interval
GoSub "TimerIntervalForTimer1"
c) Event (in PushButton etc.) that starts the timer
TimerStart "Timer1" "2000"
GoSub "TimerIntervalForTimer1"
d) Subroutine TimerIntervalForTimer1 ...
:TimerIntervalForTimer1
... commands for interval processing go here
Return