<?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-CalendarExt2 freezing MagicMirror]]></title><description><![CDATA[<p dir="auto">I am unable to get the MMM-CalendarExt2 module to work. I have looked at some old posts, but everytime I use it, it causes my magicMirror to freeze within ~15 seconds. My config is below and any help would be greatly appreciated!!</p>
<pre><code>module: 'MMM-CalendarExt2',
config: {
	firstDrawingDelay: 10,
	calendars : [
	  {
		url: "https://calendar.google.com/calendar/ical/******gmail.com/private-*************/basic.ics",
		name:'personal'
	  },
	],
	views: [
	  {
		name: "Default",
		mode: "upcoming",
		position:"lower_third",
		calendars: ['personal']
	  },
	],
	scenes: [
	  {
		name: "DEFAULT",
		views:[],
	  },
	],
},
``</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/15658/mmm-calendarext2-freezing-magicmirror</link><generator>RSS for Node</generator><lastBuildDate>Mon, 17 Aug 2026 17:04:59 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/15658.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 01 Oct 2021 03:27:33 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-CalendarExt2 freezing MagicMirror on Fri, 01 Oct 2021 06:49:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sg437" aria-label="Profile: sg437">@<bdi>sg437</bdi></a><br />
I think your ICAL URL might be wrong.  Check that URL with the default calendar model. (See the log - what the module said.)</p>
<p dir="auto">And, I don’t recommend putting the <code>upcoming</code> view into the horizontal region.  <code>upcoming</code> view has only one slot so it will not match with the horizontal layout. <code>upcoming view</code> in the vertical region or <code>daily view</code>, <code>weeks view</code>  in the horizontal region is better.</p>
<pre><code class="language-js">{
  module: "MMM-CalendarExt2",
  config: {
    firstDrawingDelay: 10,
    calendars : [
      {
        name: "Tottenham",
        url: "https://www.google.com/calendar/ical/ovb564thnod82u5c4njut98728%40group.calendar.google.com/public/basic.ics",
        icon: "emojione:chicken"
      },
      {
        name: "Leeds",
        url: "https://www.google.com/calendar/ical/h2suh4c1iqvktk4olmfqtth4lg%40group.calendar.google.com/public/basic.ics",
        icon: "emojione-v1:shield"
      }

    ],
    views: [
      {
        name: "Upcoming",
        header: "Upcoming Game",
        mode: "upcoming",
        position:"top_right",
        calendars: ['Tottenham']
      },
      {
        name: "Daily",
        mode: "daily",
        position: "lower_third",
        calendars: [],
        type: "row",
        slotCount: 7,
        fromNow: -2,
        useEventTimeRelative: true,
      }
    ],
    scenes: [
      {
        name: "DEFAULT",
        views:[],
      },
    ],
  }
},
</code></pre>
<p dir="auto"><img src="/assets/uploads/files/1633070659266-69a93edb-5e47-4a6a-a254-55953e74993c-image-resized.png" alt="69a93edb-5e47-4a6a-a254-55953e74993c-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/95024</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/95024</guid><dc:creator><![CDATA[MMRIZE]]></dc:creator><pubDate>Fri, 01 Oct 2021 06:49:10 GMT</pubDate></item></channel></rss>