A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
CalendarExt2 won't load with Weather Forecast
-
The MMM-CalendarExt2 will no longer load when I add the new default weather app set to type forecast. I can use type current, but when I use the forecast type the calendar will not load.
This is my weather forecast code:
*{ module: "weather", position: "top_right", header: "Forecast", config: { type: "forecast", weatherProvider: "weathergov", apiBase: "https://api.weather.gov/points/", weatherEndpoint: "/forecast", lat: "42.834", lon: "-71.6618", initialLoadDelay: 1000, ignoreToday: true, fade: false, tableClass: "medium", degreeLabel: true, }, },
And here is the non-personal part of the calendar code:
{ module: 'MMM-CalendarExt2', config: { updateInterval: 1000 * 60 * 15, calendars: [ ], defaultSet: { view: { hideOverflow: false, timeFormat: "h:mm A", maxItems: 2000, } }, views: [ { mode: "month", name: "Current Month", fromNow: 0, position: "middle_center", className: "monthly-cal", calendars: [] ], scenes: [ { name: "DEFAULT", views: ["Current Month"], }, ], }, },
When I comment out the weather module code then the calendar loads fine, but otherwise it doesn’t load at all.
-
@aunrea said in CalendarExt2 won't load with Weather Forecast:
No position: inconfig
CalendarExt2 config maybe?{ module: 'MMM-CalendarExt disabled: false, config: { position: "top_left", beforeDays: 2, afterDays: 365, calendars : [ {
-
@djboob66 The position info is located in the views section of the config.
-
@aunrea
my config has two one for main and one for upcoming try adding it as above -
@djboob66 I did that and it doesn’t change anything.