- changed gitignore

- make tempSensor Max31865 more robust against reading failures
- removed temp offset
This commit is contained in:
jens
2021-08-10 15:02:57 +01:00
parent 37cb2d146e
commit 289ef47bb6
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ class TempSensorFactory:
return TempSensorSim()
elif "31865" in name:
from components.sensor.tempSensor_max31865 import TempSensor_max31865
return TempSensor_max31865(temp_offset=-1.2)
return TempSensor_max31865(temp_offset=0)