2022-01-26 23:09:26 +01:00
|
|
|
/* MagicMirror² Test config default weather
|
2021-04-11 21:55:30 +02:00
|
|
|
*
|
2021-04-11 22:43:47 +02:00
|
|
|
* By rejas
|
2021-04-11 21:55:30 +02:00
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
2021-10-16 00:05:12 +02:00
|
|
|
let config = {
|
2021-04-11 21:55:30 +02:00
|
|
|
units: "imperial",
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "weather",
|
|
|
|
position: "bottom_bar",
|
|
|
|
config: {
|
|
|
|
type: "forecast",
|
|
|
|
location: "Munich",
|
2021-10-16 00:05:12 +02:00
|
|
|
mockData: '"#####WEATHERDATA#####"',
|
2021-04-11 21:55:30 +02:00
|
|
|
weatherEndpoint: "/forecast/daily",
|
|
|
|
decimalSymbol: "_"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-10-16 00:05:12 +02:00
|
|
|
};
|
2021-07-05 00:33:50 +02:00
|
|
|
|
2021-04-11 21:55:30 +02:00
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = config;
|
|
|
|
}
|