A MagicMirror² module that displays the next scheduled spacecraft launch
Clone this module into your MagicMirror² modules folder:
cd ~/MagicMirror/modules
git clone https://github.com/TouaregWarrior/MMM-SpaceLaunch
To configure, copy the sample into your config.js and set each option to true or false to show/hide the detail line.
Example config.js entry should look like
{
module: "MMM-SpaceLaunch",
position: "top_right",
config: {
showMission: true, // Show mission name
showLaunchDate: true, // Show launch date
showRocket: true, // Show rocket name
showLaunchSite: true, // Show launch site
showLocation: false, // Hide location
showPayload: true, // Show payload details
showOrbit: true, // Show orbit information
showDetails: false // Hide additional details
}
},
Go to the module’s directory and pull the latest version from GitHub:
cd ~/MagicMirror/modules/MMM-SpaceLaunch
git pull