- brewpi: only plot smoothed values

- max31865: no rounding

git-svn-id: http://moon:8086/svn/projects/HendiControl@234 fda53097-d464-4ada-af97-ba876c37ca34
This commit is contained in:
2019-04-08 10:16:37 +00:00
parent 7e7c1bb9df
commit 841d977d78
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ class Max31865(ATemperatureSensor):
return digits
def temperature(self):
return round(self.__tempRaw(), 1)
return self.__tempRaw()
def __tempRaw(self):
digits = self.read_digits()