RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Multi Switch Shutdown Script!

    Scheduled Pinned Locked Moved Ideas and Development
    shutdown scriptshutdown switchcyperghost
    272 Posts 40 Posters 116.0k Views
    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.
    • cyperghostC
      cyperghost @caver01
      last edited by

      @caver01 Maybe you can test and report? For me this did not work and I may hide it (it won't be displayed as option in help pages) if the --es-systemd switch will not run. It should in theoretically work the same way as @meleu's service (maybe you can add the sleep timer) but I had no success.

      caver01C 1 Reply Last reply Reply Quote 0
      • caver01C
        caver01 @cyperghost
        last edited by

        @cyperghost I see what you were doing. . . you were actually trying to define the service using multi_switch.sh --es-systemd. I guess I was simply going to call the multi_switch.shfrom meleu's service instead. I need to look at it and see how it is setup now. I wonder if the problem is what others are seeing--that even meleu's service is not working correctly now.

        My 4-player cocktail style cabinet built as a custom "roadcase"

        cyperghostC 1 Reply Last reply Reply Quote 0
        • cyperghostC
          cyperghost @caver01
          last edited by cyperghost

          @caver01 Yes...

          My first try was the ExecStop=

          then later I used the killes.sh script and wrote just

          #!/bin/bash
          /path/to/multi_switch.sh --es-systemd
          sleep 10
          

          Made it executable with chmod a+x .... Did not work. So I think the service isn't working anymore. Maybe I've done something wrong?
          I think there is no difference to call a bash file with parameters or to call it without ;) But I'm not sure if these systemd services can parse commandlines.... I think yes! But that's the difference of a hobby user like me and someone who really digs deep into unix systems ;)

          caver01C 1 Reply Last reply Reply Quote 0
          • caver01C
            caver01 @cyperghost
            last edited by

            @cyperghost Ok, so on my main arcade build (custom case, Mausberry Switch, dedicated momentary power button, GPIO-->transistor trigger), I dropped in your multi_switch. I updating my Python script that watches the GPIO triggered by the switch on the Mausberry. Now, instead of doing the traditional kill PIDs and killES, I simply call multi_switch --es-poweroff. Fast and done. The Pi shuts down, Mausberry detects the drop on the other GPIO and cuts the power.

            For soft shutdown, I updated Meleu's service. My version of the service has been doing two things: First, it triggers the Mausberry via GPIO to the transistor which in turn closes the power switch. Second, it did the old emulator PID lookup and kill, plus killES. These commands got replaced with the multi_switch --es-poweroff call again.

            This works great, although I should say that my system is still running the previous RetroPie image (4.3, Jessie).

            We know that using the switch works great. We also know that soft shutdown also leads to the Mausberry cutting power correctly. So, I am certain that the service is triggering the transistor. What I don't know is if the trigger is getting picked up by the python script FIRST which calls multi_switch or if the call is being made by the service. Either way, my metadata is getting saved.

            I could try removing the call to multi_switch from meleu's service. That way, the only thing the service is doing is triggering the switch. I may just leave it alone.

            My 4-player cocktail style cabinet built as a custom "roadcase"

            cyperghostC 2 Replies Last reply Reply Quote 0
            • cyperghostC
              cyperghost @caver01
              last edited by cyperghost

              @caver01 Yes the scripts are called by the service but somehow the sleep commands are ignored.

              You can place the transistor call to /lib/systemd/system-shutdown/ as script.
              Then make the script executable.... Be aware to place the shebang #!/bin/sh in first line!

              You can use the same technique like I've done in Exposed Shim ON OFF

              With the script you can differ between reboots, shutdowns.... so the trigger can be called only by shutdown (=poweroff) and reboots.

              1 Reply Last reply Reply Quote 0
              • cyperghostC
                cyperghost @caver01
                last edited by cyperghost

                @caver01 said in Multi Switch Shutdown Script!:

                We know that using the switch works great. We also know that soft shutdown also leads to the Mausberry cutting power correctly. So, I am certain that the service is triggering the transistor. What I don't know is if the trigger is getting picked up by the python script FIRST which calls multi_switch or if the call is being made by the service. Either way, my metadata is getting saved.

                So with this setup following happens.
                The script is first triggered by your python script. It calls in first instance the multi_switch. The multi_switch closes all emulators and wait for ES to finish (so all metadata is saved!) then multi_switch is quit and gives control back to ES-script. The ES-script checks for apperance of files in /tmp-folder, this files trigger the further actions. It can be a restart of ES, a reboot of the system or a system shutdown!

                After that the service of meleu is initiated. So the service takes action AFTER all metadata is saved. I wasn't able to run the service in a proper way... so I can't say if it works proper in general :(

                caver01C 1 Reply Last reply Reply Quote 0
                • caver01C
                  caver01 @cyperghost
                  last edited by

                  @cyperghost said in Multi Switch Shutdown Script!:

                  The script is first triggered by your python script

                  Not during a soft shutdown. For software-initiated, my python is not seeing anything until it detects the button "pressed" by the transistor. So, for soft shutdown, Meleu's service is triggering that. It is then a race between python calling multi_switch and the service calling multi_switch.

                  My 4-player cocktail style cabinet built as a custom "roadcase"

                  cyperghostC 1 Reply Last reply Reply Quote 0
                  • cyperghostC
                    cyperghost @caver01
                    last edited by cyperghost

                    @caver01 Oh yes ;) Even on a soft shutdown it is clear what happens.
                    ES writes a metadta and file into /TMP folder and the binary quits. After that, shutdown is initiated and then meleus service takes action. Then if multi_switch is called indeed a seconds shutdown is initiated ...

                    But I don't understand what you mean with "race" of the scripts. If you use the --es-systemdparameter I don't initiate annother shutdown.

                    caver01C 1 Reply Last reply Reply Quote 0
                    • caver01C
                      caver01 @cyperghost
                      last edited by

                      @cyperghost It is a race because before the script in Meleu's service calls multi_switch, it first triggers my GPIO transistor. When that happens, my python script calls multi_switch. So, one or the other call is going to make sure everything closes. I don't know which one finishes first.

                      My 4-player cocktail style cabinet built as a custom "roadcase"

                      cyperghostC 1 Reply Last reply Reply Quote 1
                      • cyperghostC
                        cyperghost @caver01
                        last edited by cyperghost

                        @caver01 Ahhh........!
                        Yes!

                        That makes it clear. But the solution for this is very easy. If you place a script to /lib/systemd/system-shutdown you call from there the trigger to your transisitor then the filesystem is already set to read only. Read more about here: Linux Stack Exchange and in this (late) state the system is miliseconds away for going to powerdown. That is the right moment to send signal to GPIO to "push" the button. The service also pushes arguments to callers. So the script can decide between shutdowns, reboots and so you call the trigger just in poweroff state.

                        I did it here.... Exposed Shim ON OFF and also here in my Yet annother NESPi case mod also with a Mausberry build in and so there is no race against two shutdowns ;)

                        So in your case remove the "GPIO trigger"-part from meleus service right to annother script that is placed to /lib/systemd/system-shutdown/-folder. You need sudo command for this as this files are property of root.

                        caver01C 1 Reply Last reply Reply Quote 0
                        • caver01C
                          caver01 @cyperghost
                          last edited by caver01

                          @cyperghost are you saying I can just put a bash script into /lib/systemd/system-shutdown/ and it will execute during shutdown? Why do we need meleu's service?

                          My 4-player cocktail style cabinet built as a custom "roadcase"

                          cyperghostC 1 Reply Last reply Reply Quote 0
                          • cyperghostC
                            cyperghost @caver01
                            last edited by cyperghost

                            @caver01 said in Multi Switch Shutdown Script!:

                            @cyperghost are you saying I can just put a bash script into /lib/systemd/system-shutdown/ and it will execute during shutdown?

                            Yes! The systemd service automatically parses shutdown status to any scripts in this folder. So $1 can be poweroff, halt, reboot and you can initiate actions by this.

                            Why do we need meleu's service?

                            Well.... I don't know if the service is still useable. Some people report is does not work proper anymore. I tried, too - but also failed for proper shutdown. So the service is sadly out of service. And imho the service is usefull not to push triggers like you (ab)use it ... more to just prober shutdown ES ;)

                            BUT if it will work you would never have to modify button scripts. They just initiate a shutdown and the service automatically shuts down emulators and ES. That's the great advantage.

                            I modified the original NESPi+ python script for example and added an if/then clause. If butto nis pressed and if ES-PID is active then use multi_switch with es-poweroff switch, else use regular shutdown.
                            If the service would work again the python script would be just. If button is pressed then use regular shutdown.

                            But imho it's still a flavour what you want to do and how far you understand what you do.

                            caver01C 1 Reply Last reply Reply Quote 0
                            • caver01C
                              caver01 @cyperghost
                              last edited by

                              @cyperghost I guess we have several options, but I do like your script—one script for several uses. It just makes sense.

                              My 4-player cocktail style cabinet built as a custom "roadcase"

                              cyperghostC 1 Reply Last reply Reply Quote 0
                              • cyperghostC
                                cyperghost @caver01
                                last edited by

                                @caver01 The intention to write this script is a bit more.

                                1. It should provide an easy all in one solution for people who use several switch devices (A simple Button connected to GPIO and ground, both NESPi case types, or the Pimonori ONOFF Shim or the Mausberry switch)
                                2. It provides a solution if people use several button to make "reset" actions. So the script can be written to just finish any emulators if they are active, or to restart ES, or to reboot the whole system if button is held down for more than 5 seconds. This is all possible if you use the regular switches.
                                3. Personally! I'm owner of 4 of the 5 devices the script supports I have a Mausberry in a NESPi case, I've a NESPi+ case, I've a Pimonori Switch and on my old B1 I've a some single push buttons only. And the setup to perform shutdown with this script was never easier to do now. Exactly as you said...
                                  3.1 Use the script and make calls like multi_switch.sh --es-poweroff from any button script.
                                  3.2 Personally I use it several time like multi_switch.sh --generic powerbtn=23
                                  3.3 Sometimes I do some coding on the mashine via SSH and the TV is not powerd on so just a multi_switch.sh --es-poweroff shutdown the system cleanly with proper quitted ES.
                                  3.4 I setted up a Pimonori Switch on my OwnCloudSystem so there is also just a proper call to multi_switch.sh --onoffshimm

                                Nevertheless I hope @meleu reactivates the shutdown service again.

                                1 Reply Last reply Reply Quote 0
                                • QuackwalksQ
                                  Quackwalks
                                  last edited by

                                  I'd love to see this working for the Kintaro 9000 case. They've been working on the meta data issue for a while now.

                                  cyperghostC 1 Reply Last reply Reply Quote 0
                                  • D
                                    dudumaroja
                                    last edited by dudumaroja

                                    hello, i have a question.. i have a nespi case.. but my mod made it have two buttons.. made power button work as intended.. my plan first was to solder the reset button on RUN header to have a hard reset in case of crashes and use power to soft reset..

                                    i found your script.. and im here to ask if there is any change of using the reset button as generic too?

                                    tldr: can i use this scrip with two generic buttons?

                                    edit:

                                    this solved for me
                                    /home/pi/RetroPie/scripts/multi_switch.sh --nespicase powerbtn=3 resetbtn=4 &

                                    1 Reply Last reply Reply Quote 0
                                    • cyperghostC
                                      cyperghost @Quackwalks
                                      last edited by

                                      @quackwalks Well you modify the python script and integrate the arguments multi_switch.sh offers to get it full working with your kintaro. A way how it can be done I offered here for the NESPi+ case.. You can use the return values of --ES-PID (= ask if EmulationStation is running) and --RC-PID (= ask if there is a emulator running in background) to decide to do actions.

                                      As long as I don't have this case I don't do anything to integrate this in the script. It can be done, I know ... but it took several days to get the NESPi+ working ... at last I bought one then the settings were done in less then a few hours.

                                      1 Reply Last reply Reply Quote 0
                                      • cyperghostC
                                        cyperghost
                                        last edited by

                                        Thx to @fastpop72 he gave positive answer in getting this invoked into python script

                                        Tired on bash scripts? Get a functional shutdown for your NESPi+ on python

                                        Took a journey on python scripting (really easy, and the script could be improved!) but it works best.... it shows same behaviour as multi_switch as bash call.

                                        1. If you press restart if emulator is currently running, then you will be kicked back to ES main menu
                                        2. If you press restart in ES main screen, ES will be restartet (no reboot!), good for quick saving metadata or internal saves.
                                        3. If you press power-off then Raspberry will shutdown
                                        
                                        All metadata is always saved
                                        Best -> cyperghost
                                        

                                        You can install the script with
                                        wget -O - "https://raw.githubusercontent.com/crcerror/retroflag-picase/master/install.sh" | sudo bash

                                        1 Reply Last reply Reply Quote 0
                                        • darkniorD
                                          darknior
                                          last edited by

                                          WOAW excellent, i've receved my new NesPi+, i will try it :)
                                          Thanks

                                          Life is game, just play it !

                                          1 Reply Last reply Reply Quote 0
                                          • D
                                            dudumaroja
                                            last edited by dudumaroja

                                            Hello.. i have a modification sugestion..

                                            maybe you could integrate a save state function to the reset button.. using this!

                                            https://github.com/GregorR/RetroArch/wiki/Network-Commands

                                            this open doors to.. gracefully quit emulation ( retroarch compatible cores).. and other thinks like.. pressing reset for 5 seconds save state.. quick press load state..

                                            you can even set the reset button to reset only the game you are playing.. and other thinks,

                                            lostlessL 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.