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

    Posts

    Recent Best Controversial
    • RE: Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.

      @sdetweil

      Everything seems to be working, but I am having one issue.

      I have repeating events, that are “All Day” events.

      Then the week of the event I change the event on the google calendar to be for a specific time of day.

      When I do this, I see both the repeating “All Day” and the Specific time events. (so double events on the same day) It also doesn’t read the new times that I have put into the google calendar.

      I don’t even know where to start to look for a solution for this.

      Attached is a screen shot of the calendar, and for example, on January 28, all 3 are duplicate entries.

      Duplicate and no Time entry on Calendar.png

      posted in Troubleshooting
      C
      cheminge
    • RE: Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.

      Ok,

      After some deep diving I realized I have broadcastPastEvents: true, in the wrong location in my config file.

      I moved it down to be inside the “config” location and it now works!

      Do I need to move the other items inside of the “config” location?

      modules: [
      	{module: "calendar",
      			fade: false,
                              flipDateHeaderTitle: true,
                              hideDuplicates: true,
                              coloredText: true,
                              coloredBackground: false,
                              coloredSymbol: true,
      			pastDaysCount: 90,
      			wrapEvents: true,
      			updateOnFetch: true,
      			colored: true,
      			config: {
      				broadcastPastEvents: true,
      				calendars: [
      					{
      						name: "**CalendarName**",
      						url: "https://**My Google Calendar Link**.ics",
      						symbol: "person-military-to-person",
      						className: "**ClassName**",
      						beforeDays: 30,
      						afterDays: 90,
      						maximumEntries: 100,
      						pastDaysCount: 40,
      						color: "green",
      						fetchInterval: 60000, //900000 is 15 minuets
      					},
      
      posted in Troubleshooting
      C
      cheminge
    • How can I get my Mirror (Screen) to have some seasonal characters?

      So, My girlfriend likes to have drawings of special seasonal characters overlay our manual calendar.

      I am looking for a fun little overlay of some events that will show on top of or beside my calendar display.

      I am currently using the MMM-CalendarExt3 where I have Icons for each special event, but it is only a small icon for that event.

      My questions is how can we get it like the snow flakes on top, and the snowman for winter like in the attached picture?

      Maybe a Leprechaun for St. Patrick day, hearts for valentines day, Easter bunny, Spring flowers, Turkey for Thanksgiving, Santa Clause or whatever.

      HandDrawnsample.jpg

      posted in Feature Requests
      C
      cheminge
    • RE: How do I hide the "CW 1" in the month calendar - MMM-CalendarExt3

      @chrisfr1976 said in How do I hide the "CW 1" in the month calendar - MMM-CalendarExt3:

      visibility: hidden

      Ok Great!!! I wasn’t sure if it was added to the config or the custom.css file.

      I have added the following to the custom.css file and it works great!!! Thank you for the quick response!

      .CX3 .cw  {
        visibility: hidden;
      }
      
      posted in Troubleshooting
      C
      cheminge
    • MMM-CalendarExt3 - more than 4 calendars?

      Hello,

      Is it possible to display more than 4 calendars at a time?

      I can see the first 4, but not all of the calendars.

      I am only displaying 4 calendars at the bottom, but I want to show all 7

      In my config file, I have:

      {module: "MMM-CalendarExt3",
      	pages: {"Main Calendar": "middle_center"},
      	position: "middle_center",
      	title: "Our Calendar",
      	instanceId: "Our_Calendar",
      	config: {
                          displayLegend: true,
      		calendarSet: ["Calendar 1", "Calendar 2", "Calendar 3", "Calendar 4", "Calendar 5", "Calendar 6","Calendar 7"],
      	}
      	},
      
      posted in Troubleshooting
      C
      cheminge
    • How do I hide the "CW 1" in the month calendar - MMM-CalendarExt3

      How do I turn off the week count in the first day of the week. I see them on all of the weeks, but I just want to hide it, or turn it off.

      posted in Troubleshooting
      C
      cheminge
    • RE: Version 2.30.0 Calendar fix for clipping broadcast events

      @sdetweil Where is the new script? I can’t find it in your posts…

      posted in Troubleshooting
      C
      cheminge
    • RE: Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.

      Thank you!!!

      I now have the color and symbol working!!!

      now, onto issue number 2. how do I get it to show more of the events?

      posted in Troubleshooting
      C
      cheminge
    • RE: Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.

      Yes, I am running the latest mmm-calendarext3, but I also ran the script as suggested. “Already up to date” comes up when I run the update for mmm-calendarext3.

      The EXT3 does show the color and symbol, but not the CustomEvents. Is this because EXT3 doesn’t support that function?

      I just did the broadcast clipping fix and I am still having the two problems.

      I have other pages that show other calendarEXT3, and they seem to be working, I just left them out as they are not having these issues, so I made a simple config file with just this calendar, and it is still the same result.

      posted in Troubleshooting
      C
      cheminge
    • Can't get mmm-calendarext3 - customEvents to display the changed events, or more than 9 days.

      Hello,

      I am working on my very first MagicMirror, and I am having a few issues with this 3rd party module.

      If anyone can help, I am having trouble with the customEvents section to show different color for different summary of a calendar event.

      I have 2 problems,
      1.) doesn’t change the color or symbol of the entry,

      2.) I can only see yesterday, and 8 days in the future. I wanted to be able to see the entire month if possible (from the 1st to the 31st) (or even the days that are currently showing on the one month screen).

      This is what I have in my config file:

      let config = {
      	address: "localhost",	// Address to listen on, can be:
      							// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      							// - another specific IPv4/6 to listen on a specific interface
      							// - "0.0.0.0", "::" to listen on any interface
      							// Default, when address config is left out or empty, is "localhost"
      	port: 8080,
      	basePath: "/",	// The URL path where MagicMirror² is hosted. If you are using a Reverse proxy
      									// you must set the sub path here. basePath must end with a /
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],	// Set [] to allow all IP addresses
      									// or add a specific IPv4 of 192.168.1.5 :
      									// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      									// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      									// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	useHttps: false,			// Support HTTPS or not, default "false" will use HTTP
      	httpsPrivateKey: "",	// HTTPS private key path, only require when useHttps is true
      	httpsCertificate: "",	// HTTPS Certificate path, only require when useHttps is true
      
      	language: "en",
      	locale: "en-US",
      	logLevel: ["ERROR", "WARN", "INFO", "LOG"], // Add "DEBUG",  for even more logging
      	timeFormat: 12,
      	units: "imperial",
      	showPeriod: "true",
      
      modules: [
      	{module: "calendar",
      			fade: false,
      //            maximumEntries: 10,
      //            maximumNumberOfDays: 3,
                  flipDateHeaderTitle: true,
      			broadcastPastEvents: true,
                  hideDuplicates: true,
                  coloredText: true,
                  coloredBackground: false,
                  coloredSymbol: true,
      			pastDaysCount: 35,
      			wrapEvents: true,
      			config: {
      				calendars: [
      					{
      						name: "Unit Days",
      						url: "https://calendar.google.com/calendar.... someurl,						
      						symbol: "fire-extinguisher",
      						className: "Unit Days",
      						beforeDays: 60,
      						afterDays: 180,
      						color: "orange",
      						fetchInterval: 60000, //900000 is 15 minuets
      					},
      				],
      				customEvents: [{keyword: "1 - Unit", symbol: "fire-extinguisher", color: "red"}, {keyword: "2 - Unit", symbol: "fire-extinguisher", color: "green"}, {keyword: "3 - Unit", symbol: "fire-extinguisher", color: "blue"}],
      			},
      		},
      	{module: "MMM-CalendarExt3",
      			pages: {"ATFD - Work Calendar": "middle_center"},
      			position: "middle_center",
      			config: {
      				mode: "month",
      				firstDayOfWeek: 0,
      				locale:'en-US',
      				headerTitleOptions: {month: 'long'},
      				fontSize: "20px",
      				eventHeight: "22px",
      				maxEventLines: "6",
      				useWeather: false,
      				displayLegend: true,
      				useIconify: true,
      				calendarSet: ["ATFD 3 Unit", "Unit Days"],
      			}
      		},	
      ]
      };
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") { module.exports = config; }
      
      posted in Troubleshooting
      C
      cheminge
    • 1 / 1