MagicMirror/tests/configs/modules/weather/forecastweather_units.js

28 lines
487 B
JavaScript
Raw Normal View History

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