Can someone show me what I am doing wrong. I have this configuration:
{
module: 'MMM-CalendarExt2',
config: {
//firstDrawingDelay: 1000*10,
scenes:[
{
name: "DEFAULT",
views: ["VIEW1"],
},
],
views:[
{
name: "VIEW1",
mode: "daily",
title: "Bard Family Schedule",
position: "bottom_right",
maxItems: 100,
maxDays: 5,
locale: "en",
hideOverflow: true,
filterPassedEvent: true,
slotCount: 4,
calendars: ["Steve","Tracie","Alex"],
},
],
calendars: [
{
name: "Steve",
url: "https://calendar.google.com/calendar/ical/",
beforeDays:0,
afterDays: 5,
},
{
name: "Tracie",
url: "https://calendar.google.com/calendar/ical/",
beforeDays:0,
afterDays: 5,
},
{
name: "Alex",
url: "https://calendar.google.com/calendar/ical/",
beforeDays:0,
afterDays: 5,
},
],
},
},
The actual calendars have the correct url in my setup. If I set one calendar to show in the view ie. [“Alex”] it works but if I try to do all of them I get nothing. Only the headings for the days.
Here is the startup sequence:
Starting MagicMirror: v2.9.0
Loading config …
Loading module helpers …
No helper found for module: alert.
Initializing new module helper …
Module helper loaded: updatenotification
No helper found for module: clock.
Initializing new module helper …
Module helper loaded: MMM-GooglePhotos
No helper found for module: currentweather.
No helper found for module: weatherforecast.
Initializing new module helper …
Module helper loaded: MMM-MyScoreboard
No helper found for module: MMM-pages.
Initializing new module helper …
Module helper loaded: MMM-OnScreenMenu
No helper found for module: MMM-SmartWebDisplay.
Initializing new module helper …
Module helper loaded: MMM-CalendarExt2
All module helpers loaded.
Starting server on port 8080 …
Server started …
Connecting socket for: updatenotification
Connecting socket for: MMM-GooglePhotos
MMM-GooglePhotos started
Connecting socket for: MMM-MyScoreboard
Starting node_helper for module [MMM-MyScoreboard]
Connecting socket for: MMM-OnScreenMenu
Connecting socket for: MMM-CalendarExt2
Sockets connected & modules started …
Launching application.
MMM-GooglePhotos initialized after loading.
[CALEXT2] calendar:Steve >> Scanning start with interval:1800000
[CALEXT2] calendar:Tracie >> Scanning start with interval:1800000
[CALEXT2] calendar:Alex >> Scanning start with interval:1800000
[CALEXT2] calendar:Alex >> Scanned: 3, Selected: 3
[GPHOTO] Scan finished : 66
[CALEXT2] calendar:Steve >> Scanned: 0, Selected: 0
[CALEXT2] calendar:Tracie >> Scanned: 7, Selected: 7
Can you see anything I am doing wrong?