From a15996e4931cea38b104c270e8598b7834876aad Mon Sep 17 00:00:00 2001 From: YoungSoo Shin Date: Thu, 11 Dec 2025 18:07:30 +0900 Subject: [PATCH] csv_2_plot: update Y-axis scale configuration to include finer step intervals for power, voltage, and current Signed-off-by: YoungSoo Shin --- example/logger/csv_2_plot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/logger/csv_2_plot.py b/example/logger/csv_2_plot.py index cb22db3..8a9a613 100644 --- a/example/logger/csv_2_plot.py +++ b/example/logger/csv_2_plot.py @@ -83,9 +83,9 @@ def plot_power_data(csv_path, output_path, plot_types, sources, # --- Plotting Configuration --- scale_config = { - 'power': {'steps': [5, 20, 50, 160]}, - 'voltage': {'steps': [5, 10, 15, 25]}, - 'current': {'steps': [1, 2.5, 5, 10]} + 'power': {'steps': [5, 7, 10, 20, 50, 160]}, + 'voltage': {'steps': [5, 7, 10, 15, 20, 25]}, + 'current': {'steps': [1, 2.5, 5, 7.5, 10]} } plot_configs = { 'power': {'title': 'Power Consumption', 'ylabel': 'Power (W)', 'cols': [f'{s}_power' for s in sources]},