2023-07-07 15:36:17 +08:00
|
|
|
from PyQt6 import QtWidgets, QtGui
|
2023-06-27 17:34:39 +08:00
|
|
|
from PyQt6.QtCore import pyqtSignal, QObject, QSignalBlocker, pyqtSlot
|
2023-05-19 11:23:39 +08:00
|
|
|
from pyqtgraph import PlotWidget
|
|
|
|
from pyqtgraph.parametertree import Parameter, ParameterTree, ParameterItem, registerParameterType
|
|
|
|
import pyqtgraph as pg
|
|
|
|
import sys
|
|
|
|
import argparse
|
|
|
|
import logging
|
2023-06-26 10:20:48 +08:00
|
|
|
import asyncio
|
2023-06-27 17:34:39 +08:00
|
|
|
from pytec.aioclient import Client
|
|
|
|
import qasync
|
|
|
|
from qasync import asyncSlot, asyncClose
|
2023-05-19 11:23:39 +08:00
|
|
|
|
|
|
|
# pyuic6 -x tec_qt.ui -o ui_tec_qt.py
|
|
|
|
from ui_tec_qt import Ui_MainWindow
|
|
|
|
|
|
|
|
|
2023-06-28 15:01:47 +08:00
|
|
|
class CommandsParameter(Parameter):
|
2023-08-08 12:41:57 +08:00
|
|
|
pass
|
2023-06-28 15:01:47 +08:00
|
|
|
|
|
|
|
|
2023-07-14 16:14:19 +08:00
|
|
|
THERMOSTAT_PARAMETERS = [[
|
2023-06-28 15:01:47 +08:00
|
|
|
{'name': 'Constant Current', 'type': 'float', 'value': 0, 'step': 0.1, 'limits': (-3, 3), 'siPrefix': True,
|
|
|
|
'suffix': 'A', 'commands': [f'pwm {ch} i_set {{value}}']},
|
|
|
|
{'name': 'Temperature PID', 'type': 'bool', 'value': False, 'commands': [f'pwm {ch} pid'], 'payload': ch,
|
|
|
|
'children': [
|
|
|
|
{'name': 'Set Temperature', 'type': 'float', 'value': 25, 'step': 0.1, 'limits': (-273, 300), 'siPrefix': True,
|
|
|
|
'suffix': '°C', 'commands': [f'pid {ch} target {{value}}']},
|
|
|
|
]},
|
|
|
|
{'name': 'Output Config', 'expanded': False, 'type': 'group', 'children': [
|
|
|
|
{'name': 'Max Current', 'type': 'float', 'value': 0, 'step': 0.1, 'limits': (0, 3), 'siPrefix': True,
|
|
|
|
'suffix': 'A', 'commands': [f'pwm {ch} max_i_pos {{value}}', f'pwm {ch} max_i_neg {{value}}',
|
|
|
|
f'pid {ch} output_min -{{value}}', f'pid {ch} output_max {{value}}']},
|
|
|
|
{'name': 'Max Voltage', 'type': 'float', 'value': 0, 'step': 0.1, 'limits': (0, 5), 'siPrefix': True,
|
|
|
|
'suffix': 'V', 'commands': [f'pwm {ch} max_v {{value}}']},
|
|
|
|
]},
|
|
|
|
{'name': 'Thermistor Config', 'expanded': False, 'type': 'group', 'children': [
|
2023-07-18 17:16:35 +08:00
|
|
|
{'name': 'T₀', 'type': 'float', 'value': 25, 'step': 0.1, 'limits': (-100, 100), 'siPrefix': True,
|
|
|
|
'suffix': '°C', 'commands': [f's-h {ch} t0 {{value}}']},
|
|
|
|
{'name': 'R₀', 'type': 'float', 'value': 10000, 'step': 1, 'siPrefix': True, 'suffix': 'Ω',
|
2023-06-28 15:01:47 +08:00
|
|
|
'commands': [f's-h {ch} r0 {{value}}']},
|
2023-07-18 17:16:35 +08:00
|
|
|
{'name': 'β', 'type': 'float', 'value': 3950, 'step': 1, 'suffix': 'K', 'commands': [f's-h {ch} b {{value}}']},
|
2023-06-28 15:01:47 +08:00
|
|
|
]},
|
2023-08-01 13:32:06 +08:00
|
|
|
{'name': 'Postfilter Config', 'expanded': False, 'type': 'group', 'children': [
|
|
|
|
{'name': 'Rate', 'type': 'float', 'value': 16.67, 'step': 0.01, 'suffix': 'Hz',
|
|
|
|
'commands': [f'postfilter {ch} rate {{value}}']},
|
|
|
|
]},
|
2023-06-28 15:01:47 +08:00
|
|
|
{'name': 'PID Config', 'expanded': False, 'type': 'group', 'children': [
|
2023-07-18 17:16:35 +08:00
|
|
|
{'name': 'Kp', 'type': 'float', 'value': 0, 'step': 0.1, 'suffix': '°C/A', 'commands': [f'pid {ch} kp {{value}}']},
|
|
|
|
{'name': 'Ki', 'type': 'float', 'value': 0, 'step': 0.1, 'suffix': '°C/C', 'commands': [f'pid {ch} ki {{value}}']},
|
|
|
|
{'name': 'Kd', 'type': 'float', 'value': 0, 'step': 0.1, 'suffix': '°Cs²/C', 'commands': [f'pid {ch} kd {{value}}']},
|
2023-06-28 15:01:47 +08:00
|
|
|
{'name': 'PID Auto Tune', 'expanded': False, 'type': 'group', 'children': [
|
2023-07-18 17:16:35 +08:00
|
|
|
{'name': 'Target Temperature', 'type': 'float', 'value': 20, 'step': 0.1, 'siPrefix': True, 'suffix': '°C'},
|
2023-06-28 15:01:47 +08:00
|
|
|
{'name': 'Test Current', 'type': 'float', 'value': 1, 'step': 0.1, 'siPrefix': True, 'suffix': 'A'},
|
2023-07-18 17:16:35 +08:00
|
|
|
{'name': 'Temperature Swing', 'type': 'float', 'value': 1.5, 'step': 0.1, 'siPrefix': True, 'suffix': '°C'},
|
2023-06-28 15:01:47 +08:00
|
|
|
{'name': 'Run', 'type': 'action', 'tip': 'Run'},
|
|
|
|
]},
|
|
|
|
]}
|
|
|
|
] for ch in range(2)]
|
|
|
|
|
2023-07-14 16:14:19 +08:00
|
|
|
|
|
|
|
params = [
|
|
|
|
CommandsParameter.create(name='Thermostat Params 0', type='group', children=THERMOSTAT_PARAMETERS[0]),
|
|
|
|
CommandsParameter.create(name='Thermostat Params 1', type='group', children=THERMOSTAT_PARAMETERS[1]),
|
|
|
|
]
|
2023-06-28 15:01:47 +08:00
|
|
|
|
|
|
|
|
2023-05-19 11:23:39 +08:00
|
|
|
def get_argparser():
|
|
|
|
parser = argparse.ArgumentParser(description="ARTIQ master")
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
|
|
|
return parser
|
|
|
|
|
|
|
|
|
2023-06-26 10:20:48 +08:00
|
|
|
class ClientWatcher(QObject):
|
2023-07-11 12:27:43 +08:00
|
|
|
fan_update = pyqtSignal(dict)
|
|
|
|
pwm_update = pyqtSignal(list)
|
|
|
|
report_update = pyqtSignal(list)
|
|
|
|
pid_update = pyqtSignal(list)
|
2023-07-20 13:49:11 +08:00
|
|
|
thermistor_update = pyqtSignal(list)
|
2023-08-01 13:32:06 +08:00
|
|
|
postfilter_update = pyqtSignal(list)
|
2023-05-19 13:45:01 +08:00
|
|
|
|
2023-07-05 16:25:13 +08:00
|
|
|
def __init__(self, parent, client, update_s):
|
2023-05-19 13:45:01 +08:00
|
|
|
self.update_s = update_s
|
2023-07-05 16:25:13 +08:00
|
|
|
self.client = client
|
2023-07-06 11:21:56 +08:00
|
|
|
self.watch_task = None
|
2023-05-19 13:45:01 +08:00
|
|
|
super().__init__(parent)
|
|
|
|
|
2023-06-26 10:20:48 +08:00
|
|
|
async def run(self):
|
2023-08-08 17:16:11 +08:00
|
|
|
loop = asyncio.get_running_loop()
|
2023-07-13 15:45:08 +08:00
|
|
|
while True:
|
2023-08-08 17:16:11 +08:00
|
|
|
time = loop.time()
|
2023-06-27 17:34:39 +08:00
|
|
|
await self.update_params()
|
2023-08-08 17:16:11 +08:00
|
|
|
await asyncio.sleep(self.update_s - (loop.time() - time))
|
2023-05-19 13:45:01 +08:00
|
|
|
|
2023-06-27 17:34:39 +08:00
|
|
|
async def update_params(self):
|
2023-07-05 16:25:13 +08:00
|
|
|
self.fan_update.emit(await self.client.fan())
|
2023-06-28 15:01:47 +08:00
|
|
|
self.pwm_update.emit(await self.client.get_pwm())
|
|
|
|
self.report_update.emit(await self.client._command("report"))
|
|
|
|
self.pid_update.emit(await self.client.get_pid())
|
2023-07-20 13:49:11 +08:00
|
|
|
self.thermistor_update.emit(await self.client.get_steinhart_hart())
|
2023-08-01 13:32:06 +08:00
|
|
|
self.postfilter_update.emit(await self.client.get_postfilter())
|
2023-05-19 13:45:01 +08:00
|
|
|
|
2023-07-06 11:21:56 +08:00
|
|
|
def start_watching(self):
|
|
|
|
self.watch_task = asyncio.create_task(self.run())
|
|
|
|
|
2023-07-14 16:10:59 +08:00
|
|
|
def is_watching(self):
|
|
|
|
return self.watch_task is not None
|
|
|
|
|
2023-05-19 13:45:01 +08:00
|
|
|
@pyqtSlot()
|
|
|
|
def stop_watching(self):
|
2023-07-14 16:10:59 +08:00
|
|
|
if self.watch_task is not None:
|
|
|
|
self.watch_task.cancel()
|
|
|
|
self.watch_task = None
|
2023-05-19 13:45:01 +08:00
|
|
|
|
2023-07-11 12:27:43 +08:00
|
|
|
@pyqtSlot(float)
|
2023-07-01 23:46:40 +08:00
|
|
|
def set_update_s(self, update_s):
|
|
|
|
self.update_s = update_s
|
|
|
|
|
|
|
|
|
|
|
|
class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
|
|
|
|
def __init__(self, args):
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
self.setupUi(self)
|
|
|
|
|
2023-07-19 12:49:15 +08:00
|
|
|
self._set_up_context_menu()
|
2023-07-19 11:38:04 +08:00
|
|
|
|
2023-07-01 23:46:40 +08:00
|
|
|
self.fan_power_slider.valueChanged.connect(self.fan_set)
|
|
|
|
self.fan_auto_box.stateChanged.connect(self.fan_auto_set)
|
|
|
|
|
2023-06-28 15:01:47 +08:00
|
|
|
self._set_param_tree()
|
|
|
|
|
2023-07-07 17:19:17 +08:00
|
|
|
self.fan_pwm_recommended = False
|
|
|
|
|
2023-07-14 16:01:53 +08:00
|
|
|
self.tec_client = Client()
|
2023-07-14 16:10:59 +08:00
|
|
|
self.client_watcher = ClientWatcher(self, self.tec_client, self.report_refresh_spin.value())
|
|
|
|
self.client_watcher.fan_update.connect(self.fan_update)
|
2023-07-20 13:47:39 +08:00
|
|
|
self.client_watcher.report_update.connect(self.update_report)
|
2023-07-20 13:48:33 +08:00
|
|
|
self.client_watcher.pid_update.connect(self.update_pid)
|
2023-07-20 13:49:23 +08:00
|
|
|
self.client_watcher.pwm_update.connect(self.update_pwm)
|
2023-07-20 13:49:11 +08:00
|
|
|
self.client_watcher.thermistor_update.connect(self.update_thermistor)
|
2023-08-01 13:32:06 +08:00
|
|
|
self.client_watcher.postfilter_update.connect(self.update_postfilter)
|
2023-07-14 16:10:59 +08:00
|
|
|
self.report_apply_btn.clicked.connect(
|
|
|
|
lambda: self.client_watcher.set_update_s(self.report_refresh_spin.value())
|
|
|
|
)
|
2023-07-01 23:46:40 +08:00
|
|
|
|
|
|
|
if args.connect:
|
|
|
|
if args.IP:
|
|
|
|
self.ip_set_line.setText(args.IP)
|
|
|
|
if args.PORT:
|
|
|
|
self.port_set_spin.setValue(int(args.PORT))
|
|
|
|
self.connect_btn.click()
|
|
|
|
|
2023-07-19 12:49:15 +08:00
|
|
|
def _set_up_context_menu(self):
|
|
|
|
self.menu = QtWidgets.QMenu()
|
|
|
|
self.menu.setTitle('Thermostat settings')
|
|
|
|
|
|
|
|
port = QtWidgets.QWidgetAction(self.menu)
|
|
|
|
port.setDefaultWidget(self.port_set_spin)
|
|
|
|
self.menu.addAction(port)
|
|
|
|
self.menu.port = port
|
|
|
|
|
2023-07-19 15:04:12 +08:00
|
|
|
fan = QtWidgets.QWidgetAction(self.menu)
|
|
|
|
fan.setDefaultWidget(self.fan_group)
|
|
|
|
self.menu.addAction(fan)
|
|
|
|
self.menu.fan = fan
|
|
|
|
|
2023-07-19 12:49:15 +08:00
|
|
|
self.thermostat_settings.setMenu(self.menu)
|
|
|
|
|
2023-07-18 10:28:56 +08:00
|
|
|
async def _on_connection_changed(self, result):
|
2023-07-01 23:46:40 +08:00
|
|
|
self.graph_group.setEnabled(result)
|
|
|
|
self.fan_group.setEnabled(result)
|
|
|
|
self.report_group.setEnabled(result)
|
|
|
|
|
|
|
|
self.ip_set_line.setEnabled(not result)
|
|
|
|
self.port_set_spin.setEnabled(not result)
|
|
|
|
self.connect_btn.setText("Disconnect" if result else "Connect")
|
2023-07-20 16:16:57 +08:00
|
|
|
if result:
|
|
|
|
self.client_watcher.start_watching()
|
|
|
|
self._status(await self.tec_client.hw_rev())
|
|
|
|
self.fan_update(await self.tec_client.fan())
|
|
|
|
else:
|
2023-07-13 17:03:49 +08:00
|
|
|
self.status_lbl.setText("Disconnected")
|
2023-07-07 15:36:17 +08:00
|
|
|
self.fan_pwm_warning.setPixmap(QtGui.QPixmap())
|
|
|
|
self.fan_pwm_warning.setToolTip("")
|
2023-07-18 11:01:51 +08:00
|
|
|
self.client_watcher.stop_watching()
|
2023-07-01 23:46:40 +08:00
|
|
|
|
2023-07-07 17:19:17 +08:00
|
|
|
def _set_fan_pwm_warning(self):
|
|
|
|
if self.fan_power_slider.value() != 100:
|
2023-07-07 15:36:17 +08:00
|
|
|
pixmapi = getattr(QtWidgets.QStyle.StandardPixmap, "SP_MessageBoxWarning")
|
|
|
|
icon = self.style().standardIcon(pixmapi)
|
|
|
|
self.fan_pwm_warning.setPixmap(icon.pixmap(16, 16))
|
2023-07-07 17:44:03 +08:00
|
|
|
self.fan_pwm_warning.setToolTip("Throttling the fan (not recommended on this hardware rev)")
|
2023-07-07 17:19:17 +08:00
|
|
|
else:
|
|
|
|
self.fan_pwm_warning.setPixmap(QtGui.QPixmap())
|
|
|
|
self.fan_pwm_warning.setToolTip("")
|
|
|
|
|
2023-07-13 17:03:49 +08:00
|
|
|
def _status(self, hw_rev_d: dict):
|
2023-07-07 17:19:17 +08:00
|
|
|
logging.debug(hw_rev_d)
|
2023-07-13 17:03:49 +08:00
|
|
|
self.status_lbl.setText(f"Connected to Thermostat v{hw_rev_d['rev']['major']}.{hw_rev_d['rev']['minor']}")
|
2023-07-07 17:19:17 +08:00
|
|
|
self.fan_group.setEnabled(hw_rev_d["settings"]["fan_available"])
|
|
|
|
self.fan_pwm_recommended = hw_rev_d["settings"]["fan_pwm_recommended"]
|
2023-07-01 23:46:40 +08:00
|
|
|
|
2023-07-11 12:27:43 +08:00
|
|
|
@pyqtSlot(dict)
|
|
|
|
def fan_update(self, fan_settings: dict):
|
2023-07-01 23:46:40 +08:00
|
|
|
logging.debug(fan_settings)
|
|
|
|
if fan_settings is None:
|
|
|
|
return
|
2023-07-05 13:00:56 +08:00
|
|
|
with QSignalBlocker(self.fan_power_slider):
|
2023-07-11 11:48:38 +08:00
|
|
|
self.fan_power_slider.setValue(fan_settings["fan_pwm"] or 100) # 0 = PWM off = full strength
|
2023-07-05 13:00:56 +08:00
|
|
|
with QSignalBlocker(self.fan_auto_box):
|
2023-07-01 23:46:40 +08:00
|
|
|
self.fan_auto_box.setChecked(fan_settings["auto_mode"])
|
2023-07-07 17:19:17 +08:00
|
|
|
if not self.fan_pwm_recommended:
|
|
|
|
self._set_fan_pwm_warning()
|
2023-07-01 23:46:40 +08:00
|
|
|
|
2023-07-11 11:55:30 +08:00
|
|
|
@asyncSlot(int)
|
|
|
|
async def fan_set(self, value):
|
2023-07-19 14:35:51 +08:00
|
|
|
if not self.tec_client.is_connected():
|
2023-07-01 23:46:40 +08:00
|
|
|
return
|
2023-07-19 14:35:51 +08:00
|
|
|
if self.fan_auto_box.isChecked():
|
|
|
|
with QSignalBlocker(self.fan_auto_box):
|
|
|
|
self.fan_auto_box.setChecked(False)
|
2023-07-11 11:55:30 +08:00
|
|
|
await self.tec_client.set_param("fan", value)
|
2023-07-07 17:19:17 +08:00
|
|
|
if not self.fan_pwm_recommended:
|
|
|
|
self._set_fan_pwm_warning()
|
2023-07-01 23:46:40 +08:00
|
|
|
|
|
|
|
@asyncSlot(int)
|
|
|
|
async def fan_auto_set(self, enabled):
|
2023-07-14 16:01:53 +08:00
|
|
|
if not self.tec_client.is_connected():
|
2023-07-01 23:46:40 +08:00
|
|
|
return
|
|
|
|
if enabled:
|
2023-07-05 16:25:13 +08:00
|
|
|
await self.tec_client.set_param("fan", "auto")
|
2023-07-11 12:28:20 +08:00
|
|
|
self.fan_update(await self.tec_client.fan())
|
2023-06-27 17:34:39 +08:00
|
|
|
else:
|
2023-07-05 16:25:13 +08:00
|
|
|
await self.tec_client.set_param("fan", self.fan_power_slider.value())
|
2023-07-01 23:46:40 +08:00
|
|
|
|
2023-07-06 12:39:08 +08:00
|
|
|
@asyncClose
|
|
|
|
async def closeEvent(self, event):
|
2023-07-14 16:52:13 +08:00
|
|
|
self.client_watcher.stop_watching()
|
|
|
|
await self.tec_client.disconnect()
|
2023-07-06 12:39:08 +08:00
|
|
|
|
2023-07-01 23:46:40 +08:00
|
|
|
@asyncSlot()
|
2023-07-18 10:36:29 +08:00
|
|
|
async def on_connect_btn_clicked(self):
|
2023-07-01 23:46:40 +08:00
|
|
|
ip, port = self.ip_set_line.text(), self.port_set_spin.value()
|
|
|
|
try:
|
2023-07-14 16:01:53 +08:00
|
|
|
if not (self.tec_client.is_connecting() or self.tec_client.is_connected()):
|
2023-07-01 23:46:40 +08:00
|
|
|
self.status_lbl.setText("Connecting...")
|
2023-07-14 16:16:52 +08:00
|
|
|
self.connect_btn.setText("Stop")
|
2023-07-07 16:31:47 +08:00
|
|
|
self.ip_set_line.setEnabled(False)
|
|
|
|
self.port_set_spin.setEnabled(False)
|
|
|
|
|
2023-07-18 11:01:51 +08:00
|
|
|
connected = await self.tec_client.connect(host=ip, port=port, timeout=30)
|
|
|
|
if not connected:
|
2023-07-11 13:43:09 +08:00
|
|
|
return
|
2023-07-18 10:28:56 +08:00
|
|
|
await self._on_connection_changed(True)
|
2023-07-05 10:24:36 +08:00
|
|
|
else:
|
2023-07-18 10:28:56 +08:00
|
|
|
await self._on_connection_changed(False)
|
2023-07-18 11:26:40 +08:00
|
|
|
await self.tec_client.disconnect()
|
2023-07-05 13:13:54 +08:00
|
|
|
|
2023-07-11 17:45:57 +08:00
|
|
|
except (OSError, TimeoutError) as e:
|
2023-07-18 12:43:44 +08:00
|
|
|
logging.error(f"Failed communicating to {ip}:{port}: {e}")
|
2023-07-18 10:28:56 +08:00
|
|
|
await self._on_connection_changed(False)
|
2023-07-18 11:26:40 +08:00
|
|
|
await self.tec_client.disconnect()
|
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):
|
|
|
|
for param, change, data in changes:
|
|
|
|
if param.name() == 'Temperature PID' and not data:
|
|
|
|
ch = param.opts["payload"]
|
|
|
|
await self.tec_client.set_param('pwm', ch, 'i_set', params[ch].child('Constant Current').value())
|
|
|
|
elif param.opts.get("commands", None) is not None:
|
|
|
|
await asyncio.gather(*[self.tec_client._command(x.format(value=data)) for x in param.opts["commands"]])
|
|
|
|
|
|
|
|
def _set_param_tree(self):
|
2023-08-16 17:35:13 +08:00
|
|
|
for i, tree in enumerate((self.ch0_tree, self.ch1_tree)):
|
|
|
|
tree.setParameters(params[i], showTop=False)
|
|
|
|
params[i].sigTreeStateChanged.connect(self.send_command)
|
2023-06-28 15:01:47 +08:00
|
|
|
|
|
|
|
@pyqtSlot(list)
|
|
|
|
def update_pid(self, pid_settings):
|
|
|
|
for settings in pid_settings:
|
|
|
|
channel = settings["channel"]
|
2023-07-07 12:41:09 +08:00
|
|
|
with QSignalBlocker(params[channel]):
|
2023-07-18 17:16:35 +08:00
|
|
|
params[channel].child("PID Config", "Kp").setValue(settings["parameters"]["kp"])
|
|
|
|
params[channel].child("PID Config", "Ki").setValue(settings["parameters"]["ki"])
|
|
|
|
params[channel].child("PID Config", "Kd").setValue(settings["parameters"]["kd"])
|
2023-06-28 15:01:47 +08:00
|
|
|
if params[channel].child("Temperature PID").value():
|
|
|
|
params[channel].child("Temperature PID", "Set Temperature").setValue(settings["target"])
|
|
|
|
|
|
|
|
@pyqtSlot(list)
|
|
|
|
def update_report(self, report_data):
|
|
|
|
for settings in report_data:
|
|
|
|
channel = settings["channel"]
|
2023-07-07 12:41:09 +08:00
|
|
|
with QSignalBlocker(params[channel]):
|
2023-06-28 15:01:47 +08:00
|
|
|
params[channel].child("Temperature PID").setValue(settings["pid_engaged"])
|
2023-07-20 13:48:10 +08:00
|
|
|
if not settings["pid_engaged"]:
|
|
|
|
params[channel].child("Constant Current").setValue(settings["i_set"])
|
2023-06-28 15:01:47 +08:00
|
|
|
|
2023-07-20 13:49:11 +08:00
|
|
|
@pyqtSlot(list)
|
|
|
|
def update_thermistor(self, sh_data):
|
|
|
|
for sh_param in sh_data:
|
|
|
|
channel = sh_param["channel"]
|
|
|
|
with QSignalBlocker(params[channel]):
|
|
|
|
params[channel].child("Thermistor Config", "T₀").setValue(sh_param["params"]["t0"] - 273.15)
|
|
|
|
params[channel].child("Thermistor Config", "R₀").setValue(sh_param["params"]["r0"])
|
|
|
|
params[channel].child("Thermistor Config", "β").setValue(sh_param["params"]["b"])
|
|
|
|
|
2023-07-20 13:49:23 +08:00
|
|
|
@pyqtSlot(list)
|
|
|
|
def update_pwm(self, pwm_data):
|
|
|
|
for pwm_params in pwm_data:
|
|
|
|
channel = pwm_params["channel"]
|
|
|
|
with QSignalBlocker(params[channel]):
|
|
|
|
params[channel].child("Output Config", "Max Voltage").setValue(pwm_params["max_v"]["value"])
|
|
|
|
params[channel].child("Output Config", "Max Current").setValue(pwm_params["max_i_pos"]["value"])
|
|
|
|
|
2023-08-01 13:32:06 +08:00
|
|
|
@pyqtSlot(list)
|
|
|
|
def update_postfilter(self, postfilter_data):
|
|
|
|
for postfilter_params in postfilter_data:
|
|
|
|
channel = postfilter_params["channel"]
|
|
|
|
with QSignalBlocker(params[channel]):
|
|
|
|
params[channel].child("Postfilter Config", "Rate").setValue(postfilter_params["rate"])
|
|
|
|
|
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)
|
2023-06-26 10:20:48 +08:00
|
|
|
|
2023-07-01 23:46:40 +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
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|