What's new
VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

Solved SB2209 + CNC Tap v2 - Issue with Z-Probe / Z-Endstop

Cyrax

New member
Printer Model
Voron 2.4 R2 350
Extruder Type
Clockwork 2
Cooling Type
Stealthburner
Hello community!

I am a new one here, so i hope i did not break any rules with this thread (searched before creating a new one). So my problem is that when i try to test and pull up toolhead with CNC Voron Tap v2 and check Endstops section, nothing works, always shows me OPEN, but led color switched from blue to red.

All connections were build regarding the official documentation

This is my config file parts:

[probe]
pin: EBBCan: PB9
x_offset: 0
y_offset: 0
z_offset: 0
speed: 5.0
samples: 2
samples_result: median
sample_retract_dist: 3.0
samples_tolerance: 0.006
samples_tolerance_retries: 4

activate_gcode:
{% set PROBE_TEMP = 150 %}
{% set MAX_TEMP = PROBE_TEMP + 5 %}
{% set ACTUAL_TEMP = printer.extruder.temperature %}
{% set TARGET_TEMP = printer.extruder.target %}

{% if TARGET_TEMP > PROBE_TEMP %}
{ action_respond_info('Extruder temperature target of %.1fC is too high, lowering to %.1fC' % (TARGET_TEMP, PROBE_TEMP)) }
M109 S{ PROBE_TEMP }
{% else %}
# Temperature target is already low enough, but nozzle may still be too hot.
{% if ACTUAL_TEMP > MAX_TEMP %}
{ action_respond_info('Extruder temperature %.1fC is still too high, waiting until below %.1fC' % (ACTUAL_TEMP, MAX_TEMP)) }
TEMPERATURE_WAIT SENSOR=extruder MAXIMUM={ MAX_TEMP }
{% endif %}
{% endif %}

[stepper_z]
step_pin: PF11
dir_pin: !PG3
enable_pin: !PG5
rotation_distance: 40
gear_ratio: 80:16
microsteps: 32
endstop_pin: probe:z_virtual_endstop
.....

If you know how to solve it, I will be very grateful. Thank you.
 
Last edited:
So, for now i solved this issue by connecting Voron Tap v2 to Endstop like this:

1722243424308.png

[probe]
pin: !EBBCan: PB5
.....

!!! If broken wiring (disconnected while printing etc.) then Endstop Z and Probe will be triggered and nothing bad happened !!!

Everything works like it must be and i don't know why the official doc says to connect it to BLTOUCH (Servo pin)
 
Last edited:
Top