I’m probably doing something wrong but it seems to me that MMM-BackgroundSlideshow is not responding to notifications.
I have MMM-Keypress installed which works fine with MMM-Pages but when I try to set it up to send notifications to MMM-BackgroundSlideshow, it’s like BS is ignoring them. (Using the same exact keys/configuration to send a notification to MMM-Pages works fine.)
Here are my config.js entries:
{
module: "MMM-Keypress",
position: "bottom_right",
config: {
notifications: [
{key: "Enter", notification: "PAGE_INCREMENT"},
// {key: "Tab", notification: "PAGE_INCREMENT"},
// {key: "Space", notification: "PAGE_INCREMENT"},
{key: "MOUSE_SCROLL_UP", notification: "BACKGROUNDSLIDESHOW_PREVIOUS"},
{key: "MOUSE_SCROLL_DOWN", notification: "BACKGROUNDSLIDESHOW_NEXT"},
],
}
},
{
module: 'MMM-BackgroundSlideshow',
position: 'fullscreen_below',
config: {
imagePaths: ['modules/MMM-BackgroundSlideshow/Paintings/'],
transitionImages: true,
randomizeImageOrder: true,
slideshowSpeed: 3600000,
resizeImages: true,
maxWidth: 1080,
maxHeight: 1920,
backgroundSize: "contain",
transitions: ["opacity"],
showProgressBar: true,
}
},
Note that I’ve tried a whole host of keys/keycodes and they work fine with MMM-Pages but do nothing for MMM-BackgroundSlideshow.
I’m not sure what I’m doing wrong.
