MMM-FlightsAbove
MMM-FlightsAbove copied to clipboard
Add alerts for certain planes, flights or squawks etc.
We want to implement alerts for certain preset (from config) flights, planes, squawks etc.
To create an alert, use:
- For notifications use:
self.sendNotification("SHOW_ALERT", {type: "notification"}); - For alerts use:
self.sendNotification("SHOW_ALERT", {});
Here is a good demo of what type of alerts are available.
moreover, in order not to have to use var that = this, we can write:
setInterval(() => {
updateOV();
this.sendNotification("SHOW_ALERT", {title: "OV", message: "Bustijden ge-update.", timer: "1000"});
}, 10000);
The alert/notification functions are described in detail here.
Here's another source for emergency flights.