Read the statement by Michael Teeuw here.
MMM-CalendarExt3 - more than 4 calendars?
-
Hello,
Is it possible to display more than 4 calendars at a time?
I can see the first 4, but not all of the calendars.
I am only displaying 4 calendars at the bottom, but I want to show all 7
In my config file, I have:
{module: "MMM-CalendarExt3", pages: {"Main Calendar": "middle_center"}, position: "middle_center", title: "Our Calendar", instanceId: "Our_Calendar", config: { displayLegend: true, calendarSet: ["Calendar 1", "Calendar 2", "Calendar 3", "Calendar 4", "Calendar 5", "Calendar 6","Calendar 7"], } },
-
@cheminge what mode are the cals in. there is only so much space
-
@sdetweil
inside my config:mode: "month", firstDayOfWeek: 0, locale:'en-US', headerTitleOptions: {month: 'long'}, fontSize: "20px", eventHeight: "22px", maxEventLines: "6", useWeather: false, displayLegend: true, useIconify: true,
-
@cheminge can you show me the complete text of the module config, name, pos, …
-
@cheminge and really the terminology is showing events from all 7
so if you look at the pm2 log of MagicMirror startup you will see
the default calendar message for broadcasting the everts which ext3 reads (each calendar’s events are sent separately when ready)Ext3 does not want to flash the screen each time some events come in. so it waits a bit (waitFetch time 5 second default) from first cal msg
anything that comes in after that has to wait til the calendar is redrawn (refreshInterval time 30 minutes default)
the pm2 logs have a timestamp on the messages so you can tell how long it took to get all the data to Ext3
if you increase waitFetch, nothing is drawn til then
if you make refreshInterval too low you update for no reason and consume resources other modules might want to use