MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MASantangelo
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 5
    • Groups 0

    MASantangelo

    @MASantangelo

    2
    Reputation
    277
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    MASantangelo Unfollow Follow

    Best posts made by MASantangelo

    • RE: Calendar Module still referencing Template

      @Mykle1 That didn’t do it either. I stumbled upon this thread: https://forum.magicmirror.builders/topic/127/question-about-calendar/7

      So I changed my config to:

                  {
                          module: "calendar",
                          position: "top_left",
                          config: {
                                  maximumEntries: "15",
                                  maximumNumberOfDays: "30",
                                  calendars: [
                                          {
                                                  symbol: "calendar",
                                                  url: "https://calendar.google.com/calendar/ical/private@group.calendar.google.com/private-private/basic.ics",
                                          }
                                  ]
                          }
                  },
      

      And now it’s working. Woohoo!

      Thanks anyways @Mykle1 !

      posted in Troubleshooting
      M
      MASantangelo
    • RE: Calendar Module still referencing Template

      @Mykle1 I’m gonna chalk that up to not enough coffee on my part. :)

      posted in Troubleshooting
      M
      MASantangelo

    Latest posts made by MASantangelo

    • RE: Calendar Module still referencing Template

      @Mykle1 I’m gonna chalk that up to not enough coffee on my part. :)

      posted in Troubleshooting
      M
      MASantangelo
    • RE: Calendar Module still referencing Template

      @Mykle1 That didn’t do it either. I stumbled upon this thread: https://forum.magicmirror.builders/topic/127/question-about-calendar/7

      So I changed my config to:

                  {
                          module: "calendar",
                          position: "top_left",
                          config: {
                                  maximumEntries: "15",
                                  maximumNumberOfDays: "30",
                                  calendars: [
                                          {
                                                  symbol: "calendar",
                                                  url: "https://calendar.google.com/calendar/ical/private@group.calendar.google.com/private-private/basic.ics",
                                          }
                                  ]
                          }
                  },
      

      And now it’s working. Woohoo!

      Thanks anyways @Mykle1 !

      posted in Troubleshooting
      M
      MASantangelo
    • RE: Calendar Module still referencing Template

      @Mykle1 So, I tried three things: I tried making the existing calendar public, I tried making a duplicate and making it public, I tried downloading the ICS locally and referencing that. No matter what I change the calendar to (even a completely broken url), it ALWAYS references the calendarlabs one… This is very weird. Maybe I’ll try an update of the base MagicMirror.

      -Mike

      posted in Troubleshooting
      M
      MASantangelo
    • RE: Calendar Module still referencing Template

      Specifically, my calendar module is:

                  {
                          module: "calendar",
                          position: "top_left",
                          config: {
                                  maximumEntries: "15",
                                  maximumNumberOfDays: "30",
                                  url: "webcal://calendar.google.com/calendar/ical/private@group.calendar.google.com/private-private/basic.ics",
                                  symbol: "calendar",
                          }
                  },
      

      and the line I’m seeing in the PM2 log is:

                  0|MagicMir | Create new calendar fetcher for url: http://www.calendarlabs.com/templates/ical/US-Holidays.ics - Interval: 300000
      
      posted in Troubleshooting
      M
      MASantangelo
    • Calendar Module still referencing Template

      So I’m hoping I’m explaining this properly… I’ve updated my Calendar Module to reference my Google calendar, and I’ve reloaded MagicMirror… As I watch the log via pm2 logs MagicMirror I see that it’s creating a calendar fetcher for the calendarlabs.com/Templates, not my webcal for my Google Calendar (I’ve tried changing it from webcal:// to http:// and https://).

      Any suggestions?

      posted in Troubleshooting
      M
      MASantangelo