mirror of https://github.com/home-assistant/core
26 lines
834 B
Python
26 lines
834 B
Python
"""Support for Hue sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .bridge import HueBridge
|
|
from .const import DOMAIN
|
|
from .v1.sensor import async_setup_entry as setup_entry_v1
|
|
from .v2.sensor import async_setup_entry as setup_entry_v2
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up sensor entities."""
|
|
bridge: HueBridge = hass.data[DOMAIN][config_entry.entry_id]
|
|
if bridge.api_version == 1:
|
|
await setup_entry_v1(hass, config_entry, async_add_entities)
|
|
return
|
|
await setup_entry_v2(hass, config_entry, async_add_entities)
|