diff options
author | Arksine <arksine.code@gmail.com> | 2019-06-29 17:13:35 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-07-01 11:09:30 -0400 |
commit | e19a41d0dd7976617447b4b80b52dfc991643914 (patch) | |
tree | c08a52a1d7d168031fdc94f3c01e04bcb7144408 /config/example-extras.cfg | |
parent | 314b9654c60637c5ccdca01a9f2633ad02c44942 (diff) | |
download | kutter-e19a41d0dd7976617447b4b80b52dfc991643914.tar.gz kutter-e19a41d0dd7976617447b4b80b52dfc991643914.tar.xz kutter-e19a41d0dd7976617447b4b80b52dfc991643914.zip |
docs: Add documentation for [delayed_gcode]
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index c300e964..e29df5b2 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -1693,3 +1693,16 @@ #release_gcode: # A list of G-Code commands to execute when the button is released. # G-Code templates are supported. + +# Execute a gcode on a set delay. +#[delayed_gcode my_delayed_gcode] +#initial_duration: 0. +# The duration of the initial delay (in seconds). If set to a non-zero +# value the delayed_gcode will execute the specified number of seconds +# after the printer enters the "ready" state. This can be useful for +# initialization procedures or a repeating delayed_gcode. If set to 0 +# the delayed_gcode will not execute on startup. Default is 0. +#gcode: +# A list of G-Code commands to execute when the delay duration has +# elapsed. G-Code templates are supported. This parameter must be +# provided. |