um24clab/src/um24clab.py

99 lines
2.8 KiB
Python

#!/usr/bin/env python
import sys
import random
from PySide2.QtCore import (
Qt, QTimer
)
from PySide2.QtWidgets import (
QApplication, QMainWindow
)
from PySide2.QtCharts import (
QtCharts
)
from UM24CUI import Ui_MainWindow
class UM24Lab(QMainWindow):
def __init__(self):
super(UM24Lab, self).__init__()
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
self.ui.plotVoltage = QtCharts.QChart()
self.ui.widgetVoltage.setChart(self.ui.plotVoltage)
self.ui.plotCurrent = QtCharts.QChart()
self.ui.widgetCurrent.setChart(self.ui.plotCurrent)
# --- Voltage ---
self.voltage = self.ui.plotVoltage
self.voltage_series = QtCharts.QLineSeries()
self.voltage_series.setName('Voltage over time')
self.voltage.addSeries(self.voltage_series)
axis_x = QtCharts.QValueAxis()
axis_x.setTickCount(60)
axis_x.setTitleText('Seconds')
self.voltage.addAxis(axis_x, Qt.AlignBottom)
self.voltage_series.attachAxis(axis_x)
axis_y = QtCharts.QValueAxis()
axis_y.setTickCount(10)
axis_y.setTitleText('Voltage (V)')
self.voltage.addAxis(axis_y, Qt.AlignLeft)
self.voltage_series.attachAxis(axis_y)
# --- Current ---
self.current = self.ui.plotCurrent
self.current_series = QtCharts.QLineSeries()
self.current_series.setName('Current over time')
self.current.addSeries(self.current_series)
axis_x = QtCharts.QValueAxis()
axis_x.setTickCount(60)
axis_x.setTitleText('Seconds')
self.current.addAxis(axis_x, Qt.AlignBottom)
self.current_series.attachAxis(axis_x)
axis_y = QtCharts.QValueAxis()
axis_y.setTickCount(10)
axis_y.setTitleText('Current (A)')
self.current.addAxis(axis_y, Qt.AlignLeft)
self.current_series.attachAxis(axis_y)
self.timer_step = 0
self.voltage_series.append(self.timer_step, 0)
self.current_series.append(self.timer_step, 0)
timer = QTimer()
timer.timeout.connect(self.update_graphs)
timer.start(0)
def update_graphs(self):
self.voltage_series.append(self.timer_step, random.randint(0, 10))
self.current_series.append(self.timer_step, random.randint(0, 10))
self.ui.progressTempC.setValue(random.randint(0, 100))
self.timer_step += 1
self.update()
if __name__ == '__main__':
app = QApplication(sys.argv)
labview = UM24Lab()
labview.show()
def idle_processor():
labview.update_graphs()
app.processEvents()
# print(labview.timer_step)
# mainTimer = QTimer()
# mainTimer.timeout.connect(idle_processor)
# mainTimer.start(50)
sys.exit(app.exec_())