Add returning activity to ecovacs lawn mower (#124519)

This commit is contained in:
Michael Arthur 2024-08-24 22:53:49 +12:00 committed by GitHub
parent 9e13184256
commit b26446bd88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,7 +27,7 @@ _LOGGER = logging.getLogger(__name__)
_STATE_TO_MOWER_STATE = {
State.IDLE: LawnMowerActivity.PAUSED,
State.CLEANING: LawnMowerActivity.MOWING,
State.RETURNING: LawnMowerActivity.MOWING,
State.RETURNING: LawnMowerActivity.RETURNING,
State.DOCKED: LawnMowerActivity.DOCKED,
State.ERROR: LawnMowerActivity.ERROR,
State.PAUSED: LawnMowerActivity.PAUSED,