A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-Carousel; Two of the Same Module?
-
@sdetweil, thank you…I will give that a try.
-
@JeffreyDaro That’s possible with MMM-Carousel. Look for
carouselId
in the README file :-) -
@KristjanESPERANTO Thank you for responding. I started working on the carouselID’s but I am struggling a bit to get that to work.
I was experimenting with both classes and carouselID:
{ module: "MMM-Carousel", position: "bottom_bar", // Required to draw in position config: { mode: "slides", ignoreModules: ["MMM-GooglePhotos"], transitionInterval: 40000, slideTransitionSpeed: 3000, slides: { main: ["clock", "weather"], "slide2": ["clock", "weather", "compliments"], "slide3": ["clock", "MMM-NFL"], "slide4": [{ name: "calendar", carouselId: "cal1", classes:"cal1" }, "MMM-NFL"], "slide5": [{ name: "calendar", carouselId: "cal2", classes: "cal2" }, "weather"] } } },
And as an example, my first calendar on the screen…
{ module: "calendar", carouselId: "cal1", classes: "cal1",
And my second…
{ module: "calendar", carouselId: "cal2", classes: "cal2",
-
@JeffreyDaro The carouselId has to be in the config part. Like this:
{ module: "calendar", position: "top_right", config: { carouselId: "cal1", ... } }, { module: "calendar", position: "top_right", config: { carouselId: "cal2", ... } },
-
Thank you! That was the issue. My eye did not catch that in the documentation. I appreciate your time and your patience.
JD.