Read the statement by Michael Teeuw here.
MMM-ModuleScheduler
-
I have a working mirror. Now I would like to have an image from a folder displayed at a certain time of the day.
The MMM-ModuleScheduler module seems to be able to do this to me, but I can’t get it to work.
Nothing is happening here. Does anyone have a tip for me?
Thank you.
modules: [ { module: "alert", module: "MMM-ModuleScheduler", }, //Backround { module: "MMM-Wallpaper", position: "fullscreen_below", config: { source: "local:/home/pi/MagicMirror/pic/", slideInterval: 600 * 1000 } }, //Overlay { module: 'MMM-ModuleScheduler', config: { module: "MMM-Wallpaper", position: "fullscreen_above", config: { module_schedule: {from: "0 18 * * *", to: "0 19 * * *" }, source: "local:/home/pi/MagicMirror/pic2/", slideInterval: 600 * 1000 } } },
-
@Old_Death I do not know this module specifically
But some things
At the top you have two module:
In js this is allowed, but the last one winsThis means you have two instances of the schedule module
About MagicMirror , this is called a single page web application
We can only show or hide content. Pages, carousel, voice reco, profile switcher and module scheduler hide and show modules for different purposesAs I understand it the scheduler module looks at the individual modules for a property to describe when it should be shown ( from-to)
Scheduler has no ui of its own. So all info about images etc belong to the module that can display them. So all those parms need to move
And the targeted modules do not KNOW anything about Scheduler, they will be shown or hidden
Any properties added to be used by another module are unknown