MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. oquendo421
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    O
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    oquendo421

    @oquendo421

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

    oquendo421 Unfollow Follow

    Latest posts made by oquendo421

    • RE: MMM-CalendarExt3 only one calendar not updating

      @sdetweil

      I just updated this morning to the latest version (magicmirror@2.31.0-develop start) . It wasn’t working on the previous version either. Well, I should say that it was working for the first couple of weeks and then that second calendar just stopped updating without a force refresh.

      posted in Troubleshooting
      O
      oquendo421
    • MMM-CalendarExt3 only one calendar not updating

      I am using CalendarExt3 to display two iCloud calendars. One is called Family_Monthly and the other is called Work. The Family calendar updates just fine but the Work calendar will not update at all.

      On initial startup the Work calendar will not display unless I do refresh. After that, no changes will display unless I do a manual refresh. Again, the family calendar has no issues. They are both being pulled from my iCloud. I have tried all different versions of messing with refresh interval but it’s been a few weeks and I’m not getting anywhere. Thanks for the help. Config file below:

      modules: [
      	{
      		module: "alert",
      	},
      	/*{
      		module: "updatenotification",
      		position: "top_bar"
      	},*/
      	{
      		module: "clock",
      		position: "top_center"
      	},
      	{
      		module: "calendar",
      		header: "Family Calendar",
      		position: "top_left",
      		config: {
      			maximumEntries: 4,
      			broadcastEvents: true,
      			broadcastPastEvents: true,
      			fade: false,
      			coloredSymbolOnly: true,
      			colored: true,
      			calendars: [
      				{
      					refreshInterval: 60 * 1000, // Resfresh interval: 1 minute
      					symbol: "calendar-check",
      					name: "Family_Monthly",
      			    		url: "webcal://Family Calendar iCloud Link",
      			    		color: "orange",
      				},
      				{
      					refreshInterval: 60 * 1000, // Resfresh interval: 1 minute
      					symbol: "calendar-check",					    	
      					name: "Work",
      				    	url: "webcal://Work Calendar iCloud Link",
      				    	color: "#cc99cc",
      				    	wrapEvents: true,
      				    	showEnd: true,
      				    	
      				},
      
      			]
      		}
      	},
      	
      			{
      		module: "MMM-CalendarExt3",
      		position: "fullscreen_below",
      		  config: {
      		      mode: "month",
      		      maxEventLines: 7,
      		      firstDayOfWeek: 0,
      		      //refreshInterval: 60 * 1000, // Resfresh interval: 1 minute
      		      fontSize: '22px',
      		      showWeekNumbers: false,
      		      calendarSet: [],
      			  }
      	},
      ]
      

      };

      posted in Troubleshooting
      O
      oquendo421