There was an error while loading. Please reload this page.
1 parent 318eece commit c1f2895Copy full SHA for c1f2895
1 file changed
miio/viomivacuum.py
@@ -135,6 +135,7 @@ def mop(self) -> timedelta:
135
136
@property
137
def mop_left(self) -> timedelta:
138
+ """How long until the mop should be changed."""
139
return self.sensor_dirty_total - self.sensor_dirty
140
141
def __repr__(self) -> str:
@@ -229,7 +230,6 @@ class ViomiEdgeState(Enum):
229
230
Off = 0
231
Unknown = 1
232
On = 2
- Unknown2 = 5
233
234
235
class ViomiVacuumStatus:
@@ -435,7 +435,7 @@ class ViomiVacuum(Device):
435
"""Interface for Viomi vacuums (viomi.vacuum.v7)."""
436
437
_cache = {"edge_state": None, "rooms": {}}
438
- timeout = 0.6
+ timeout = 0.5
439
retry_count = 20
440
441
@command(
0 commit comments