Basic Information:
Printer Model: Ender 3
MCU / Printerboard: SKR E3 V3 mini
klippy.log
klippy.log (153.4 KB)
Describe your issue:
Hey guys, I’m trying to set up a Microprobe V2 on on an SKR E3 V3 board and it’s throwing an error when I load the config with the changes I made from the online manual.
I’m not sure if it’s relevant but I’m still using
Version: v0.10.0-291-g4ce2d379 firmware on the board
and
Version: v0.12.0-118-g18de421c on the host
The probe config section of my printer.cfg
##################
# Probe config
##################
[output_pin probe_enable]
pin: PA1
value: 0
[gcode_macro Probe_Deploy]
gcode:
SET_PIN PIN=probe_enable VALUE=1
[gcode_macro Probe_Stow]
gcode:
SET_PIN PIN=probe_enable VALUE=0
[probe]
pin: ^!PC14 ## For V1 version, set to ^PC14 for high-level trigger; for V2 version, set to ^!PC14 for low-level trigger.
deactivate_on_each_sample: False
x_offset: -42.0 # Actual offset of the MicroProbe installation
y_offset: 2 # Actual offset of the MicroProbe installation
z_offset: 0.0 # Actual offset of the MicroProbe installation
speed: 5.0
activate_gcode:
Probe_Deploy
G4 P500 # Allow 500 milliseconds for the probe to deploy
deactivate_gcode:
Probe_Stow
[safe_z_home]
home_xy_position: 156,116 # Nozzle coordinates
speed: 50
z_hop: 10
z_hop_speed: 10
#move_to_previous: True
[bed_mesh]
speed: 200
horizontal_move_z: 5
mesh_min: 20, 20 #Change coordinates to match your printer
mesh_max: 190, 190 #Change coordinates to match your printer
probe_count: 9
mesh_pps: 2
algorithm: bicubic
fade_start: 1
fade_end: 10
fade_target: 0
###################


