[RISOLTO] Auto Bed Leveling September 21, 2014 05:28PM |
Registered: 10 years ago Posts: 42 |
Re: Auto Bed Leveling September 21, 2014 05:37PM |
Registered: 10 years ago Posts: 6,409 |
Re: Auto Bed Leveling September 22, 2014 03:49PM |
Registered: 10 years ago Posts: 42 |
Re: Auto Bed Leveling September 22, 2014 03:57PM |
Registered: 10 years ago Posts: 6,409 |
Re: Auto Bed Leveling September 23, 2014 01:03AM |
Registered: 10 years ago Posts: 42 |
Re: Auto Bed Leveling September 23, 2014 01:38AM |
Registered: 10 years ago Posts: 6,409 |
Re: Auto Bed Leveling September 23, 2014 08:21AM |
Registered: 10 years ago Posts: 42 |
#define ENABLE_AUTO_BED_LEVELING // Delete the comment to enable (remove // at the start of the line) #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 15 //#define RIGHT_PROBE_BED_POSITION 130 //#define BACK_PROBE_BED_POSITION 130 //#define FRONT_PROBE_BED_POSITION 20 // set the number of grid points per dimension // I wouldn't see a reason to go above 3 (=9 probing points on the bed) //#define AUTO_BED_LEVELING_GRID_POINTS 2 //#else // not AUTO_BED_LEVELING_GRID // with no grid, just probe 3 arbitrary points. A simple cross-product // is used to esimate the plane of the print bed #define ABL_PROBE_PT_1_X 15 #define ABL_PROBE_PT_1_Y 150 #define ABL_PROBE_PT_2_X 15 #define ABL_PROBE_PT_2_Y 20 #define ABL_PROBE_PT_3_X 130 #define ABL_PROBE_PT_3_Y 20 //#endif // AUTO_BED_LEVELING_GRID // these are the offsets to the probe relative to the extruder tip (Hotend - Probe) #define X_PROBE_OFFSET_FROM_EXTRUDER -50 #define Y_PROBE_OFFSET_FROM_EXTRUDER -25 #define Z_PROBE_OFFSET_FROM_EXTRUDER -4 #define Z_RAISE_BEFORE_HOMING 4 // (in mm) Raise Z before homing (G28) for Probe Clearance. // Be sure you have this distance over your Z_MAX_POS in case #define XY_TRAVEL_SPEED 300 // X and Y axis travel speed between probes, in mm/min #define Z_RAISE_BEFORE_PROBING 10 //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 //If defined, the Probe servo will be turned on only during movement and then turned off to avoid jerk //The value is the delay to turn the servo off after powered on - depends on the servo speed; 300ms is good value, but you can try lower it. // You MUST HAVE the SERVO_ENDSTOPS defined to use here a value higher than zero otherwise your code will not compile. //#define PROBE_SERVO_DEACTIVATION_DELAY 300
Re: Auto Bed Leveling September 23, 2014 08:41AM |
Moderator Registered: 13 years ago Posts: 964 |
Re: Auto Bed Leveling September 23, 2014 09:19AM |
Moderator Registered: 11 years ago Posts: 1,865 |
Re: [RISOLTO] Auto Bed Leveling September 24, 2014 10:47AM |
Registered: 10 years ago Posts: 12 |