G29 does not probe entire bed... probe method seems stuck on method (0) - 3 point with BL Touch

Hi, Decided to try setting up BL Tocu again. I'm using the latest stable firmware 1.02. I got the probe to sort of work but have some things that don't appear to me working. This is what I noticed

- my bed is 300x300 so even though I have the probe points set to 20, 280 it's only measuring half the bed and finishes at (3rd point) 100,160.

#define Z_PROBE_X1 20
#define Z_PROBE_Y1 20
#define Z_PROBE_X2 280
#define Z_PROBE_Y2 20
#define Z_PROBE_X3 20
#define Z_PROBE_Y3 280

This doesn't seem to make a difference?

- also I have #define BED_LEVELING_METHOD 1. Is it supposed to probe a grid? If so it only probes 3 points like method 0?

- the nozzle is crashing into the bed, but that may just be my distances need to be set.
- last thing... even with #define Z_PROBE_BED_DISTANCE 3 set to 3... it seems to use a distance of 50

Here is my z probe settings. I'm on the z-min pin. Mechanically it seems to function but something it strange... I'd like it to atleast measure my entire bed and not just 1/4.

Last question, since there is no z-min... is the probe supposed to act as a z-min switch? After a G29... I can still manually move the bed into the nozzle (or nozzle into the bed...my bed moves up and down)


// #################### Z-Probing #####################

#define Z_PROBE_Z_OFFSET 0
#define Z_PROBE_Z_OFFSET_MODE 0
#define UI_BED_COATING 0
#define FEATURE_Z_PROBE 1
#define EXTRUDER_IS_Z_PROBE 0
#define Z_PROBE_DISABLE_HEATERS 0
#define Z_PROBE_BED_DISTANCE 3
#define Z_PROBE_PIN ORIG_Z_MIN_PIN
#define Z_PROBE_PULLUP 1
#define Z_PROBE_ON_HIGH 1
#define Z_PROBE_X_OFFSET 46
#define Z_PROBE_Y_OFFSET 0
#define Z_PROBE_WAIT_BEFORE_TEST 0
#define Z_PROBE_SPEED 2
#define Z_PROBE_XY_SPEED 150
#define Z_PROBE_SWITCHING_DISTANCE 5
#define Z_PROBE_REPETITIONS 1
#define Z_PROBE_HEIGHT 2.98
#define Z_PROBE_DELAY 0
#define Z_PROBE_START_SCRIPT "M340 P0 S700"
#define Z_PROBE_FINISHED_SCRIPT "M340 P0 S1500"
#define Z_PROBE_RUN_AFTER_EVERY_PROBE ""
#define Z_PROBE_REQUIRES_HEATING 0
#define Z_PROBE_MIN_TEMPERATURE 150
#define FEATURE_AUTOLEVEL 1
#define FEATURE_SOFTWARE_LEVELING 0
#define Z_PROBE_X1 20
#define Z_PROBE_Y1 20
#define Z_PROBE_X2 280
#define Z_PROBE_Y2 20
#define Z_PROBE_X3 20
#define Z_PROBE_Y3 280
#define BED_LEVELING_METHOD 1
#define BED_CORRECTION_METHOD 0
#define BED_LEVELING_GRID_SIZE 5
#define BED_LEVELING_REPETITIONS 5
#define BED_MOTOR_1_X 0
#define BED_MOTOR_1_Y 0
#define BED_MOTOR_2_X 200
#define BED_MOTOR_2_Y 0
#define BED_MOTOR_3_X 100
#define BED_MOTOR_3_Y 200
#define BENDING_CORRECTION_A 0
#define BENDING_CORRECTION_B 0
#define BENDING_CORRECTION_C 0
#define FEATURE_AXISCOMP 0
#define AXISCOMP_TANXY 0
#define AXISCOMP_TANYZ 0
#define AXISCOMP_TANXZ 0




Comments

  • We are not Marlin, so please use G32 S2 for autoleveling and not G29. Our G29 does no leveling, it just computes z as average of 3 heights measured.
Sign In or Register to comment.