Merge pull request #9 from CapableRobot/low_temp_fix

Fix for below 0C measurements with nominal resistance other than 100 ohms
This commit is contained in:
Kattni 2020-01-08 09:43:28 -05:00 committed by GitHub
commit 17c638c02b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -246,6 +246,11 @@ class MAX31865:
temp = (math.sqrt(temp) + Z1) / Z4
if temp >= 0:
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
temp = -242.02
temp += 2.2228 * rpoly