<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-CalendarExt3 not picking up calendar set from default calendar module]]></title><description><![CDATA[<p dir="auto">Hi team,</p>
<p dir="auto">First timer here, please help. Following is my config file. The CalendarExt3 and CalendarExt3Agenda modules are not picking up the calendars on the default calendar modules. It loads up correctly in the calendar module. Any help will be apprieciated.</p>
<pre><code class="language-js">{
module: 'MMM-CalendarExt3',
position: 'bottom_bar',
config: {
mode: 'day',
instanceId: 'myCalendar',
locale: 'en-US',
firstDayOfWeek: 0,
weeksInView: 1,
animationSpeed: 0,
fontSize: '25px',
calendarSet: [
'family',
'us_holiday'
]
}
},
{
    module: 'MMM-CalendarExt3Agenda',
      position: 'top_left',
      header: 'My Agenda',
      config: {
        instanceId: 'myCalendar',
        locale: 'en-US',
        firstDayOfWeek: 1,
        endDayIndex: 5,
        calendarSet: [
          'family',
          'us_holiday'
        ]
      }
    },
    {
      module: 'calendar',
      position: 'hidden',
      config: {
        instanceID: 'myCalendar',
        broadcastPastEvents: true,
        calendars: [
          {
            url: 'webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics',
            name: 'us_holiday',
            color: 'skyblue',
            broadcastPastEvents: true,
            maximalNumberOfDays: 365,
            maximumEntries: 100
          },
          {
            url: '****',
            name: 'family',
            color: 'red',
            broadcastPastEvents: true,
            maximalNumberOfDays: 365,
            maximumEntries: 100
          }
        ]
      }
    },
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/19815/mmm-calendarext3-not-picking-up-calendar-set-from-default-calendar-module</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 20:54:46 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19815.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 06 Aug 2025 04:48:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-CalendarExt3 not picking up calendar set from default calendar module on Fri, 08 Aug 2025 15:37:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/st98325" aria-label="Profile: st98325">@<bdi>st98325</bdi></a> so first thing is</p>
<p dir="auto">mode :‘day’</p>
<p dir="auto">in which it displays ONE  day only<br />
default is yesterday (dayIndex:-1)</p>
<p dir="auto">weeksInView is ignored in mode:day</p>
<p dir="auto">second, how long did you wait?<br />
the default calendar module broadcasts events independently for each configured calendar</p>
<p dir="auto">the ext3  modules try not to flash the screen with redrawing on each blob of events arriving</p>
<p dir="auto">there are two config parms that control this</p>
<p dir="auto">waitFetch<br />
refreshInterval</p>
<p dir="auto">refreshInterval is how often the output is redrawn,<br />
whatever events have arrived since the last refresh will be drawn now. the default is 30 minutes</p>
<p dir="auto">but you dont wait to wait at startup for the first draw<br />
you want it NOW<br />
but ext3 doesnt known WHEN the events will be coming from the default calendar module.<br />
so, after waitFetch time (default 5 seconds) it draws the first time. even if NO events have arrived yet<br />
and then it waits refreshInterval time to draw the next time</p>
<p dir="auto">so, if the calendar takes more time to process, the events will arrive AFTER the 1st draw, but before the 2nd</p>
<p dir="auto">so, i suggest increasing the waitFetch time to one minute<br />
60000 , and reducing the refreshInterval to 2 minutes (120000)<br />
to verify it works</p>
<p dir="auto">then tuning those as needed</p>
<p dir="auto">if you use pm2 to launch MagicMirror, then the log output (pm2 logs) has timestamps, where you can calculate the tine for calendar processing, and set waitfetch just a little longer.</p>
<p dir="auto">side effect of longer waitFetch is that the first draw waits that long. so no calendar output</p>
]]></description><link>https://forum.magicmirror.builders/post/127745</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127745</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 08 Aug 2025 15:37:28 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 not picking up calendar set from default calendar module on Thu, 07 Aug 2025 04:00:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> This works and I get the logic now… thanks a ton!!!</p>
]]></description><link>https://forum.magicmirror.builders/post/127768</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127768</guid><dc:creator><![CDATA[st98325]]></dc:creator><pubDate>Thu, 07 Aug 2025 04:00:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 not picking up calendar set from default calendar module on Fri, 08 Aug 2025 15:37:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/st98325" aria-label="Profile: st98325">@<bdi>st98325</bdi></a> so first thing is</p>
<p dir="auto">mode :‘day’</p>
<p dir="auto">in which it displays ONE  day only<br />
default is yesterday (dayIndex:-1)</p>
<p dir="auto">weeksInView is ignored in mode:day</p>
<p dir="auto">second, how long did you wait?<br />
the default calendar module broadcasts events independently for each configured calendar</p>
<p dir="auto">the ext3  modules try not to flash the screen with redrawing on each blob of events arriving</p>
<p dir="auto">there are two config parms that control this</p>
<p dir="auto">waitFetch<br />
refreshInterval</p>
<p dir="auto">refreshInterval is how often the output is redrawn,<br />
whatever events have arrived since the last refresh will be drawn now. the default is 30 minutes</p>
<p dir="auto">but you dont wait to wait at startup for the first draw<br />
you want it NOW<br />
but ext3 doesnt known WHEN the events will be coming from the default calendar module.<br />
so, after waitFetch time (default 5 seconds) it draws the first time. even if NO events have arrived yet<br />
and then it waits refreshInterval time to draw the next time</p>
<p dir="auto">so, if the calendar takes more time to process, the events will arrive AFTER the 1st draw, but before the 2nd</p>
<p dir="auto">so, i suggest increasing the waitFetch time to one minute<br />
60000 , and reducing the refreshInterval to 2 minutes (120000)<br />
to verify it works</p>
<p dir="auto">then tuning those as needed</p>
<p dir="auto">if you use pm2 to launch MagicMirror, then the log output (pm2 logs) has timestamps, where you can calculate the tine for calendar processing, and set waitfetch just a little longer.</p>
<p dir="auto">side effect of longer waitFetch is that the first draw waits that long. so no calendar output</p>
]]></description><link>https://forum.magicmirror.builders/post/127745</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127745</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 08 Aug 2025 15:37:28 GMT</pubDate></item></channel></rss>