diff options
author | TheJoshW <46292721+TheJoshW@users.noreply.github.com> | 2021-03-15 12:36:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 21:36:19 -0400 |
commit | bf8f7133b43cbb98b4a9515e43e1a1b7d71e04ea (patch) | |
tree | d1f778bb9736b70b18925a36b971c52e400898b9 /docs/Config_Reference.md | |
parent | d77928b17ba6b32189033b3d6decdb5bcc7c342c (diff) | |
download | kutter-bf8f7133b43cbb98b4a9515e43e1a1b7d71e04ea.tar.gz kutter-bf8f7133b43cbb98b4a9515e43e1a1b7d71e04ea.tar.xz kutter-bf8f7133b43cbb98b4a9515e43e1a1b7d71e04ea.zip |
filament_motion_sensor: Add filament_motion_sensor (#3857)
Add functionality to support a Filament Motion Sensor for detecting extruder jams as well as runouts. Works by an encoder toggling the switch_pin 0/1 as the filament is pulled through the sensor.
Signed-off-by: Joshua Wherrett <thejoshw.code@gmail.com>
Diffstat (limited to 'docs/Config_Reference.md')
-rw-r--r-- | docs/Config_Reference.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md index c1c09cb7..b27da60b 100644 --- a/docs/Config_Reference.md +++ b/docs/Config_Reference.md @@ -3461,6 +3461,34 @@ information. # provided. ``` +## [filament_motion_sensor] + +Filament Motion Sensor. Support for filament insert and runout +detection using an encoder that toggles the output pin during filament +movement through the sensor. + +See the [command reference](G-Codes.md#filament-sensor) for more +information. + +``` +[filament_motion_sensor my_sensor] +detection_length: 7.0 +# The minimum length of filament pulled through the sensor to trigger +# a state change on the switch_pin +# Default is 7 mm. +extruder: +# The name of the extruder section this sensor is associated with. +# This parameter must be provided. +switch_pin: +#pause_on_runout: +#runout_gcode: +#insert_gcode: +#event_delay: +#pause_delay: +# See the "filament_switch_sensor" section for a description of the +# above parameters. +``` + ## [tsl1401cl_filament_width_sensor] TSLl401CL Based Filament Width Sensor. See the |