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

    wperry530

    @wperry530

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

    wperry530 Unfollow Follow

    Latest posts made by wperry530

    • RE: Touchscreen Family Dashboard

      @tjat

      How did you get it to pull ten months? I tried using your modules, but I lost the ability to pull the pop up. I figured out how to modify the original module you forked from (if that’s the right terminology) to be able to register the key presses, but when I do, it does not progress to the next week.

      Any help is appreciated!

      posted in Show your Mirror
      W
      wperry530
    • RE: MMM-CalendarExt3

      @MMRIZE

      I tried a fourth uninstall / reinstall along with rebooting and it started to work. Thank you for the quick response!

      posted in Utilities
      W
      wperry530
    • RE: MMM-CalendarExt3

      Hello all!

      New to building out my magic mirror, and I’m running into a problem. If I understand correctly, this module would allow me to click an event from my google calendar and see the details. When I run the module, I am not getting that feature.

      Is it something I’m doing wrong or am I misunderstanding something? Below is my config, and I have installed the lastest version of Electron.

      {
        module: "calendar",
        header: "My Calendar",
        config: {
          calendars: [
            {
              symbol: "calendar",
              url: "**super secret**", // Replace with your actual Google Calendar ICS link
      		name:"wes",
      		color:"red"
            }
          ],
          maximumEntries: 10, // Number of events shown
          maximumNumberOfDays: 365, // Show events up to a year in advance
          displaySymbol: true, // Display the calendar symbol
          defaultSymbol: "calendar", // Default symbol if none specified for calendar
          // Other configuration options can be added here based on your preference
        }
      },
      {
        module: "MMM-CalendarExt3",
        position: "middle center",
        title: "",
        config: {
          mode: "week",
          instanceId: "basicCalendar",
          maxEventLines: 5,
          firstDayOfWeek: 0,
          calendarSet: ['wes']
        }
      
      posted in Utilities
      W
      wperry530