We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715f116 commit 0691ad9Copy full SHA for 0691ad9
homeassistant/components/smartthings/sensor.py
@@ -584,7 +584,7 @@ class SmartThingsSensorEntityDescription(SensorEntityDescription):
584
device_class=SensorDeviceClass.TEMPERATURE,
585
use_temperature_unit=True,
586
# Set the value to None if it is 0 F (-17 C)
587
- value_fn=lambda value: None if value in {0, -17} else value,
+ value_fn=lambda value: None if value in {-17, 0, 1} else value,
588
)
589
]
590
},
0 commit comments