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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3 only one calendar not updating

      @sdetweil No, I’m stopped testing Ext3 and I am only testing the default calendar.

      it is not working - I see Loading... for some number of minutes or hours, I haven’t determined any consistency. This test run is now past 45 mins and it still says Loading… despite having broadcast the events 9 times:

      [2025-01-27 14:25:24.525] [LOG]   Starting MagicMirror: v2.31.0-develop 
      ...
      [2025-01-27 14:25:31.806] [LOG]   Create new calendarfetcher for URL ...
      [2025-01-27 14:26:21.083] [INFO]  Calendar-Fetcher: Broadcasting 22 events from ...
      [2025-01-27 14:32:08.812] [INFO]  Calendar-Fetcher: Broadcasting 22 events from ...
      [2025-01-27 14:37:55.863] [INFO]  Calendar-Fetcher: Broadcasting 22 events from
      [2025-01-27 14:43:42.948] [INFO]  Calendar-Fetcher: Broadcasting 22 events from
      [2025-01-27 14:49:30.144] [INFO]  Calendar-Fetcher: Broadcasting 22 events from 
      ...
      [2025-01-27 15:12:37.552] [INFO]  Calendar-Fetcher: Broadcasting 21 events from 
      

      still says Loading ... - if I refresh the browser page - then they all appear immediately

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      I did yes - so the current test results are this

      The calendar did eventually appear - but it took quite some time - I wasn’t watching, so I don’t know when exactly - I’ll test again. But it was several minutes after the log output of “broadcasting 22 events”

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      I guess I should have run some tests with just the standard calendar module.

      Now just using the standard calendar module - and it just says “Loading” despite having also printed “Broadcasting 22 events from”

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      Actually have to take this back. Currently testing running in server only mode and a browser so I can see the console easier

      When I see in the log this line:

      [2025-01-27 13:52:24.893] [INFO] Calendar-Fetcher: Broadcasting 22 events from <redacted>

      I can say that modules are NOT getting any calendar notifications, despite this log entry. They are not broadcast. I added some code to Ext3Agenda to print out when it gets any notification, and it never gets any CAL items. (I see it getting DOM_CREATED, DOM_UPDATED, etc,etc)

      I see in the console log the following:

      sorting events count=0
      slicing events total maxcount=100

      which seems odd given that the helper reported broadcasting 22 events. Those items repeat in the console log , but it’s always sorting events count=0

      UNTIL I refresh the browser - Now I see the Ext3Agenda module getting CALENDER_EVENTS and sorting events count=22

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      Bah! I have to apologize - I was on the develop branch but apparently, I was some commits behind and I think I was missing the commit that fixed the “clipping” problem

      I made sure to update to the head of develop and things are working much better now. So it seems all along it has been the known issue

      Doh!

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      Yea, I believe the default calender is working and broadcasting correctly - not sure exactly where Ext3Agenda is having problems - but I have a few ideas I plan to try out.

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      Further strangeness.

      Let’s say I change waitFetch to something that shouldn’t work (eg 5 seconds) - clearly, this doesn’t work since the first broadcast is after a minute or so.

      But if I manually refresh the browser as soon as I see the log entry about the broadcast - everything appears just fine.

      So for example, setting

      waitFetch: 5 * 1000,
      refreshInterval: 2 * 60 * 1000,
      

      Nothing will appear in the calendar - not at start (expected) and not after 2 mins (1 refresh), or 4 mins, or 10 mins or however long I want to wait - nothing.

      But if I manually refresh - everything appears right away as long as I refresh after the broadcast log line

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      I am on the develop branch

      The entire start is at 10:54:23

      [2025-01-27 10:54:23.207] [LOG] Starting MagicMirror: v2.31.0-develop

      I’m not sure when Ext3Agenda starts as there is no log item specific to that afaik - but I assume it’s sometime around:

      [2025-01-27 10:54:26.290] [LOG] No helper found for module: MMM-CalendarExt3Agenda.

      so Ext3 start is no earlier than 10:54:23 and the first broadcast was at 10:55:44 - this is much less than the 5 minutes I have manually configured for waitFetch.

      (in other words, I am waiting much longer than should be needed, but it does not work unless I manually refresh)

      The log at 11:01 is the second broadcast of the same calendar

      I am only pulling 5 days of data and not broadcasting past events, 23 is correct.

      module: "calendar",
      hiddenOnStartup: true,
      position: "top_left",
      config: {
          broadcastEvents: true,
          broadcastPastEvents: false,
          maximumNumberOfDays: 5,
          maximumEntries: 100,
          fetchInterval: 5 * 60 * 1000,
          calendars: [
          {
              name: "family",
              URL: "<redacted>"
          }
          ]
      }
      
      module: "MMM-CalendarExt3Agenda",
      position: "top_left",
      config: {
          showMiniMonthCalendar: false,
          firstDayOfWeek: 1,
          startDayIndex: 0,
          endDayIndex: 0,
          calendarSet: ['family'],
          waitFetch: 5 * 60 * 1000,
          refreshInterval: 7 * 60 * 1000,
      }
      
      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      Was out for a week - some more details:

      Here are relevant log entries:

      0|MagicMirror | [2025-01-27 10:54:33.580] [LOG] Launching application.
      0|MagicMirror | [2025-01-27 10:54:50.855] [LOG] Create new calendarfetcher for url: - Interval: 300000
      0|MagicMirror | [2025-01-27 10:55:44.585] [INFO] Calendar-Fetcher: Broadcasting 23 events from
      …
      0|MagicMirror | [2025-01-27 11:01:33.443] [INFO] Calendar-Fetcher: Broadcasting 23 events from

      So that was about a minute to broadcast the first time, and then it follows the refresh interval reasonably closes.

      I have the Ext3 module waitFetch set to 5 minutes (5 * 60 *1000) - well after the first broadcast. When the Ext3 module draws after 5 minutes, there is nothing in it, and it is empty with no events whatsoever. It’s like it has no data at all.

      I have the Ext3 module refreshInterval set to 7 minutes (7 * 60 * 1000) - after the 7 minutes the module will refresh and it remains empty despite the calendar having done two broadcasts. The Ext3 module will remain empty for hours.

      However, if I manually refresh the browser using the remotecontrol module - the Ext3 module takes 5 minutes to appear (based on waitFetch but will have all the data)

      posted in Troubleshooting
      emloweE
      emlowe
    • RE: MMM-CalendarExt3 only one calendar not updating

      Yea, it’s a mystery to me as well - I just know doing the manual refresh works very reliably.

      I’ve had this problem on a stock pi3 b and a pi3 a+ - initially, I thought it was related to the low memory issues on the pi3 a+ - but as I update to use this new module from older ones I’ve seen it again on a stock 4gb pi3

      posted in Troubleshooting
      emloweE
      emlowe
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 2 / 6