Skip to content

Commit 4b214eb

Browse files
authored
Update ExampleConfigurations.md
1 parent c1994e3 commit 4b214eb

File tree

1 file changed

+39
-6
lines changed

1 file changed

+39
-6
lines changed

ExampleConfigurations.md

+39-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,55 @@
11
# Example Configurations
2-
Below are a list of helpful configurations for you to get started.
2+
Below are helpful configurations for you to get started. See [Configuration Options](ConfigurationOptions.md) for details of each option.
33

4-
`
4+
Feel free to contribute to this list.
5+
6+
## Show hearts on Valentine's day + default real-time weather effects
7+
8+
````javascript
59
{
6-
module: 'MMM-DynamicWeather',
7-
position: 'fullscreen_above',
10+
module: "MMM-DynamicWeather",
11+
position: "fullscreen_above",
812
config: { // See https://github.com/scottcl88/MMM-DynamicWeather for more information.
913
api_key: "your_key",
1014
locationID: "4140963",
1115
effects: [
1216
{
1317
month: "2",
1418
day: "14",
15-
year: "2021",
1619
images: ["heart1.png", "heart2.png"],
1720
direction: "up"
1821
}
1922
],
2023
}
2124
},
22-
`
25+
````
26+
27+
## Never show the clouds + default real-time weather effects
28+
29+
````javascript
30+
{
31+
module: "MMM-DynamicWeather",
32+
position: "fullscreen_above",
33+
config: { // See https://github.com/scottcl88/MMM-DynamicWeather for more information.
34+
api_key: "your_key",
35+
locationID: "4140963",
36+
hideClouds: true
37+
],
38+
}
39+
},
40+
````
41+
42+
## Always show the sun + default real-time weather effects
43+
44+
````javascript
45+
{
46+
module: "MMM-DynamicWeather",
47+
position: "fullscreen_above",
48+
config: { // See https://github.com/scottcl88/MMM-DynamicWeather for more information.
49+
api_key: "your_key",
50+
locationID: "4140963",
51+
alwaysDisplay: "sun"
52+
],
53+
}
54+
},
55+
````

0 commit comments

Comments
 (0)