MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. sg437
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    sg437

    @sg437

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    sg437 Unfollow Follow

    Latest posts made by sg437

    • MMM-CalendarExt2 not showing on magicmirror

      I am unable to get my MMM-CalendarExt2 to show on the magic mirror. I am not sure what I am doing wrong here, but have been working on this for a few weeks now. Would really appreciate some help as I am not sure what is going wrong

      module: 'MMM-CalendarExt2',
      	config: {
      		calendars: [
      		  {
      			  url: "https://calendar.google.com/calendar/ical/XXXXXX%40gmail.com/private-XXXXXX/basic.ics",
      			  name: "personal"
      		  }
      		],
      		views: [
      		  {
      			mode: "monthly",
      			name: "personal",	
      			position: "middle-center",
      			calendars: ['personal']
      		  }
      		],
      		scenes: [
      		  {
      			name: "DEFAULT",
      			views: ["personal"]
      		  }
      		],
      	},
      },
      posted in Troubleshooting
      S
      sg437
    • MMM-CalendarExt2 freezing MagicMirror

      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:[],
      	  },
      	],
      },
      ``
      posted in Troubleshooting
      S
      sg437