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

    calyorbro

    @calyorbro

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

    calyorbro Unfollow Follow

    Latest posts made by calyorbro

    • RE: Default Caledar module not broadcasting or other modules not picking up broadcast (MMM--MonthlyCalendar, MMM-CalendarExt3)

      @sdetweil I did not see this, sorrz about that. Now both work perfectly thank you

      posted in Troubleshooting
      C
      calyorbro
    • Default Caledar module not broadcasting or other modules not picking up broadcast (MMM--MonthlyCalendar, MMM-CalendarExt3)

      I am trying to add a Calendar to my MM that shows the next 4 weeks. I figured either MMM–MonthlyCalendar, or MMM-CalendarExt3 does this well enough for my needs, however both modules dont seem to pick up on the CALENDAR_EVENTS broadcast from the default module.

      First here is the configuration of the Calendar module:

      {
      			module: "calendar",
      			//position: "top_left", // Comment out to hide module
      			config: {
      				broadcastPastEvents: true, 
      				calendars: [
      					{
      						url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics",
      						name: "us_holiday",
      						color: "red" 
      					},
      					{
      						name: "fam-cal",
      						symbol: "calendar-check",
      						url: "https://calendar.google.com/calendar/ical/USER%40gmail.com/private-XXXXXXXXXXXXXXXXX/basic.ics",
      
      					},
      				]
      			}
      		},
      

      I added the default US-Holidays to test. And this does work perfectly fine for the normal module, however when using either MMM–MonthlyCalendar:

      {
      			module: "MMM-MonthlyCalendar",
      			position: "top_right",
      			config: { 
      				mode: "fourWeeks",
      			}
      		},
      

      or MMM-CalendarExt3 :

      {
      			module: "MMM-CalendarExt3",
      			position: "top_right",
      			config: {
      				weekIndex: 0,
      				weeksInView: 4,
      			}
      		},
      

      The calander does not show up. I checked the logs which seem to be telling that everything is working fine:

      [2025-02-15 18:11:09.989] [INFO]  Calendar-Fetcher: Broadcasting 517 events from https://calendar.google.com/calendar/ical/USER%40gmail.com/private-XXXXXXXXXXXXXXXXXXXXXX/basic.ics.
      [2025-02-15 18:11:10.681] [LOG]   [CALEXT2] calendar:0 >> Scanned: 231, Selected: 231
      [2025-02-15 18:11:11.276] [INFO]  Calendar-Fetcher: Broadcasting 24 events from http://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics.
      

      In the attached picture you can see the events loading perfectly in the default module(removed the private calendar for privacy). and not at all in the MMM-CalendarExt3 module. The weather does load however so I am thinking that this is an issue with Calander

      13df6f1f-38ed-49c2-b2a9-8dd1c8f1a120-image.png

      posted in Troubleshooting
      C
      calyorbro