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.

    MMM-CalendarExt3

    Scheduled Pinned Locked Moved Utilities
    689 Posts 82 Posters 2.8m Views 86 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.
    • M Offline
      MMRIZE @pastormingle
      last edited by

      @pastormingle said in MMM-CalendarExt3:

      @MMRIZE Instead of the month i only one week or 7 days at all time displayed. Once the day has passed it should drop off.

      weeksInView:1 would one-week view of CX3. But what you really want was days view of CX2, and I have dropped that view from CX3 (Because the new CalendarExt3Agenda will get the role alternately, And I think it is better organized and easy to get info.)

      6408e54f-b3ea-410c-a0d1-38f0d5aabbe0-image.png

      But if you prefer old days view style, just use legacy CX2 instead.

      P 1 Reply Last reply Reply Quote 0
      • P Offline
        pastormingle @MMRIZE
        last edited by sdetweil

        @MMRIZE When i put in for 3 calendar it’s only displaying the one for google1 account.

        {
        	module: "calendar",
        	header: "calendar source",
        	position: "top_left", // <-- Remove this line to hide this module.
        	config: {
        		broadcastPastEvents: true,
        		maximumNumberOfDays: 45,
        		calendars: [
        			{
        				symbol: "calendar-check",
        				url:"outlook",
        				color: "red",
        			},
        			{
        				symbol: "car-side",
        				url:"google1",
        				color: "orange",
        			},
        			{
        				symbol: "recycle",
        				url:"google2",
        				color: "green",
        			},
        		]
        	}
        },
           {
        	module: "MMM-CalendarExt3",
        	position: "bottom_bar",
        	header: "My Calendar for 3 weeks",
        	config: {
        		mode: 'week',
        	}
        
        M P 2 Replies Last reply Reply Quote 0
        • M Offline
          MMRIZE @pastormingle
          last edited by

          @pastormingle
          Did you test with my example URL or yours?
          I need the real URL of calendar feeds to diagnose. send URLs to my email. (eouia0819@gmail.com)

          P 1 Reply Last reply Reply Quote 0
          • P Offline
            pastormingle @MMRIZE
            last edited by

            @MMRIZE should be in your email box… thanks.

            M 1 Reply Last reply Reply Quote 0
            • M Offline
              MMRIZE @pastormingle
              last edited by

              @pastormingle replied. From now on, let’s discuss this with email. I’ll leave the summary here later.

              1 Reply Last reply Reply Quote 0
              • P Offline
                pastormingle @pastormingle
                last edited by

                @pastormingle Seems that when i loaded the outlook.ics it takes it about 10 min loaded when add addiational calendars. I have not errors in the log but it just slow to load when you restart if you have other calendars. What could it be? Do you have a fix for this?

                M 1 Reply Last reply Reply Quote 0
                • M Offline
                  MMRIZE @pastormingle
                  last edited by

                  @pastormingle
                  Is fetching slow? Or is drawing slow? Different reason, different solution.
                  If fetching is slow; That is not my bad. Adjust interval of fetching calendar in calendar module.
                  If drawing is slow(after fetched normally); Adjust waitFetch and refreshInterval. This thing is not “FIX”, just “configuration”

                  However more frequent Fetching would give the ics host server more traffic.
                  10mins late change, I think it’s sufficiently affordable. Your mirror is not the train time signboard of the station.

                  P 1 Reply Last reply Reply Quote 0
                  • P Offline
                    pastormingle @MMRIZE
                    last edited by

                    @MMRIZE Not sure which is just doesn’t work till after 10 min passes… If i only put the outlook calendar in it’s instentances. where do you abjust the fetch?

                    1 Reply Last reply Reply Quote 0
                    • W Offline
                      whimsicality @MMRIZE
                      last edited by

                      @MMRIZE thank you so much for this! I successfully hid the times with the CSS you gave. But when I input the eventtransformer code, it causes NaN:NaN to show before all the events. Do you have any insight?
                      )

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        MMRIZE @whimsicality
                        last edited by

                        @whimsicality
                        Show me what you did.

                        W 1 Reply Last reply Reply Quote 0
                        • W Offline
                          whimsicality @MMRIZE
                          last edited by

                          @MMRIZE
                          IMG_3610 Large.jpeg

                          IMG_3611 Large.jpeg

                          IMG_3609 Large.jpeg

                          M 1 Reply Last reply Reply Quote 0
                          • M Offline
                            MMRIZE @whimsicality
                            last edited by

                            @whimsicality
                            Hmmm. Works for me.
                            713414d0-f4b4-4da2-90f5-f478241914ff-image.png

                            Maybe your ev.startDate would not be a valid format. (Are you using default calendar module? Or others? - like MMM-GoogleCalendar or something)
                            You can check with this code.

                            eventTransformer: (ev) => {
                            	if (!ev.isFullday) {
                            		console.log("Check", ev.title, ev.startDate)
                            		let t = new Date(ev.startDate)
                            		let time = (t.getMinutes() == 0) ? String(t.getHours()) : String(t.getHours() + ":" + t.getMinutes())
                            		ev.title = `<span class="myTime">${time}</span> ${ev.title}`
                            	}
                            	return ev
                            }
                            

                            It will show additional info in your dev-console.
                            17daf202-0747-4367-9984-9c4b202984cd-image.png

                            1 Reply Last reply Reply Quote 0
                            • F Offline
                              furry131
                              last edited by

                              Hello Good Sirs,

                              I have been banging my head against the wall for 2 days on this and cannot get my calendar to show up with any of the dates. I went back and read a few days back and saw the basic set up you did for fun holidays and tried to replicate it with the same code but I get the same results.

                              I can see my default running on the right side like it is supposed to. But the C3 loads on the bottom but doesn’t give any cells. (see screenshot) Just the header. I deleted the Module and reinstalled same thing. So I am assuming it is something to do with my config.

                              Any help is appreciated.

                              2023-08-18-132341_1920x1080_scrot.png

                               {
                              			disabled:false,
                              			module: "calendar",
                              			header: "Furlong Calendar",
                              			position: "top_right",
                              			config: {
                              				broadcastPastEvents: true, // <= IMPORTANT to see past events
                              				maximumNumberOfDays: 45,
                              				calendars: [
                              					{
                              						fetchInterval: 7 * 24 * 60 * 60 * 1000,
                              						symbol: "calendar-check",
                              						name: 'us_holiday',
                              						url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics",
                              						color: "rgb(235,20,16)", // <= RECOMMENDED to assign color
                              					},
                              									{
                              						name: "Furlong Family",
                                                                              url: "webcal://p132-caldav.icloud.com/published/2/MTYxOTc4Nzc3MTYxOTc4N0UtCeAoDU9jR_G3F17Eh3VRz9FwPUKI9GaiJPDRlUx9w0xueLmCtnzAAks9h8v7F0TiHM6R7cKBwKH_2PXqGZ0",
                                                                              //color: "rgb(235,20,16)"
                              					},
                              									{
                              					
                              						name: "Soccer",
                                                                              url: "https://api.playmetrics.com/calendar/304/team/111688-1156AA5E.ics",
                                                                              // color: "rgb(235,20,16)"
                              					},
                              					
                              					
                              				]
                              			}
                              		},
                                      
                              
                              {
                              	module: "MMM-CalendarExt3",
                              	position: "bottom_bar",
                              	header: "My Calendar for 3 weeks",
                              	config: {
                              		mode: 'week',
                              	}
                              },
                              S 1 Reply Last reply Reply Quote 0
                              • S Do not disturb
                                sdetweil @furry131
                                last edited by

                                @furry131 quick test… use the calendar url from the commandline

                                change webcal to https in the url

                                curl -sL the_url >somefile.ics
                                

                                see if it downloads the file… that is effectively all we do… download the file(it is text) and then process it…

                                i bet there is an error reported in the place u start MM (npm start)

                                Sam

                                How to add modules

                                learning how to use browser developers window for css changes

                                F 1 Reply Last reply Reply Quote 0
                                • F Offline
                                  furry131 @sdetweil
                                  last edited by

                                  @sdetweil

                                  OK I changed the webcal to https and ran the script on my terminal. Nothing happens. I ran this"

                                  curl -sL https:://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics

                                  "

                                  When I run npm start, I can see some errors, but it looks like some calendar events are broadcasting.

                                  Ready to go! Please point your browser to: http://0.0.0.0:8080
                                  Starting chromium browser now, have patience, it takes a minute
                                  [18.08.2023 13:56.23.685] [ERROR] ERROR! Could not validate main module js file.
                                  [18.08.2023 13:56.23.688] [ERROR] ReferenceError: HTMLElement is not defined
                                      at Object.<anonymous> (/home/johnf/MagicMirror/modules/MMM-CalendarExt3/MMM-CalendarExt3.js:1:26)
                                      at Module._compile (node:internal/modules/cjs/loader:1101:14)
                                      at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
                                      at Module.load (node:internal/modules/cjs/loader:981:32)
                                      at Function.Module._load (node:internal/modules/cjs/loader:822:12)
                                      at Module.require (node:internal/modules/cjs/loader:1005:19)
                                      at require (node:internal/modules/cjs/helpers:102:18)
                                      at Class.loadModuleDefaultConfig (/home/johnf/MagicMirror/modules/MMM-Remote-Control/node_helper.js:313:30)
                                      at /home/johnf/MagicMirror/modules/MMM-Remote-Control/node_helper.js:267:26
                                      at FSReqCallback.oncomplete (node:fs:199:5)
                                  [18.08.2023 13:56.24.068] [ERROR] ERROR! Could not find main module js file for calendars
                                  [18.08.2023 13:56.27.820] [LOG]   Create new calendarfetcher for url: https://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics - Interval: 3600000
                                  [18.08.2023 13:56.27.871] [LOG]   Create new calendarfetcher for url: https://p132-caldav.icloud.com/published/2/MTYxOTc4Nzc3MTYxOTc4N0UtCeAoDU9jR_G3F17Eh3VRz9FwPUKI9GaiJPDRlUx9w0xueLmCtnzAAks9h8v7F0TiHM6R7cKBwKH_2PXqGZ0 - Interval: 3600000
                                  [18.08.2023 13:56.27.876] [LOG]   Create new calendarfetcher for url: https://api.playmetrics.com/calendar/304/team/111688-1156AA5E.ics - Interval: 3600000
                                  [18.08.2023 13:56.27.939] [INFO]  Checking git for module: MMM-OpenmapWeather
                                  [18.08.2023 13:56.27.992] [INFO]  Checking git for module: MMM-CalendarExt3
                                  [18.08.2023 13:56.28.009] [INFO]  Checking git for module: MMM-Remote-Control
                                  [18.08.2023 13:56.28.043] [INFO]  Checking git for module: MagicMirror
                                  [18.08.2023 13:56.28.237] [INFO]  Calendar-Fetcher: Broadcasting 2 events.
                                  [18.08.2023 13:56.28.426] [INFO]  Calendar-Fetcher: Broadcasting 31 events.
                                  [18.08.2023 13:56.32.357] [ERROR] Moment Timezone has no data for GMT-0400. See http://momentjs.com/timezone/docs/#/data-loading/.
                                  [18.08.2023 13:56.32.358] [ERROR] Moment Timezone has no data for GMT-0400. See http://momentjs.com/timezone/docs/#/data-loading/.
                                  [18.08.2023 13:56.32.358] [ERROR] Moment Timezone has no data for GMT-0400. See http://momentjs.com/timezone/docs/#/data-loading/.
                                  [18.08.2023 13:56.32.414] [INFO]  Calendar-Fetcher: Broadcasting 65 events.
                                  
                                  
                                  S 1 Reply Last reply Reply Quote 0
                                  • S Do not disturb
                                    sdetweil @furry131
                                    last edited by

                                    @furry131 remove the double :: from the url, only one

                                    https://

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    F 1 Reply Last reply Reply Quote 0
                                    • F Offline
                                      furry131 @sdetweil
                                      last edited by

                                      @sdetweil

                                      Ok that fat finger was part of the download issue!!!

                                      I do see it downloading.

                                      here is the first date output

                                      BEGIN:VCALENDAR
                                      VERSION:2.0
                                      PRODID:-//Calendar Labs//Calendar 1.0//EN
                                      CALSCALE:GREGORIAN
                                      METHOD:PUBLISH
                                      X-WR-CALNAME:US Holidays
                                      X-WR-TIMEZONE:Etc/GMT
                                      BEGIN:VEVENT
                                      SUMMARY:New Year's Day
                                      DTSTART;VALUE=DATE:20230101
                                      DTEND;VALUE=DATE:20230101
                                      LOCATION:United States
                                      DESCRIPTION:Visit https://calendarlabs.com/holidays/us/new-years-day.php to know more about New Year's Day. \n\n Like us on Facebook: http://fb.com/calendarlabs to get updates
                                      UID:6496c24c7c2eb1687601740@calendarlabs.com
                                      DTSTAMP:20230624T101540Z
                                      STATUS:CONFIRMED
                                      TRANSP:TRANSPARENT
                                      SEQUENCE:0
                                      END:VEVENT
                                      BEGIN:VEVENT
                                      SUMMARY:New Year's Day Holiday
                                      DTSTART;VALUE=DATE:20230102
                                      DTEND;VALUE=DATE:20230102
                                      LOCATION:United States
                                      DESCRIPTION:Visit https://calendarlabs.com/holidays/us/new-years-day.php to know more about New Year's Day Holiday. \n\n Like us on Facebook: http://fb.com/calendarlabs to get updates
                                      UID:6496c24c7c3541687601740@calendarlabs.com
                                      DTSTAMP:20230624T101540Z
                                      STATUS:CONFIRMED
                                      TRANSP:TRANSPARENT
                                      SEQUENCE:0
                                      END:VEVENT
                                      
                                      
                                      S 1 Reply Last reply Reply Quote 0
                                      • S Do not disturb
                                        sdetweil @furry131
                                        last edited by

                                        @furry131 yeh, no holiday calendar event in the next 10 days, so … nothing of course…

                                        try the other calendar urls

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        F 2 Replies Last reply Reply Quote 0
                                        • F Offline
                                          furry131 @sdetweil
                                          last edited by

                                          @sdetweil

                                          soccer is showing up fine. I see old plus some coming up. The last 3 events are for tomorrow and Sunday.

                                          I will post results from my family calendar in another post not to mix up the data.

                                          johnf@mm:~/MagicMirror/config $ curl -sL https://api.playmetrics.com/calendar/304/team/111688-1156AA5E.ics
                                          BEGIN:VCALENDAR
                                          CALSCAL:GREGORIAN
                                          METHOD:PUBLISH
                                          PRODID:-//Playmetrics//EN
                                          VERSION:2.0
                                          X-PUBLISHED-TTL:PT1H
                                          X-WR-CALDESC:Calendar for the North 14B Select III soccer team
                                          X-WR-CALNAME:North 14B Select III
                                          X-WR-RELCALID:Team_111688_0@production
                                          BEGIN:VEVENT
                                          DESCRIPTION:For the first 5-10 minutes with Athletes and Parents. Then a
                                           little time just with parents.
                                          DTEND:20230727T003000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230727T000000Z
                                          LAST-MODIFIED:20230726T152913Z
                                          LOCATION:https://us04web.zoom.us/j/78643862130?pwd=a5pgPguIdPvNsxTbU5LfLH
                                           allqMLca.1
                                          SEQUENCE:1690385353
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Coach Nando Rapids Kick-Off
                                          UID:GenericCalendarEvent_535357
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Westfield Village Park #4 East 7v7 North Half #4 East 7v7 Nor
                                           th Half
                                          DTEND:20230808T020000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230808T003000Z
                                          LAST-MODIFIED:20230731T171050Z
                                          LOCATION:11550 Wolff St\, Westminster\, CO 80031\, USA
                                          SEQUENCE:1690823450
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Practice
                                          UID:Practice_2422486
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Westfield Village Park #4 East 7v7 North Half #4 East 7v7 Nor
                                           th Half
                                          DTEND:20230810T003000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230809T230000Z
                                          LAST-MODIFIED:20230809T151631Z
                                          LOCATION:11550 Wolff St\, Westminster\, CO 80031\, USA
                                          SEQUENCE:1691594191
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Practice
                                          UID:Practice_2422611
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Westfield Village Park #4 East 7v7 South Half #4 East 7v7 Sou
                                           th Half
                                          DTEND:20230811T003000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230810T230000Z
                                          LAST-MODIFIED:20230809T151738Z
                                          LOCATION:11550 Wolff St\, Westminster\, CO 80031\, USA
                                          SEQUENCE:1691594258
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Practice
                                          UID:Practice_2422701
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:FC 14B Select I @ North 14B Select III\nArrive by 3:29 PM\nGa
                                           tes North Soccer Complex 11 A
                                          DTEND:20230812T225000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230812T220000Z
                                          LAST-MODIFIED:00010101T000000Z
                                          LOCATION:6743 S Chambers Way\, Aurora\, CO 80015\, USA
                                          SEQUENCE:0
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Game
                                          UID:Game_873812
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:North 14B Select III @ CR 14B Select 4\nArrive by 5:29 PM\nGa
                                           tes North Soccer Complex 11 A
                                          DTEND:20230813T005000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230813T000000Z
                                          LAST-MODIFIED:00010101T000000Z
                                          LOCATION:6743 S Chambers Way\, Aurora\, CO 80015\, USA
                                          SEQUENCE:0
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Game
                                          UID:Game_873811
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Westfield Village Park #4 East 7v7 North Half #4 East 7v7 Nor
                                           th Half
                                          DTEND:20230815T020000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230815T003000Z
                                          LAST-MODIFIED:20230809T151829Z
                                          LOCATION:11550 Wolff St\, Westminster\, CO 80031\, USA
                                          SEQUENCE:1691594309
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Practice
                                          UID:Practice_2422487
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Westfield Village Park #4 East 7v7 North Half #4 East 7v7 Nor
                                           th Half
                                          DTEND:20230817T003000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230816T230000Z
                                          LAST-MODIFIED:20230815T154145Z
                                          LOCATION:11550 Wolff St\, Westminster\, CO 80031\, USA
                                          SEQUENCE:1692114105
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Practice
                                          UID:Practice_2422612
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Westfield Village Park #4 East 7v7 South Half #4 East 7v7 Sou
                                           th Half
                                          DTEND:20230818T003000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230817T230000Z
                                          LAST-MODIFIED:20230814T160030Z
                                          LOCATION:11550 Wolff St\, Westminster\, CO 80031\, USA
                                          SEQUENCE:1692028830
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Practice
                                          UID:Practice_2422702
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:North 14B Select III @ Colorado Rapids Youth Soccer Club CR 1
                                           4B Select III (Rapids Classic Game #1)\nArrive by 10:30 AM\nUniform: Whi
                                           te Jersey with Black Shorts\nGates North Soccer Complex 9 B
                                          DTEND:20230819T190000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230819T170000Z
                                          LAST-MODIFIED:00010101T000000Z
                                          LOCATION:6743 S Chambers Way\, Aurora\, CO 80015\, USA
                                          SEQUENCE:0
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Game
                                          UID:Game_871031
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Colorado Rapids Youth Soccer Club Central 14B Select III @ No
                                           rth 14B Select III (Rapids Classic Game #2)\nArrive by 3:30 PM\nUniform:
                                            Maroon Jersey with Black Shorts\nGates North Soccer Complex 13B
                                          DTEND:20230820T000000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230819T220000Z
                                          LAST-MODIFIED:00010101T000000Z
                                          LOCATION:6743 S Chambers Way\, Aurora\, CO 80015\, USA
                                          SEQUENCE:0
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Game
                                          UID:Game_871034
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          BEGIN:VEVENT
                                          DESCRIPTION:Colorado Rapids Youth Soccer Club South 14B Select V @ North
                                           14B Select III (Rapids Classic Game #3)\nArrive by 12:30 PM\nUniform: Ma
                                           roon Jersey with Black Shorts\nGates North Soccer Complex 13B
                                          DTEND:20230820T210000Z
                                          DTSTAMP:20230816T212112Z
                                          DTSTART:20230820T190000Z
                                          LAST-MODIFIED:00010101T000000Z
                                          LOCATION:6743 S Chambers Way\, Aurora\, CO 80015\, USA
                                          SEQUENCE:0
                                          STATUS:CONFIRMED
                                          SUMMARY:North 14B Select III - Game
                                          UID:Game_871041
                                          URL:https://playmetrics.com
                                          END:VEVENT
                                          
                                          
                                          1 Reply Last reply Reply Quote 0
                                          • F Offline
                                            furry131 @sdetweil
                                            last edited by furry131

                                            @sdetweil

                                            OK here is the ios calendar.

                                            I see lots of old stuff on there. but I for certain see something starting on 9/3 and 9/8. So I assume it is pulling the correct calendar down

                                            ###the following is from the beginning of the logs###
                                            BEGIN:VCALENDAR
                                            VERSION:2.0
                                            X-WR-CALNAME:Family
                                            X-APPLE-CALENDAR-COLOR:#ffcc00
                                            
                                            ####below here is from further down the log showing an upcoming event
                                            
                                            BEGIN:VEVENT
                                            CREATED:20230816T132451Z
                                            DTEND;TZID=America/Denver:20230903T140000
                                            DTSTAMP:20230816T132451Z
                                            DTSTART;TZID=America/Denver:20230903T100000
                                            LAST-MODIFIED:20230816T132451Z
                                            LOCATION:Walmart Supercenter\n200 W 136th Ave\, Westminster\, CO  80234\,
                                              United States
                                            SEQUENCE:0
                                            SUMMARY:Scouts popcorn
                                            UID:4B479445-47F6-4EE4-B4E4-2E45BE45949E
                                            URL;VALUE=URI:
                                            X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS="200 W 136th Ave, Westmin
                                             ster, CO  80234, United States";X-APPLE-MAPKIT-HANDLE=CAES7QIIrk0Qm/XnhY
                                             +ewPzYARoSCS9szVZe+ENAEZzB3y9mP1rAIqEBCg1Vbml0ZWQgU3RhdGVzEgJVUxoIQ29sb3
                                             JhZG8iAkNPKgxBZGFtcyBDb3VudHkyC1dlc3RtaW5zdGVyOgU4MDIzNEIbSW50ZXJjaGFuZ2
                                             UgQnVzaW5lc3MgQ2VudGVyUgtXIDEzNnRoIEF2ZVoDMjAwYg8yMDAgVyAxMzZ0aCBBdmWKAR
                                             tJbnRlcmNoYW5nZSBCdXNpbmVzcyBDZW50ZXIqE1dhbG1hcnQgU3VwZXJjZW50ZXIyDzIwMC
                                             BXIDEzNnRoIEF2ZTIWV2VzdG1pbnN0ZXIsIENPICA4MDIzNDINVW5pdGVkIFN0YXRlczgvUA
                                             FaVAolCJv154WPnsD82AESEgkvbM1WXvhDQBGcwd8vZj9awBiuTZADAaIfKgib9eeFj57A/N
                                             gBGh0KE1dhbG1hcnQgU3VwZXJjZW50ZXIQACoCZW5AAA==;X-APPLE-RADIUS=298.659415
                                             5911811;X-TITLE=Walmart Supercenter:geo:39.940379,-104.990612
                                            END:VEVENT
                                            
                                            
                                            
                                            
                                            
                                            BEGIN:VEVENT
                                            CREATED:20230816T131714Z
                                            DESCRIPTION:Oakhurst Park\n9255 Ammons St.\nWestminster\, CO 80021
                                            DTEND;TZID=America/Denver:20230908T184500
                                            DTSTAMP:20230816T131929Z
                                            DTSTART;TZID=America/Denver:20230908T171500
                                            LAST-MODIFIED:20230816T131928Z
                                            LOCATION:9255 Ammons Cir\nWestminster\, CO\, United States
                                            RELATED-TO;RELTYPE=X-CALENDARSERVER-RECURRENCE-SET:9C8B1CA1-25F8-4DFC-AE4
                                             2-ACCA1C4C81FF
                                            RRULE:FREQ=WEEKLY;UNTIL=20230929T231500Z
                                            SEQUENCE:0
                                            SUMMARY:Corvers footwork camp
                                            UID:FA306006-B4CD-4781-8228-BD46FDE21ACE
                                            URL;VALUE=URI:
                                            X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS="Westminster, CO, United
                                             States";X-APPLE-MAPKIT-HANDLE=CAESywEaEgn40spzM/BDQBFxPtBlxUVawCJqCg1Vbm
                                             l0ZWQgU3RhdGVzEgJVUxoIQ29sb3JhZG8iAkNPKhBKZWZmZXJzb24gQ291bnR5MgtXZXN0bW
                                             luc3RlcjoFODAwMjFSCkFtbW9ucyBDaXJaBDkyNTViDzkyNTUgQW1tb25zIENpcioPOTI1NS
                                             BBbW1vbnMgQ2lyMg85MjU1IEFtbW9ucyBDaXIyFldlc3RtaW5zdGVyLCBDTyAgODAwMjEyDV
                                             VuaXRlZCBTdGF0ZXNQAQ==;X-APPLE-RADIUS=0;X-APPLE-REFERENCEFRAME=0;X-TITLE
                                             =9255 Ammons Cir:geo:39.876570,-105.090173
                                            END:VEVENT
                                            BEGIN:VEVENT
                                            
                                            
                                            S 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 34
                                            • 35
                                            • 2 / 35
                                            • First post
                                              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