• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Help with calendar

Scheduled Pinned Locked Moved Show your Mirror
27 Posts 2 Posters 2.2k Views 2 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    sdetweil @gerbenz
    last edited by sdetweil Jan 13, 2025, 6:23 PM Jan 13, 2025, 6:21 PM

    @gerbenz no idea

    can you show the calendar configuration
    (xxx out the urls but don’ change anything else)

    you ARE just commenting out the calendar position line, right??
    mine looks like this

          {
            module: "calendar",
            classes: "page1",
            //position: "top_left",
            order: "*",
            index: 1,
            label: "instance 1",
            config: {
              broadcastPastEvents: true,
              fetchInterval: 120000,
              urgency: 0,
              dateFormat: "Do.MMM, HH:mm",
              fullDayEventDateFormat: "Do.MMM",
              getRelative: 0,
              hidePrivate: true,
              calendars: [
    

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    G 1 Reply Last reply Jan 13, 2025, 6:24 PM Reply Quote 0
    • G Offline
      gerbenz @sdetweil
      last edited by Jan 13, 2025, 6:24 PM

      @sdetweil

      	{
      		module: "MMM-CalendarExt3",
      		header: "Afspraken",
      		position: "middle_center",
      		config: {
                  mode: "week",
                  weeksInView: 1,
                  weekIndex: 0,
                  instanceId: "basicCalendar",
                  locale: 'nl-NL',
                  maxEventLines: 5,
                  firstDayOfWeek: 0,
      			startDayIndex: 0,
                  displayEndTime: true,
      	        calendarSet: null,
                  refreshInterval: 60000,
      		    fontsize: '30px',
      		    eventHeight: '30px',
      		    useWeather: false,
      		    skipPassedEventToday: true,
      
      			calendars: [
      				{
      					name: "werk stefnie",
      					color: "red",
      					url: "https://xxxx"
                      },
      				{
                          name: "Stefanie",
                          url: "webcal://p181-caldav.icloud.com/published/xxxx",
      				},
                      {
                          name: "Gezin",
                          url: "webcal://p181-caldav.icloud.com/published/xxxx",
      				},
                      {
                          name: "Amber",
                          url: "webcal://p181-caldav.icloud.com/published/xxxx",
      				},
                      {
                          name: "Luna",
                          url: "webcal://p181-caldav.icloud.com/published/xxxx",
      				},
                      {
                          name: "Gerben",
                          url: "webcal://p175-caldav.icloud.com/published/xxxx",
      				}
      
      
      
      			]
      		}
      	},
      
      S 1 Reply Last reply Jan 13, 2025, 6:28 PM Reply Quote 0
      • S Offline
        sdetweil @gerbenz
        last edited by sdetweil Jan 13, 2025, 6:29 PM Jan 13, 2025, 6:28 PM

        @gerbenz no, the default calendar, where the events come from

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        G 1 Reply Last reply Jan 13, 2025, 7:39 PM Reply Quote 0
        • G Offline
          gerbenz @sdetweil
          last edited by Jan 13, 2025, 7:39 PM

          @sdetweil

                  module: "calendar",
                  position: "middle_center",
                  config: {
          			coloredText: true,
                      broadcastPastEvents: false, // <= IMPORTANT to see past events
          			fetchInterval: 1000 * 60 * 1,
          			calendars: [
          				{
          					symbol: "werk stefnie",
          					url: "xxxxx"
                          },
          				{
                              symbol: "Stefanie",
                              url: "webcal://p181-caldav.icloud.com/published/xxxxx",
          				},
                          {
                              symbol: "Gezin",
                              url: "webcal://p181-caldav.icloud.com/published/xxxxx",
          				},
                          {
                              symbol: "Amber",
                              url: "webcal://p181-caldav.icloud.com/published/xxxx",
          				},
                          {
                              symbol: "Luna",
                              url: "webcal://p181-caldav.icloud.com/published/xxxxxx",
          				},
                          {
                              symbol: "Gerben",
                              url: "webcal://p175-caldav.icloud.com/published/xxxxx",
          				}
          
          
          
          			]
          		}
          	},
          
          S 1 Reply Last reply Jan 13, 2025, 7:45 PM Reply Quote 0
          • S Offline
            sdetweil @gerbenz
            last edited by Jan 13, 2025, 7:45 PM

            @gerbenz fetch every 60 seconds?

            might be a spammer

            how about try 5 mins
            and comment out the position

            Ext3 tries not to flash the screen w updates, you are probably running into that with so frequent updates and so many cals all at different times

            you can look at the pm2’log and see timestamps when events are sent from each cal

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            G 1 Reply Last reply Jan 13, 2025, 7:51 PM Reply Quote 0
            • G Offline
              gerbenz @sdetweil
              last edited by Jan 13, 2025, 7:51 PM

              @sdetweil

              updating the screen works good.
              all calendars are working.
              butt when i hide the standard calendar then te addon calandar lost the events and is empty

              S 1 Reply Last reply Jan 13, 2025, 7:55 PM Reply Quote 0
              • S Offline
                sdetweil @gerbenz
                last edited by Jan 13, 2025, 7:55 PM

                @gerbenz but thats not how it works! the calendar module just keeps sending even when no position is specified.

                i have both setup on my system and it works perfectly

                maybe 10releases ago modules w no
                position would not be run

                you should be able to see the broadcasts go out in the logs

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                S 1 Reply Last reply Jan 13, 2025, 7:57 PM Reply Quote 0
                • S Offline
                  sdetweil @sdetweil
                  last edited by Jan 13, 2025, 7:57 PM

                  @gerbenz show me the default calendar config whenExt3 is not working.

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  G 1 Reply Last reply Jan 13, 2025, 8:09 PM Reply Quote 0
                  • G Offline
                    gerbenz @sdetweil
                    last edited by Jan 13, 2025, 8:09 PM

                    @sdetweil

                    I changed nothing, only possition to unknown dor the standard calendar.

                    And then the addon calendar is show no events

                    S 1 Reply Last reply Jan 13, 2025, 8:22 PM Reply Quote 0
                    • S Offline
                      sdetweil @gerbenz
                      last edited by sdetweil Jan 13, 2025, 8:23 PM Jan 13, 2025, 8:22 PM

                      @gerbenz no, NOT unknown, thats invalid, module will not be loaded (there will be an error in the log about this)

                      just add
                      //

                      to the front of the line w position on it to comment it out

                      see mine that i posted earlier
                      https://forum.magicmirror.builders/post/123049

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      G 1 Reply Last reply Jan 13, 2025, 8:32 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 2 / 3
                      2 / 3
                      • First post
                        14/27
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy