I’m using MMM-Carousel, specifically https://github.com/shbatm/MMM-Carousel.
I’m trying to get MMM-ImmichSlideShow to work, but it just will not show any images when loaded within the Carousel.
I know that MMM-ImmichSlideSlow itself works, as when I disable MMM-Carousel images DO show (although quite large).
Has anybody had success in integrating MMM-ImmichSlideShow into a Carousel?
I’m wondering whether it’s the display size of images (??) but I cannot find any way to control display size in MMM-ImmichSlideShow.
No errors in MMM debug logs or Developer Console.
I previously used MMM-ImagesPhotos in the same carousel and that works fine, it just seems to be a problem with MMM-ImmichSlideShow.
Grateful for any pointers.
Here are the relevant parts of my config:
{
module: 'MMM-ImmichSlideShow',
position: 'bottom_center',
config: {
immichConfigs: [
{
apiKey: 'xxxxxx',
url: 'xxx.xxx.xxx.xxx',
mode: 'album',
albumName: 'xxxxx',
validImageFileExtensions: 'jpg,jpeg,png,gif,bmp,heic',
slideshowSpeed: 30000
}
],
sortImagesBy: 'taken',
sortImagesDescending: true,
validImageFileExtensions: 'jpg,jpeg,png,gif,bmp,heic',
slideshowSpeed: 30000,
backgroundSize: 'contain',
animations: [
'slide'
]
}
},
{
module: "MMM-Carousel",
position: "bottom_bar", // Required only for navigation controls
config: {
transitionInterval: 0,
showPageIndicators: true,
showPageControls: true,
ignoreModules: ["weather", "MMM-MyBMW","calendar","clock","alert"],
mode: "slides",
slides: {
main: ["MMM-ImmichSlideShow"],
"Slide 2": [
"MMM-MonthlyCalendar"
],
},
keyBindings: {
enabled: true,
map: {
NextSlide: "ArrowRight",
PrevSlide: "ArrowLeft",
Pause: "ArrowDown",
Slide0: "Home"
},
mode: "DEFAULT"
}
},
}