ctrl_panel: Put plotted values into readings group

For more intuitiveness to first-time users
This commit is contained in:
atse 2024-07-22 16:00:17 +08:00
parent 3ae89760ab
commit eddfc40e07
2 changed files with 29 additions and 19 deletions

View File

@ -142,11 +142,13 @@ class CtrlPanel(QObject):
"output", "control_method", "i_set" "output", "control_method", "i_set"
).setValue(settings["i_set"]) ).setValue(settings["i_set"])
if settings["temperature"] is not None: if settings["temperature"] is not None:
self.params[channel].child("temperature").setValue( self.params[channel].child("readings", "temperature").setValue(
settings["temperature"] settings["temperature"]
) )
if settings["tec_i"] is not None: if settings["tec_i"] is not None:
self.params[channel].child("tec_i").setValue(settings["tec_i"]) self.params[channel].child("readings", "tec_i").setValue(
settings["tec_i"]
)
@pyqtSlot("QVariantList") @pyqtSlot("QVariantList")
def update_thermistor(self, sh_data): def update_thermistor(self, sh_data):

View File

@ -1,23 +1,31 @@
{ {
"ctrl_panel": [ "ctrl_panel": [
{ {
"name": "temperature", "name": "readings",
"title": "Temperature", "title": "Readings",
"type": "float", "type": "group",
"format": "{value:.4f} {suffix}", "tip": "Thermostat readings",
"suffix": "°C", "children": [
"readonly": true, {
"tip": "The measured temperature at the thermistor" "name": "temperature",
}, "title": "Temperature",
{ "type": "float",
"name": "tec_i", "format": "{value:.4f} {suffix}",
"title": "Current through TEC", "suffix": "°C",
"type": "float", "readonly": true,
"siPrefix": true, "tip": "The measured temperature at the thermistor"
"suffix": "A", },
"decimals": 6, {
"readonly": true, "name": "tec_i",
"tip": "The measured current through the TEC" "title": "Current through TEC",
"type": "float",
"siPrefix": true,
"suffix": "A",
"decimals": 6,
"readonly": true,
"tip": "The measured current through the TEC"
}
]
}, },
{ {
"name": "output", "name": "output",