mirror of https://github.com/espruino/BangleApps
improve sched readme
parent
20c4f06718
commit
b2bb45d878
|
@ -70,11 +70,21 @@ let alarm = require("sched").newDefaultAlarm();
|
||||||
// Get a new timer with default values
|
// Get a new timer with default values
|
||||||
let timer = require("sched").newDefaultTimer();
|
let timer = require("sched").newDefaultTimer();
|
||||||
|
|
||||||
// Add/update an existing alarm
|
// Add/update an existing alarm (using fields from the object shown above)
|
||||||
require("sched").setAlarm("mytimer", {
|
require("sched").setAlarm("mytimer", { // as a timer
|
||||||
msg : "Wake up",
|
msg : "Wake up",
|
||||||
timer : 10 * 60 * 1000 // 10 minutes
|
timer : 10 * 60 * 1000 // 10 minutes
|
||||||
});
|
});
|
||||||
|
require("sched").setAlarm("myalarm", { // as an alarm
|
||||||
|
msg : "Wake up",
|
||||||
|
t : 9 * 3600000 // 9 o'clock (in ms)
|
||||||
|
});
|
||||||
|
require("sched").setAlarm("mydayalarm", { // as an alarm on a date
|
||||||
|
msg : "Wake up",
|
||||||
|
date : "2022-04-04",
|
||||||
|
t : 9 * 3600000 // 9 o'clock (in ms)
|
||||||
|
});
|
||||||
|
|
||||||
// Ensure the widget and alarm timer updates to schedule the new alarm properly
|
// Ensure the widget and alarm timer updates to schedule the new alarm properly
|
||||||
require("sched").reload();
|
require("sched").reload();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue