MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    UNSOLVED MMM-CalendarExt Multiple Calendars

    Troubleshooting
    2
    4
    221
    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.
    • P
      pastormingle last edited by

      Re: MMM-CalendarExtI am new to CalendarExt and need a little guidance concerning multiple calendars… I need to have 3 additional calendars add to the view but not sure how to do that and also not able to find how to change the time from 24 to 12… any help please?

      BKeyport 1 Reply Last reply Reply Quote 0
      • BKeyport
        BKeyport Module Developer @pastormingle last edited by BKeyport

        @pastormingle I’d first switch to CalendarExt2. It’s the newer of the two, and more extensive. However, some of this below may work with the original.

        This is an example of how the config should be for multiple calendars. Expand as needed.

        
        			module: "MMM-CalendarExt2", // https://github.com/MMM-CalendarExt2/MMM-CalendarExt2
        			config: {
        				calendars : [
        					{
        						url: "URL1",
        						name: "Calendar 1", // Optional, Recommended
        						// Other Options
        					},
        					{
        						url: "URL2",
        						name: "Calendar 2",
        						// Other Options
        					// etc
        				],
        				views: [
        					{
        						mode: // Pick Mode
        						position: // Pick Position
        						name: // Name Calendar Group 
        						calendars: ["Calendar 1". "Calendar 2"],
        						// other options
        					},
        					// OR, if you'd like the calendars independant from each other: 
        					{
        						mode: // Pick Mode
        						position: // Pick Position
        						name: // Name Calendar Group
        						calendars: ["Calendar 1"],
        						// Other Options
        					},
        					{
        						mode: // Pick Mode
        						position: // Pick Position
        						name: // Name Calendar Group
        						calendars: ["Calendar 2"],
        						// Other Options
        					},
        				],
        				scenes: [
        					{
        						name: "DEFAULT",
        					},
        				],
        			},
        		},
        

        The "E" in "Javascript" stands for "Easy"

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

          @bkeyport thanks so much for your help. I did install the calendatExt2 but has several issues as my current config wouldn’t work. But the calendarext did work
          With the added calendars. I still didn’t find an option to change from 24 time to 12. If you can point me in the right direction please.

          BKeyport 1 Reply Last reply Reply Quote 0
          • BKeyport
            BKeyport Module Developer @pastormingle last edited by

            @pastormingle I believe the time would be set by the master time format option.

            see: https://docs.magicmirror.builders/getting-started/configuration.html#general

            The "E" in "Javascript" stands for "Easy"

            1 Reply Last reply Reply Quote 0
            • 1 / 1
            • First post
              Last post
            Enjoying MagicMirror? Please consider a donation!
            MagicMirror created by Michael Teeuw.
            Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
            This forum is using NodeBB as its core | Contributors
            Contact | Privacy Policy