diff options
author | Denis Ignatenko <60291791+test3210-d@users.noreply.github.com> | 2020-03-02 05:05:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 22:05:12 -0500 |
commit | f84542cd20dba6b3ffffd1da1b6363bcbd31b279 (patch) | |
tree | 50d2fe77b674966a4fc2e34f5d13dde5dbfc3992 /config | |
parent | 26523d77bab09948412ff9695c13209ad2395256 (diff) | |
download | kutter-f84542cd20dba6b3ffffd1da1b6363bcbd31b279.tar.gz kutter-f84542cd20dba6b3ffffd1da1b6363bcbd31b279.tar.xz kutter-f84542cd20dba6b3ffffd1da1b6363bcbd31b279.zip |
hall_filament_width_sensor: Added virtual runout sensor (#2535)
Signed-off-by: Denis Ignatenko deniss979@gmail.com
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 4c5d0d8c..d7410ece 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -1891,7 +1891,35 @@ #measurement_interval: 10 # The approximate distance (in mm) between sensor readings. The # default is 10mm. - +#Virtual filament_switch_sensor support. Create sensor named hall_filament_width_sensor. +#min_diameter:1.0 +#Minimal diameter for trigger virtual filament_switch_sensor. +#Values from filament_switch_sensor. +#See [filament_switch_sensor] for a description of these parameters. +#pause_on_runout: True +# When set to True, a PAUSE will execute immediately after a runout +# is detected. Note that if pause_on_runout is False and the +# runout_gcode is omitted then runout detection is disabled. Default +# is True. +#runout_gcode: +# A list of G-Code commands to execute after a filament runout is +# detected. See docs/Command_Templates.md for G-Code format. If +# pause_on_runout is set to True this G-Code will run after the +# PAUSE is complete. The default is not to run any G-Code commands. +#insert_gcode: +# A list of G-Code commands to execute after a filament insert is +# detected. See docs/Command_Templates.md for G-Code format. The +# default is not to run any G-Code commands, which disables insert +# detection. +#event_delay: 3.0 +# The minimum amount of time in seconds to delay between events. +# Events triggered during this time period will be silently +# ignored. The default is 3 seconds. +#pause_delay: 0.5 +# The amount of time to delay, in seconds, between the pause command +# dispatch and execution of the runout_gcode. It may be useful to +# increase this delay if Octoprint exhibits strange pause behavior. +# Default is 0.5 seconds. ###################################################################### # Board specific hardware support |