Z Dual Endstops und Z Probe möglich 13. March 2019 10:30 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 5 |
Re: Z Dual Endstops und Z Probe möglich 13. March 2019 12:02 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: Z Dual Endstops und Z Probe möglich 13. March 2019 13:23 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 3.969 |
Re: Z Dual Endstops und Z Probe möglich 13. March 2019 13:48 |
Registrierungsdatum: 13 Jahre zuvor Beiträge: 1.112 |
Quote
Fridi
Also ich habe 2 Z Motoren parallel angeschlossen. Ich habe es in den Jahren noch nicht gehabt, dass die sich ohne mein Zutun verstellt haben. Das passiert nur, wenn man Gewinde mit einer Steigung sagen wir mal > 3mm nimmt.
Re: Z Dual Endstops und Z Probe möglich 14. March 2019 04:09 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 5 |
Re: Z Dual Endstops und Z Probe möglich 14. March 2019 06:12 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 3.969 |
Re: Z Dual Endstops und Z Probe möglich 14. March 2019 09:07 |
Registrierungsdatum: 7 Jahre zuvor Beiträge: 78 |
Quote
Fridi
B ei einer Steigung von 1,5 mm und Trapetzgewinde kann es keine Bewegung durch die Schwerkraft geben. Dafür ist die Steigung zu gering und die Reibung zu groß. Willst Du uns einen Bären aufbinden? Oder ist schon 1. April.
Re: Z Dual Endstops und Z Probe möglich 15. March 2019 20:01 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 5 |
Re: Z Dual Endstops und Z Probe möglich 16. March 2019 03:53 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: Z Dual Endstops und Z Probe möglich 16. March 2019 09:42 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 300 |
/**
* Z probes require clearance when deploying, stowing, and moving between
* probe points to avoid hitting the bed and other hardware.
* Servo-mounted probes require extra space for the arm to rotate.
* Inductive probes need space to keep from triggering early.
*
* Use these settings to specify the distance (mm) to raise the probe (or
* lower the bed). The values set here apply over and above any (negative)
* probe Z Offset set with Z_PROBE_OFFSET_FROM_EXTRUDER, M851, or the LCD.
* Only integer values >= 1 are valid here.
*
* Example: `M851 Z-5` with a CLEARANCE of 4 => 9mm from bed to nozzle.
* But: `M851 Z+1` with a CLEARANCE of 2 => 2mm from bed to nozzle.
*/
#define Z_CLEARANCE_DEPLOY_PROBE 5 // Z Clearance for Deploy/Stow
#define Z_CLEARANCE_BETWEEN_PROBES 5 // Z Clearance between probe points
#define Z_CLEARANCE_MULTI_PROBE 5 // Z Clearance between multiple probes
#define Z_AFTER_PROBING 0 // Z position after probing is done
#define Z_PROBE_LOW_POINT -2 // Farthest distance below the trigger-point to go before stopping
Re: Z Dual Endstops und Z Probe möglich 17. March 2019 16:30 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 5 |
Re: Z Dual Endstops und Z Probe möglich 18. March 2019 02:56 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
// Min software endstops constrain movement within minimum coordinate bounds #define MIN_SOFTWARE_ENDSTOPS #if ENABLED(MIN_SOFTWARE_ENDSTOPS) //#define MIN_SOFTWARE_ENDSTOP_X #define MIN_SOFTWARE_ENDSTOP_Y //#define MIN_SOFTWARE_ENDSTOP_Z #endif // Max software endstops constrain movement within maximum coordinate bounds #define MAX_SOFTWARE_ENDSTOPS #if ENABLED(MAX_SOFTWARE_ENDSTOPS) #define MAX_SOFTWARE_ENDSTOP_X //#define MAX_SOFTWARE_ENDSTOP_Y #define MAX_SOFTWARE_ENDSTOP_Z #endifHerzl. Grüße
Re: Z Dual Endstops und Z Probe möglich 18. March 2019 16:11 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 5 |
Re: Z Dual Endstops und Z Probe möglich 18. March 2019 17:37 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
//#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 ... #define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe. #endif
// Travel limits (mm) after homing, corresponding to endstop positions.
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS -2