-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsample_pyqtgraph_no_datetime.py
65 lines (45 loc) · 1.67 KB
/
sample_pyqtgraph_no_datetime.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import sys
import numpy as np
from PyQt4.QtCore import QTimer
from pyqtgraph.Qt import QtGui, QtCore
import pyqtgraph as pg
from timestamp import now_timestamp
from numpy_buffer import RingBuffer
class MyApplication(QtGui.QApplication):
def __init__(self, *args, **kwargs):
super(MyApplication, self).__init__(*args, **kwargs)
# self.t = QTime()
# self.t.start()
maxlen = 50
self.data_x = RingBuffer(maxlen)
self.data_y = RingBuffer(maxlen)
self.win = pg.GraphicsWindow(title="Basic plotting examples")
self.win.resize(1000, 600)
self.win.setWindowTitle('Plot with PyQtGraph')
self.plot = self.win.addPlot(title='Timed data')
# self.plot.setYRange(0, 150)
# self.curve = self.plot.plot()
pen = pg.mkPen('r', style=QtCore.Qt.SolidLine)
self.curve = self.plot.plot(pen=pen, symbol='+')
self.timer = QTimer()
self.timer.timeout.connect(self.update)
self.timer.start(100)
self.y = 100
def update(self):
# self.data.append({'x': self.t.elapsed(), 'y': np.random.randint(0, 100)})
x = now_timestamp()
self.y = self.y + np.random.uniform(-1, 1)
self.data_x.append(x)
self.data_y.append(self.y)
# self.curve.setData(x=self.data_x, y=self.data_y)
self.curve.setData(y=self.data_y)
def main():
# Set PyQtGraph colors
pg.setConfigOption('background', 'w')
pg.setConfigOption('foreground', 'k')
# Enable antialiasing for prettier plots
pg.setConfigOptions(antialias=True)
app = MyApplication(sys.argv)
sys.exit(app.exec_())
if __name__ == '__main__':
main()