Fix roomba bin full binary sensor (#35443)
This commit is contained in:
parent
08087b0f99
commit
8050d8555e
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class RoombaBinStatus(IRobotEntity, BinarySensorEntity):
|
||||||
return self.ICON
|
return self.ICON
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def state(self):
|
def is_on(self):
|
||||||
"""Return the state of the sensor."""
|
"""Return the state of the sensor."""
|
||||||
return roomba_reported_state(self.vacuum).get("bin", {}).get("full", False)
|
return roomba_reported_state(self.vacuum).get("bin", {}).get("full", False)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue