Read the statement by Michael Teeuw here.
MMM-CalendarWeek
-
Description:
This calendar module for Magic Mirror² is functionally the same as the default calendar app, however its presentation is different as it uses week view. This module displays events from a public .ical calendar. It can combine multiple calendars.Screenshots:
Download:
[card:heskja/MMM-CalendarWeek]Ideas wanted
Please feel free to submit issues to the repository for new ideas, bugs, feature requests and so on! -
This post is deleted! -
Looks good!
Since I’m currently working on the calendar module: What does your module do with multi-day events? -
@lavolp3 It does currently not support multi-day events very well. Had to do some testing as I saw your question, but ended up creating an issue on this one… :)
-
Actually made an attempt to solve the multi day issue, hope it works :)
-
Hi,
I have set the config to
maximumNumberOfDays: 7,
showEndDate: true
displayDescription: trueBut it aint taking it, what could be wrong?
Only seeing the default values. -
@cattoo said in MMM-CalendarWeek:
Hi,
I have set the config to
maximumNumberOfDays: 7,
showEndDate: true
displayDescription: trueBut it aint taking it, what could be wrong?
Only seeing the default values.Please post the entire MMM-CalendarWeek section of your config.js, just remove any personal details like links to your calendars. Maybe you added the config details in the wrong place?
-
Here is the code
{ module: "MMM-CalendarWeek", position: "bottom_bar", config: { calendars: [ { symbol: "calendar-check-o", displayLocation: 'true', displayDescriptio: "true", maximumNumberOfDays: '5', showEndDate: "true", url: "************" } ] } },
-
Okay, please try this.
{ module: "MMM-CalendarWeek", position: "bottom_bar", config: { showEndDate: true, displayLocation: true, displayDescription: true, calendars: [ { symbol: "calendar-check-o", maximumNumberOfDays: 5, url: "************" } ] } },
-
That did the trick, thanks a lot :)
@yawns said in MMM-CalendarWeek:
Okay, please try this.
{ module: "MMM-CalendarWeek", position: "bottom_bar", config: { showEndDate: true, displayLocation: true, displayDescription: true, calendars: [ { symbol: "calendar-check-o", maximumNumberOfDays: 5, url: "************" } ] } },