MMM-Weather
is a module for MagicMirror that shows current weather conditions in a cleaner way than the default one. It's UI is heavily inspired by Max Braun's Smart Mirror Project (which is also the source for the icons.).
Clone this module into your MagicMirror's modules
directory and install dependencies:
cd modules
git clone https://github.com/timvonwerne/MMM-Weather
then add the module to your MagicMirror's configuration. Here is an example:
/* MagicMirror/config/config.js */
{
/* ...your other config here */
modules: [
/* ...your other modules here */
{
module: "MMM-Weather",
header: "",
position: "top_left",
config: {
apiKey: String,
locationID: Number,
updateInterval: Number,
animationSpeed: Number
}
}
]
}