braun | GND |
rot | +5V |
gelb | Signal on Z-MAX |
schwarz | GND |
weiß | Signal on Z-MIN |
Nun müssen wir noch den SERVO0_PIN auf den Z-MAX Anschluss legen.
Dazu müssen wir in der Marlin/Marlin/src/pins/ramps/pins_RUMBA.h den Eintrag für den SERVO0_PIN anpassen
Original:
//
// Servo
//
#define SERVO0_PIN 5
Angepasst:
//
// Servo
//
#define SERVO0_PIN 32
Configuration.h:
Hier muss der BLTouch noch aktiviert werden
#define BLTOUCH
Natürlich müssen auch die End-Stops richtig konfiguriert werden.
// Specify here all the endstop connectors that are connected to any endstop or probe. |
// Almost all printers will be using one per axis. Probes will use one or more of the |
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes. |
#define USE_XMIN_PLUG |
#define USE_YMIN_PLUG |
#define USE_ZMIN_PLUG |
//#define USE_IMIN_PLUG |
//#define USE_JMIN_PLUG |
//#define USE_KMIN_PLUG |
//#define USE_XMAX_PLUG |
//#define USE_YMAX_PLUG |
//#define USE_ZMAX_PLUG |
//#define USE_IMAX_PLUG |
//#define USE_JMAX_PLUG |
//#define USE_KMAX_PLUG |
Zur Info:
In der configuration_adv.h kann man bei Bedarf noch weitere Einstellungen zum BLTouch machen