This a module for the MagicMirror. This module shows FAA published delays at major US airports.
- Navigate into your MagicMirror's
modules
folder and executegit clone https://github.com/nigel-daniels/MMM-FAA-Delay
. A new folderMMM-FAA-Delay
will appear, navigate into it. - Execute
npm install
to install the node dependencies.
The entry in config.js
can include the following options:
Option | Description |
---|---|
interval |
How often the traffic is updated. Type: integer Default value: 900000 // 15 minutes |
airports |
Required This is a list of airports you want to monitor for delays. Use the airports International Air Transport Association (IATA) code. The FAA supported IATA codes can be found here Type: string |
showWeather |
Display the weather for that airport. This may not be needed if you live close by. Type: boolean Default value: true // Display the weather |
Here is an example of an entry in config.js
{
module: 'MMM-FAA-Delay',
position: 'top_left',
header: 'Airport Delays',
config: {
interval: 300000, // 5 min updates
airports: ['SFO', 'SJC']
}
},
- request (installed via
npm install
)
Enjoy this module, sorry this only covers the US if there are other systems for different regions please let me know and I'll look at integration. Feel free to submit pull requests or post issues and I'll do my best to respond.
- Michael Teeuw for the MagicMirror2 framework that made this module possible.
- Sam Lewis whose MMM-Traffic module I use and whose code I learnt a great deal from.
- FAA Web Services for the helpful guides and information they publish.