• 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.

MMM-Carousel not displaying

Scheduled Pinned Locked Moved Forum
96 Posts 4 Posters 40.6k Views 4 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.
  • P Offline
    pastormingle
    last edited by sdetweil Dec 3, 2021, 8:38 PM Dec 3, 2021, 7:54 PM

    I’ve read through the documentation on the setting up MMM-Carousel but I can’t seem to get it to work…

     { 
                    module: 'MMM-Carousel',
                    config: {
                            transitionInterval: 10000,
                            ignoreModules: ['clock', 'alert'],
                            mode: 'slides',
                    slides: [
                        ['helloworld','calendar'],
                        ['weatherforecast', 'MMM-Trello', 'planetrise', 'newsfeed'],
                        ['MMM-fitbit']
                    ]
                  }
    },
    
    W 1 Reply Last reply Dec 4, 2021, 12:13 AM Reply Quote 0
    • W Offline
      Wenike @pastormingle
      last edited by Dec 4, 2021, 12:13 AM

      @pastormingle Do you have MMM-Fitbit, etc as modules on your mirror?

      P 1 Reply Last reply Dec 6, 2021, 1:15 AM Reply Quote 0
      • P Offline
        pastormingle @Wenike
        last edited by Dec 6, 2021, 1:15 AM

        @wenike I do not.

        W 1 Reply Last reply Dec 6, 2021, 2:41 AM Reply Quote 0
        • W Offline
          Wenike @pastormingle
          last edited by Dec 6, 2021, 2:41 AM

          @pastormingle Well, instead, I’d expect at least newsfeed, calendar, and helloworld (since that isn’t on the readme) to work as those are either default modules or one you likely added. But that lis:

                              ['helloworld','calendar'],
                              ['weatherforecast', 'MMM-Trello', 'planetrise', 'newsfeed'],
                              ['MMM-fitbit']
          

          Only works with the names of the modules you have, so if you don’t have MMM-fitbit installed, calling it is pointless and nothing would display.

          P 1 Reply Last reply Dec 6, 2021, 7:21 PM Reply Quote 0
          • P Offline
            pastormingle @Wenike
            last edited by sdetweil Dec 6, 2021, 7:41 PM Dec 6, 2021, 7:21 PM

            @wenike this is what i have in my config.js but it’s still not displaying.

                            { 
                                    module: 'MMM-Carousel',
                                    config: {
                                    transitionInterval: 10000,
                                    ignoreModules: ['clock', 'alert'],
                                    mode: 'slides',
                            slides: [
                                ['helloworld','calendar'],
                                ['weatherforecast','weather'],
                                ]}
                            },	 
            
            S 1 Reply Last reply Dec 6, 2021, 7:30 PM Reply Quote 0
            • S Offline
              sdetweil @pastormingle
              last edited by sdetweil Dec 6, 2021, 7:35 PM Dec 6, 2021, 7:30 PM

              @pastormingle do you have all those modules defined in your config.js?

              helloworld is not usually there
              weatherforecast isn’t used lately

              MagicMirror can only show or hide modules. it does not dynamically load them

              so whatever is enabled in config.js is used

              carousel, like pages, face reco , profile switcher, etc, just degolines and idea for showing selected modules content.

              pages and carousel ground them and display on demand (pages) or timed (carousel)
              or some other trigger (face reco content by discovered user)

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • P Offline
                pastormingle
                last edited by sdetweil Dec 6, 2021, 8:03 PM Dec 6, 2021, 7:52 PM

                Heres my config…
                133ed01a-ad59-4194-8d61-f8c7eaec8a3a-image.png

                 { 
                                        module: 'MMM-Carousel',
                                        config: {
                                        transitionInterval: 10000,
                                        ignoreModules: ['clock', 'alert'],
                                        mode: 'slides',
                                slides: [
                                    ['helloworld','calendar'],
                                    ['MMM-RAIN-MAP','weather'],
                                    ]}
                                },	 
                		{
                                	module: "weather",
                			position: "right_top",
                			header: "Weather Forecast",
                			config: {
                				weatherProvider: "openweathermap",
                				type: "forecast",
                				location: "Sumiton, US",
                                                units: "imperial",
                                                windUnits: "imperial",
                                                fade: "false",
                				//locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
                				apiKey: "2f0339fa6aa1b719849a3562a0c18d11"
                			}
                		},
                		{
                			module: "MMM-RAIN-MAP",
                			position: "center_bottom",
                                        header: "Sumiton Weather Radar", 
                			config: {
                				animationSpeed: 600,
                				displayClockSymbol: true,
                				displayTime: true,
                				extraDelayLastFrame: 2000,
                				height: "405px",
                				lat: 33.75563027313188,
                				lng: -87.02770795126425,
                				map: "OSM",
                				markers: [
                					{ lat: 33.7556305527313188, lng: -87.0277075595126425, color: "red" },
                				    { lat: 33.75563027313188, lng: -87.02770795126425, color: "blue" }
                				],
                				onlyOnRain: false,
                				opacity: 0.65,
                				timeFormat: 12,
                				updateIntervalInSeconds: 3000,
                				width: "415px",
                				zoom: 9.9,
                				zoomOutEach: 1,
                				zoomOutLevel: 2,
                                              	
                                       }
                			},
                			   {
                						module: "helloworld",
                						position: "top_left",	// This can be any of the regions.
                						config: {
                							// See 'Configuration options' for more information.
                							text: "Hello World 123345"
                			                                
                			                          }
                						},
                
                S 1 Reply Last reply Dec 6, 2021, 8:04 PM Reply Quote 0
                • S Offline
                  sdetweil @pastormingle
                  last edited by sdetweil Dec 6, 2021, 8:07 PM Dec 6, 2021, 8:04 PM

                  @pastormingle but u don’t have calendar, altho u specified on a slide

                  and without carousel, all those modules display content, right?

                  open the developers window, ctrl-shift-i on the keyboard, select the console tab and scroll up

                  u can also filter by module with unique part of name in filter field

                  car for example

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  P 1 Reply Last reply Dec 6, 2021, 8:37 PM Reply Quote 0
                  • P Offline
                    pastormingle @sdetweil
                    last edited by Dec 6, 2021, 8:37 PM

                    @sdetweil i have a calendar listed but i have multiple calendars.

                    d577000e-9e4e-4cd9-84b6-3180eb403492-image.png {
                    module: ‘MMM-Carousel’,
                    config: {
                    transitionInterval: 10000,
                    ignoreModules: [‘clock’, ‘alert’],
                    mode: ‘slides’,
                    slides: [
                    [‘helloworld’,‘calendar’],
                    [‘MMM-RAIN-MAP’,‘weather’],
                    ]}
                    },
                    {
                    module: “weather”,
                    position: “right_top”,
                    header: “Weather Forecast”,
                    config: {
                    weatherProvider: “openweathermap”,
                    type: “forecast”,
                    location: “Sumiton, US”,
                    units: “imperial”,
                    windUnits: “imperial”,
                    fade: “false”,
                    //locationID: “5128581”, //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
                    apiKey: “2f0339fa6aa1b719849a3562a0c18d11”
                    }
                    },
                    {
                    module: “MMM-RAIN-MAP”,
                    position: “center_bottom”,
                    header: “Sumiton Weather Radar”,
                    config: {
                    animationSpeed: 600,
                    displayClockSymbol: true,
                    displayTime: true,
                    extraDelayLastFrame: 2000,
                    height: “405px”,
                    lat: 33.75563027313188,
                    lng: -87.02770795126425,
                    map: “OSM”,
                    markers: [
                    { lat: 33.7556305527313188, lng: -87.0277075595126425, color: “red” },
                    { lat: 33.75563027313188, lng: -87.02770795126425, color: “blue” }
                    ],
                    onlyOnRain: false,
                    opacity: 0.65,
                    timeFormat: 12,
                    updateIntervalInSeconds: 3000,
                    width: “415px”,
                    zoom: 9.9,
                    zoomOutEach: 1,
                    zoomOutLevel: 2,

                                       }
                    		},
                    		   {
                    					module: "helloworld",
                    					position: "top_left",	// This can be any of the regions.
                    					config: {
                    						// See 'Configuration options' for more information.
                    						text: "Hello World 123345"
                    		                                
                    		                          }
                    					},
                    					{
                    								module: "calendar",
                    								colored: true,
                    					                        header: "Charlottes Calendar",
                    								position: "left",
                    					                        timeFormat: 'absolute',
                    					                        broadcastPastEvents: false,
                    					                        fade: false,
                    					                        showEnd: true,
                    					                        color: '#ffffff',
                    								config: {
                    					                              tableClass: "medium",
                    

                    calendars: [

                    mumblebajM 1 Reply Last reply Dec 7, 2021, 3:20 PM Reply Quote 0
                    • mumblebajM Offline
                      mumblebaj Module Developer @pastormingle
                      last edited by Dec 7, 2021, 3:20 PM

                      @pastormingle right_top and center_bottom are not positions on the mirror if I am not mistaken. See this link for more information regarding positions: https://forum.magicmirror.builders/topic/286/regions

                      Check out my modules at: https://github.com/mumblebaj?tab=repositories

                      P S 2 Replies Last reply Dec 7, 2021, 3:57 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 9
                      • 10
                      • 1 / 10
                      1 / 10
                      • First post
                        1/96
                        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