Skip to content

Commit

Permalink
Revert a change in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisib committed Jan 10, 2025
1 parent 63787aa commit e90ff50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/firmware/europi.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def read_temperature(self):
@return The current temperature in Celsius, or None if the hardware did not initialze properly
"""
if self.pin:
# see the pico's datasheet for the details of this calculation
# See the Pico's datasheet for the details of this calculation
return 27 - ((self.pin.read_u16() * self.TEMP_CONV_FACTOR) - 0.706) / 0.001721
else:
return None
Expand Down

0 comments on commit e90ff50

Please sign in to comment.