From 85c8c23f2c96f31c5f22e73094959135adb703d6 Mon Sep 17 00:00:00 2001 From: atse Date: Fri, 28 Jun 2024 11:44:37 +0800 Subject: [PATCH] ctrl_panel: PID Auto Tune -> PID Autotune --- pytec/pytec/gui/view/param_tree.json | 2 +- pytec/tec_qt.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pytec/pytec/gui/view/param_tree.json b/pytec/pytec/gui/view/param_tree.json index 2de4695..fc6134b 100644 --- a/pytec/pytec/gui/view/param_tree.json +++ b/pytec/pytec/gui/view/param_tree.json @@ -355,7 +355,7 @@ }, { "name": "pid_autotune", - "title": "PID Auto Tune", + "title": "PID Autotune", "expanded": false, "type": "group", "tip": "Automatically tune PID parameters", diff --git a/pytec/tec_qt.py b/pytec/tec_qt.py index f96e06a..bf8f996 100644 --- a/pytec/tec_qt.py +++ b/pytec/tec_qt.py @@ -82,7 +82,7 @@ class MainWindow(QtWidgets.QMainWindow): [["load"], partial(self.thermostat.load_cfg, ch)], [ ["pid", "pid_autotune", "run_pid"], - partial(self.pid_auto_tune_request, ch), + partial(self.pid_autotune_request, ch), ], ] for ch in range(self.NUM_CHANNELS) @@ -292,7 +292,7 @@ class MainWindow(QtWidgets.QMainWindow): self.autotuners.set_params(auto_tuner_param, ch, new_value) @asyncSlot() - async def pid_auto_tune_request(self, ch=0): + async def pid_autotune_request(self, ch=0): match self.autotuners.get_state(ch): case PIDAutotuneState.STATE_OFF | PIDAutotuneState.STATE_FAILED: self.autotuners.load_params_and_set_ready(ch)