Explain states a bit better

This commit is contained in:
Richard Mitchell
2019-04-19 08:41:09 +01:00
parent 42c2cf71ec
commit 08d311dd06

View File

@@ -39,11 +39,17 @@ class Direction(StringEnum):
class WorkStatus(StringEnum): class WorkStatus(StringEnum):
# Cleaning
RUNNING = 'Running' RUNNING = 'Running'
# In the dock, charging
CHARGING = 'Charging' CHARGING = 'Charging'
# Not in the dock, paused
STAND_BY = 'standby' STAND_BY = 'standby'
# Not in the dock - goes into this state after being paused for a while
SLEEPING = 'Sleeping' SLEEPING = 'Sleeping'
# ? Not sure how this differs from charging
RECHARGING = 'Recharge' RECHARGING = 'Recharge'
# In the dock, full charged
COMPLETED = 'completed' COMPLETED = 'completed'