Added maximize parameter

pull/3/head
NateSchoolfield 2021-02-02 14:40:02 -08:00
parent bd69d1c8cb
commit b2040c4bab
2 changed files with 5 additions and 4 deletions

View File

@ -120,7 +120,7 @@ if __name__ == "__main__":
connect()
threading.Thread(target=start_data_pull).start()
threading.Thread(target=start_vibration).start()
sleepdata.init_graph()
sleepdata.init_graph(maximize=True)

View File

@ -36,8 +36,6 @@ csv_filename_format = '{}_{}.csv'
plt.style.use('dark_background')
graph_figure = plt.figure()
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_data = {}
@ -241,7 +239,10 @@ def graph_animation(i):
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)
plt.show()