MMM-AlexaControl was working great changing pages of Sbatm’s MMM-Carousel but stopped a couple of months ago. The Wemo devices are present in the Alexa App and show as connected but tapping the power button or speaking the command does not result in a page change anymore. I’m using a Raspberry Pi for the Magic Mirror. Here is my MMM-AlexaControl config. I would really appreciate some help in troubleshooting this. Thanks!
{ // MMM-AlexaControl
module: 'MMM-AlexaControl',
//disabled: true,
position: 'top_center',
config: {
deviceName: "Magic Mirror",
image: false,
width: 100,
height: 100,
pm2ProcessName: "mm",
vcgencmd: "vcgencmd",
monitorToggle: true,
notifications: [
{
name: 'CarouselNext',
port: 11101,
OnOff: true,
notification: ["CAROUSEL_NEXT"]
},
{
name: 'Main',
port: 11107,
OnOff: true,
notification: ["CAROUSEL_GOTO", 1]
},
{
name: 'Calendar',
port: 11108,
OnOff: true,
notification: ["CAROUSEL_GOTO", 2]
},
{
name: 'Weather',
port: 11109,
OnOff: true,
notification: ["CAROUSEL_GOTO", 3]
},
]
}
},