Dual Extruder Software MIN - MAX Endstopps 12. February 2022 06:04 |
Registrierungsdatum: 7 Jahre zuvor Beiträge: 94 |
Re: Dual Extruder Software MIN - MAX Endstopps 12. February 2022 13:07 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
Extruder-Einstellung entweder Switching, Parking oder Switching Toolhead, je nach Bauart.
Re: Dual Extruder Software MIN - MAX Endstopps 12. February 2022 16:12 |
Registrierungsdatum: 7 Jahre zuvor Beiträge: 94 |
Re: Dual Extruder Software MIN - MAX Endstopps 13. February 2022 04:29 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
#define HOTEND_OFFSET_X { 0.0, 18.00 } // (mm) relative X-offset for each nozzleSanityCheck.h erzeugt die Fehlermeldung:
/**
* Require soft endstops for certain setups
*/
#if !BOTH(MIN_SOFTWARE_ENDSTOPS, MAX_SOFTWARE_ENDSTOPS)
#if ENABLED(DUAL_X_CARRIAGE)
#error "DUAL_X_CARRIAGE requires both MIN_ and MAX_SOFTWARE_ENDSTOPS."
#elif HAS_HOTEND_OFFSET
#error "MIN_ and MAX_SOFTWARE_ENDSTOPS are both required with offset hotends."
#endif
#endif
Re: Dual Extruder Software MIN - MAX Endstopps 13. February 2022 15:31 |
Registrierungsdatum: 7 Jahre zuvor Beiträge: 94 |
Re: Dual Extruder Software MIN - MAX Endstopps 13. February 2022 16:04 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing). // The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder). // For the other hotends it is their distance from the extruder 0 hotend. //#define HOTEND_OFFSET_X { 0.0, 20.00 } // (mm) relative X-offset for each nozzle //#define HOTEND_OFFSET_Y { 0.0, 5.00 } // (mm) relative Y-offset for each nozzle //#define HOTEND_OFFSET_Z { 0.0, 0.00 } // (mm) relative Z-offset for each nozzleHerzl. Grüße