mirror of https://github.com/Desuuuu/klipper.git
docs: Add example of Jinja2 "set" directive to Command_Templates.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
475d8a72ad
commit
61a25d2fb2
|
@ -66,7 +66,25 @@ wrapped in `{% %}`. See the
|
|||
[Jinja2 documentation](http://jinja.pocoo.org/docs/2.10/templates/)
|
||||
for further information on the syntax.
|
||||
|
||||
This is most often used to inspect parameters passed to the macro when
|
||||
An example of a complex macro:
|
||||
```
|
||||
[gcode_macro clean_nozzle]
|
||||
gcode:
|
||||
{% set wipe_count = 8 %}
|
||||
SAVE_GCODE_STATE NAME=clean_nozzle_state
|
||||
G90
|
||||
G0 Z15 F300
|
||||
{% for wipe in range(wipe_count) %}
|
||||
{% for coordinate in [(275,4),(235,4)] %}
|
||||
G0 X{coordinate[0]} Y{coordinate[1] + 0.25 * wipe} Z9.7 F12000
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
RESTORE_GCODE_STATE NAME=clean_nozzle_state
|
||||
```
|
||||
|
||||
#### Macro parameters
|
||||
|
||||
It is often useful to inspect parameters passed to the macro when
|
||||
it is called. These parameters are available via the `params`
|
||||
pseudo-variable. For example, if the macro:
|
||||
|
||||
|
@ -81,21 +99,15 @@ at 20%`. Note that parameter names are always in upper-case when
|
|||
evaluated in the macro and are always passed as strings. If performing
|
||||
math then they must be explicitly converted to integers or floats.
|
||||
|
||||
An example of a complex macro:
|
||||
It's common to use the Jinja2 `set` directive to use a default
|
||||
parameter and assign the result to a local name. For example:
|
||||
|
||||
```
|
||||
[gcode_macro clean_nozzle]
|
||||
[gcode_macro SET_BED_TEMPERATURE]
|
||||
gcode:
|
||||
SAVE_GCODE_STATE NAME=clean_nozzle_state
|
||||
G90
|
||||
G0 Z15 F300
|
||||
{% for wipe in range(8) %}
|
||||
{% for coordinate in [(275,4),(235,4)] %}
|
||||
G0 X{coordinate[0]} Y{coordinate[1] + 0.25 * wipe} Z9.7 F12000
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
RESTORE_GCODE_STATE NAME=clean_nozzle_state
|
||||
{% set bed_temp = params.TEMPERATURE|default(40)|float %}
|
||||
M140 S{bed_temp}
|
||||
```
|
||||
<!-- {% endraw %} -->
|
||||
|
||||
#### The "printer" Variable
|
||||
|
||||
|
@ -221,8 +233,10 @@ The following are common printer attributes:
|
|||
as "triggered" during the last QUERY_PROBE command. Note, due to the
|
||||
order of template expansion (see above), the QUERY_PROBE command
|
||||
must be run prior to the macro containing this reference.
|
||||
- `printer.probe.last_z_result`: Returns the Z result value of the last
|
||||
PROBE command.
|
||||
- `printer.probe.last_z_result`: Returns the Z result value of the
|
||||
last PROBE command. Note, due to the order of template expansion
|
||||
(see above), the PROBE (or similar) command must be run prior to the
|
||||
macro containing this reference.
|
||||
- `printer.configfile.settings.<section>.<option>`: Returns the given
|
||||
config file setting (or default value) during the last software
|
||||
start or restart. (Any settings changed at run-time will not be
|
||||
|
@ -327,6 +341,17 @@ attributes may be available (via `get_status()` methods defined in the
|
|||
software). However, undocumented attributes may change without notice
|
||||
in future Klipper releases.
|
||||
|
||||
Note that the Jinja2 `set` directive can assign a local name to an
|
||||
object in the `printer` hierarchy. This can make macros more readable
|
||||
and reduce typing. For example:
|
||||
```
|
||||
[gcode_macro QUERY_HTU21D]
|
||||
gcode:
|
||||
{% set sensor = printer["htu21d my_sensor"] %}
|
||||
M117 Temp:{sensor.temperature} Humidity:{sensor.humidity}
|
||||
```
|
||||
<!-- {% endraw %} -->
|
||||
|
||||
### Actions
|
||||
|
||||
There are some commands available that can alter the state of the
|
||||
|
|
Loading…
Reference in New Issue