A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-CalendarExt2 config
-
Hi guys,
i have a problem with my config MMM-CalendarExt2.
here the picture
here the config.js from the module
{ module: 'MMM-CalendarExt2', config: { calendars : [ { name: "Michael", //icon: "emojione-monotone:anchor", icon: "emojione-v1:mobile-phone", //"noto:boy-light-skin-tone" className: "Michael", url: "https://calendar.google.com/calendar/ical/###/basic.ics", scanInterval: 1500, maxIterations: 100, }, { name: "Stefanie", //icon: "bx:bx-happy-heart-eyes", icon: "noto:cow-face", // "emojione-v1:person-tipping-hand", className: "Stefanie", url: "https://calendar.google.com/calendar/ical/###/basic.ics", scanInterval: 1500, maxIterations: 100, }, { name: "Phil", //icon: "simple-icons:angellist", icon: "noto:jack-o-lantern", // "emojione-v1:blond-haired-person", className: "Phil", url: "https://calendar.google.com/calendar/ical/###/basic.ics", scanInterval: 1500, maxIterations: 100, }, { url: "https://calendar.google.com/calendar/ical/###/basic.ics", name: "Abfall-Wertstoff-Papier", icon: "whh-recycle", }, { name: "Speiseplan", //icon: "mdi-recycle", icon: "emojione-v1:pot-of-food", className: "Speiseplan", url: "https://calendar.google.com/calendar/ical/####/basic.ics", scanInterval: 1500, maxIterations: 100, }, ], views: [ { mode: "daily", title: "Termine nächsten Tage", position: "top_center", locale: "de-DE", calendars: ["Speiseplan", "Michael", "Stefanie", "Phil", "Abfall-Wertstoff-Papier"], slotCount: 3, timeFormat:"LT", hideOverflow: false, slotTitleFormat: { sameDay: "[Heute] DD. MMMM", nextDay: "[Morgen] DD. MMMM", nextWeek: "[am] dddd", lastDay: "[Gestern]", lastWeek: "[letzte] ddd", sameElse: "DD.MM.", className: "remove_empty_slot", }, }, ], scenes: [ { name: "DEFAULT", }, ], }, },
can anybody help??
Thx SARCux
-
-
@mmrize
it´s not the answer of my question :confused_face:I did not have any success with the documentation
-
@sarcux
Well, I’m the original author of the documents and modules. So if docs are not helpful for you, it’s sorry.However, hmmm…
... slotSubTitleFormat: ' ', dateTimeFormat: { sameDay: "[Heute] HH:mm", nextDay: "[Morgen] HH:mm", nextWeek: "dddd HH:mm", lastDay: "[Gestern] HH:mm", lastWeek: "[Latzt] ddd HH:mm", sameElse: "M/D HH:mm" }, ...
I just added this and got the above-captured image. And all are also documented already.
(You probably need to modifydateFormat
also for fullday event) -
@mmrize said in MMM-CalendarExt2 config:
’ ',
This is my View:
views: [ { mode: "daily", title: "Termine nächsten Tage", position: "top_center", locale: "de-DE", calendars: ["Speiseplan", "Michael", "Stefanie", "Phil", "Abfall-Wertstoff-Papier"], slotCount: 3, timeFormat:"LT", hideOverflow: false, slotSubTitleFormat: ' ', dateTimeFormat: { sameDay: "[Heute] HH:mm", nextDay: "[Morgen] HH:mm", nextWeek: "dddd HH:mm", lastDay: "[Gestern] HH:mm", lastWeek: "[Letzten] ddd HH:mm", sameElse: "M/D HH:mm" }, }, ],