Page 1 of 1

IntervalTimer-Tick Command

Posted: Fri Jan 13, 2017 7:01 am
by tommy_stahre
Hello. Should want to se some examples what/how to write in the Tick-command. The idea of this timer seems very intresting.

Re: IntervalTimer-Tick Command

Posted: Fri Jan 13, 2017 9:26 pm
by stefangsbb
Two typical examples:

1) Slowly dim up a lamp

Code: Select all

Time: 10 (minutes)
StartCommand: Lamp Off
StopCommand: Lamp On
TickInterval: 0.1
TickCommand: Lamp Bright
If the DimStep in the lamp is set to 1, the lamp will slowly go from off to fully on over a period of 10 minutes when the timer is activated

2) Blink a lamp for 1 minute

Code: Select all

Time: 1 (minutes)
StartCommand: Lamp On
StopCommand: Lamp Off
TickInterval: 0.03
TickCommand: Lamp Toggle
The lamp will blink for one minute when the timer is activated

Re: IntervalTimer-Tick Command

Posted: Mon Jan 16, 2017 6:01 am
by tommy_stahre
Thanks very much.
As I suspected it is a very useful timer.