From 08d311dd06849c708e7bd6752043f0045e108bb8 Mon Sep 17 00:00:00 2001 From: Richard Mitchell Date: Fri, 19 Apr 2019 08:41:09 +0100 Subject: [PATCH] Explain states a bit better --- eufy_robovac/robovac.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eufy_robovac/robovac.py b/eufy_robovac/robovac.py index 38df677..a627af4 100644 --- a/eufy_robovac/robovac.py +++ b/eufy_robovac/robovac.py @@ -39,11 +39,17 @@ class Direction(StringEnum): class WorkStatus(StringEnum): + # Cleaning RUNNING = 'Running' + # In the dock, charging CHARGING = 'Charging' + # Not in the dock, paused STAND_BY = 'standby' + # Not in the dock - goes into this state after being paused for a while SLEEPING = 'Sleeping' + # ? Not sure how this differs from charging RECHARGING = 'Recharge' + # In the dock, full charged COMPLETED = 'completed'