MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. TJuTZu
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    T
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Auto power on and off

      You can use also MMM-ModuleScheduler with MMM-Remote-Control to turn monitor on/off if you don’t need to turn off the whole system.

      It works similar to crontab

      Here is example from my mirror configuration

         {
            module: 'MMM-Remote-Control'
            // uncomment the following line to show the URL of the remote control on the mirror
            // , position: 'bottom_left'
            // you can hide this module afterwards from the remote control itself
          },
      
         {
              module: 'MMM-ModuleScheduler',
              config: {
                  notification_schedule: [
                      // TURN THE MONITOR/SCREEN ON At 10:00
                      {notification: 'REMOTE_ACTION', schedule: '00 10 * * *', payload: {action: "MONITORON"}},
                      // TURN THE MONITOR/SCREEN OFF At 00:00 
                      {notification: 'REMOTE_ACTION', schedule: '00 00 * * *', payload: {action: "MONITOROFF"}}
                  ]
              }
         }
      
      
      posted in Development
      T
      TJuTZu
    • 1 / 1