diff options
author | Arksine <arksine.code@gmail.com> | 2019-02-09 19:40:03 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-03-01 00:45:51 -0500 |
commit | 69491e2dab77b2446fe13f6df1ab80b62d405192 (patch) | |
tree | c7bfb17ee4e0348e5a2224f10380ddafbb559953 /config/example-extras.cfg | |
parent | 3c79e484d5905f97a2376408830f33631b8ca36c (diff) | |
download | kutter-69491e2dab77b2446fe13f6df1ab80b62d405192.tar.gz kutter-69491e2dab77b2446fe13f6df1ab80b62d405192.tar.xz kutter-69491e2dab77b2446fe13f6df1ab80b62d405192.zip |
filament_switch_sensor: update documentation
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 2645c6cb..134ac66b 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -1368,3 +1368,24 @@ #recover_velocity: 50. # When capture/restore is enabled, the speed at which to return to # the captured position (in mm/s). Default is 50.0 mm/s. + +# Filament Switch Sensor. Support for filament insert and runout detection +# using a switch sensor, such as an endstop switch. +#[filament_switch_sensor my_sensor] +#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: +# The gcode to run after a filament runout is detected. If pause_on_runout +# is set to True this gcode will run after the PAUSE is complete. The default +# is not to run any gcode commands. +#insert_gcode: +# The gcode to run after a filament insert is detected. The default is not to +# run any gcode 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. +#switch_pin: +# The pin on which the switch is connected. This parameter must be provided. |