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

    jesseyz

    @jesseyz

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

    jesseyz Unfollow Follow

    Latest posts made by jesseyz

    • RE: MMM-CalendarEXT3 and Default Calendar Display

      @sdetweil this was the key, I wasn’t aware having multiple instances was ok. I chose 2 instances, 1 hidden position and 1 not. This was successful!

      Thank you for all of your help and for your setup/update scripts. I use a Pi Zero W2 so making config changes and then testing can be somewhat of a pain with the slow refresh/reboot time.

      One day I’ll bite the bullet and get a fancier Pi but this one does the trick for the time being!

      posted in Troubleshooting
      J
      jesseyz
    • RE: MMM-CalendarEXT3 and Default Calendar Display

      @sdetweil Good morning.

      This solution did not work for me. I would like to continue to use the default calendar, but only show 2 of the 4 calendars I have plugged into it.

      I initially tried to give each calendar a different position then comment out the calendars I didn’t want to show but it ended up hiding all default calendars. My current temporary solution is to have everything show on all calendars since the CalendarEXT3 being fully populated is most important. The default calendar showing 2 of the 4 calendars is the “nice to have.”

      Here’s my configuration for these modules (with personal info redacted):

      {
      			module: "calendar",
      			header: "Family",
      			position: "bottom_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check",
      						maximumEntries: "30",
      						url: "Family calendar URL"
      					},
      					{
      						symbol: "dumbbell",
      						url: "Gym Schedule URL"
      						//position: "bottom_right"
      					},
      					{
      						symbol: "user-nurse",
      						url: "Work schedule URL"
      
      						//position: "bottom_right"
      					},
      					{
      						url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"
      					}
      				]
      			}
      		},
      		{
      			module: 'MMM-CalendarExt3',
      			position: "upper_third",
      			title: "Family Calendar",
      			config: {
      				mode: "month",
      				fontSize: '22px',
      				eventTransformer: (event) => {
      					if (event.title.includes("Dad")) {
      						event.color = "blue";
      					} else if (event.title.includes("Mom")) {
      						event.color = "yellow";
      					} else if (event.title.includes("Kid #1")) {
      						event.color = "red";
      					} else if (event.title.includes("Kid #2")) {
      						event.color = "green";
      					}
      					
      					return event;
      				}
      
      posted in Troubleshooting
      J
      jesseyz
    • RE: MMM-CalendarEXT3 and Default Calendar Display

      @sdetweil excellent, I’ll give it a shot. Thank you

      posted in Troubleshooting
      J
      jesseyz
    • MMM-CalendarEXT3 and Default Calendar Display

      Good morning,

      Hopefully a simple question. I use both MMM-CalendarEXT3 and default Calendar module displaying on my MagicMirror. I know the MMM-CalendarEXT3 config goes based off of the default Calendar module config. Is it possible to show a calendar with events on the MMM-CalendarEXT3 module but not have the events show up in the default Calendar module?

      I want these events to show in the calendar, but not on the nifty “upcoming to-do list” type of view that the default Calendar module provides.

      Thanks!

      posted in Troubleshooting
      J
      jesseyz