Hello all!
New to building out my magic mirror, and I’m running into a problem. If I understand correctly, this module would allow me to click an event from my google calendar and see the details. When I run the module, I am not getting that feature.
Is it something I’m doing wrong or am I misunderstanding something? Below is my config, and I have installed the lastest version of Electron.
{
module: "calendar",
header: "My Calendar",
config: {
calendars: [
{
symbol: "calendar",
url: "**super secret**", // Replace with your actual Google Calendar ICS link
name:"wes",
color:"red"
}
],
maximumEntries: 10, // Number of events shown
maximumNumberOfDays: 365, // Show events up to a year in advance
displaySymbol: true, // Display the calendar symbol
defaultSymbol: "calendar", // Default symbol if none specified for calendar
// Other configuration options can be added here based on your preference
}
},
{
module: "MMM-CalendarExt3",
position: "middle center",
title: "",
config: {
mode: "week",
instanceId: "basicCalendar",
maxEventLines: 5,
firstDayOfWeek: 0,
calendarSet: ['wes']
}