Coder Social home page Coder Social logo

v0_upper_rear_bowden_inlet's Introduction

V0 Upper-Rear Bowden Inlet (URBI)

A Reverse Bowden Inlet for the upper-rear panel of the Voron Zero with an optional filament sensor.

There are 6 Variants:

  • URBI - The basic, just a hole to pass the bowden tube through.
  • URBI-PC4 - with a thread to install a PC4-M6 fitting
  • URBI-ECAS4 - with an inverted ECAS4 fitting
  • URBIFS - with a filament sensor
  • URBIFS-PC4 - with a filament sensor, and a thread to install a PC4-M6 fitting
  • URBI-SFS2 - For the BTT SFS V2.0

Filament sensor variants require a microswitch and 6x3mm magnet.

CAD

Photo

Assembly

URBI

URBI

URBI-PC4

URBI-PC4

URBIFS

URBIFS

URBIFS-PC4

URBIFS-PC4

URBI-ECAS4

URBI-ECAS4

URBI-SFS2

URBI-SFS2

Configuring Filament Sensors

All filament sensor configurations assume you have a [respond] section defined in your configuration to enable the RESPOND gcode command.

_FS_RUNOUT Macro

This macro will be called when the filament sensor detects a runout/jam. feel free to customize this.

[gcode_macro _FS_RUNOUT]
gcode:
  M300 S660 P300  ; BEE
  M300 S440 P300  ; BOOP
  RESPOND TYPE=error MSG="Filament Runout"  ; Display a message in the console
  M117 "Filament Runout"  ; Display a message on the LCD
  PAUSE   ; Call the pause macro

_FS_ENABLE and _FS_DISABLE macros

These macros are used to enable the filament sensors during printing and disable them otherwise. These are optional, but whether or not you use them, you should still disable the sensors when they aren't required. sensors should be enabled in PRINT_START and RESUME, and disabled in PRINT_END, CANCEL_PRINT and PAUSE

[gcode_macro _FS_ENABLE]
gcode:
  SET_FILAMENT_SENSOR SENSOR=filament_switch ENABLE=1
  ; SET_FILAMENT_SENSOR SENSOR=filament_motion ENABLE=1  ; Uncomment this line if you are using the SFS V2

[gcode_macro _FS_DISABLE]
gcode:
  SET_FILAMENT_SENSOR SENSOR=filament_switch ENABLE=0
  ; SET_FILAMENT_SENSOR SENSOR=filament_motion ENABLE=0  ; Uncomment this line if you are using the SFS V2
  

# THESE ARE JUST EXAMPLES
# You should modify your own macros to include the calls to _FS_ENABLE and _FS_DISABLE

[gcode_macro PRINT_START]
gcode:
    G28                            ; home all axes
    G90                            ; absolute positioning    
    G1 Z20 F3000                   ; move nozzle away from bed
    _FS_ENABLE                     ; enable the filament runout sensor(s)


[gcode_macro PRINT_END]
gcode:
    M400                           ; wait for buffer to clear
    G92 E0                         ; zero the extruder
    _FS_DISABLE                    ; disable the filament runout sensor(s)    
    ; ... etc ...    
  

[gcode_macro CANCEL_PRINT]
rename_existing: CANCEL_PRINT_BASE
gcode:
  _FS_DISABLE
  CANCEL_PRINT_BASE


[gcode_macro PAUSE]
rename_existing: PAUSE_BASE
gcode:
  _FS_DISABLE
  PAUSE_BASE
  

[gcode_macro RESUME]
rename_existing: RESUME_BASE
gcode:
  _FS_ENABLE
  RESUME_BASE  

URBIFS Basic Runout Sensor

[filament_switch_sensor filament_switch]
switch_pin: ^PC15    # Use the correct pin for your mainboard.
pause_on_runout: False
runout_gcode: _FS_RUNOUT

BigTreeTech SFS V2.0

NOTE: The SFS V2.0 includes both a motion and switch sensor, include the above filament_switch definition in addition to the one below.

[filament_motion_sensor filament_motion]
switch_pin: ^PC12    # Use the correct pin for your mainboard.
extruder: extruder
pause_on_runout: False
detection_length: 2.88
runout_gcode: _FS_RUNOUT

v0_upper_rear_bowden_inlet's People

Contributors

mapleleafmakers avatar

Stargazers

 avatar  avatar Tom Barnes avatar  avatar  avatar Cellivar avatar  avatar Chad Condon avatar  avatar Sandro avatar  avatar Christian Duhard avatar  avatar Christos Trochalakis avatar Ng Chun Lin avatar  avatar  avatar J. White  avatar  avatar  avatar Sebastian Lindholm avatar Patrick Wulfert avatar Rob Starkey avatar Chaise Farrar avatar Peter avatar Anton Chebotaev avatar Hr_Ravn avatar  avatar  avatar Dave Hardy avatar Killa_Prints avatar ThatOneGuyGreggers avatar Kevin Lewis avatar Lantern Master  avatar Aaron Yang avatar

Watchers

 avatar  avatar

v0_upper_rear_bowden_inlet's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.