Added operating temperature

main
Max Nuding 2022-01-09 05:19:45 +00:00
parent e031bf30b9
commit 0f0aba676b
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ plt.plot(datenums, data_frame.tempCoolSide2C, label='Cool 2', color='navy', mark
for i, j in zip(datenums, data_frame.tempCoolSide2C):
ax.annotate(str(round(j, 2)), xy=(i, j), rotation=45)
plt.axhline(y=-223, color='darkblue', linestyle=':', label='Operating temperature')
plt.legend(bbox_to_anchor=(1, 1), loc="upper left")
plt.show()