Hello,
I am new to the magic mirror scene, and am struggeling with the code for the mmm-CalendarExt3.
The code runs when i start the magic mirror application, but google agenda doesn’t load in it (even when its on for a while ~5min)
And in the beginning of each week is “CW 1” now I’ve read that it is current week. But how can i change it so it shows the real current week? And change the “CW” to something else?
This it the snippet of my code:
{
module: "MMM-CalendarExt3",
position: "bottom_bar",
title: "",
config: {
broadcastPastEvents: true, // <= IMPORTANT to see past events
mode: "week",
instanceId: "basicCalendar",
locale: 'nl-NL',
maxEventLines: 5,
firstDayOfWeek: 1,
calendars: {
url: "https://calendar.google.com/calendar/ical/private/private-code/basic.ics",
name: "Name", // <= RECOMMENDED to assign name
color: "Red" // <= RECOMMENDED to assign color
}
}
},
Thanks in advance!