Marlin icon indicating copy to clipboard operation
Marlin copied to clipboard

How to change X and Y to Z-probe

Open Dimroy opened this issue 10 years ago • 1 comments

hi,

thank you for this marlin, but how to change x and y to z-probe because I can only change the value Z, please ??

I said that I already flasher this marlin with the new value, but it does not change the values

best regards

Dimroy avatar Nov 07 '15 14:11 Dimroy

in configuration.h you can modify these lines:

/ Z-Probe variables
// Start and end location values are used to deploy/retract the probe (will move from start to end and back again) 
#define Z_PROBE_OFFSET {0, 0, -0.61, 0}  // X, Y, Z, E distance between hotend nozzle and deployed bed leveling probe.
#define Z_PROBE_DEPLOY_START_LOCATION {0, 0, 0, 0}   // X, Y, Z, E start location for z-probe deployment sequence
#define Z_PROBE_DEPLOY_END_LOCATION {0, 0, 0, 0} 	  // X, Y, Z, E end location for z-probe deployment sequence
#define Z_PROBE_RETRACT_START_LOCATION {0, 0, 0, 0}  // X, Y, Z, E start location for z-probe retract sequence
#define Z_PROBE_RETRACT_END_LOCATION {0, 0, 0, 0}     // X, Y, Z, E end location for z-probe retract sequence 

Whytehorse avatar Jan 20 '17 02:01 Whytehorse