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.

    Can't get MMM-Carousel to work with MMM-BackgroundSlideshow

    Scheduled Pinned Locked Moved Solved Troubleshooting
    3 Posts 2 Posters 182 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.
    • J Offline
      jimbocz
      last edited by sdetweil

      I’m trying to use MMM-BackgroundSlideshow to show a full size background picture and MMM-Carousel to show the clock and weather intermittently. The background image works great but the Carousel just isn’t working. The clock and weather are on all the time.

      Can someone please take a look at my config and help me figure out what is going on?

      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
                  module: 'MMM-Carousel',
                  config: {
                      transitionInterval: 10000,
                      ignoreModules: ['MMM-BackgroundSlideshow'],
                      mode: 'global'                
                  }
              },
      	 {
          module: 'MMM-BackgroundSlideshow',
          position: 'fullscreen_below',
          config: {
            imagePaths: ['modules/MMM-BackgroundSlideshow/exampleImages/'],
            transitionImages: false,
            randomizeImageOrder: true,
            slideshowSpeed: 30000,
            resizeImages: true,
            maxWidth: 1024,
            maxHeight: 600,
            backgroundSize: 'contain'
        }    
        },
      		{
      			module: "weather",
      			position: "bottom_right",
      			config: {
      				weatherProvider: "openmeteo",
      				type: "current",
      				lat: "51.5085",
      				lon: "-0.1257"
      			}
      		}
      	]
      
      KristjanESPERANTOK 1 Reply Last reply Reply Quote 0
      • KristjanESPERANTOK Offline
        KristjanESPERANTO Module Developer @jimbocz
        last edited by

        @jimbocz Seems that the position setting isn’t optional anymore. This works for me:

          modules: [
            {
              module: "alert"
            },
            {
              module: "updatenotification",
              position: "top_bar"
            },
            {
              module: "clock",
              position: "top_left"
            },
            {
              module: "MMM-BackgroundSlideshow",
              disabled: false,
              position: "fullscreen_below",
              config: {
                imagePaths: ["modules/MMM-BackgroundSlideshow/exampleImages/"],
                transitionImages: false,
                randomizeImageOrder: true,
                slideshowSpeed: 30000,
                resizeImages: true,
                maxWidth: 1024,
                maxHeight: 600,
                backgroundSize: "contain"
              }
            },
            {
              module: "weather",
              position: "bottom_right",
              config: {
                weatherProvider: "openmeteo",
                type: "current",
                lat: "51.5085",
                lon: "-0.1257"
              }
            },
            {
              module: "MMM-Carousel",
              position: "bottom_right",
              config: {
                transitionInterval: 10000,
                ignoreModules: [
                  "MMM-BackgroundSlideshow",
                  "alert",
                  "updatenotification"
                ],
                mode: "global"
              }
            },
          ]
        
        J 1 Reply Last reply Reply Quote 0
        • J Offline
          jimbocz @KristjanESPERANTO
          last edited by

          @KristjanESPERANTO said in Can't get MMM-Carousel to work with MMM-BackgroundSlideshow:

          position: “bottom_right”

          Thanks for your reply, trying that now.

          1 Reply Last reply Reply Quote 1
          • S sdetweil has marked this topic as solved
          • 1 / 1
          • 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