Skip to content

Commit

Permalink
Fix total current in CLI returning 10 times to much current (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
DCSBL authored Dec 18, 2024
1 parent 83da619 commit bc0e0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/peblar/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ async def meter(
+ meter_data.current_phase_2
+ meter_data.current_phase_3
)
/ 100,
/ 1000,
3,
)
table.add_row("Total current", f"{total_current}A")
Expand Down

0 comments on commit bc0e0de

Please sign in to comment.