i think its working.. but needs verify..

This commit is contained in:
2025-05-25 22:23:34 +02:00
parent 5b329b710a
commit 5ff1d193c7
4 changed files with 44 additions and 13 deletions

View File

@@ -49,7 +49,7 @@ with open(sys.argv[1], newline='') as csvfile:
# Begin plotting
fig1, ax1 = plt.subplots()
fig1.canvas.manager.set_window_title('DVT-Light Python Plotter V1.1')
fig1.canvas.manager.set_window_title('OZ1CM Python Plotter V1.1')
fig1.suptitle(plot_title)
# Plot Vout
@@ -59,7 +59,7 @@ ax1.set_ylabel('Vout', color=color)
ax1.plot(time_array, temperature_array, color=color, label='Vout')
ax1.tick_params(axis='y', labelcolor=color)
ax1.set_ylim(min_temp, max_temp + temperature_end_offset)
ax1.set_yticks(np.arange(min_temp, max_temp + temperature_end_offset, step=10))
ax1.set_yticks(np.arange(min_temp, max_temp + temperature_end_offset, step=1.0))
ax1.grid(True)
# Plot Power (2nd y-axis)