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

    Posts

    Recent Best Controversial
    • RE: MMM-MMM-Remote-Control monitor problem

      For some reason it started to work.

      But I’m not sure how to do to get the monitor status to work.

      I have tried to make these changes. But it doesn’t work:

        monitorControl: function(action, opts, res) {
                  let status = "unknown";
                  let monitorOnCommand = (this.initialized && "monitorOnCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorOnCommand :
                      "vcgencmd display_power 1";
                  let monitorOffCommand = (this.initialized && "monitorOffCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorOffCommand :
                      "vcgencmd display_power 0";
                  let monitorStatusCommand = (this.initialized && "monitorStatusCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorStatusCommand :
                      "vcgencmd display_power";
                  if (["MONITORTOGGLE", "MONITORSTATUS", "MONITORON"].indexOf(action) !== -1) {
                      screenStatus = exec(monitorStatusCommand, opts, (error, stdout, stderr) => {
                          if (stdout.indexOf("display_power=0") !== -1 || stdout.indexOf("0") !== -1) {
                              // Screen is OFF, turn it ON
                              status = "off";
                              if (action === "MONITORTOGGLE" || action === "MONITORON") {
                                  exec(monitorOnCommand, opts, (error, stdout, stderr) => {
                                      this.checkForExecError(error, stdout, stderr, res, { monitor: "on" });
                                  });
                                  this.sendSocketNotification("USER_PRESENCE", true);
                                  return;
                              }
                          } else if (stdout.indexOf("HDMI") !== -1 || stdout.indexOf("true") !== -1) {
                              // Screen is ON, turn it OFF
                              status = "on";
                              if (action === "MONITORTOGGLE") {
                                  this.monitorControl("MONITOROFF", opts, res);
                                  return;
                              }
                          }
                          this.checkForExecError(error, stdout, stderr, res, { monitor: status });
                          return;
                      });
      
      posted in Troubleshooting
      O
      off112
    • MMM-MMM-Remote-Control monitor problem

      Hi,

      I can’t turn on my monitor after I upgraded to debian buster.
      I tried to change the node_helper.js to:

      let monitorOnCommand = (this.initialized && "monitorOnCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorOnCommand :
                      "vcgencmd display_power 1";
                  let monitorOffCommand = (this.initialized && "monitorOffCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorOffCommand :
                      "vcgencmd display_power 0";
                  let monitorStatusCommand = (this.initialized && "monitorStatusCommand" in this.thisConfig.customCommand) ?
                      this.thisConfig.customCommand.monitorStatusCommand :
                      "tvservice --status";
      

      But I can only turn off the monitor, not turn it on again. Is there a fix to this problem?

      posted in Troubleshooting
      O
      off112
    • RE: MMM-ResRobot - Public transport information for Sweden

      @Alvinger Thank you for your good work :)

      posted in Transport
      O
      off112
    • RE: MMM-ResRobot - Public transport information for Sweden

      @Alvinger That would be wonderful. Thank you :)

      posted in Transport
      O
      off112
    • RE: MMM-ResRobot - Public transport information for Sweden

      Hi,

      Is it possible to add/show which track a train departures from?

      posted in Transport
      O
      off112
    • 1 / 1