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!

EBB SB2209 (RP2040) Multiple sensors, Voron Tap as proximity switch, BD Sensor as probe.

ValN84

New member
I'm building a Formbot V2.4 kit for which I also bought some extras: an EBB SB2209 with RP2040 and a BD Sensor eddy current probe.
I'd like to have both TAP and the BD Sensor setup.
The TAP board is V2.4.1 so it supports both 5v and 24v.
The BD Sensor is 5V only, 5 wires just like BL Touch.

The SB2209 has 3 plugs I can use:
  1. X limit switch (5V, 3 wires)
  2. Proximity switch (24V, 3 wires)
  3. Probe input. (5V, 5 wires)
I'm interested if I can wire the TAP to Proximity Switch and the BS Sensor to Probe and use both. I'm thinking use the BD Probe for fast bed meshing and QGL but use TAP to get both automatic first layer calibration and as a fail-safe endstop if the BD Sensor fails. Anyone else tried something similar and can let me know if it works or give me pointers?
 
Beacon is releasing Firmware in the next few weeks that allow it to probe the nozzle. In other words, TAP will not be needed.
 
I've seen the new Beacon, it's impressive but I'm not interested in buying a new probe at this time. I just want to finish my 2.4 and maybe get my weird TAP and "Beacon" hybrid working :))
 
I'm curious about this, too. I have three endstops connected to my SB2209 for my mmu, but I would like to add a tap. If I could wire a tap to the spot meant for the proximity switch or the spot for the bltouch, it would be very helpful. I'm just not completely sure if it's safe to do.
 
Ive just done my sb2209 rp2040 with tap, in probe and filamatrix 2x filament sensor ready for ERCF, and the x end stop all connected via the can board, Not sure if it helps you too much as I don't make use of my BD Sensor, my clicky tap is good enough.


#####################################################################
## Runout sensor ##
#####################################################################

##try making a temp one

[filament_switch_sensor toolhead_runout]
pause_on_runout: True
runout_gcode: ## G-code to be executed after a material break
PAUSE
M117 Out of Filament
insert_gcode: ## G-code to be executed after insertion of consumables
M117 Resuming
RESUME
event_delay: 3.0 ## Minimum time delay between events, in 3 seconds
pause_delay: 0.5 ## Delay between pause commands, scheduling and executing runout_gcode in seconds.
## Increase this delay if strange pause behaviour occurs. The default is 0.5 seconds.
switch_pin: EBBCan:gpio6 ## Set the pin, this parameter must be filled

#-------------------------------------------------------------------------------------------------------------------------

[filament_switch_sensor hot_end_entry]
pause_on_runout: true
runout_gcode: ## G-code to be executed after a material break
PAUSE
M117 Out of Filament
insert_gcode: ## G-code to be executed after insertion of consumables
M117 Resuming
RESUME
event_delay: 3.0 ## Minimum time delay between events, in 3 seconds
pause_delay: 0.5 ## Delay between pause commands, scheduling and executing runout_gcode in seconds.
## Increase this delay if strange pause behaviour occurs. The default is 0.5 seconds.
switch_pin: EBBCan:gpio21 ## Set the pin, this parameter must be filled

#-------------------------------------------------------------------------------------------------------------------------
 

Attachments

  • Screenshot 2024-09-09 114635.jpg
    Screenshot 2024-09-09 114635.jpg
    393.4 KB · Views: 7
I will add I used to run my tap in the same place that tool head entry was that left my probe slot empty
 
Top