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.

    screen Blanking not working on Raspberry Pi 2

    Scheduled Pinned Locked Moved Solved Troubleshooting
    9 Posts 2 Posters 2.2k Views 2 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.
    • D Offline
      did
      last edited by

      Bonjour
      Sur ma nouvelle installation Debian Bookworm 32bit de MM sur un Raspberry Pi 2 .
      J’ai installé MMM-Remote mais je n’arrive pas à commander la mise en vielle ou l’allumage de mon moniteur branché en HDMI .
      Merci d’avance pour votre aide .

      In English:
      Hello
      On my new Debian Bookworm 32bit installation of MM on a Raspberry 2.
      I installed MMM-Remote but I can’t get my monitor connected via HDMI to turn on or off.
      Thank you in advance for your help .

      S 1 Reply Last reply Reply Quote 0
      • D Offline
        did @sdetweil
        last edited by

        @sdetweil
        Hello
        Tout fonctionne à merveille , j’ai aussi ajouter une virgule à la fin .
        Bon week-end et encore grand merci .

        Hello
        Everything works perfectly, I also added a comma at the end.
        Have a good weekend and another great one thank you.

        S 1 Reply Last reply Reply Quote 1
        • S Away
          sdetweil @did
          last edited by sdetweil

          @did yes times change

          but the remote control module provides a config option for those commands

          Screenshot_20240216_101831_Chrome.jpg

          if you look at one of the PIR modules node_helper.js you should see different choices

          try those commands via ssh so you can turn it back on

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          D 1 Reply Last reply Reply Quote 0
          • D Offline
            did @sdetweil
            last edited by

            @sdetweil
            Hello
            Merci pour ta réponse rapide .
            J’ai intégré les lignes dans mon config.js mais Magic Mirror retourne une erreur dans le fichier . Je ne comprend pas ou est l’erreur ?
            Voici ce que j’ai inseré :

            Hello
            Thank you for your quick response.
            I integrated the lines in my config.js but Magic Mirror returns an error in the file. I don’t understand where the error is ?
            Here is what I inserted:

            		{
            			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
            			customCommand: {
            //   			       shutdownCommand: 'shell command to shutdown your pc',
            //  			       rebootCommand: 'shell command to reboot your pc',
                   			       monitorOnCommand: 'DISPLAY=:0 xrandr --output HDMI-1 --off',
                   			       monitorOffCommand: 'DISPLAY=:0 xrandr --output HDMI-1 --auto',
            //        monitorStatusCommand: 'shell command to return status of monitor, must return either "HDMI" or "true" if screen is on; or "TV is Off" or "false" if it is off to be recognized'
                }
            		},
            

            Merci pour votre aide

            S 2 Replies Last reply Reply Quote 0
            • S Away
              sdetweil @did
              last edited by

              @did can you show the error?

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              D 1 Reply Last reply Reply Quote 0
              • D Offline
                did @sdetweil
                last edited by

                @sdetweil
                Hello
                Non je ne comprend pas pourquoi , le construction des lignes sembles convenables .
                La première commande pour moi n’est pas prise en compte car elle apparaît en noir alors que la seconde est bien en rouge .
                Hello
                No I don’t understand why, the construction of the lines seems suitable.
                The first command for me is not taken into account because it appears in black while the second is in red.
                Sélection_006.jpg
                Malheureusement je n’y connais rien en langage de programmation Java ou autre .
                Pour le moment j’ai modifié le fichier node_helper.js dans répertoire MMM-Remote-Controle pour envoyer les bonnes commandes .
                Pour ceux qui cherche la commande pour couper l’affichage de l’écran :
                Unfortunately I don’t know anything about Java programming language or anything else.
                For the moment I modified the node_helper.js file in the MMM-Remote-Controle directory to send the correct commands.
                For those looking for the command to turn off the screen display:
                DISPLAY=:0 xrandr --output HDMI-1 --off
                DISPLAY=:0 xrandr --output HDMI-1 --auto
                Merci pour votre aide

                1 Reply Last reply Reply Quote 0
                • S Away
                  sdetweil @did
                  last edited by sdetweil

                  @did said in screen Blanking not working on Raspberry Pi 2:

                  {
                  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
                  customCommand: {
                  // shutdownCommand: ‘shell command to shutdown your pc’,
                  // rebootCommand: ‘shell command to reboot your pc’,
                  monitorOnCommand: ‘DISPLAY=:0 xrandr --output HDMI-1 --off’,
                  monitorOffCommand: ‘DISPLAY=:0 xrandr --output HDMI-1 --auto’,

                  ok, I see it… two things…

                  1. you have the wrong structure for a module definition
                    the correct way is
                  {
                      // all these tell magic mirror about the module 
                       module:'module_name',
                       position:
                       classes:
                       disabled:
                       header:
                  
                       config: {
                          // all these are module specific parameters
                         // magicmirror doesn't use any of them, only the module
                       }
                  }
                  

                  so what you have is

                  {    
                        module: 'MMM-Remote-Control'
                       customCommand: {
                       }
                  }
                  

                  but customCommand: is a module parameter, not a magicmirror parameter

                  1. you are missing a trailing comma
                   module: 'MMM-Remote-Control'     //<---- here
                       customCommand: {
                  

                  Javascript needs to be told that this line is done, and more info follows

                  you’ll note the ‘trick’ in the module documentation

                  > 			// uncomment the following line to show the URL of the remote control on the mirror
                  > 			// , position: 'bottom_left'```   //<---- it STARTS with a comma, which ends the prior line and then starts a new one.. 
                  

                  so, combined the module entry SHOULD look like this

                  {    
                        module: 'MMM-Remote-Control',  // added trailing comma
                        config:{    // the config block wrapping parameters to the module
                             customCommand: {
                  //   			       shutdownCommand: 'shell command to shutdown your pc',
                  //  			       rebootCommand: 'shell command to reboot your pc',
                         			       monitorOnCommand: 'DISPLAY=:0 xrandr --output HDMI-1 --off',
                         			       monitorOffCommand: 'DISPLAY=:0 xrandr --output HDMI-1 --auto',
                  //                             monitorStatusCommand: 'shell command to return status of monitor, must return either "HDMI" or "true" if screen is on; or "TV is Off" or "false" if it is off to be recognized'
                             }
                        }
                  }
                  

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  D 2 Replies Last reply Reply Quote 0
                  • D Offline
                    did @sdetweil
                    last edited by

                    @sdetweil
                    Merci beaucoup @sdetweil pour ta réponse , tes explications très clairs et très pédagogiques .
                    J’ai compris ou était mon erreur .
                    Je teste dès que possible et je te fais un retour .
                    Bonne journée

                    Thank you very much @sdetweil for your response, your very clear and very educational explanations.
                    I understood where my mistake was.
                    I’ll test it as soon as possible and get back to you.
                    Good day

                    1 Reply Last reply Reply Quote 0
                    • D Offline
                      did @sdetweil
                      last edited by

                      @sdetweil
                      Hello
                      Tout fonctionne à merveille , j’ai aussi ajouter une virgule à la fin .
                      Bon week-end et encore grand merci .

                      Hello
                      Everything works perfectly, I also added a comma at the end.
                      Have a good weekend and another great one thank you.

                      S 1 Reply Last reply Reply Quote 1
                      • S Away
                        sdetweil @did
                        last edited by

                        @did awesome!! thanks for the feedback

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        1 Reply Last reply Reply Quote 0
                        • 1 / 1
                        • 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