Skip to content

Commit

Permalink
fix(thermocycler-gen2 script): fix order of thermistor data (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsinapi authored Dec 14, 2022
1 parent a3b0c7e commit 1dd65d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stm32-modules/thermocycler-gen2/scripts/hold_temp.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Thermistors:
bl: float # back left

def __str__(self):
return f'{self.hs},{self.fr},{self.fc},{self.fl},{self.br},{self.bc},{self.bl}'
return f'{self.hs},{self.fr},{self.fl},{self.fc},{self.br},{self.bl},{self.bc}'

@dataclass
class Power:
Expand Down

0 comments on commit 1dd65d4

Please sign in to comment.