Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update async event state change #128

Merged
merged 3 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions custom_components/adaptive_cover/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers.event import (
async_track_state_change,
async_track_state_change_event,
)

from .const import (
Expand Down Expand Up @@ -48,15 +48,15 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
_entities.append(entity)

entry.async_on_unload(
async_track_state_change(
async_track_state_change_event(
hass,
_entities,
coordinator.async_check_entity_state_change,
)
)

entry.async_on_unload(
async_track_state_change(
async_track_state_change_event(
hass,
_cover_entities,
coordinator.async_check_cover_state_change,
Expand Down
11 changes: 7 additions & 4 deletions custom_components/adaptive_cover/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
SERVICE_SET_COVER_POSITION,
SERVICE_SET_COVER_TILT_POSITION,
)
from homeassistant.core import HomeAssistant, State
from homeassistant.core import Event, EventStateChangedData, HomeAssistant, State
from homeassistant.helpers.template import state_attr
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator

Expand Down Expand Up @@ -121,19 +121,22 @@ async def async_config_entry_first_refresh(self) -> None:
_LOGGER.debug("Config entry first refresh")

async def async_check_entity_state_change(
self, entity: str, old_state: State | None, new_state: State | None
self, event: Event[EventStateChangedData]
) -> None:
"""Fetch and process state change event."""
_LOGGER.debug("Entity state change")
self.state_change = True
await self.async_refresh()

async def async_check_cover_state_change(
self, entity: str, old_state: State | None, new_state: State | None
self, event: Event[EventStateChangedData]
) -> None:
"""Fetch and process state change event."""
_LOGGER.debug("Cover state change")
self.state_change_data = StateChangedData(entity, old_state, new_state)
data = event.data
self.state_change_data = StateChangedData(
data["entity_id"], data["old_state"], data["new_state"]
)
self.cover_state_change = True
self.process_entity_state_change()
await self.async_refresh()
Expand Down
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Adaptive Cover",
"filename": "adaptive_cover.zip",
"homeassistant": "2022.1.0",
"homeassistant": "2024.5.0b1",
"render_readme": true,
"zip_release": true
}