-
-
Notifications
You must be signed in to change notification settings - Fork 18
alarm_get_running
drewmccluskey edited this page Jan 23, 2019
·
2 revisions
Returns whether the indicated alarm is currently running
alarm_get_running(index)
Argument | Description |
---|---|
int index |
Alarm index |
Returns: bool
This function will return bool
if the chosen alarm is turned on/off.
alarm_get_running(3);
The above code will return false
if alarm 3 is off or true
if alarm 3 is on.
Back to Alarms