• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MMM-ModuleScheduler - Module Schedules and Notifications

Scheduled Pinned Locked Moved System
moduleschedulecronnotifications
82 Posts 20 Posters 131.5k Views 20 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • I Offline
    ianperrin
    last edited by Oct 12, 2016, 6:20 PM

    @Alvinger interesting, I’ll check it out.

    You may also be interested in taking a look at MMM-Remote-Control. It contains a heap of functions to control your mirror (including turning the monitor off and on, rebooting the pi, restarting the MM process etc) remotely.

    I’ve been working with @Jopyth to expose this functionality via the use of sendNotification.

    This should allow schedules like:

    notification_schedule: [
        {notification: 'REMOTE_ACTION', schedule: '30 9 * * *', payload: {action: 'MONITOROFF'}},
        {notification: 'REMOTE_ACTION', schedule: '30 18 * * *', payload: {action: 'MONITORON'}}
    ]
    

    Check out the repository on GitHub - the latest code includes this capability

    "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

    J 1 Reply Last reply Oct 12, 2016, 6:52 PM Reply Quote 1
    • J Offline
      Jopyth Moderator @ianperrin
      last edited by Jopyth Oct 12, 2016, 6:53 PM Oct 12, 2016, 6:52 PM

      @ianperrin The actions available are now also documented in the readme, so noone has to dig through all the code neccessarily. See this section, a table is down below.

      Helpful sticky: How to troubleshoot

      1 Reply Last reply Reply Quote 1
      • A Offline
        Alvinger
        last edited by Alvinger Oct 13, 2016, 8:44 AM Oct 13, 2016, 8:43 AM

        @ianperrin @Jopyth: sorry, wasn’t aware that MMM-Remote-Control had that ability. I would recommend MMM-Remote-Control instead of MMM-tvservice to the general user as it covers all functionality needed.

        MMM-tvservice is more for the linux enthusiast who wants a program to do one thing and one thing only. I am not running MagicMirror through PM2 but rather directly via systemd so I cannot use all functionality of MMM-Remote-Control without editing the source. Also, as I am running through systemd I do not need to prefix the commands with sudo as the service already runs as root.

        1 Reply Last reply Reply Quote 1
        • M Offline
          MichMich Admin
          last edited by Oct 13, 2016, 6:49 PM

          Very awesome work on this module! It might be interesting to look at the new show/hide mechanism: https://forum.magicmirror.builders/topic/241/revising-the-show-hide-mechanism/9

          1 Reply Last reply Reply Quote 1
          • M Offline
            MichMich Admin
            last edited by MichMich Oct 13, 2016, 7:30 PM Oct 13, 2016, 7:30 PM

            One other feature request:

            It would be nice if there is a way to schedule a hide show based on a classname. This way I can give all my modules a class like “day” and “night”, and make a schedule:

             {
                    module: 'MMM-ModuleScheduler',
                    config: {
                        visibility_schedule: [
                            {classes: 'day', schedule: {from: '0 6 * * *', to: '0 22 * * *' }},
                            {classes: 'night',  schedule: {from: '0 22 * * *', to: '0 6 * * *' }}
                        ]
                    }
            },
            
            I 1 Reply Last reply Oct 13, 2016, 10:19 PM Reply Quote 2
            • I Offline
              ianperrin @MichMich
              last edited by Oct 13, 2016, 10:19 PM

              @MichMich said in MMM-ModuleScheduler:

              One other feature request:

              It would be nice if there is a way to schedule a hide show based on a classname. This way I can give all my modules a class like “day” and “night”, and make a schedule:

              Great idea. I was planning on adding a global module_schedule functionality, i.e. the ability to hide all modules at 10pm, rather than having to configure multiple schedules on a per-module basis.

              I think the idea of class-based module groups makes for an interesting extension of the idea.

              So to take your config example, if the global schedule definition includes the classes property, only those modules with that class are affected. If the global schedule definition omits the classes field then all modules are affected.

              One for next week I suspect!

              "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

              1 Reply Last reply Reply Quote 0
              • M Offline
                MichMich Admin
                last edited by Oct 14, 2016, 7:09 AM

                An other small suggestion: delay all show effects with the a delay equal to the animation time. This way all Modules that will need to hide will nicely hide before any new modules fade in.

                1 Reply Last reply Reply Quote 1
                • I Offline
                  ianperrin
                  last edited by Oct 14, 2016, 5:07 PM

                  @MichMich - some great ideas, keep them coming.

                  I’ve created issues (or rather enhancements) for these on GitHub - https://github.com/ianperrin/MMM-ModuleScheduler/issues. Feel free to review, comment etc.

                  "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

                  1 Reply Last reply Reply Quote 1
                  • M Offline
                    Mr.Meeseeks
                    last edited by Oct 15, 2016, 3:41 AM

                    Is it required to restart mm/server if a scheduler configuration is changed, add, removed?
                    Thanks

                    CAAAAN DOO!👍

                    I 1 Reply Last reply Oct 27, 2016, 4:10 PM Reply Quote 0
                    • I Offline
                      ianperrin @Mr.Meeseeks
                      last edited by Oct 27, 2016, 4:10 PM

                      @Mr.Meeseeks Apologies for missing this one.

                      The schedules are set up after the ALL_MODULES_STARTED or DOM_OBJECTS_CREATED notifications have been received from the core. So a restart should not be required and a refresh of the browser should be sufficient to pick up config changes.

                      "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 8
                      • 9
                      • 4 / 9
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy