diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-06-07 19:30:17 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-06-07 19:33:31 -0400 |
commit | 8b005808848dd5395792dba8b9f470ac441c5e72 (patch) | |
tree | d14322e6056d6652d3e15e77fb06698cdf588978 /docs/G-Codes.md | |
parent | 01f3b50e7399f3ea327c6de2130dc16b6f8a27f5 (diff) | |
download | kutter-8b005808848dd5395792dba8b9f470ac441c5e72.tar.gz kutter-8b005808848dd5395792dba8b9f470ac441c5e72.tar.xz kutter-8b005808848dd5395792dba8b9f470ac441c5e72.zip |
gcode_macro: Parse variable_X parameters using ast.literal_eval()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 03d35460..5d06a4a1 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -182,7 +182,8 @@ The following command is available when a "gcode_macro" config section is enabled: - `SET_GCODE_VARIABLE MACRO=<macro_name> VARIABLE=<name> VALUE=<value>`: This command allows one to change the value of a - gcode_macro variable at run-time. + gcode_macro variable at run-time. The provided VALUE is parsed as a + Python literal. ## Custom Pin Commands |