CoreXY falsche Position 22. February 2017 03:26 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 4 |
Quote
// default settings
#define DEFAULT_AXIS_STEPS_PER_UNIT {160,160,160,280} // default steps per unit for Ultimaker
#define DEFAULT_MAX_FEEDRATE {300, 300, 140, 50} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {6000,6000,2000,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot.
#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E max acceleration in mm/s^2 for printing moves
#define DEFAULT_RETRACT_ACCELERATION 3000 // X, Y, Z and E max acceleration in mm/s^2 for retracts
// 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 EXTRUDER_OFFSET_X {0.0, 20.00} // (in mm) for each extruder, offset of the hotend on the X axis
// #define EXTRUDER_OFFSET_Y {0.0, 5.00} // (in mm) for each extruder, offset of the hotend on the Y axis
// The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
#define DEFAULT_XYJERK 10.0 // (mm/sec)
#define DEFAULT_ZJERK 5.0 // (mm/sec)
#define DEFAULT_EJERK 5.0 // (mm/sec)
Re: CoreXY falsche Position 05. March 2017 01:53 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 4 |
Re: CoreXY falsche Position 05. March 2017 06:07 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.194 |
Re: CoreXY falsche Position 05. March 2017 06:33 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
#define X_PROBE_OFFSET_FROM_EXTRUDER 10 // X offset: -left +right [of the nozzle] #define Y_PROBE_OFFSET_FROM_EXTRUDER 10 // Y offset: -front +behind [the nozzle] #define Z_PROBE_OFFSET_FROM_EXTRUDER 0 // Z offset: -below +above [the nozzle]
Re: CoreXY falsche Position 06. March 2017 23:32 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 4 |