mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-07 16:11:14 +00:00
28 lines
517 B
JavaScript
28 lines
517 B
JavaScript
|
/* MagicMirror² Test config hourly weather
|
||
|
*
|
||
|
* 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#####"',
|
||
|
showPrecipitationAmount: true,
|
||
|
showPrecipitationProbability: true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|