2024-07-10 14:52:09 +08:00
|
|
|
from pytec.gui.view.zero_limits_warning import ZeroLimitsWarningView
|
|
|
|
from pytec.gui.view.net_settings_input_diag import NetSettingsInputDiag
|
|
|
|
from pytec.gui.view.thermostat_ctrl_menu import ThermostatCtrlMenu
|
|
|
|
from pytec.gui.view.conn_menu import ConnMenu
|
|
|
|
from pytec.gui.view.plot_options_menu import PlotOptionsMenu
|
|
|
|
from pytec.gui.view.live_plot_view import LiveDataPlotter
|
|
|
|
from pytec.gui.view.ctrl_panel import CtrlPanel
|
|
|
|
from pytec.gui.view.info_box import InfoBox
|
|
|
|
from pytec.gui.model.pid_autotuner import PIDAutoTuner
|
|
|
|
from pytec.gui.model.thermostat import WrappedClient, Thermostat
|
2024-05-13 10:35:21 +08:00
|
|
|
import json
|
|
|
|
from autotune import PIDAutotuneState
|
2023-06-27 17:34:39 +08:00
|
|
|
from qasync import asyncSlot, asyncClose
|
2024-05-13 10:35:21 +08:00
|
|
|
import qasync
|
|
|
|
from pytec.aioclient import StoppedConnecting
|
|
|
|
import asyncio
|
|
|
|
import logging
|
|
|
|
import argparse
|
|
|
|
from PyQt6 import QtWidgets, QtGui, uic
|
|
|
|
from PyQt6.QtCore import QSignalBlocker, pyqtSlot
|
|
|
|
import pyqtgraph as pg
|
|
|
|
from functools import partial
|
|
|
|
import importlib.resources
|
2023-05-19 11:23:39 +08:00
|
|
|
|
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
def get_argparser():
|
|
|
|
parser = argparse.ArgumentParser(description="Thermostat Control Panel")
|
|
|
|
|
|
|
|
parser.add_argument(
|
|
|
|
"--connect",
|
|
|
|
default=None,
|
|
|
|
action="store_true",
|
|
|
|
help="Automatically connect to the specified Thermostat in IP:port format",
|
|
|
|
)
|
|
|
|
parser.add_argument("IP", metavar="ip", default=None, nargs="?")
|
|
|
|
parser.add_argument("PORT", metavar="port", default=None, nargs="?")
|
|
|
|
parser.add_argument(
|
|
|
|
"-l",
|
|
|
|
"--log",
|
|
|
|
dest="logLevel",
|
|
|
|
choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
|
|
|
|
help="Set the logging level",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-p",
|
|
|
|
"--param_tree",
|
2024-07-10 14:52:09 +08:00
|
|
|
default=importlib.resources.files("pytec.gui.view").joinpath("param_tree.json"),
|
2024-05-13 10:35:21 +08:00
|
|
|
help="Param Tree Description JSON File",
|
|
|
|
)
|
2023-05-19 11:23:39 +08:00
|
|
|
|
|
|
|
return parser
|
|
|
|
|
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
class MainWindow(QtWidgets.QMainWindow):
|
|
|
|
NUM_CHANNELS = 2
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
def __init__(self, args):
|
|
|
|
super(MainWindow, self).__init__()
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-07-10 14:52:09 +08:00
|
|
|
ui_file_path = importlib.resources.files("pytec.gui.view").joinpath("tec_qt.ui")
|
2024-05-13 10:35:21 +08:00
|
|
|
uic.loadUi(ui_file_path, self)
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.hw_rev_data = None
|
2024-06-20 17:08:07 +08:00
|
|
|
self.info_box = InfoBox()
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.client = WrappedClient(self)
|
|
|
|
self.client.connection_error.connect(self.bail)
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat = Thermostat(
|
|
|
|
self, self.client, self.report_refresh_spin.value()
|
|
|
|
)
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.autotuners = PIDAutoTuner(self, self.client, 2)
|
|
|
|
|
|
|
|
def get_ctrl_panel_config(args):
|
|
|
|
with open(args.param_tree, "r") as f:
|
|
|
|
return json.load(f)["ctrl_panel"]
|
|
|
|
|
|
|
|
param_tree_sigActivated_handles = [
|
|
|
|
[
|
|
|
|
[["Save to flash"], partial(self.thermostat.save_cfg, ch)],
|
|
|
|
[["Load from flash"], partial(self.thermostat.load_cfg, ch)],
|
|
|
|
[
|
|
|
|
["PID Config", "PID Auto Tune", "Run"],
|
|
|
|
partial(self.pid_auto_tune_request, ch),
|
|
|
|
],
|
|
|
|
]
|
|
|
|
for ch in range(self.NUM_CHANNELS)
|
|
|
|
]
|
|
|
|
self.thermostat.info_box_trigger.connect(self.info_box.display_info_box)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-06-20 17:08:07 +08:00
|
|
|
self.zero_limits_warning = ZeroLimitsWarningView(
|
2024-05-13 10:35:21 +08:00
|
|
|
self.style(), self.limits_warning
|
|
|
|
)
|
2024-06-20 17:08:07 +08:00
|
|
|
self.ctrl_panel_view = CtrlPanel(
|
2024-05-13 10:35:21 +08:00
|
|
|
[self.ch0_tree, self.ch1_tree],
|
|
|
|
get_ctrl_panel_config(args),
|
|
|
|
self.send_command,
|
|
|
|
param_tree_sigActivated_handles,
|
|
|
|
)
|
|
|
|
self.ctrl_panel_view.set_zero_limits_warning_sig.connect(
|
|
|
|
self.zero_limits_warning.set_limits_warning
|
|
|
|
)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat.fan_update.connect(self.fan_update)
|
|
|
|
self.thermostat.report_update.connect(self.ctrl_panel_view.update_report)
|
|
|
|
self.thermostat.report_update.connect(self.autotuners.tick)
|
|
|
|
self.thermostat.report_update.connect(self.pid_autotune_handler)
|
|
|
|
self.thermostat.pid_update.connect(self.ctrl_panel_view.update_pid)
|
|
|
|
self.thermostat.pwm_update.connect(self.ctrl_panel_view.update_pwm)
|
|
|
|
self.thermostat.thermistor_update.connect(
|
|
|
|
self.ctrl_panel_view.update_thermistor
|
|
|
|
)
|
|
|
|
self.thermostat.postfilter_update.connect(
|
|
|
|
self.ctrl_panel_view.update_postfilter
|
|
|
|
)
|
|
|
|
self.thermostat.interval_update.connect(
|
|
|
|
self.autotuners.update_sampling_interval
|
|
|
|
)
|
|
|
|
self.report_apply_btn.clicked.connect(
|
|
|
|
lambda: self.thermostat.set_update_s(self.report_refresh_spin.value())
|
|
|
|
)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.channel_graphs = LiveDataPlotter(
|
|
|
|
[
|
|
|
|
[getattr(self, f"ch{ch}_t_graph"), getattr(self, f"ch{ch}_i_graph")]
|
|
|
|
for ch in range(self.NUM_CHANNELS)
|
|
|
|
]
|
|
|
|
)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat.report_update.connect(self.channel_graphs.update_report)
|
|
|
|
self.thermostat.pid_update.connect(self.channel_graphs.update_pid)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-06-20 17:08:07 +08:00
|
|
|
self.plot_options_menu = PlotOptionsMenu()
|
2024-05-13 10:35:21 +08:00
|
|
|
self.plot_options_menu.clear.triggered.connect(self.clear_graphs)
|
|
|
|
self.plot_options_menu.samples_spinbox.valueChanged.connect(
|
|
|
|
self.channel_graphs.set_max_samples
|
2023-06-30 11:27:31 +08:00
|
|
|
)
|
2024-05-13 10:35:21 +08:00
|
|
|
self.plot_settings.setMenu(self.plot_options_menu)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-06-20 17:08:07 +08:00
|
|
|
self.conn_menu = ConnMenu()
|
2024-05-13 10:35:21 +08:00
|
|
|
self.connect_btn.setMenu(self.conn_menu)
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-06-20 17:08:07 +08:00
|
|
|
self.thermostat_ctrl_menu = ThermostatCtrlMenu(self.style())
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat_ctrl_menu.fan_set_act.connect(self.fan_set_request)
|
|
|
|
self.thermostat_ctrl_menu.fan_auto_set_act.connect(self.fan_auto_set_request)
|
|
|
|
self.thermostat_ctrl_menu.reset_act.connect(self.reset_request)
|
|
|
|
self.thermostat_ctrl_menu.dfu_act.connect(self.dfu_request)
|
|
|
|
self.thermostat_ctrl_menu.save_cfg_act.connect(self.save_cfg_request)
|
|
|
|
self.thermostat_ctrl_menu.load_cfg_act.connect(self.load_cfg_request)
|
|
|
|
self.thermostat_ctrl_menu.net_cfg_act.connect(self.net_settings_request)
|
2023-08-16 17:35:13 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat.hw_rev_update.connect(self.thermostat_ctrl_menu.hw_rev)
|
|
|
|
self.thermostat_settings.setMenu(self.thermostat_ctrl_menu)
|
2023-08-16 17:35:13 +08:00
|
|
|
|
|
|
|
self.loading_spinner.hide()
|
|
|
|
|
2023-06-30 11:27:31 +08:00
|
|
|
if args.connect:
|
|
|
|
if args.IP:
|
2023-08-16 17:35:13 +08:00
|
|
|
self.host_set_line.setText(args.IP)
|
2023-06-30 11:27:31 +08:00
|
|
|
if args.PORT:
|
|
|
|
self.port_set_spin.setValue(int(args.PORT))
|
|
|
|
self.connect_btn.click()
|
|
|
|
|
2023-08-16 17:35:13 +08:00
|
|
|
def clear_graphs(self):
|
2024-05-13 10:35:21 +08:00
|
|
|
self.channel_graphs.clear_graphs()
|
2023-06-30 11:27:31 +08:00
|
|
|
|
|
|
|
async def _on_connection_changed(self, result):
|
|
|
|
self.graph_group.setEnabled(result)
|
|
|
|
self.report_group.setEnabled(result)
|
2023-08-16 17:35:13 +08:00
|
|
|
self.thermostat_settings.setEnabled(result)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
self.conn_menu.host_set_line.setEnabled(not result)
|
|
|
|
self.conn_menu.port_set_spin.setEnabled(not result)
|
2023-06-30 11:27:31 +08:00
|
|
|
self.connect_btn.setText("Disconnect" if result else "Connect")
|
|
|
|
if result:
|
2024-05-13 10:35:21 +08:00
|
|
|
self.hw_rev_data = await self.thermostat.get_hw_rev()
|
|
|
|
logging.debug(self.hw_rev_data)
|
|
|
|
|
2023-08-16 17:35:13 +08:00
|
|
|
self._status(self.hw_rev_data)
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat.start_watching()
|
2023-06-27 17:34:39 +08:00
|
|
|
else:
|
2023-06-30 11:27:31 +08:00
|
|
|
self.status_lbl.setText("Disconnected")
|
2024-05-13 10:35:21 +08:00
|
|
|
self.background_task_lbl.setText("Ready.")
|
|
|
|
self.loading_spinner.hide()
|
|
|
|
self.loading_spinner.stop()
|
|
|
|
self.thermostat_ctrl_menu.fan_pwm_warning.setPixmap(QtGui.QPixmap())
|
|
|
|
self.thermostat_ctrl_menu.fan_pwm_warning.setToolTip("")
|
2023-08-16 17:35:13 +08:00
|
|
|
self.clear_graphs()
|
|
|
|
self.report_box.setChecked(False)
|
2024-05-13 10:35:21 +08:00
|
|
|
if not Thermostat.connecting or Thermostat.connected:
|
|
|
|
for ch in range(self.NUM_CHANNELS):
|
|
|
|
if self.autotuners.get_state(ch) != PIDAutotuneState.STATE_OFF:
|
|
|
|
await self.autotuners.stop_pid_from_running(ch)
|
|
|
|
await self.thermostat.set_report_mode(False)
|
|
|
|
self.thermostat.stop_watching()
|
2023-06-30 11:27:31 +08:00
|
|
|
|
|
|
|
def _status(self, hw_rev_d: dict):
|
|
|
|
logging.debug(hw_rev_d)
|
2024-05-13 10:35:21 +08:00
|
|
|
self.status_lbl.setText(
|
|
|
|
f"Connected to Thermostat v{hw_rev_d['rev']['major']}.{hw_rev_d['rev']['minor']}"
|
|
|
|
)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
@pyqtSlot("QVariantMap")
|
|
|
|
def fan_update(self, fan_settings):
|
2023-06-30 11:27:31 +08:00
|
|
|
logging.debug(fan_settings)
|
|
|
|
if fan_settings is None:
|
|
|
|
return
|
2024-05-13 10:35:21 +08:00
|
|
|
with QSignalBlocker(self.thermostat_ctrl_menu.fan_power_slider):
|
|
|
|
self.thermostat_ctrl_menu.fan_power_slider.setValue(
|
2024-06-20 12:07:19 +08:00
|
|
|
fan_settings["fan_pwm"] or 100 # 0 = PWM off = full strength
|
|
|
|
)
|
2024-05-13 10:35:21 +08:00
|
|
|
with QSignalBlocker(self.thermostat_ctrl_menu.fan_auto_box):
|
|
|
|
self.thermostat_ctrl_menu.fan_auto_box.setChecked(fan_settings["auto_mode"])
|
2023-08-16 17:35:13 +08:00
|
|
|
if not self.hw_rev_data["settings"]["fan_pwm_recommended"]:
|
2024-05-13 10:35:21 +08:00
|
|
|
self.thermostat_ctrl_menu.set_fan_pwm_warning()
|
2023-08-16 17:35:13 +08:00
|
|
|
|
|
|
|
@asyncSlot(int)
|
|
|
|
async def on_report_box_stateChanged(self, enabled):
|
2024-05-13 10:35:21 +08:00
|
|
|
await self.thermostat.set_report_mode(enabled)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
|
|
|
@asyncClose
|
|
|
|
async def closeEvent(self, event):
|
2024-05-13 10:35:21 +08:00
|
|
|
try:
|
|
|
|
await self.bail()
|
|
|
|
except:
|
|
|
|
pass
|
2023-06-30 11:27:31 +08:00
|
|
|
|
|
|
|
@asyncSlot()
|
|
|
|
async def on_connect_btn_clicked(self):
|
2024-05-13 10:35:21 +08:00
|
|
|
host, port = (
|
|
|
|
self.conn_menu.host_set_line.text(),
|
|
|
|
self.conn_menu.port_set_spin.value(),
|
|
|
|
)
|
2023-06-30 11:27:31 +08:00
|
|
|
try:
|
2023-08-16 17:35:13 +08:00
|
|
|
if not (self.client.connecting() or self.client.connected()):
|
2023-06-30 11:27:31 +08:00
|
|
|
self.status_lbl.setText("Connecting...")
|
|
|
|
self.connect_btn.setText("Stop")
|
2024-05-13 10:35:21 +08:00
|
|
|
self.conn_menu.host_set_line.setEnabled(False)
|
|
|
|
self.conn_menu.port_set_spin.setEnabled(False)
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2023-08-16 17:35:13 +08:00
|
|
|
try:
|
2024-05-13 10:35:21 +08:00
|
|
|
await self.client.start_session(host=host, port=port, timeout=5)
|
2023-08-16 17:35:13 +08:00
|
|
|
except StoppedConnecting:
|
2023-06-30 11:27:31 +08:00
|
|
|
return
|
|
|
|
await self._on_connection_changed(True)
|
|
|
|
else:
|
2023-08-16 17:35:13 +08:00
|
|
|
await self.bail()
|
2023-06-30 11:27:31 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
# TODO: Remove asyncio.TimeoutError in Python 3.11
|
|
|
|
except (OSError, TimeoutError, asyncio.TimeoutError):
|
|
|
|
try:
|
|
|
|
await self.bail()
|
|
|
|
except ConnectionResetError:
|
|
|
|
pass
|
2023-08-16 17:35:13 +08:00
|
|
|
|
|
|
|
@asyncSlot()
|
|
|
|
async def bail(self):
|
|
|
|
await self._on_connection_changed(False)
|
|
|
|
await self.client.end_session()
|
2023-06-27 17:34:39 +08:00
|
|
|
|
2023-06-28 15:01:47 +08:00
|
|
|
@asyncSlot(object, object)
|
|
|
|
async def send_command(self, param, changes):
|
2023-08-16 17:35:13 +08:00
|
|
|
"""Translates parameter tree changes into thermostat set_param calls"""
|
2024-05-13 10:35:21 +08:00
|
|
|
ch = param.channel
|
2023-08-16 17:35:13 +08:00
|
|
|
|
|
|
|
for inner_param, change, data in changes:
|
2024-05-13 10:35:21 +08:00
|
|
|
if change == "value":
|
2024-08-14 12:58:29 +08:00
|
|
|
new_value = data
|
2024-08-14 12:57:42 +08:00
|
|
|
if "param" in inner_param.opts:
|
2024-05-13 10:35:21 +08:00
|
|
|
if inner_param.opts.get("suffix", None) == "mA":
|
2024-08-14 12:58:29 +08:00
|
|
|
new_value /= 1000 # Given in mA
|
2023-08-16 17:35:13 +08:00
|
|
|
|
|
|
|
thermostat_param = inner_param.opts["param"]
|
2024-05-13 10:35:21 +08:00
|
|
|
if thermostat_param[1] == "ch":
|
|
|
|
thermostat_param[1] = ch
|
|
|
|
|
2024-08-14 12:58:29 +08:00
|
|
|
if inner_param.name() == "Postfilter Rate" and new_value is None:
|
2024-05-13 10:35:21 +08:00
|
|
|
set_param_args = (*thermostat_param[:2], "off")
|
2023-08-16 17:35:13 +08:00
|
|
|
else:
|
2024-08-14 12:58:29 +08:00
|
|
|
set_param_args = (*thermostat_param, new_value)
|
2024-08-14 12:58:58 +08:00
|
|
|
inner_param.setOpts(lock=True)
|
2023-08-16 17:35:13 +08:00
|
|
|
await self.client.set_param(*set_param_args)
|
2024-08-14 12:58:58 +08:00
|
|
|
inner_param.setOpts(lock=False)
|
2024-05-13 10:35:21 +08:00
|
|
|
|
2024-08-14 12:57:42 +08:00
|
|
|
if "pid_autotune" in inner_param.opts:
|
2024-05-13 10:35:21 +08:00
|
|
|
auto_tuner_param = inner_param.opts["pid_autotune"][0]
|
|
|
|
if inner_param.opts["pid_autotune"][1] != "ch":
|
|
|
|
ch = inner_param.opts["pid_autotune"][1]
|
2024-08-14 12:58:29 +08:00
|
|
|
self.autotuners.set_params(auto_tuner_param, ch, new_value)
|
2024-05-13 10:35:21 +08:00
|
|
|
|
2024-08-14 12:57:42 +08:00
|
|
|
if "activaters" in inner_param.opts:
|
2024-05-13 10:35:21 +08:00
|
|
|
activater = inner_param.opts["activaters"][
|
|
|
|
inner_param.opts["limits"].index(data)
|
|
|
|
]
|
2023-08-16 17:35:13 +08:00
|
|
|
if activater is not None:
|
2024-05-13 10:35:21 +08:00
|
|
|
if activater[1] == "ch":
|
|
|
|
activater[1] = ch
|
2023-08-16 17:35:13 +08:00
|
|
|
await self.client.set_param(*activater)
|
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
@asyncSlot()
|
|
|
|
async def pid_auto_tune_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)
|
2023-06-28 15:01:47 +08:00
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
case PIDAutotuneState.STATE_READY | PIDAutotuneState.STATE_RELAY_STEP_UP | PIDAutotuneState.STATE_RELAY_STEP_DOWN:
|
|
|
|
await self.autotuners.stop_pid_from_running(ch)
|
|
|
|
# To Update the UI elements
|
|
|
|
self.pid_autotune_handler([])
|
2023-08-16 17:35:13 +08:00
|
|
|
|
|
|
|
@asyncSlot(list)
|
2024-05-13 10:35:21 +08:00
|
|
|
async def pid_autotune_handler(self, _):
|
|
|
|
ch_tuning = []
|
|
|
|
for ch in range(self.NUM_CHANNELS):
|
|
|
|
match self.autotuners.get_state(ch):
|
|
|
|
case PIDAutotuneState.STATE_OFF:
|
|
|
|
self.ctrl_panel_view.change_params_title(
|
|
|
|
ch, ("PID Config", "PID Auto Tune", "Run"), "Run"
|
|
|
|
)
|
2023-08-16 17:35:13 +08:00
|
|
|
case PIDAutotuneState.STATE_READY | PIDAutotuneState.STATE_RELAY_STEP_UP | PIDAutotuneState.STATE_RELAY_STEP_DOWN:
|
2024-05-13 10:35:21 +08:00
|
|
|
self.ctrl_panel_view.change_params_title(
|
|
|
|
ch, ("PID Config", "PID Auto Tune", "Run"), "Stop"
|
|
|
|
)
|
|
|
|
ch_tuning.append(ch)
|
|
|
|
|
2023-08-16 17:35:13 +08:00
|
|
|
case PIDAutotuneState.STATE_SUCCEEDED:
|
2024-05-13 10:35:21 +08:00
|
|
|
self.info_box.display_info_box(
|
|
|
|
"PID Autotune Success",
|
|
|
|
f"Channel {ch} PID Config has been loaded to Thermostat. Regulating temperature.",
|
|
|
|
)
|
|
|
|
self.info_box.show()
|
|
|
|
|
2023-08-16 17:35:13 +08:00
|
|
|
case PIDAutotuneState.STATE_FAILED:
|
2024-05-13 10:35:21 +08:00
|
|
|
self.info_box.display_info_box(
|
2024-07-11 12:49:26 +08:00
|
|
|
"PID Autotune Failed", f"Channel {ch} PID Autotune has failed."
|
2024-05-13 10:35:21 +08:00
|
|
|
)
|
|
|
|
self.info_box.show()
|
|
|
|
|
|
|
|
if len(ch_tuning) == 0:
|
|
|
|
self.background_task_lbl.setText("Ready.")
|
|
|
|
self.loading_spinner.hide()
|
|
|
|
self.loading_spinner.stop()
|
|
|
|
else:
|
|
|
|
self.background_task_lbl.setText(
|
|
|
|
"Autotuning channel {ch}...".format(ch=ch_tuning)
|
|
|
|
)
|
|
|
|
self.loading_spinner.start()
|
|
|
|
self.loading_spinner.show()
|
|
|
|
|
|
|
|
@asyncSlot(int)
|
|
|
|
async def fan_set_request(self, value):
|
|
|
|
if not self.client.connected():
|
|
|
|
return
|
|
|
|
if self.thermostat_ctrl_menu.fan_auto_box.isChecked():
|
|
|
|
with QSignalBlocker(self.thermostat_ctrl_menu.fan_auto_box):
|
|
|
|
self.thermostat_ctrl_menu.fan_auto_box.setChecked(False)
|
|
|
|
await self.client.set_fan(value)
|
|
|
|
if not self.hw_rev_data["settings"]["fan_pwm_recommended"]:
|
|
|
|
self.thermostat_ctrl_menu.set_fan_pwm_warning()
|
|
|
|
|
|
|
|
@asyncSlot(int)
|
|
|
|
async def fan_auto_set_request(self, enabled):
|
|
|
|
if not self.client.connected():
|
|
|
|
return
|
|
|
|
if enabled:
|
|
|
|
await self.client.set_fan("auto")
|
|
|
|
self.fan_update(await self.client.get_fan())
|
|
|
|
else:
|
|
|
|
await self.client.set_fan(
|
|
|
|
self.thermostat_ctrl_menu.fan_power_slider.value()
|
|
|
|
)
|
|
|
|
|
|
|
|
@asyncSlot(int)
|
|
|
|
async def save_cfg_request(self, ch):
|
|
|
|
await self.thermostat.save_cfg(str(ch))
|
|
|
|
|
|
|
|
@asyncSlot(int)
|
|
|
|
async def load_cfg_request(self, ch):
|
|
|
|
await self.thermostat.load_cfg(str(ch))
|
|
|
|
|
|
|
|
@asyncSlot(bool)
|
|
|
|
async def dfu_request(self, _):
|
|
|
|
await self._on_connection_changed(False)
|
|
|
|
await self.thermostat.dfu()
|
|
|
|
|
|
|
|
@asyncSlot(bool)
|
|
|
|
async def reset_request(self, _):
|
|
|
|
await self._on_connection_changed(False)
|
|
|
|
await self.thermostat.reset()
|
|
|
|
await asyncio.sleep(0.1) # Wait for the reset to start
|
|
|
|
|
|
|
|
self.connect_btn.click() # Reconnect
|
|
|
|
|
|
|
|
@asyncSlot(bool)
|
|
|
|
async def net_settings_request(self, _):
|
|
|
|
ipv4 = await self.thermostat.get_ipv4()
|
2024-06-20 17:08:07 +08:00
|
|
|
self.net_settings_input_diag = NetSettingsInputDiag(ipv4["addr"])
|
2024-05-13 10:35:21 +08:00
|
|
|
self.net_settings_input_diag.set_ipv4_act.connect(self.set_net_settings_request)
|
|
|
|
|
|
|
|
@asyncSlot(str)
|
|
|
|
async def set_net_settings_request(self, ipv4_settings):
|
|
|
|
await self.thermostat.set_ipv4(ipv4_settings)
|
|
|
|
await self.thermostat._client.end_session()
|
|
|
|
await self._on_connection_changed(False)
|
2023-06-28 15:01:47 +08:00
|
|
|
|
2023-06-27 17:34:39 +08:00
|
|
|
|
|
|
|
async def coro_main():
|
2023-05-19 11:23:39 +08:00
|
|
|
args = get_argparser().parse_args()
|
|
|
|
if args.logLevel:
|
|
|
|
logging.basicConfig(level=getattr(logging, args.logLevel))
|
|
|
|
|
2023-06-27 17:34:39 +08:00
|
|
|
app_quit_event = asyncio.Event()
|
2023-06-26 10:20:48 +08:00
|
|
|
|
2023-06-27 17:34:39 +08:00
|
|
|
app = QtWidgets.QApplication.instance()
|
|
|
|
app.aboutToQuit.connect(app_quit_event.set)
|
2024-05-13 10:35:21 +08:00
|
|
|
app.setWindowIcon(
|
2024-07-10 14:52:09 +08:00
|
|
|
QtGui.QIcon(str(importlib.resources.files("pytec.gui.resources").joinpath("artiq.ico")))
|
2024-05-13 10:35:21 +08:00
|
|
|
)
|
2023-06-26 10:20:48 +08:00
|
|
|
|
2023-06-30 11:27:31 +08:00
|
|
|
main_window = MainWindow(args)
|
2023-05-19 11:23:39 +08:00
|
|
|
main_window.show()
|
2023-06-26 10:20:48 +08:00
|
|
|
|
2023-06-27 17:34:39 +08:00
|
|
|
await app_quit_event.wait()
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
qasync.run(coro_main())
|
2023-05-19 11:23:39 +08:00
|
|
|
|
|
|
|
|
2024-05-13 10:35:21 +08:00
|
|
|
if __name__ == "__main__":
|
2023-05-19 11:23:39 +08:00
|
|
|
main()
|