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

    dpnguyen

    @dpnguyen

    0
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    dpnguyen Unfollow Follow

    Latest posts made by dpnguyen

    • RE: MMM-CalendarExt3Journal not displaying

      @MMRIZE Updating MagicMirror fixed it thanks!

      posted in Troubleshooting
      D
      dpnguyen
    • MMM-CalendarExt3Journal not displaying

      I am trying to add MMM-CalendarExt3Journal but it is not showing up at all. I have the default calendar working and just added the bare minimum for CalendarExt3Journal to work.

      {
            module: "MMM-CalendarExt3Journal", 
            position: "middle_center",
         
      },
      

      I have also removed all other modules besides clock, calendar, and CalendarExt3Journal. Pulling up the developer tools does show this error but I have no idea what it means.
      384d6302-6e29-4e09-b78c-0af83e56e56f-image.png

      posted in Troubleshooting
      D
      dpnguyen
    • RE: MMM-CalendarExt2 Refresh Issue

      @MMRIZE
      Here is the code but I removed some of the calendar URLs since they are private.

      {
        module: 'MMM-CalendarExt2',
        config: {
          calendars : [
            {
      		name: "General",
              url: "https://calendar.google.com/calendar/ical/xxxxxxxxxxgmail.com/private-846ceced2e0290a002c3001467418bdd/basic.ics", 
              className: "cal_General",
              icon: "majesticons:home-simple-line",
             
            },
      	  {
      		name: "Sitter Schedule",
      		url:  "https://calendar.google.com/calendar/ical/1463089b79744857e15df07987xxxxx",
      		className: "cal_Sitter",
      		icon: "mingcute:baby-carriage-fill",
      	
            },
            {
      		name: "Nora",
              url: "https://calendar.google.com/calendar/ical/1fd46fcaa274e6fd25359cc305b1238207adf22b60265d115fb4c49eeeb6xxxx", 
              className: "cal_Nora",
              icon: "fluent-emoji-high-contrast:giraffe",
             
            },
            {
      		name: "Gracie",
              url: "https://calendar.google.com/calendar/ical/2838b64ca8d28895fc555822b6f7d12c3d3c71f3919418766e3cdce496xxxx", 
              className: "cal_Gracie",
              icon: "fluent-emoji-high-contrast:unicorn",
             
            },
          ],
          views: [
            {
        name: "VIEW1",
        mode: "month",
        position: "middle_center",
        title: "Family Schedule",
        timeFormat: "h:mm A",
        dateFormat: "M/D",
        hideFooter:true,
        calendars: ["General", "Misty Shifts", "Sitter Schedule", "Nora", "Gracie"],
      },
      {
        name: "VIEW3",
        mode: "legend",
        position: "top_left",
        calendars: ["General", "Misty Shifts", "Sitter Schedule", "Nora", "Gracie"],
      },
      {
        name: "VIEW4",
        mode: "month",
        position: "lower_third",
        dateFormat: "M/D",
        hideFooter:true,
        timeFormat: "h:mm A",
        fromNow:1,
        positionOrder:2,
        calendars: ["General", "Misty Shifts", "Sitter Schedule", "Nora", "Gracie"],
      },
      {
        name: "VIEW2",
        mode: "upcoming",
        className: "cal_Upcoming",
        position: "top_left",
        timeFormat: "h:mm A",
        slotTitle: "Upcoming",
        hideOverflow:false,
        calendars: ["General", "Misty Shifts", "Sitter Schedule", "Nora", "Gracie"],
      },
          ],
          scenes: [
            {
              name: "Family Schedule",
            },
          ],
        },
      },
      
      posted in Troubleshooting
      D
      dpnguyen
    • MMM-CalendarExt2 Refresh Issue

      When doing a forced refresh, the calendar correctly displays as the following.
      Calendar correct.jpg
      But when it automatically refreshes, it merges the three calendars together as the follwing.
      Calendar error.jpg
      Each of the calendars are using the secret iCal URL from Google Calendar and the issue happens with all the views, not just the month View.

      posted in Troubleshooting
      D
      dpnguyen