On/Off Button mount for Makerselect v2/wanhao duplicator.

On/Off Button mount for Makerselect v2/wanhao duplicator.

thingiverse

I have my Monoprice Maker Select V2 printer connected via a relay as described in thing 1428478 so I can turn it on and off remotely from OctoPrint. This is great, but I wanted a local way to turn it on or off without having to use a browser or the power switch. Turning it off via the power switch means that it can't be turned back on via OctoPrint, and turning it off via OctoPrint means it can't be turned back on with the power switch. So I designed the button mount to attach a push-button switch to the side of the printer. The button is wired to the Raspberry Pi to provide another input that can be used to trigger a script to toggle the printer state. It screws into the two screws near the top on the right side. You will need two (2) M3 screws at least 8mm long to replace the short screws. I used 10mm screws left over from the Z-brace mod. You will also need a push-button with a shaft no wider than 16mm and a collar/nut between 16mm and 25mm. I pulled my button from my collection, but it was like this one from Adafruit. Those two screws hold the top brace in place, so I would take care to never remove them both at once. Installation Instructions 1. Solder two wires to the switch. 2. Measure and cut wires to desired length, adding an inch or two for routing via the channel in the bottom of the button holder. 3. Thread button switch into large hole on button holder, and secure with the nut that comes with the switch. 4. Unscrew the top screw from the printer. 5. Secure the top of the holder to the printer using a longer M3 screw to replace the one you took out. Tighten it enough to secure the printer, but still let the button holder swivel. 6. Remove the second short screw. 7. Route the wires in the channel on the button holder and swivel the holder until the bottom hole lines up. 8. Screw the second longer screw to the bottom hole. 9. Test the button by pressing it and seeing if the printer turns on or off. Software Instructions 1. Configure the pin to be input -- `gpio export 26 in` 2. Configure the internal pullup resistor, so it reads 1 when the button is NOT pressed -- `gpio mode 26 up` 3. Test to see if the button works by reading the pin with the button pressed and not pressed -- `gpio read 26` To watch the pin I downloaded and compiled gpio-watch program. Gpio-watch has a mode where it will watch for a rising edge (transition from 0 to 1) and "debounce" the signal by waiting to see if the signal stays the same before showing the change. 1. Dowload the zip file and expand it 2. Edit "main.c" and change the line that says `#define DEBOUNCE_INTERVAL 100000L` to `#define DEBOUNCE_INTERVAL 100000000L` 3. Compile the software -- `make` 4. Install it -- `sudo make install` After gpio-watch is configured to watch a pin, it will run a script with the same name as a pin in /etc/gpio-watch. So in my case, it runs /etc/gpio-watch/26. #!/bin/sh #echo "Something happened! Pin=$1, value=$2" /home/pi/scripts/printer_toggle.sh After that script is in place, you can test it with `gpio-watch 26:switch`. Note that this will only work if you have configured the pin as detailed above. Finally, you have to set the pi to set up the pins at startup and to run the gpio-watch process in the background. Add this to rc.local: /usr/bin/gpio export 26 in /usr/bin/gpio mode 26 up /usr/bin/gpio-watch 26:switch & Now enjoy turning your printer on and off with the press of a button, while still being able to control it from OctoPrint.

Download Model from thingiverse

With this file you will be able to print On/Off Button mount for Makerselect v2/wanhao duplicator. with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on On/Off Button mount for Makerselect v2/wanhao duplicator..