Skip to content

Commit

Permalink
swap monitor output order... now V, I, P
Browse files Browse the repository at this point in the history
  • Loading branch information
attie committed Jan 19, 2021
1 parent de6344c commit a5f3fc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koradctl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ def run_noninteractive(self):

def print_output_readings(self):
v, i, p = self.psu.get_output_readings()
print('Output: %1.3f A, %2.2f v, %2.2f W' % (
i.value, v.value, p.value
print('Output: %2.2f v, %1.3f A, %2.2f W' % (
v.value, i.value, p.value
))

0 comments on commit a5f3fc3

Please sign in to comment.