mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
Adjust base entities in Husqvarna Automower (#120258)
* adjust base entities * Adjust docstrings
This commit is contained in:
parent
d095d4e60d
commit
fe3027f7de
@ -12,7 +12,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||||||
from . import AutomowerConfigEntry
|
from . import AutomowerConfigEntry
|
||||||
from .const import DOMAIN
|
from .const import DOMAIN
|
||||||
from .coordinator import AutomowerDataUpdateCoordinator
|
from .coordinator import AutomowerDataUpdateCoordinator
|
||||||
from .entity import AutomowerControlEntity
|
from .entity import AutomowerAvailableEntity
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ async def async_setup_entry(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class AutomowerButtonEntity(AutomowerControlEntity, ButtonEntity):
|
class AutomowerButtonEntity(AutomowerAvailableEntity, ButtonEntity):
|
||||||
"""Defining the AutomowerButtonEntity."""
|
"""Defining the AutomowerButtonEntity."""
|
||||||
|
|
||||||
_attr_translation_key = "confirm_error"
|
_attr_translation_key = "confirm_error"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from aioautomower.model import MowerAttributes
|
from aioautomower.model import MowerActivities, MowerAttributes, MowerStates
|
||||||
|
|
||||||
from homeassistant.helpers.device_registry import DeviceInfo
|
from homeassistant.helpers.device_registry import DeviceInfo
|
||||||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||||
@ -12,6 +12,21 @@ from .const import DOMAIN
|
|||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
ERROR_ACTIVITIES = (
|
||||||
|
MowerActivities.STOPPED_IN_GARDEN,
|
||||||
|
MowerActivities.UNKNOWN,
|
||||||
|
MowerActivities.NOT_APPLICABLE,
|
||||||
|
)
|
||||||
|
ERROR_STATES = [
|
||||||
|
MowerStates.FATAL_ERROR,
|
||||||
|
MowerStates.ERROR,
|
||||||
|
MowerStates.ERROR_AT_POWER_UP,
|
||||||
|
MowerStates.NOT_APPLICABLE,
|
||||||
|
MowerStates.UNKNOWN,
|
||||||
|
MowerStates.STOPPED,
|
||||||
|
MowerStates.OFF,
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
class AutomowerBaseEntity(CoordinatorEntity[AutomowerDataUpdateCoordinator]):
|
class AutomowerBaseEntity(CoordinatorEntity[AutomowerDataUpdateCoordinator]):
|
||||||
"""Defining the Automower base Entity."""
|
"""Defining the Automower base Entity."""
|
||||||
@ -41,10 +56,22 @@ class AutomowerBaseEntity(CoordinatorEntity[AutomowerDataUpdateCoordinator]):
|
|||||||
return self.coordinator.data[self.mower_id]
|
return self.coordinator.data[self.mower_id]
|
||||||
|
|
||||||
|
|
||||||
class AutomowerControlEntity(AutomowerBaseEntity):
|
class AutomowerAvailableEntity(AutomowerBaseEntity):
|
||||||
"""AutomowerControlEntity, for dynamic availability."""
|
"""Replies available when the mower is connected."""
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def available(self) -> bool:
|
def available(self) -> bool:
|
||||||
"""Return True if the device is available."""
|
"""Return True if the device is available."""
|
||||||
return super().available and self.mower_attributes.metadata.connected
|
return super().available and self.mower_attributes.metadata.connected
|
||||||
|
|
||||||
|
|
||||||
|
class AutomowerControlEntity(AutomowerAvailableEntity):
|
||||||
|
"""Replies available when the mower is connected and not in error state."""
|
||||||
|
|
||||||
|
@property
|
||||||
|
def available(self) -> bool:
|
||||||
|
"""Return True if the device is available."""
|
||||||
|
return super().available and (
|
||||||
|
self.mower_attributes.mower.state not in ERROR_STATES
|
||||||
|
or self.mower_attributes.mower.activity not in ERROR_ACTIVITIES
|
||||||
|
)
|
||||||
|
@ -23,7 +23,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||||||
from . import AutomowerConfigEntry
|
from . import AutomowerConfigEntry
|
||||||
from .const import DOMAIN
|
from .const import DOMAIN
|
||||||
from .coordinator import AutomowerDataUpdateCoordinator
|
from .coordinator import AutomowerDataUpdateCoordinator
|
||||||
from .entity import AutomowerControlEntity
|
from .entity import AutomowerAvailableEntity
|
||||||
|
|
||||||
DOCKED_ACTIVITIES = (MowerActivities.PARKED_IN_CS, MowerActivities.CHARGING)
|
DOCKED_ACTIVITIES = (MowerActivities.PARKED_IN_CS, MowerActivities.CHARGING)
|
||||||
MOWING_ACTIVITIES = (
|
MOWING_ACTIVITIES = (
|
||||||
@ -94,7 +94,7 @@ async def async_setup_entry(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class AutomowerLawnMowerEntity(AutomowerControlEntity, LawnMowerEntity):
|
class AutomowerLawnMowerEntity(AutomowerAvailableEntity, LawnMowerEntity):
|
||||||
"""Defining each mower Entity."""
|
"""Defining each mower Entity."""
|
||||||
|
|
||||||
_attr_name = None
|
_attr_name = None
|
||||||
|
@ -5,13 +5,7 @@ import logging
|
|||||||
from typing import TYPE_CHECKING, Any
|
from typing import TYPE_CHECKING, Any
|
||||||
|
|
||||||
from aioautomower.exceptions import ApiException
|
from aioautomower.exceptions import ApiException
|
||||||
from aioautomower.model import (
|
from aioautomower.model import MowerModes, StayOutZones, Zone
|
||||||
MowerActivities,
|
|
||||||
MowerModes,
|
|
||||||
MowerStates,
|
|
||||||
StayOutZones,
|
|
||||||
Zone,
|
|
||||||
)
|
|
||||||
|
|
||||||
from homeassistant.components.switch import SwitchEntity
|
from homeassistant.components.switch import SwitchEntity
|
||||||
from homeassistant.const import Platform
|
from homeassistant.const import Platform
|
||||||
@ -27,21 +21,6 @@ from .entity import AutomowerControlEntity
|
|||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
ERROR_ACTIVITIES = (
|
|
||||||
MowerActivities.STOPPED_IN_GARDEN,
|
|
||||||
MowerActivities.UNKNOWN,
|
|
||||||
MowerActivities.NOT_APPLICABLE,
|
|
||||||
)
|
|
||||||
ERROR_STATES = [
|
|
||||||
MowerStates.FATAL_ERROR,
|
|
||||||
MowerStates.ERROR,
|
|
||||||
MowerStates.ERROR_AT_POWER_UP,
|
|
||||||
MowerStates.NOT_APPLICABLE,
|
|
||||||
MowerStates.UNKNOWN,
|
|
||||||
MowerStates.STOPPED,
|
|
||||||
MowerStates.OFF,
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
@ -88,14 +67,6 @@ class AutomowerScheduleSwitchEntity(AutomowerControlEntity, SwitchEntity):
|
|||||||
"""Return the state of the switch."""
|
"""Return the state of the switch."""
|
||||||
return self.mower_attributes.mower.mode != MowerModes.HOME
|
return self.mower_attributes.mower.mode != MowerModes.HOME
|
||||||
|
|
||||||
@property
|
|
||||||
def available(self) -> bool:
|
|
||||||
"""Return True if the device is available."""
|
|
||||||
return super().available and (
|
|
||||||
self.mower_attributes.mower.state not in ERROR_STATES
|
|
||||||
or self.mower_attributes.mower.activity not in ERROR_ACTIVITIES
|
|
||||||
)
|
|
||||||
|
|
||||||
async def async_turn_off(self, **kwargs: Any) -> None:
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
||||||
"""Turn the entity off."""
|
"""Turn the entity off."""
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user