This repository was archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
alarm_dispose_all()
Xubiod edited this page Oct 21, 2017
·
1 revision
Syntax
alarm_dispose_all()
Returns: Nothing
This function sets all alarms of this instance to -1, which stops the alarms from counting down. This is a way to say that the Alarm Event is ignored.
alarm_dispose_all();
Stops all alarms in this instance.
You can not use the function by doing this (not what's used) (not guaranteed to work):
for (_p = 0; _p <= 11; _p++) {
alarm_set(_p, -1);
//or
//alarm[_p] = -1;
}
Maintained with <3 by xubiod