Skip to content

Commit 67112f9

Browse files
authored
Reduce self heating
Turn off bias heating when not in use to reduce self heating.
1 parent a60bd58 commit 67112f9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

adafruit_max31865.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ def read_rtd(self):
230230
self._write_u8(_MAX31865_CONFIG_REG, config)
231231
time.sleep(0.065)
232232
rtd = self._read_u16(_MAX31865_RTDMSB_REG)
233+
self.bias = False
233234
# Remove fault bit.
234235
rtd >>= 1
235236
return rtd

0 commit comments

Comments
 (0)