bigtreetech / MicroProbe

75 stars 12 forks source link

Microprobe dont run on SKR mini E3 V3 under Klipper #11

Open digitalBulldog opened 1 year ago

digitalBulldog commented 1 year ago

hey guys,

here is my entry for the microprobe in Klipper, but its not stopping the homing when touching the bed. the pin is doesnt works and my toolhead crash into bed.

do you have anyone fix this problem?

digitalBulldog commented 1 year ago

If I use this setting, the same thing happens, the sensor extends, but when it touches the bed, it doesnt stop and crashes into the bed with the pin and nozzle

##########################################

[gcode_macro PROBE_DOWN] gcode: SET_PIN PIN=probe_enable VALUE=1

[gcode_macro PROBE_UP] gcode: SET_PIN PIN=probe_enable VALUE=0

[output_pin probe_enable] pin: PA1 # Set to the control pin on your board value: 0

[probe] pin: PC14 # Change this to the sensor pin for your board deactivate_on_each_sample: False x_offset: -43 y_offset: -7 z_offset: 0 # Will be overridden when you do a PROBE_CALIBRATE samples: 2 samples_tolerance: 0.05 samples_tolerance_retries: 3 activate_gcode: PROBE_DOWN G4 P500 deactivate_gcode: PROBE_UP

digitalBulldog commented 1 year ago

WhatsApp Bild 2023-09-07 um 23 13 36

it is a V2, but i need help with Klipper, please help me anyone...please....i need my printer, its important

vovodroid commented 1 year ago

I'm not familiar with Clipper, but in Marlin contrary to Biqu manual this new v2 has triggered state Low, and probe is connected to Z-stop, not probe pin.

KLENY199511 commented 8 months ago

mine works like a bee on this config:

[gcode_macro PROBE_DOWN] gcode: SET_PIN PIN=probe_enable VALUE=1

[gcode_macro PROBE_UP] gcode: SET_PIN PIN=probe_enable VALUE=0

[output_pin probe_enable] pin: PA1 # Set to the control pin on your board value: 0

[probe] pin: PC14 # NOTE FOR V2 users: Set this to ^!PC14 to set the low level trigger deactivate_on_each_sample: false x_offset: -39 y_offset: -14

z_offset: 0 # Will be overridden when you do a PROBE_CALIBRATE

samples: 3 samples_tolerance: 0.01 samples_tolerance_retries: 3 activate_gcode: PROBE_DOWN G4 P500 deactivate_gcode: PROBE_UP

[safe_z_home] home_xy_position: 150,120 # Change coordinates to the center of your print bed speed: 50 z_hop: 10 # Move up 10mm z_hop_speed: 10 move_to_previous: False