Fix roomba bin full binary sensor (#35443)

This commit is contained in:
Xiaonan Shen
2020-05-10 05:10:03 -07:00
committed by GitHub
parent 08087b0f99
commit 8050d8555e

View File

@@ -42,7 +42,7 @@ class RoombaBinStatus(IRobotEntity, BinarySensorEntity):
return self.ICON
@property
def state(self):
def is_on(self):
"""Return the state of the sensor."""
return roomba_reported_state(self.vacuum).get("bin", {}).get("full", False)