mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
"""Switch platform for tibber_prices."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
from homeassistant.components.switch import SwitchEntity, SwitchEntityDescription
|
|
|
|
from .entity import IntegrationBlueprintEntity
|
|
|
|
if TYPE_CHECKING:
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .coordinator import BlueprintDataUpdateCoordinator
|
|
from .data import IntegrationBlueprintConfigEntry
|
|
|
|
ENTITY_DESCRIPTIONS = (
|
|
SwitchEntityDescription(
|
|
key="tibber_prices",
|
|
name="Integration Switch",
|
|
icon="mdi:format-quote-close",
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, # noqa: ARG001 Unused function argument: `hass`
|
|
entry: IntegrationBlueprintConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the switch platform."""
|
|
async_add_entities(
|
|
IntegrationBlueprintSwitch(
|
|
coordinator=entry.runtime_data.coordinator,
|
|
entity_description=entity_description,
|
|
)
|
|
for entity_description in ENTITY_DESCRIPTIONS
|
|
)
|
|
|
|
|
|
class IntegrationBlueprintSwitch(IntegrationBlueprintEntity, SwitchEntity):
|
|
"""tibber_prices switch class."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: BlueprintDataUpdateCoordinator,
|
|
entity_description: SwitchEntityDescription,
|
|
) -> None:
|
|
"""Initialize the switch class."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = entity_description
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return true if the switch is on."""
|
|
return self.coordinator.data.get("title", "") == "foo"
|
|
|
|
async def async_turn_on(self, **_: Any) -> None:
|
|
"""Turn on the switch."""
|
|
await self.coordinator.config_entry.runtime_data.client.async_set_title("bar")
|
|
await self.coordinator.async_request_refresh()
|
|
|
|
async def async_turn_off(self, **_: Any) -> None:
|
|
"""Turn off the switch."""
|
|
await self.coordinator.config_entry.runtime_data.client.async_set_title("foo")
|
|
await self.coordinator.async_request_refresh()
|