Read the statement by Michael Teeuw here.
-
Hey @Jopyth, yes you are of course totally right. Took a closer look into it and of course it is jut a menu entry. Thanks for the hint.
-
@pepemujica Currently not possible. How would you identify them? Do they have different headers? Or by region/position?
-
Hi @Jopyth thank you for your efforts. A question, on mobile device a crazy bug is there. The navigation is not correct because the navigation buttons are not correct and partly dissappeared.
Does anybode have the same issue?
-
@Jopyth Actually I have no idea haha
I’ve added a link in the module control section where I can change proffiles with the proffile switcher module, so I thought may be something similar could be done -
Has anybode an idea why “no modules loaded” ?
-
@Jopyth maybe something like alias
{ module: "modulename", alias: "fancymodule", ... }
then check if alias exists if not display normal module name
-
@strawberry-3.141 does the alias exist or it’s just an idea?
-
@pepemujica well you can put everything in there but alias isnt supported from anything yet, so we could claim it for this and the other configuration modules
-
The module is not working for me to any extent, when I whitelist the IPs for my school’s wifi (following the HowToWhitelistIP thread’s directions) in every way stated, I get the “this device is not allowed to access…” message. Then, when I allow all IPs access I get the “cannot get remote/html” message. Any help would be great! Thanks!
-
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.