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.

    Calendar Module +1 day Error

    Scheduled Pinned Locked Moved Solved Troubleshooting
    14 Posts 7 Posters 10.3k Views 7 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.
    • N Offline
      Nilnik Project Sponsor
      last edited by

      Glad to help. Have a nice weekend

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

        Edit: I thought I had this problem but I put

        			timeFormat: 'absolute',
        			showEnd: false,
        

        in the wrong section. Once I put it in the config it worked.

        Thanks

        1 Reply Last reply Reply Quote 0
        • B Offline
          Blackmirror
          last edited by

          Hello,
          I have the same problem, but this fix will not solve my problem.

                        {
                                  module: 'calendar',
                                  classes: 'default everyone',
                               //   header: 'Termine',
                                  position: 'top_right',
                                  config: {
                                         calendars: [
                                                  {
                                                          url: 'https://calendar.google.com/calendar/XXX',
                                                          symbol: 'calender',
                                                          colored: true,
                                                          displayRepeatingCountTitle: 'Birthday',
                                                          timeFormat: 'absolute',
                                                          maximumEntries: 5,
                                                          dateFormat: 'DD MMM',
                                                          fullDayEventDateFormat:'DD MMM',
                                                          showEnd: false,
                                                          getRelative: 48,
                                                          urgency: 2
                                                  }
                                          ]
                                  }
                          },
          
          

          And the chance from the date will not work.

          The Date shows : Dec 8 and not 8 Dec.

          Thanks

          Blackmirror

          1 Reply Last reply Reply Quote 0
          • yawnsY Offline
            yawns Moderator
            last edited by

            It is a bit irritating where to put the config stuff. Some needs to go to config section directly, some need to go to the calendars section.

            Please try this:

            {
            	module: 'calendar',
            	classes: 'default everyone',
            	// header: 'Termine',
            	position: 'top_right',
            	config: {
            		displayRepeatingCountTitle: true,
            		timeFormat: 'absolute',
            		dateFormat: 'DD MMM',
            		fullDayEventDateFormat:'DD MMM',
            		showEnd: false,
            		getRelative: 48,
            		urgency: 2,
            		calendars: [
            			{
            				url: 'https://calendar.google.com/calendar/XXX',
            				symbol: 'calender',
            				colored: true,
            				maximumEntries: 5,
            				repeatingCountTitle: 'Birthday'
            			}
            			]
            	}
            },
            
            1 Reply Last reply Reply Quote 1
            • B Offline
              Blackmirror
              last edited by

              Thanks. It’s work fine

              1 Reply Last reply Reply Quote 0
              • J Offline
                Joerg633
                last edited by Joerg633

                Hello again,
                i still have the same problem with goggle calendar fullday entries.
                For example an entry for 2 fulldays (01/19-01/20) will be:
                ics data from the google calendar link:
                …
                DTSTART;VALUE=DATE:20190119
                DTEND;VALUE=DATE:20190121

                So the module shows
                0_1547387176634_cfe1d622-ea2e-4194-aaf1-f781ddc5a45d-grafik.png

                So i check all timezone / language etc. settings, in MM, modules section and raspi settings with no success.
                Calendar views in google calendar webpage, android calendar apps and also outlook 365 are correct (2 days not 3).

                my config

                		module: 'calendar',
                		header: 'Familienkalender',
                		position: 'bottom_left',
                		config: {
                			maximumEntries: 13,
                			displaySymbol: false,
                			maxTitleLength: 24,
                			fade: true,
                			fadePoint: 0.7,
                			fullDayEventDateFormat: 'Do MM k:mm',
                			timeFormat: 'absolute',
                			dateFormat: 'Do MMM k:mm',
                			urgency: 0,
                			colored: false,
                			coloredSymbolOnly: true,
                			calendars: [
                				{
                					url: 'https://calendar.google.com/calendar/ical/.../basic.ics'
                				},
                			],
                		}
                

                Thanks for any hint
                Joerg

                1 Reply Last reply Reply Quote 0
                • 1
                • 2
                • 1 / 2
                • 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