How to implement Auto Bed Leveling V0.91
Insuctive sensor attached to Z-min. G28 works and places the tip of the nozzle ~1mm above the bed. Prints are great, stick to bed nor warping. I want to start auto bed leveling, how do I turn it on?
Current settings:
#define AUTO_LEVEL_DEBUG 0
#define FEATURE_Z_PROBE 0
#define Z_PROBE_BED_DISTANCE 4
#define Z_PROBE_PIN -1
#define Z_PROBE_PULLUP 1
#define Z_PROBE_ON_HIGH 0
#define Z_PROBE_X_OFFSET 5 //0
#define Z_PROBE_Y_OFFSET 5 //0
#define Z_PROBE_WAIT_BEFORE_TEST 0
#define Z_PROBE_SPEED 2
#define Z_PROBE_XY_SPEED 200
#define Z_PROBE_SWITCHING_DISTANCE 0.3
#define Z_PROBE_REPETITIONS 2
#define Z_PROBE_HEIGHT 5
#define Z_PROBE_START_SCRIPT "G28 Y0 X0\n G1 X-40\n G28 Z0\n G1 Z5\n"
#define Z_PROBE_FINISHED_SCRIPT "G28 X0 Y200\n"
#define FEATURE_AUTOLEVEL 1 //0
#define Z_PROBE_X0 -30
#define Z_PROBE_Y0 -5
#define Z_PROBE_X1 150
#define Z_PROBE_Y1 -5
#define Z_PROBE_X2 150
#define Z_PROBE_Y2 160
#define Z_PROBE_X3 -30
#define Z_PROBE_Y3 160
Nothing happens when I issue G29.
What elese do I ned to change to make auto bed leveling work?
Comments