From fb977982f87a2081b294bf809a7c3f6d65822c8a Mon Sep 17 00:00:00 2001 From: atse Date: Wed, 17 Jul 2024 17:29:34 +0800 Subject: [PATCH] ctrl_panel: Limits fixes * PID Autotune test current should be positive * Maximum absolute voltage should be 4 V not 5 V --- pytec/pytec/gui/view/param_tree.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytec/pytec/gui/view/param_tree.json b/pytec/pytec/gui/view/param_tree.json index 2afcb5a..c7c1412 100644 --- a/pytec/pytec/gui/view/param_tree.json +++ b/pytec/pytec/gui/view/param_tree.json @@ -156,7 +156,7 @@ "step": 0.1, "limits": [ 0, - 5 + 4 ], "siPrefix": true, "suffix": "V", @@ -401,7 +401,7 @@ "decimals": 6, "step": 0.1, "limits": [ - -2, + 0, 2 ], "siPrefix": true,