Remote Powerswitch For Flashforge Adventurer 5m Pro 3D Printer Model

Author: @
License: CC BY-NC
File formats: stl
Download type: zip
Size:9.2KB

The file 'Remote Powerswitch For Flashforge Adventurer 5m Pro 3D Printer Model' is (stl) file type, size is 9.2KB.

Summary

FF Adventurer 5m pro needs to push a button to switch it on.
I wanted to switch on from a remote computer, without making modifications on the printer itself.
So I found a solution in a solenoid to push the button.
The solenoid is triggered by a relay connected to a raspberry pi.

Parts:

  • Solenoid similar JF-0530B powered with 5V separate power connector
  • Relay module similar AZDelivery 1-Relais 5V KF301
  • Raspberry Pi

Python script to trigger the solenoid:

`#! /usr/bin/python

import RPi.GPIO as GPIO
import RPi.GPIO module
import time
from time import sleep
GPIO.setwarnings(0)
GPIO.setmode(GPIO.BCM) # BCM for GPIO numbering
GPIO.setup(18, GPIO.OUT,initial=GPIO.LOW) # set initial value option (1 or 0)

# Switch Output
GPIO.output(18,GPIO.HIGH) # set an output port/pin value to 1/GPIO.HIGH/True
time.sleep(1)
GPIO.output(18,GPIO.LOW) # set an output port/pin value to 1/GPIO.HIGH/True

finally:
# Clean up on exit
GPIO.cleanup()
print ("Ende FF5MSwitch")
`

EMagnetGehäuse.stl 14.5KB
Relaisgehäuse.stl 26.6KB