MMRIZE / MMM-CalendarExt3

MagicMirror calendar view module
MIT License
58 stars 22 forks source link

ics links not working #58

Closed treypop closed 1 year ago

treypop commented 1 year ago

I can't get the link to my calendars to work. image

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 1 year ago

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 1 year ago

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 1 year ago

That fixed my problem