Read the statement by Michael Teeuw here.
MMM-CalendarExt2
-
@ChickenBeard
Not adjusted automatically. you can set the height of the slot manually. -
@Sean said in MMM-CalendarExt2:
Not adjusted automatically. you can set the height of the slot manually.
Is it CX2 .slot ?
-
@ChickenBeard
if you mean some table views (month, week), setslotMaxHeight
of view configuration.
https://github.com/eouia/MMM-CalendarExt2/wiki/2c4.-View:week,-month -
@Sean okay. it would be great to have though. not seeing the events is not good. limited space on the screen so i cant just make more room because then i will lose a full week from the month view.
thanks. -
@Sean could you help me do that anyway? lol
i would really like it to do that.
Thanks. -
-
@Sean make the events under a date that is not showing scroll.
I am trying to figure it out but I have no coding knowledge at all so I just randomly change things and see what it does but I am not getting anywhere doing that at all.
-
@code999
To show more events in a cell, just set biggerslotMaxHeight
. And shrinking the font-size and height of event element could be help.But anyway, Usual MagicMirror Screen has not so enough space to show many events with Table Views(
month
andweek
view). Even normal Desktop calendar programs like Google Calendar MS-Office or Apple Calendar couldn’t show too many events in a cell.Maybe you can make show 5 or 6 events in a day cell. But What about 7 events or 8 events? It could not be solved at last.
Auto-scroll could be the ideal solution, but RPI has not enough power to maintain so many scrolling effects. (Maybe RPI4 could have enough power but many ppl also are using even RPI0)
However, you want it, useMMM-CalendarExt
instead. It has that feature but will be very slow.Another possible approach would be to filter and/or to sort events to show. Some of the events will not be more important than others to show in that view. You can filter unimportant events not to show, Or at least, you can sort them to hide.
-
Just a general question. I have my calendar pulling from 6-7 different Google calendars. I have the module configured to retrieve the calendar data every 5 minutes. I did this to allow changes made to an entry to be updated pretty quickly on my display.
The issue is if I modify a calendar entry in my Google calendar it doesn’t get updated in the MM calendar display. If I stop MM and then restart it then everything will be correct. But leaving it running it doesn’t update with the changes. I have also seen this if I deleted a calendar entry it will remain in my MM calendar on the display.
Here is the code I am using. I put the scan interval for the calendars in the default section.
locale: "en", defaultSet: { calendars: { maxItems: 500, scanInterval: 1000*60*5, beforeDays: 5, afterDays: 60, maxIterations: 100, },
-
@cskenney
scanInterval
is just for scanning calendars, finding something changed, then loading them. So, your modified events would definitely be loaded on the module.
But displaying is another issue.rotateInterval
(when you are using multi-scenes) orupdateInterval
(When you are using single-scenes) could make refreshing the displaying.
https://github.com/eouia/MMM-CalendarExt2/wiki/2e.-Configuration:Others