Problemi asse Z autolivellante [Risolto] April 15, 2014 04:50PM |
Registered: 9 years ago Posts: 36 |
//============================= Bed Auto Leveling =========================== #define ENABLE_AUTO_BED_LEVELING // Delete the comment to enable (remove // at the start of the line) //DECOMMENTATO DA ME #ifdef ENABLE_AUTO_BED_LEVELING #define AUTO_BED_LEVELING_GRID #ifdef AUTO_BED_LEVELING_GRID // set the rectangle in which to probe #define LEFT_PROBE_BED_POSITION 30 #define RIGHT_PROBE_BED_POSITION 120 #define BACK_PROBE_BED_POSITION 150 #define FRONT_PROBE_BED_POSITION 20 #define AUTO_BED_LEVELING_GRID_POINTS 2 #else // not AUTO_BED_LEVELING_GRID #define ABL_PROBE_PT_1_X 15 #define ABL_PROBE_PT_1_Y 180 #define ABL_PROBE_PT_2_X 15 #define ABL_PROBE_PT_2_Y 20 #define ABL_PROBE_PT_3_X 170 #define ABL_PROBE_PT_3_Y 20 #endif // AUTO_BED_LEVELING_GRID #define X_PROBE_OFFSET_FROM_EXTRUDER -43.00 //VALORE ORIGINALE -25 #define Y_PROBE_OFFSET_FROM_EXTRUDER 8.40 //VALORE ORIGINALE -29 #define Z_PROBE_OFFSET_FROM_EXTRUDER -20.20 //VALORE ORIGINALE -12.35 #define Z_RAISE_BEFORE_HOMING 4 // (in mm) Raise Z before homing (G28) for Probe Clearance. #define XY_TRAVEL_SPEED 400 // X and Y axis travel speed between probes, in mm/min //ORIGINALE 8000 #define Z_RAISE_BEFORE_PROBING 15 //How much the extruder will be raised before traveling to the first probing point. #define Z_RAISE_BETWEEN_PROBINGS 10 //How much the extruder will be raised when traveling from between next probing points //ORIGINALE 5 //#define PROBE_SERVO_DEACTIVATION_DELAY 300 //DECOMMENTATO DA NOI #define Z_SAFE_HOMING #ifdef Z_SAFE_HOMING #define Z_SAFE_HOMING_X_POINT (X_MAX_LENGTH/2) // X point for Z homing when homing all axis (G28) #define Z_SAFE_HOMING_Y_POINT (Y_MAX_LENGTH/2) // Y point for Z homing when homing all axis (G28) #endif #endif // ENABLE_AUTO_BED_LEVELING // The position of the homing switches //#define MANUAL_HOME_POSITIONS // If defined, MANUAL_*_HOME_POS below will be used //#define BED_CENTER_AT_0_0 // If defined, the center of the bed is at (X=0, Y=0) //Manual homing switch locations: // For deltabots this means top and center of the Cartesian print volume. #define MANUAL_X_HOME_POS 0 #define MANUAL_Y_HOME_POS 0 #define MANUAL_Z_HOME_POS 0 //#define MANUAL_Z_HOME_POS 402 // For delta: Distance between nozzle and print surface after homing. //// MOVEMENT SETTINGS #define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E #define HOMING_FEEDRATE {50*60, 50*60, 2*60, 0} // set the homing speeds (mm/min) //#define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0} // set the homing speeds (mm/min) //ORIGINALE COMMENTATA DA NOI // default settings #define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,3200/0.8,640*1.1} // default steps per unit for Ultimaker //#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,200.0*8/3,760*1.1} // default steps per unit for Ultimaker //ORIGINALE #define DEFAULT_MAX_FEEDRATE {500, 500, 5, 25} // (mm/sec) #define DEFAULT_MAX_ACCELERATION {9000,9000,100,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 // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously) #define DEFAULT_XYJERK 20.0 // (mm/sec) #define DEFAULT_ZJERK 0.4 // (mm/sec) #define DEFAULT_EJERK 5.0 // (mm/sec)
Re: Problemi asse Z autolivellante April 15, 2014 05:08PM |
Registered: 9 years ago Posts: 6,409 |
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 25} // (mm/sec)
Re: Problemi asse Z autolivellante [RISOLTO] April 15, 2014 05:52PM |
Registered: 9 years ago Posts: 36 |
Re: Problemi asse Z autolivellante [RISOLTO] April 15, 2014 06:01PM |
Registered: 9 years ago Posts: 6,409 |
Re: Problemi asse Z autolivellante April 16, 2014 12:25PM |
Admin Registered: 10 years ago Posts: 954 |