import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation from sense_hat import SenseHat sense = SenseHat() def data_gen(t=0): cnt = 0 while cnt < 1000: cnt += 1 t += 0.1 yield t, 1.8*(sense.get_temperature() - ((100-sense.get_humidity())/5.))+32 def init(): ax.set_ylim(30, 100) ax.set_xlim(0, 10) ax.set_xlabel('Time') ax.set_ylabel('Dew Point, Centrgrade degrees') del xdata[:] del ydata[:] line.set_data(xdata, ydata) return line, fig, ax = plt.subplots() line, = ax.plot([], [], lw=2) ax.grid() xdata, ydata = [], [] def run(data): # update the data t, y = data xdata.append(t) ydata.append(y) xmin, xmax = ax.get_xlim() if t >= xmax: ax.set_xlim(xmin, 2*xmax) ax.figure.canvas.draw() line.set_data(xdata, ydata) return line, ani = animation.FuncAnimation(fig, run, data_gen, blit=False, interval=1, repeat=False, init_func=init) plt.show()