diff --git a/README.md b/README.md index 397349d8..e952ca02 100644 --- a/README.md +++ b/README.md @@ -26,11 +26,11 @@ Things that still have to be implemented or changed. ### Default modules: - [**Clock**](modules/clock) - [**Calendar**](modules/calendar) -- **Current Weather** -- **Weather Forecast** -- **News Feed** +- [**Current Weather**](modules/currentweather) +- [**Weather Forecast**](modules/weatherforecast) +- [**News Feed**](modules/newsfeed) - [**Compliments**](modules/compliments) -- **Hello World** +- [**Hello World**](modules/helloworld) ### 3rd Party Modules: diff --git a/modules/clock/README.md b/modules/clock/README.md index a7f45af0..c0674b28 100644 --- a/modules/clock/README.md +++ b/modules/clock/README.md @@ -33,9 +33,9 @@ The following properties can be configured:
timeFormat
12
or 24
- 24
+ Option | +Description | +
---|---|
location |
+ The location used for weather information. + Example: Amsterdam,Netherlands
+ Default value: New York
+ |
+
appid |
+ The OpenWeatherMap API key, which can be obtained by creating an OpenWeatherMap account. + This value is REQUIRED + |
+
units |
+ What units to use? + Possible values: default = Kelvin, metric = Celsius, imperial =Fahrenheit
+ Default value: metric
+ |
+
updateInterval |
+ How often does the content needs to be fetched? (Milliseconds) + Possible values: 1000 - 86400000
+ Default value: 300000 (10 minutes)
+ |
+
animationSpeed |
+ Speed of the update animation. (Milliseconds) + Possible values: 0 - 5000
+ Default value: 2000 (2 seconds)
+ |
+
timeFormat |
+ Use 12 or 24 hour format. + Possible values: 12 or 24
+ Default value: uses value of config.timeFormat + |
+
lang |
+ The language of the days. + Possible values: en , nl , ru , etc ...
+ Default value: uses value of config.language + |
+
initialLoadDelay |
+ The initial delay before loading. If you have multiple modules that use the same API key, you might want to delay one of the requests. (Milliseconds) + Possible values: 1000 - 5000
+ Default value: 0
+ |
+
retryDelay |
+ The delay before retrying after a request failure. (Milliseconds) + Possible values: 1000 - 60000
+ Default value: 2500
+ |
+
apiVersion |
+ The OpenWeatherMap API version to use. + Default value: 2.5
+ |
+
apiBase |
+ The OpenWeatherMap base URL. + Default value: 'http://api.openweathermap.org/data/'
+ |
+
weatherEndpoint |
+ The OpenWeatherMap API endPoint. + Default value: 'weather'
+ |
+
iconTable |
+ The conversion table to convert the weather conditions to weather-icons. + Default value: iconTable: {
+ '01d':'wi-day-sunny',
+ '02d':'wi-day-cloudy',
+ '03d':'wi-cloudy',
+ '04d':'wi-cloudy-windy',
+ '09d':'wi-showers',
+ '10d':'wi-rain',
+ '11d':'wi-thunderstorm',
+ '13d':'wi-snow',
+ '50d':'wi-fog',
+ '01n':'wi-night-clear',
+ '02n':'wi-night-cloudy',
+ '03n':'wi-night-cloudy',
+ '04n':'wi-night-cloudy',
+ '09n':'wi-night-showers',
+ '10n':'wi-night-rain',
+ '11n':'wi-night-thunderstorm',
+ '13n':'wi-night-snow',
+ '50n':'wi-night-alt-cloudy-windy'
+ }
+ |
+
Option | +Description | +
---|---|
text |
+ The text to display. + Example: 'Hello world!'
+ Default value: 'Hello world!'
+ |
+
classes |
+ Classes to apply to the text. + Example: 'xsmall bold'
+ Default value: 'normal medium'
+ |
+
Option | +Description | +
---|---|
feedUrl |
+ The url of the feed used for the headlines. + Default value: 'http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml'
+ |
+
showPublishDate |
+ Display the publish date of an headline. + Default value: true
+ Default value: true or false
+ |
+
reloadInterval |
+ How often does the content needs to be fetched? (Milliseconds) + Possible values: 1000 - 86400000
+ Default value: 300000 (5 minutes)
+ |
+
updateInterval |
+ How often do you want to display a new headline? (Milliseconds) + Possible values: 1000 - 60000
+ Default value: 7500 (7.5 seconds)
+ |
+
animationSpeed |
+ Speed of the update animation. (Milliseconds) + Possible values: 0 - 5000
+ Default value: 2000 (2.5 seconds)
+ |
+
Option | +Description | +
---|---|
location |
+ The location used for weather information. + Example: Amsterdam,Netherlands
+ Default value: New York
+ |
+
appid |
+ The OpenWeatherMap API key, which can be obtained by creating an OpenWeatherMap account. + This value is REQUIRED + |
+
units |
+ What units to use? + Possible values: default = Kelvin, metric = Celsius, imperial =Fahrenheit
+ Default value: metric
+ |
+
updateInterval |
+ How often does the content needs to be fetched? (Milliseconds) + Possible values: 1000 - 86400000
+ Default value: 300000 (10 minutes)
+ |
+
animationSpeed |
+ Speed of the update animation. (Milliseconds) + Possible values: 0 - 5000
+ Default value: 2000 (2 seconds)
+ |
+
lang |
+ The language of the days. + Possible values: en , nl , ru , etc ...
+ Default value: uses value of config.language + |
+
fade |
+ Fade the future events to black. (Gradient) + Possible values: true or false
+ Default value: true
+ |
+
fadePoint |
+ Where to start fade? + Possible values: 0 (top of the list) - 1 (bottom of list)
+ Default value: 0.25
+ |
+
initialLoadDelay |
+ The initial delay before loading. If you have multiple modules that use the same API key, you might want to delay one of the requests. (Milliseconds) + Possible values: 1000 - 5000
+ Default value: 0
+ |
+
retryDelay |
+ The delay before retrying after a request failure. (Milliseconds) + Possible values: 1000 - 60000
+ Default value: 2500
+ |
+
apiVersion |
+ The OpenWeatherMap API version to use. + Default value: 2.5
+ |
+
apiBase |
+ The OpenWeatherMap base URL. + Default value: 'http://api.openweathermap.org/data/'
+ |
+
weatherEndpoint |
+ The OpenWeatherMap API endPoint. + Default value: 'forecast/daily'
+ |
+
iconTable |
+ The conversion table to convert the weather conditions to weather-icons. + Default value: iconTable: {
+ '01d':'wi-day-sunny',
+ '02d':'wi-day-cloudy',
+ '03d':'wi-cloudy',
+ '04d':'wi-cloudy-windy',
+ '09d':'wi-showers',
+ '10d':'wi-rain',
+ '11d':'wi-thunderstorm',
+ '13d':'wi-snow',
+ '50d':'wi-fog',
+ '01n':'wi-night-clear',
+ '02n':'wi-night-cloudy',
+ '03n':'wi-night-cloudy',
+ '04n':'wi-night-cloudy',
+ '09n':'wi-night-showers',
+ '10n':'wi-night-rain',
+ '11n':'wi-night-thunderstorm',
+ '13n':'wi-night-snow',
+ '50n':'wi-night-alt-cloudy-windy'
+ }
+ |
+