diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-08-24 13:40:47 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-08-30 12:12:01 -0400 |
commit | 1e4041a96badaf29533879a2c353981da60cbc67 (patch) | |
tree | d4533d8a2bb5f5e69a58f069d064f548d86e4b37 /docs/Debugging.md | |
parent | 5fd1c9853d243cccdb53c75cae0a1a48b882368d (diff) | |
download | kutter-1e4041a96badaf29533879a2c353981da60cbc67.tar.gz kutter-1e4041a96badaf29533879a2c353981da60cbc67.tar.xz kutter-1e4041a96badaf29533879a2c353981da60cbc67.zip |
motan: Pass dataset parameters in parenthesis
Replace names like "trapq:toolhead:x" with "trapq(toolhead,x)".
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Debugging.md')
-rw-r--r-- | docs/Debugging.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Debugging.md b/docs/Debugging.md index a0e15322..a9d35383 100644 --- a/docs/Debugging.md +++ b/docs/Debugging.md @@ -122,7 +122,7 @@ Graphs can be generated with a command like the following: One can use the `-g` option to specify the datasets to graph (it takes a Python literal containing a list of lists). For example: ``` -~/klipper/scripts/motan/motan_graph.py mylog -g '[["trapq:toolhead:velocity"], ["trapq:toolhead:accel"]]' +~/klipper/scripts/motan/motan_graph.py mylog -g '[["trapq(toolhead,velocity)"], ["trapq(toolhead,accel)"]]' ``` The list of available datasets can be found using the `-l` option - @@ -134,7 +134,7 @@ for example: It is also possible to specify matplotlib plot options for each dataset: ``` -~/klipper/scripts/motan/motan_graph.py mylog -g '[["trapq:toolhead:velocity?color=red"]]' +~/klipper/scripts/motan/motan_graph.py mylog -g '[["trapq(toolhead,velocity)?color=red&alpha=0.4"]]' ``` Many matplotlib options are available; some examples are "color", "label", "alpha", and "linestyle". |