for some reason broadcastPastEvents doesn't want to work for me with the MMM-GoogleCalendar Module. I can see future events fine, and when I revert back to the standard calendar module and use URL instead of CalendarID it shows past events no problem.
current code is this
using MMM-GoogleCalendar ->
// {
// module: "calendar",
// position: "top_left",
// config: {
// broadcastEvents: true,
// broadcastPastEvents: true,
// maximumNumberOfDays: 32,
// MaximumEntries: 150,
// calendars: [
// {
// url: "<my code>@group.calendar.google.com/pricate..."
// }
// ]
// },
// },
{
module: 'MMM-GoogleCalendar',
header: "My Calendar",
position: "top_left",
config: {
broadcastEvents: true,
broadcastPastEvents: true,
maximumNumberOfDays: 32,
maxmimumEntries: 150,
calendars: [
{
symbol: "calendar-week",
calendarID: <my code>@group.calendar.google.com
},
],
}
},
// {
// module: "MMM-CalendarExt3",
// position: "bottom_bar",
// title: "",
// config: {
// mode: "month",
// instanceId: "basicCalendar",
// firstDayOfWeek: 1,
// }
// },
{
module: "MMM-MonthlyCalendar",
position: "bottom_bar",
config: {
mode: "currentMonth"
}
}
]
};

Using Calendar ->
{
module: "calendar",
position: "top_left",
config: {
broadcastEvents: true,
broadcastPastEvents: true,
maximumNumberOfDays: 32,
MaximumEntries: 150,
calendars: [
{
url: "<my code>@group.calendar.google.com/pricate..."
}
]
},
},
// {
// module: 'MMM-GoogleCalendar',
// header: "My Calendar",
// position: "top_left",
// config: {
// broadcastEvents: true,
// broadcastPastEvents: true,
// maximumNumberOfDays: 32,
// maxmimumEntries: 150,
// calendars: [
// {
// symbol: "calendar-week",
// calendarID: <my code>@group.calendar.google.com
// },
// ],
// }
// },
// {
// module: "MMM-CalendarExt3",
// position: "bottom_bar",
// title: "",
// config: {
// mode: "month",
// instanceId: "basicCalendar",
// firstDayOfWeek: 1,
// }
// },
{
module: "MMM-MonthlyCalendar",
position: "bottom_bar",
config: {
mode: "currentMonth"
}
}
]
};

I have attempted to use this with both MMM-MonthlyCalendar and MMM-CalendarExt3 modules as you can see but screenshots are both based on the code provided in each case. I do see the same issue using MMM-CalendarExt3 as well.
Anyone else had similar issues and resolved it? Can't find anything in the forum about this currently.
for some reason broadcastPastEvents doesn't want to work for me with the MMM-GoogleCalendar Module. I can see future events fine, and when I revert back to the standard calendar module and use URL instead of CalendarID it shows past events no problem.
current code is this
using MMM-GoogleCalendar ->
Using Calendar ->
I have attempted to use this with both MMM-MonthlyCalendar and MMM-CalendarExt3 modules as you can see but screenshots are both based on the code provided in each case. I do see the same issue using MMM-CalendarExt3 as well.
Anyone else had similar issues and resolved it? Can't find anything in the forum about this currently.