Add clear method

This commit is contained in:
CPD 2025-03-05 10:27:27 +01:00
parent f671693698
commit 8ada9f0766

View File

@ -59,13 +59,36 @@ class Plot(pg.GraphicsLayoutWidget):
self.v_plot_item.getViewBox().sigResized.connect(self.update_views)
def update_views(self):
"""
Make sure the linked view boxes have the correct size
(called after resizing of the plot)
"""
self.l_box.setGeometry(self.v_plot_item.getViewBox().sceneBoundingRect())
self.l_box.linkedViewChanged(self.v_plot_item.getViewBox(), self.l_box.XAxis)
def update_plot(self, time, voltage, led):
"""
Add new data points to the plot
Parameters
----------
time
voltage
led
"""
self.time.append(time)
self.voltage.append(voltage)
self.led.append(led)
self.v_line.setData(self.time, self.voltage)
self.l_line.setData(self.time, self.led)
def clear_data(self):
"""
Clear the lines and data
Returns
"""
self.time = []
self.voltage = []
self.led = []
self.v_line.setData(self.time, self.voltage)
self.l_line.setData(self.time, self.led)