battery improvements and pc start

This commit is contained in:
ducoterra
2023-02-21 11:07:55 -05:00
parent 57c15baa8b
commit d212d52236
3 changed files with 271 additions and 2 deletions

7
battery_plot.py Normal file
View File

@@ -0,0 +1,7 @@
import plotly.express as px
import pandas as pd
from pathlib import Path
df = pd.read_csv(Path(Path.home(), "data/battery_monitor.csv"))
fig = px.line(df, x="time", y="percent", title="Battery Charge over Time")
fig.show()