@beeficecream - Welcome to the project and I’m glad you got it working. I just wanted to leave this here for anyone who needs it in the future:
To use multiple instances of the same module with Carousel w/ Navigation:
This example allows for 2 different style clocks on different slides:
In the OTHER module’s config, add a CarouselId variable:
{
module: "clock",
position: "middle_center",
config: {
carouselId: "1",
displayType: "both"
}
}, {
module: "clock",
position: "top_left",
config: {
carouselId: "2",
}
},
In the MMM-Carousel config slides section, instead of just "clock"
, use {name:"clock", carouselId:"1"}
...
mode: 'slides',
slides: [
[ {name:'clock', carouselId: "1"} ],
[ {name:'clock', carouselId: "2"}, 'calendar', 'MMM-WunderGround', 'newsfeed' ] ]
...
You can also use the same object format to move a module around for different slides or change the sizes. See https://github.com/shbatm/MMM-Carousel#example---advanced-slides-carousel for details.