Endstops reagieren falsch 12. October 2019 11:05 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 12. October 2019 15:36 |
Administrator Registrierungsdatum: 17 Jahre zuvor Beiträge: 13.996 |
Re: Endstops reagieren falsch 12. October 2019 19:18 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 12. October 2019 19:48 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 300 |
//=========================================================================== //============================== Endstop Settings =========================== //=========================================================================== // @section homing // 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_XMAX_PLUG //#define USE_YMAX_PLUG //#define USE_ZMAX_PLUG // Enable pullup for all endstops to prevent a floating state #define ENDSTOPPULLUPS #if DISABLED(ENDSTOPPULLUPS) // Disable ENDSTOPPULLUPS to set pullups individually //#define ENDSTOPPULLUP_XMAX //#define ENDSTOPPULLUP_YMAX //#define ENDSTOPPULLUP_ZMAX //#define ENDSTOPPULLUP_XMIN //#define ENDSTOPPULLUP_YMIN //#define ENDSTOPPULLUP_ZMIN //#define ENDSTOPPULLUP_ZMIN_PROBE #endif // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
// Direction of endstops when homing; 1=MAX, -1=MIN // :[-1,1] #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1
Re: Endstops reagieren falsch 13. October 2019 02:40 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 13. October 2019 04:53 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 300 |
// Enable pullup for all endstops to prevent a floating state #define ENDSTOPPULLUPS #if DISABLED(ENDSTOPPULLUPS) // Disable ENDSTOPPULLUPS to set pullups individually //#define ENDSTOPPULLUP_XMAX //#define ENDSTOPPULLUP_YMAX //#define ENDSTOPPULLUP_ZMAX #define ENDSTOPPULLUP_XMIN #define ENDSTOPPULLUP_YMIN #define ENDSTOPPULLUP_ZMIN #define ENDSTOPPULLUP_ZMIN_PROBE #endif // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). #define X_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop. #define Y_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop. #define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop. #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Z_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
// Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way. #define INVERT_X_DIR false #define INVERT_Y_DIR true #define INVERT_Z_DIR false // @section extruder // For direct drive extruder v9 set to true, for geared extruder set to false. #define INVERT_E0_DIR false #define INVERT_E1_DIR false #define INVERT_E2_DIR false #define INVERT_E3_DIR false #define INVERT_E4_DIR false #define INVERT_E5_DIR false
Re: Endstops reagieren falsch 14. October 2019 06:20 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 14. October 2019 06:37 |
Administrator Registrierungsdatum: 17 Jahre zuvor Beiträge: 13.996 |
Re: Endstops reagieren falsch 14. October 2019 06:48 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 14. October 2019 06:49 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 631 |
Re: Endstops reagieren falsch 14. October 2019 07:02 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 14. October 2019 07:28 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 14. October 2019 08:44 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 143 |
Re: Endstops reagieren falsch 14. October 2019 13:37 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 300 |
// @section homing // 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_XMAX_PLUG #define USE_YMAX_PLUG //#define USE_ZMAX_PLUG // Enable pullup for all endstops to prevent a floating state #define ENDSTOPPULLUPS #if DISABLED(ENDSTOPPULLUPS) // Disable ENDSTOPPULLUPS to set pullups individually #define ENDSTOPPULLUP_XMAX #define ENDSTOPPULLUP_YMAX //#define ENDSTOPPULLUP_ZMAX //#define ENDSTOPPULLUP_XMIN //#define ENDSTOPPULLUP_YMIN #define ENDSTOPPULLUP_ZMIN #define ENDSTOPPULLUP_ZMIN_PROBE #endif // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). #define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop. #define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop. #define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop. #define Z_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop. #define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe. // Direction of endstops when homing; 1=MAX, -1=MIN // :[-1,1] #define X_HOME_DIR 1 #define Y_HOME_DIR 1 #define Z_HOME_DIR -1
Re: Endstops reagieren falsch 15. October 2019 07:27 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 15. October 2019 14:54 |
Registrierungsdatum: 9 Jahre zuvor Beiträge: 300 |
Re: Endstops reagieren falsch 16. October 2019 08:44 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 16. October 2019 10:17 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 143 |
Re: Endstops reagieren falsch 18. October 2019 04:41 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 19. October 2019 02:19 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 143 |
Re: Endstops reagieren falsch 11. November 2019 13:01 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |
Re: Endstops reagieren falsch 12. November 2019 03:52 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 143 |
Re: Endstops reagieren falsch 13. November 2019 13:44 |
Registrierungsdatum: 5 Jahre zuvor Beiträge: 22 |