Testing figure maximize

pull/3/head
NateSchoolfield 2021-02-02 14:33:41 -08:00
parent 45e603270e
commit bd69d1c8cb
2 changed files with 5 additions and 1 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()

View File

@ -35,6 +35,10 @@ 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 = {}