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

    Scheduled Pinned Locked Moved Utilities
    676 Posts 81 Posters 2.4m Views 85 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
      sdetweil @chriskar
      last edited by

      @chriskar views and scenes were config options in calendarExt2, but are not used in Ext3

      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
        chriskar @sdetweil
        last edited by

        @sdetweil said in MMM-CalendarExt3:

        @chriskar views and scenes were config options in calendarExt2, but are not used in Ext3

        so i remove views and scenes and use only the config part?

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

          @chriskar correct

          mode:week
          weeksInView:3
          weekIndex:0 //first week to see, -1 is last week, default

          etc

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • C Offline
            chriskar
            last edited by

            ok thanks, this worked fine!
            what about the overlaping issue? css code is mostly AI generated so it probably has a lot of junk in

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

              @chriskar i do not know on css
              he provides lots of control, but wrap seems difficult

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • P Offline
                p1lspeda
                last edited by

                Hi,
                I updated to MM 2.32 this morning and ever since then, I have noticed that the CW entry in my MMM-CalendarExt3 is stuck at “CW1”:
                e0c31178-fa62-4c21-8f01-ad2a29c0c4eb-image.png

                I assume the newest changes have something to do with it
                9cdc6813-31c8-4f3e-af65-9561cf029d8b-image.png

                Any idea if I can solve this or do I need to wait for a module update ?
                Thanks

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

                  @p1lspeda I see the same bug, but not sure where it is

                  a temp fix is to add this line to the CX3 config section

                            minimalDaysOfNewYear:1,  // week number of 1st week in your country (should be 0 or 1) 
                  

                  there was an open issue on this inthe CX3 repo
                  https://github.com/MMRIZE/MMM-CalendarExt3/issues/215

                  I posted this workaround there too

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  P 1 Reply Last reply Reply Quote 0
                  • P Offline
                    p1lspeda @sdetweil
                    last edited by

                    @sdetweil
                    Great.
                    Thanks for help (again!)

                    1 Reply Last reply Reply Quote 0
                    • K Offline
                      kribbitykrab
                      last edited by

                      Hi folks,

                      Trying to get MMM-CalendarExt3 working on my Pi Zero W running MM v2.30.0 and running into an issue where the calendar is blank. Relevant config.js below:

                      {
                         module: "calendar",
                         config: {
                            broadcastPastEvents: true,
                            maximumEntries: 10000,
                            colored: true,
                            calendars: [
                                {
                                     fetchInterval: 1* 60 * 1000,
                                     symbol: "calendar-check",
                                     name: "p_and_b",
                                     color: "rgba(255, 0, 0, 1)",
                                     url: "..."
                                },
                                {
                                     fetchInterval: 1* 60 * 1000,
                                     name: "cal2",
                                     color: "rgba(0, 0, 255, 1)",
                                     url: "..."
                                }
                             [
                         }
                      },
                      {
                         module: "MMM-CaendarExt3",
                         position: "bottom_bar",
                         title: "family dashboard",
                         config: {
                            mode: "month"
                            instanceID: "basicCalendar",
                            locale: 'en-US'
                            maxEventLines: 5,
                            firstDayOfWeek: 1,
                            calendarSet: ["p_and_b", "cal2"]
                         }
                      },
                      

                      Can anyone help me understand why my monthly calendar is coming up blank and a workaround?

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

                        @kribbitykrab ok, this is worse on pi 0w

                        Ext3 gets the calendar events from the default calendar

                        the calendar module fetches each url separately and broadcasts the events to other modules if they want to use them

                        but EXT3 doesn’t want to flash redraw the cal each time a block of events show up

                        so it also has a

                        refreshInterval
                        

                        take whatever events have arrived since last time and display ( default 30 minutes)

                        now there is another tuning thing
                        if it drew immediately on startup it would be empty, cause startup is faster than fetch. but EXT3 doesn’t know how many cal urls might supply events.
                        so there is the

                        waitFetch 
                        

                        config parm (default 5 seconds)
                        wait that long after startup before displaying any events
                        then next will be updateinterval

                        pi0w is SOOOOOOO slow ,no events arrive before waitFetch
                        so next time is updateInterval time

                        so you can adjust these some

                        you are probably
                        impacted by this bug too, timeout on the connection between front and back ends
                        see https://forum.magicmirror.builders/post/127456

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        K 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 67
                        • 68
                        • 1 / 68
                        • 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