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.

    Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    21 Posts 2 Posters 2.8k 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.
    • C Offline
      cheminge @sdetweil
      last edited by

      Ok,

      After some deep diving I realized I have broadcastPastEvents: true, in the wrong location in my config file.

      I moved it down to be inside the “config” location and it now works!

      Do I need to move the other items inside of the “config” location?

      modules: [
      	{module: "calendar",
      			fade: false,
                              flipDateHeaderTitle: true,
                              hideDuplicates: true,
                              coloredText: true,
                              coloredBackground: false,
                              coloredSymbol: true,
      			pastDaysCount: 90,
      			wrapEvents: true,
      			updateOnFetch: true,
      			colored: true,
      			config: {
      				broadcastPastEvents: true,
      				calendars: [
      					{
      						name: "**CalendarName**",
      						url: "https://**My Google Calendar Link**.ics",
      						symbol: "person-military-to-person",
      						className: "**ClassName**",
      						beforeDays: 30,
      						afterDays: 90,
      						maximumEntries: 100,
      						pastDaysCount: 40,
      						color: "green",
      						fetchInterval: 60000, //900000 is 15 minuets
      					},
      
      S 2 Replies Last reply Reply Quote 0
      • S Offline
        sdetweil @cheminge
        last edited by sdetweil

        @cheminge yes

        everything BEFORE config:{
        belongs to Magicmirror, and the module will not see it

        ONLY stuff inside config goes to the module

        config:{
        ..... here
        }
        

        see
        https://docs.magicmirror.builders/modules/configuration.html#example

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @cheminge
          last edited by

          @cheminge did you get it working?

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          C 1 Reply Last reply Reply Quote 0
          • C Offline
            cheminge @sdetweil
            last edited by

            @sdetweil

            Everything seems to be working, but I am having one issue.

            I have repeating events, that are “All Day” events.

            Then the week of the event I change the event on the google calendar to be for a specific time of day.

            When I do this, I see both the repeating “All Day” and the Specific time events. (so double events on the same day) It also doesn’t read the new times that I have put into the google calendar.

            I don’t even know where to start to look for a solution for this.

            Attached is a screen shot of the calendar, and for example, on January 28, all 3 are duplicate entries.

            Duplicate and no Time entry on Calendar.png

            S 2 Replies Last reply Reply Quote 0
            • S Offline
              sdetweil @cheminge
              last edited by sdetweil

              @cheminge did you put on the fixes for calendar?
              are you running MagicMirror version 2.30, many calendar fixes

              if you are, i want the event that you modified
              before and after dumped from your ics data

              curl -sL the-cal-url >somefile.txt

              edit , find the event

              BEGIN:VEVENT
              .
              .
              END:VEVENT
              

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              C 1 Reply Last reply Reply Quote 0
              • C Offline
                cheminge @sdetweil
                last edited by

                Yes, I think I have 2.30 and many calendar fixes installed…

                Here is they entry for one of the entries on the 1-28-25 (duplicate of the “Alyce” entry)

                BEGIN:VEVENT
                DTSTART;TZID=America/New_York:20250128T103000
                DTEND;TZID=America/New_York:20250128T113000
                DTSTAMP:20250129T181146Z
                UID:m6rjo4c4r97p3jm4i84aiud6ld_R20250128@google.com
                RECURRENCE-ID;TZID=America/New_York:19691231T190000
                CREATED:20221212T202854Z
                LAST-MODIFIED:20250124T145109Z
                LOCATION:**Protected Data ** (removed for protection data)
                SEQUENCE:3
                STATUS:CONFIRMED
                SUMMARY:**Alyce Entry ** (removed for protection data)
                TRANSP:TRANSPARENT
                END:VEVENT

                EGIN:VEVENT
                DTSTART;VALUE=DATE:20250128
                DTEND;VALUE=DATE:20250129
                RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU
                DTSTAMP:20250129T181146Z
                UID:m6rjo4c4r97p3jm4i84aiud6ld_R20250128@google.com
                CREATED:20221212T202854Z
                LAST-MODIFIED:20250124T145109Z
                LOCATION:**Protected Data ** (removed for protection data)
                SEQUENCE:2
                STATUS:CONFIRMED
                SUMMARY:**Alyce Entry ** (removed for protection data)
                TRANSP:TRANSPARENT
                END:VEVENT

                S 2 Replies Last reply Reply Quote 0
                • S Offline
                  sdetweil @cheminge
                  last edited by

                  @cheminge can you show me the output of

                  cd ~/MagicMirror 
                  git branch
                  

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  C 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @cheminge
                    last edited by

                    @cheminge are you in the ny timezone too?

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    C 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @cheminge
                      last edited by

                      @cheminge ok, the RRULE rule is that the extracted event MUST match the event its extracted from

                      you have a full day RRULE

                      DTSTART;VALUE=DATE:20250128
                      DTEND;VALUE=DATE:20250129
                      RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU
                      

                      and then extracted one instance

                      DTSTART;TZID=America/New_York:20250131T103000
                      DTEND;TZID=America/New_York:20250131T113000
                      

                      by RULE, this will be FORCED to a fullday event
                      as the source event is fullday

                      similarly if
                      the event is date/time
                      then the extracted MUST be date/time

                      AND its bi weekly, so the extracted event is ignored. as its not on a week boundary
                      (the RRULE cycle bi weekly and ONLY on TUESDAY)
                      RRULE:FREQ=WEEKLY;WKST=SU;INTERVAL=2;BYDAY=TU

                      the tie between the events is the UID field
                      UID:m6rjo4c4r97p3jm4i84aiud6ld_R20250128@google.com
                      the calendar tool should have changed the UID field
                      to make this a standalone event
                      but left it as part of the recurrence,
                      RECURRENCE-ID;TZID=America/New_York:
                      got to be one or the other… match the RRULE or be separate

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • C Offline
                        cheminge @sdetweil
                        last edited by

                        @sdetweil

                        This is what I get:

                        _fix_clipping

                        • develop
                          master
                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 2 / 3
                        • 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