Hi! I’m trying to figure out how to hide/show modules with “REMOTE_ACTION” from “MMM-ModuleScheduler”.
First, here is the remote control “config”.
{
module: "MMM-Remote-Control",
position: "top_left",
config: {
"moduleData":[
{"identifier":"module_55_MMM-TextClock"},
],
}
},
I know that the “identifier” for the “MMM-TextClock” is correct.
Then in the “MMM-ModuleScheduler” I have this:
{
module: "MMM-ModuleScheduler",
config: {
uselock: false,
notification_schedule: [
{notification: "REMOTE_ACTION", schedule: "0 11 * * *", payload: {action: 'HIDE {"identifier":"module_55_MMM-TextClock"}'}},
],
global_schedule: []
}
It’s suppose to hide the “MMM-TextClock” at 11 AM but it’s not hiding it.
I do get this in the log at the correct time:
---
MMM-TextClock received a module notification: REMOTE_ACTION from sender: MMM-ModuleScheduler module.js:115
---
So the action get sent… But the “MMM-TextClock” still shows… What have I missed?
Or misunderstood? :)
Thank you.

