CNC Z probe
Hi !
I made a DIY CNC with Repetier firmware, all works well !
I would like to use a CNC Z probe like that : https://i.ebayimg.com/images/g/GOgAAOSwqfNXpGCN/s-l300.jpg
I have a Zmax endstop and when i put G28 Z, Z goes up like i want, it's ok
But what have i to set in the firmware and wich command have i to enter to have a single Z probe with XY current position ?
Thank you for your answer
Romain
Comments
#define Z_PROBE_Z_OFFSET_MODE 0
#define UI_BED_COATING 1
#define FEATURE_Z_PROBE 1
#define EXTRUDER_IS_Z_PROBE 0
#define Z_PROBE_DISABLE_HEATERS 0
#define Z_PROBE_BED_DISTANCE 10
#define Z_PROBE_PIN ORIG_Z_MIN_PIN
#define Z_PROBE_PULLUP 1
#define Z_PROBE_ON_HIGH 0
#define Z_PROBE_X_OFFSET 0
#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 1
#define Z_PROBE_REPETITIONS 1
#define Z_PROBE_HEIGHT 40
#define Z_PROBE_DELAY 0
#define Z_PROBE_START_SCRIPT ""
#define Z_PROBE_FINISHED_SCRIPT ""
#define Z_PROBE_RUN_AFTER_EVERY_PROBE ""
#define Z_PROBE_REQUIRES_HEATING 0
#define Z_PROBE_MIN_TEMPERATURE 20
#define FEATURE_AUTOLEVEL 0
#define FEATURE_SOFTWARE_LEVELING 0
G0 Z0 F200
to go to the trigger position or which height you want. There are so many things you might want that you use R and H in G30 to define that and then move to where you want it.