mirror of https://github.com/Desuuuu/klipper.git
lm75: round reported temps to 2 decimal places
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
916ef4483a
commit
bf598d0922
|
@ -98,7 +98,7 @@ class LM75:
|
|||
|
||||
def get_status(self, eventtime):
|
||||
return {
|
||||
'temperature': self.temp,
|
||||
'temperature': round(self.temp, 2),
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue