Read the statement by Michael Teeuw here.
Default Caledar module not broadcasting or other modules not picking up broadcast (MMM--MonthlyCalendar, MMM-CalendarExt3)
-
I am trying to add a Calendar to my MM that shows the next 4 weeks. I figured either MMM–MonthlyCalendar, or MMM-CalendarExt3 does this well enough for my needs, however both modules dont seem to pick up on the CALENDAR_EVENTS broadcast from the default module.
First here is the configuration of the Calendar module:
{ module: "calendar", //position: "top_left", // Comment out to hide module config: { broadcastPastEvents: true, calendars: [ { url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics", name: "us_holiday", color: "red" }, { name: "fam-cal", symbol: "calendar-check", url: "https://calendar.google.com/calendar/ical/USER%40gmail.com/private-XXXXXXXXXXXXXXXXX/basic.ics", }, ] } },
I added the default US-Holidays to test. And this does work perfectly fine for the normal module, however when using either MMM–MonthlyCalendar:
{ module: "MMM-MonthlyCalendar", position: "top_right", config: { mode: "fourWeeks", } },
or MMM-CalendarExt3 :
{ module: "MMM-CalendarExt3", position: "top_right", config: { weekIndex: 0, weeksInView: 4, } },
The calander does not show up. I checked the logs which seem to be telling that everything is working fine:
[2025-02-15 18:11:09.989] [INFO] Calendar-Fetcher: Broadcasting 517 events from https://calendar.google.com/calendar/ical/USER%40gmail.com/private-XXXXXXXXXXXXXXXXXXXXXX/basic.ics. [2025-02-15 18:11:10.681] [LOG] [CALEXT2] calendar:0 >> Scanned: 231, Selected: 231 [2025-02-15 18:11:11.276] [INFO] Calendar-Fetcher: Broadcasting 24 events from http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics.
In the attached picture you can see the events loading perfectly in the default module(removed the private calendar for privacy). and not at all in the MMM-CalendarExt3 module. The weather does load however so I am thinking that this is an issue with Calander
-
@calyorbro if this is MagicMirror 2.30 did you put on the clipping fix?
see the pinned items top of troubleshooting section
-
@sdetweil I did not see this, sorrz about that. Now both work perfectly thank you
-
-