ics links not working
Closed this issue · 3 comments
treypop commented
I can't get the link to my calendars to work.
let config = {
modules: [
{
module: "MMM-CalendarExt3",
position: "bottom_center",
config: {
mode: "month",
locale: 'us-US',
maxEventLines: 5,
firstDayOfWeek: 0,
url: "https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics",
name: "Holidays",
color: "red",
calendarSet: ['Holidays'],
}
},
{
module: "clock",
position: "top_center", // This can be any of the regions.
config: {
timezone:'America/New_York',
timeFormat:'12',
showPeriod:false,
showDate:false,
// The config property is optional.
// See 'Configuration options' for more information.
},
},
]
};
eouia commented
This module doesn’t read the ics directly.
You need the default ‘calendar’ module or equivalent alternative that can emit events notifications.
This module subscribes that notifications then draw them pretty.
treypop commented
This module doesn’t read the ics directly. You need the default ‘calendar’ module or equivalent alternative that can emit events notifications. This module subscribes that notifications then draw them pretty.
Alright will add that and see if it works
treypop commented
That fixed my problem