Skip to content

Commit

Permalink
fix: restore Idle button missing
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptk committed Mar 7, 2024
1 parent 042c1c3 commit 46dc14d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/omnilogic_local/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
case FilterType.VARIABLE_SPEED:
entities.append(OmniLogicFilterButtonEntity(coordinator=coordinator, context=system_id, speed=speed))

async_add_entities(entities)

_LOGGER.debug("Configuring button for restore idle with ID: %s", BACKYARD_SYSTEM_ID)
entities.append(OmniLogicIdleButtonEntity(coordinator=coordinator, context=BACKYARD_SYSTEM_ID))

async_add_entities(entities)


T = TypeVar("T", EntityIndexFilter, EntityIndexPump)

Expand Down

0 comments on commit 46dc14d

Please sign in to comment.