User manual
Automation Protocol Bugclock Controls
Miranda Technologies Ltd Page 104
Reset Timer T2
This command resets the Bugclock timer on the specified layer to its default
time value. For count-up timers, this is typically zero.
CMD Param_1
T2 %01x : Layer No.
Example:
void ResetTimer(int layer)
{
remote_send("T2%01x", layer);
}
Set Timer to Value T3
This command sets a Bugclock timer to the specified value. Time-of-day
clocks and time-of-day countdowns are not affected.
CMD Param_1 Param_2 Param_3 Param_4
T3 %01x : Layer No. %02x : Hour %02x : Minute %02x : Second
Example:
void SetTimer(int layer,int hour,int min,int sec);
{
remote_send("T3%01x%02x%02x%02x", layer, hour,
min, sec);
}