mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
27 lines
483 B
JavaScript
27 lines
483 B
JavaScript
|
/* MagicMirror² Test config hourly weather options
|
||
|
*
|
||
|
* By rejas https://github.com/rejas
|
||
|
* MIT Licensed.
|
||
|
*/
|
||
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "weather",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
type: "hourly",
|
||
|
location: "Berlin",
|
||
|
mockData: '"#####WEATHERDATA#####"',
|
||
|
hourlyForecastIncrements: 2
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|