Fix for below 0C measurements with nominal resistance other than 100 ohms

This commit is contained in:
Chris Osterwood 2019-03-12 21:49:45 -04:00
parent 53bf421dbe
commit 207e1f7e2e
1 changed files with 5 additions and 0 deletions

View File

@ -244,6 +244,11 @@ class MAX31865:
temp = (math.sqrt(temp) + Z1) / Z4 temp = (math.sqrt(temp) + Z1) / Z4
if temp >= 0: if temp >= 0:
return temp return temp
# For the following math to work, nominal RTD resistance must be normalized to 100 ohms
raw_reading /= self.rtd_nominal
raw_reading *= 100
rpoly = raw_reading rpoly = raw_reading
temp = -242.02 temp = -242.02
temp += 2.2228 * rpoly temp += 2.2228 * rpoly