Read the statement by Michael Teeuw here.
-
I have found that this white screen that happens every day essentially freezes the entire Magic Mirror and I have to press CRTL+Q to restart. It doesn’t actually freeze the entire RPi.
-
Hi there!
Thank you for this excellent module! :)
I would like to use the scheduler together with “Profile Switcher”.Scenario:
- Let’s say normally I always show “Clock”, “Monthly calendar” and “Wounderground Weather” (local weather).
- Then on Mondays and Wednesdays at 05:30 to 07:30 I would like to also show “Weather” and “weather forecast” (in my case for another location).
- Then I would like to have a “profile” called “Snille” who (when activated) shows all of the above plus also “System Status” and “Bitcoin” (for example).
I have tried this, but it seams that when a module is scheduled, it get’s “locked” by the scheduler and therefore the “Profile Switcher” can not show it…
Getting this in the console (when selecting the profile):
Will not show currentweather. LockStrings active: module_0_MMM-ModuleScheduler
Will not show weatherforecast. LockStrings active: module_0_MMM-ModuleScheduler
If I “force” to unlock (using my Modlulebar to show and hide) the module it can be showed with the “Profile Switcher”.
I’m thinking… Do you have to “lock” the modules with the scheduler? :)
-
@ianperrin I have sent a PR to you adding an option to solve the problem. :)
-
Hello all,
@ianperrin Thanks for the great module!
I’ve been using MMM-ModuleScheduler successfully for a couple of weeks, however, after a recent update the module is no longer working as designed. It appears that the correct SHOW & HIDE commands are being send (see logs below), however, the modules do not appear or disappear from the MM itself.
The only command that works well is the HDMI on/off. Any guidance or insight is appreciated.
Thanks!
| MMM-ModuleScheduler will next send SEND_NOTIFICATION to REMOTE_ACTION at Thu Apr 20 2017 23:30:00 GMT-0400 (EDT) based on "30 23 * * *" 0|mm | Powering off HDMI 0|mm | MMM-ModuleScheduler is sending HIDE_MODULE to module_11_MMM-ImagesPhotos 0|mm | MMM-ModuleScheduler will next send HIDE_MODULE to module_11_MMM-ImagesPhotos at Thu Apr 20 2017 23:45:00 GMT-0400 (EDT) based on "45 23 * * *" 0|mm | MMM-ModuleScheduler is sending SEND_NOTIFICATION to REMOTE_ACTION 0|mm | MMM-ModuleScheduler will next send SEND_NOTIFICATION to REMOTE_ACTION at Fri Apr 21 2017 06:00:00 GMT-0400 (EDT) based on "0 6 * * *" 0|mm | MMM-ModuleScheduler is sending SHOW_MODULE to module_4_localtransport 0|mm | MMM-ModuleScheduler will next send SHOW_MODULE to module_4_localtransport at Fri Apr 21 2017 06:00:00 GMT-0400 (EDT) based on "0 6 * * *" 0|mm | MMM-ModuleScheduler is sending SHOW_MODULE to module_6_iFrame 0|mm | MMM-ModuleScheduler will next send SHOW_MODULE to module_6_iFrame at Fri Apr 21 2017 06:00:00 GMT-0400 (EDT) based on "0 6 * * *" 0|mm | Powering on HDMI with preferred settings
-
Hi All and thanks to @ianperrin for creating this awesome module.
I’m trying to schedule my screen to turn it on and off in specific times from Monday to Friday, and doing also the same thing in different times on weekend.
Right now this is my configuration, but is not quite working:
{
module: ‘MMM-ModuleScheduler’,
config: {
notification_schedule: [
// TURN THE MONITOR/SCREEN ON AT 08:00 EVERY DAY
{notification: ‘REMOTE_ACTION’, schedule: ‘0 8 * * * 1-5’, payload: {action: “MONITORON”}},
// TURN THE MONITOR/SCREEN OFF AT 09:30 EVERY DAY
{notification: ‘REMOTE_ACTION’, schedule: ‘30 9 * * * 1-5’, payload: {action: “MONITOROFF”}},
// TURN THE MONITOR/SCREEN ON AT 19:00 EVERY DAY
{notification: ‘REMOTE_ACTION’, schedule: ‘0 19 * * * 1-5’, payload: {action: “MONITORON”}},
// TURN THE MONITOR/SCREEN OFF AT 23:00 EVERY DAY
{notification: ‘REMOTE_ACTION’, schedule: ‘0 23 * * * 1-5’, payload: {action: “MONITOROFF”}},
// TURN THE MONITOR/SCREEN ON AT 10:30 WEEKEND
{notification: ‘REMOTE_ACTION’, schedule: ‘30 10 * * * 6-7’, payload: {action: “MONITORON”}},
// TURN THE MONITOR/SCREEN OFF AT 21:00 WEEKEND
{notification: ‘REMOTE_ACTION’, schedule: ‘0 21 * * * 6-7’, payload: {action: “MONITOROFF”}},
// RESTART THE MAGICMIRROR PROCESS AT 2am EVERY SUNDAY
{notification: ‘REMOTE_ACTION’, schedule: ‘0 2 * * SUN’, payload: {action: “RESTART”}}
]
}
},Can somebody tell me if this is the right way to do it or if there is some kind of issue there?
Thanks!
-
Hello,
When “hiding” a module, does that also stop it from executing? I’m looking for a way to reduce the number of API calls made, by disabling a module at night.
If not, any other suggestion on how to achieve this?Thanks in advance.
-
-
@ianperrin hi thanks for this module.
I used it to turn my uknationalrail module on and off at certain times. However what I noticed was that your module disables my uknationalrail module I.e. it turns it on but then it doesn’t update. If I remove your module and the settings of your module on my module it works fine.
Is this a bug?
Thanks
-
@bachoo786 I had the same issue with MMM-googlemaps-route. The module was switched on at the defined time, but the map was not updated, only the travel times. Unfortunately, I had to find turn off the scheduler, but found a workaround for the route module to reduce the number of API calls.
-
@Fozi ah right well i would like to turn it on and off I have used remote control module as well but I face the same issue. I can adjust to reduce the number of API calls but thats least of my worries as I would like to have a clean MM interface hence turning off the module would be awesome provided it worked.