Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.22 KB

ExampleConfigurations.md

File metadata and controls

55 lines (48 loc) · 1.22 KB

Example Configurations

Below are helpful configurations for you to get started. See Configuration Options for details of each option.

Feel free to contribute to this list.

Show hearts on Valentine's day + default real-time weather effects

{
 module: "MMM-DynamicWeather",
 position: "fullscreen_above",
 config: { // See https://github.com/scottcl88/MMM-DynamicWeather for more information.
  api_key: "your_key",
  locationID: "4140963",
  effects: [
   {
    month: "2",
    day: "14",
    images: ["heart1.png", "heart2.png"],
    direction: "up"
   }
  ],
 }
},

Never show the clouds + default real-time weather effects

{
 module: "MMM-DynamicWeather",
 position: "fullscreen_above",
 config: { // See https://github.com/scottcl88/MMM-DynamicWeather for more information.
  api_key: "your_key",
  locationID: "4140963",
  hideClouds: true
  ],
 }
},

Always show the sun + default real-time weather effects

{
 module: "MMM-DynamicWeather",
 position: "fullscreen_above",
 config: { // See https://github.com/scottcl88/MMM-DynamicWeather for more information.
  api_key: "your_key",
  locationID: "4140963",
  alwaysDisplay: "sun"
  ],
 }
},