Read the statement by Michael Teeuw here.
MMM-CalendarExt
-
edit: furthermore, how can I stop the module from cutting off the bottom part?
Hmmm… On my mirror,
Mariä Empfängnis
is shown well.
I suspect your configuration containslimit
oroverflow
options.See here. https://github.com/eouia/MMM-CalendarExt/wiki/Manipulation-of-looks#viewlimit--viewoverflow
You could get idea how to optimize size in that page.
Anyway,
4 weeks
andmonth
view are frankly a bit large for mirror (I think.). -
Wonderful, everyting works now. Thanks a lot!
-
MMM-CalendarExt not updating calendar events.**
I have configured two calendar views: “daily” and “upcoming”. I have set the redrawInterval to minimum: 60000 ms. I have two calendars: Private Google Calendar and local ics calendar file. When I update one or another of my calendars, my calendars don’t update at all. Updates happen only when I restart MMM from the beginning. For testing purposes I have also the “default” calendar in my configuration and it updates normally. For testing purposes I have added command 'self.sendSocketNotification(‘RESET_CALENDARS’) to the MMM-CalendarExt.js code inside the redrawTimer function. This dirty patch resets the calendars every 60 seconds, but I don’t think this is the right way to solve my problem. Please help. -
@helmi
Well, I tested and found nothing problem.
So, I suspect there might be some errors in front-electron views. Front-view error(from any module) could cause interfering other modules working. You can test bynpm start dev
. -
@Sean I have been using the ‘npm start dev’ and it shows no errors. From the console log I can see that the timer triggers as expected. From the Calendar.js log (terminal view) I can see that the calendars fetching happens only when I start MMM from the beginning.
-
@Sean FYI: I have removed all other modules, only MMM-CalendarExt existing. I have also removed local calendar file, only Google Calendar URL existing. I have done shutdown and restart (both Rpi and MMM) several times. Problem still exists. For me looks like problem is where the calendars fetching should trigger. They happen only once when I start MMM from the beginning.
-
@helmi
Hmmmm… weird.Anyway, Calendar fetching interval([calendar].interval) is different with front-view redrawing(system.redrawInterval). There is some possibility of you’ve been confusing.
-
@Sean Ok - So does that mean that the redrawInterval parameter (my setting 60000) has nothing to do with Calendar fetching interval? If so, could you please give me some testing procedure in order to test those parts of the code where the fetching interval is working (or for me: not working)? I have some coding experience, but js is not my best knowledge.
-
system.redrawInterval
is used for refreshing calendar view. It is set to30 minutes
by default. It doesn’t affect calendar fetching. With already fetched data, module redraws views per this interval value.system: { show: ['upcoming', 'daily'], redrawInterval: 30*60*1000, //minimum 60000 },
[calendar].interval
is used for reading iCal file and fetching. If you set this value toone hour
, the calendar will be re-parsed per one hour. But, if there is no changed event or new event, the module doesn’t load newly-parsed-but-same data and use previous data already loaded.The process is like this;
node_helper.js
reads calendars perinterval
time.- it fetches calendars and compares them with previously fetched data.
- If nothing changed, nothing happens.
- If something changed, newly fetched data will be sent to the module.
- Module loads fetched events data on the memory.
- Every
redrawInterval
time, module redraw views with loaded events data.
-
@Sean Thank you for the clarifying information. Apparently I was expecting the calendars fetching to happen by system.redrawInterval, which was set at one minute (60000 ms). Now I waited for 30 minutes and fetching happened and events were updated as I expected. No problem so far!
Seems to me that the [calendar].interval (fetching) is set to 30 minutes by default.
Now only one question remains: How can I change the [calendar].interval to for example 5 minutes? This is the interval in “default” calendar, and I have some events needing to be updated more often than 30 minutes.