mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2024-05-11 05:55:19 +00:00
25 lines
872 B
Plaintext
25 lines
872 B
Plaintext
#!rsc
|
|||
# RouterOS script: mode-button-event
|
|||
# Copyright (c) 2018-2020 Christian Hesse <[email protected]>
|
|||
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|||
#
|
|||
|
|
# run on mode-button event and count button presses
|
||
# https://git.eworm.de/cgit/routeros-scripts/about/doc/mode-button.md
|
|||
|
|||
:global ModeButton;
|
|||
|
|||
:global LogPrintExit;
|
|||
|
|
|
||
:set ($ModeButton->"count") ($ModeButton->"count" + 1);
|
|||
|
|||
:local Scheduler [ / system scheduler find where name="mode-button-scheduler" ];
|
|||
|
|||
:if ([ :len $Scheduler ] = 0) do={
|
|||
$LogPrintExit info ("Creating mode-button scheduler, counting presses...") false;
|
|||
/ system scheduler add name="mode-button-scheduler" \
|
|||
|
|
on-event="/ system script run mode-button-scheduler;" interval=3s;
|
||
} else={
|
|||
$LogPrintExit debug ("Updating mode-button-scheduler...") false;
|
|||
/ system scheduler set $Scheduler start-time=[ /system clock get time ];
|
|||
}
|