aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-08-24 13:40:47 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-08-30 12:12:01 -0400
commit1e4041a96badaf29533879a2c353981da60cbc67 (patch)
treed4533d8a2bb5f5e69a58f069d064f548d86e4b37 /docs
parent5fd1c9853d243cccdb53c75cae0a1a48b882368d (diff)
downloadkutter-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')
-rw-r--r--docs/Debugging.md4
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".