Added maximize parameter
This commit is contained in:
parent
bd69d1c8cb
commit
b2040c4bab
|
@ -120,7 +120,7 @@ if __name__ == "__main__":
|
||||||
connect()
|
connect()
|
||||||
threading.Thread(target=start_data_pull).start()
|
threading.Thread(target=start_data_pull).start()
|
||||||
threading.Thread(target=start_vibration).start()
|
threading.Thread(target=start_vibration).start()
|
||||||
sleepdata.init_graph()
|
sleepdata.init_graph(maximize=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,6 @@ csv_filename_format = '{}_{}.csv'
|
||||||
plt.style.use('dark_background')
|
plt.style.use('dark_background')
|
||||||
graph_figure = plt.figure()
|
graph_figure = plt.figure()
|
||||||
graph_figure.canvas.set_window_title('blesleep')
|
graph_figure.canvas.set_window_title('blesleep')
|
||||||
figure_manager = plt.get_current_fig_manager()
|
|
||||||
figure_manager.full_screen_toggle()
|
|
||||||
|
|
||||||
graph_axes = graph_figure.add_subplot(1, 1, 1)
|
graph_axes = graph_figure.add_subplot(1, 1, 1)
|
||||||
graph_data = {}
|
graph_data = {}
|
||||||
|
@ -241,7 +239,10 @@ def graph_animation(i):
|
||||||
plt.legend()
|
plt.legend()
|
||||||
|
|
||||||
|
|
||||||
def init_graph():
|
def init_graph(maximize=False):
|
||||||
|
if maximize:
|
||||||
|
figure_manager = plt.get_current_fig_manager()
|
||||||
|
figure_manager.full_screen_toggle()
|
||||||
ani = animation.FuncAnimation(graph_figure, graph_animation, interval=1000)
|
ani = animation.FuncAnimation(graph_figure, graph_animation, interval=1000)
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue