I’m a new user trying to get my MagicMirror up and running. I’m running into an issue with MMM-Calendar or MMM-CalendarExt3. I’m using the “week” view and as soon as events are in the past, it won’t show any of them.
I’ve done a bit of browsing on the forum (amazing community of helpful people, BTW!) and believe I have everything aligned, including setting maximumEntries, maximumNumberOfDays, pastDaysCount, and broadcastPastEvents in MMM-calendar.
I created a test calendar to try to simplify things, and created 5 events, one on each day of the week this week. When running MagicMirror, I get a notification that Calendar-Fetcher for [FAMILY] is broadcasting 3 events, presumably today, tomorrow and Friday. See below for the 5 expected events.
Here’s my code (with personal details omitted):
modules: [
{
module: "alert",
},
{
module: "calendar",
position: "top_right",
maximumEntries: 10000,
maximumNumberOfDays: 28,
pastDaysCount: 14,
maxTitleLength: 50,
showLocation: false,
wrapEvents: true,
broadcastPastEvents: true,
config: {
calendars: [
{
//fetchInterval: 7 * 24 * 60 * 60 * 1000,
url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics",
name: "Holidays",
color: "#7c7c7c",
},
{
//Family Calendar
url: "https://calendar.google.com/calendar/ical/[PRIVATE CALENDAR ADDRESS]/basic.ics",
name: "Family",
color: "#e7ba51",
},
]
}
},
{
module: "MMM-CalendarExt3",
position: "top_left",
title: "",
config: {
instanceID: "familyCalendar",
mode: "week",
weekIndex: 0,
weeksInView: 2,
maxEventLines: 5,
firstDayOfWeek: 0,
cellDateOptions: {month: 'long', day: 'numeric'},
maxEventLines: 8,
calendarSet: ['Holidays', 'Family', 'School'],
}
},
Here’s a screengrab of my Google Calendar and what I would expect to see in MMM-CalendarExt3:

And here’s what’s on my MagicMirror:

I’m guessing I’m missing something simple, but I just don’t see it. I appreciate everyone’s help!