aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/motan/motan_graph.py
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 /scripts/motan/motan_graph.py
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 'scripts/motan/motan_graph.py')
-rwxr-xr-xscripts/motan/motan_graph.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/motan/motan_graph.py b/scripts/motan/motan_graph.py
index 9826f1a2..6571a201 100755
--- a/scripts/motan/motan_graph.py
+++ b/scripts/motan/motan_graph.py
@@ -125,9 +125,9 @@ def main():
# Default graphs to draw
graph_descs = [
- ["trapq:toolhead:velocity?color=green"],
- ["trapq:toolhead:accel?color=green"],
- ["deviation:stepq:stepper_x-kin:stepper_x?color=blue"],
+ ["trapq(toolhead,velocity)?color=green"],
+ ["trapq(toolhead,accel)?color=green"],
+ ["deviation(stepq(stepper_x),kin(stepper_x))?color=blue"],
]
if options.graph is not None:
graph_descs = ast.literal_eval(options.graph)