sched: add `resetTimer()`

master
Rob Pilling 2024-10-03 21:06:44 +01:00
parent 594d08bf60
commit acc940d99f
1 changed files with 7 additions and 3 deletions

View File

@ -34,14 +34,18 @@ exports.setAlarm = function(id, alarm) {
if (alarm.dow===undefined) alarm.dow = 0b1111111;
if (alarm.on!==false) alarm.on=true;
if (alarm.timer) { // if it's a timer, set the start time as a time from *now*
var time = new Date();
var currentTime = (time.getHours()*3600000)+(time.getMinutes()*60000)+(time.getSeconds()*1000);
alarm.t = (currentTime + alarm.timer) % 86400000;
exports.resetTimer(alarm);
}
alarms.push(alarm);
}
exports.setAlarms(alarms);
};
/// Set a timer's firing time based off the timer's `timer` property + the given time (or now)
exports.resetTimer = function(alarm, time) {
time = time || new Date();
var currentTime = (time.getHours()*3600000)+(time.getMinutes()*60000)+(time.getSeconds()*1000);
alarm.t = (currentTime + alarm.timer) % 86400000;
};
/// Get time until the given alarm (object). Return undefined if alarm not enabled, or if 86400000 or more, alarm could be *more* than a day in the future
exports.getTimeToAlarm = function(alarm, time) {
if (!alarm) return undefined;