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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3Agenda

      @sdetweil

      My apologies! I’ll make sure I format correctly going forward.

      Not a dumb question at all, that was the first thing I checked. I wish my life would go three days without an event. But I’ve tried setting endDayIndex to 10, eliminating the indexes completely, eliminating the calendarSet, stripping the entire module down to just the header, the position, the waitFetch and refreshInterval, and it’s still blank. The only way I know that there’s something happening is the header is still there. I tried commenting out the other modules and positioning CX3A top left to see if it was a graphics issue but it’s the same empty header. Yet when I fire up all the modules, CX3 weekly is still showing every event perfectly from the first fetch. I’m stumped. And then when I quit out, the terminal shows no issues, and lists all the events that are successfully being broadcasted by each calendar.

      posted in Utilities
      F
      FMancuso5
    • RE: MMM-CalendarExt3Agenda

      @sdetweil

      {
                  module: "MMM-CalendarExt3Agenda",
                  position: "top_right",
                  header: "Next 3 Days",
                  config: {
                      showMiniMonthlyCalendar: false,
                      instanceId: "basicAgenda",
                      locale: "en-US",
                      startDayIndex: 0,
                      endDayIndex: 3,
                      calendarSet: ["John", "Jane", "Joe", "Jill", "Family", "Important"],
                      waitFetch: 30 * 1000,
                      refreshInterval: 30 * 60 * 1000,
                  }
              }
      
      posted in Utilities
      F
      FMancuso5
    • RE: MMM-CalendarExt3Agenda

      @sdetweil

      Thanks for the info. I read through that thread and made some adjustments. I have waitFetch for both CX3 and CX3A set for 20 seconds. I left the refresh intervals at 30 min. Prior to the waitFetch, at startup the CX3 module would have a calendar or two missing, but it would correct at the next refresh interval. With waitFetch, all events display when the calendar is drawn, which makes obvious sense. The extra time helped.

      That didn’t change the CX3A module though. It’s still blank in the bottom right corner of the screen, save for my “Next 3 Days” header. It stays blank even when I shorten the refreshInterval to run it through some extra cycles. All the necessary calendars are broadcasting without issue, I can see that on the terminal when I stop MM. I’m trying to make sense of it because my understanding is that both CX3 and CX3A modules grab the default calendar broadcasts simultaneously. And my weekly CX3 module is functioning perfectly right next to it.

      posted in Utilities
      F
      FMancuso5
    • RE: MMM-CalendarExt3Agenda

      Hi,

      Having an issue with CX3A not displaying events. I have below the module configurations. The calendar setup for CX3 works perfectly, and they’re all defined in the default calendar module. The header appears for the Agenda in the bottom right as well, just no events are displayed. I know there was a clipping issue with the maxEntries on the default calendar. I have them all set to 100, and this is a fresh install of MM and all the modules as of this morning, so I didn’t think that was an issue. I’m also not seeing any errors logged while MM is running. I must be missing something.

      {
                  module: "MMM-CalendarExt3",
                  position: "top_center",
                  config: {
                      mode: "week",
                      instanceId: "basicCalendar",
                      locale: "en-US",
                      maxEventLines: 8,
                      weeksInView: 5,
                      weekIndex: 0,
                      fontSize: 26,
                      calendarSet: ["John", "Jane", "Joe", "Jill", "Family", "Important"],
                      refreshInterval: 30 * 60 * 1000,
                  }
              },
              {
                  module: "MMM-CalendarExt3Agenda",
                  position: "top_right",
                  header: "Next 3 Days",
                  config: {
                      instanceId: "basicAgenda",
                      locale: "en-US",
                      startDayIndex: 0,
                      endDayIndex: 3,
                      calendarSet: ["John", "Jane", "Joe", "Jill", "Family", "Important"],
                      refreshInterval: 30 * 60 * 1000,
                  }
              }
      
      posted in Utilities
      F
      FMancuso5
    • 1 / 1