mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-08 22:35:17 -06:00
configfile: Add printer.configfile.settings command template parameter
Make available the parsed value (or default value) for config options to command templates and to the api server. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
023a985bfc
commit
8cc1d84180
2 changed files with 24 additions and 13 deletions
|
@ -214,12 +214,14 @@ 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.configfile.config["<section>"]["<option>"]`: Returns the
|
||||
given config file setting as read by Klipper during the last
|
||||
software start or restart. (Any settings changed at run-time will
|
||||
not be reflected here.) All values are returned as strings (if math
|
||||
is to be performed on the value then it must be converted to a
|
||||
Python number).
|
||||
- `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
|
||||
reflected here.)
|
||||
- `printer.configfile.config.<section>.<option>`: Returns the given
|
||||
raw config file setting as read by Klipper during the last software
|
||||
start or restart. (Any settings changed at run-time will not be
|
||||
reflected here.) All values are returned as strings.
|
||||
- `printer["gcode_macro <macro_name>"].<variable>`: The current value
|
||||
of a [gcode_macro variable](#variables).
|
||||
- `printer.webhooks.state`: Returns a string indicating the current
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue