MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-CalendarExt2 freezing MagicMirror

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    mmm-calendarext2freezeslowcalendar
    2 Posts 2 Posters 444 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S Offline
      sg437
      last edited by

      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!!

      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:[],
      	  },
      	],
      },
      ``
      M 1 Reply Last reply Reply Quote 0
      • M Offline
        MMRIZE @sg437
        last edited by MMRIZE

        @sg437
        I think your ICAL URL might be wrong. Check that URL with the default calendar model. (See the log - what the module said.)

        And, I don’t recommend putting the upcoming view into the horizontal region. upcoming view has only one slot so it will not match with the horizontal layout. upcoming view in the vertical region or daily view, weeks view in the horizontal region is better.

        {
          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:[],
              },
            ],
          }
        },
        

        69a93edb-5e47-4a6a-a254-55953e74993c-image.png

        1 Reply Last reply Reply Quote 0
        • 1 / 1
        • First post
          Last post
        Enjoying MagicMirror? Please consider a donation!
        MagicMirror created by Michael Teeuw.
        Forum managed by Sam, technical setup by Karsten.
        This forum is using NodeBB as its core | Contributors
        Contact | Privacy Policy