mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-16 00:34:04 +02:00
The CDiT fork is single-household and was carrying an entire upstream docs/ mkdocs site documenting features the fork has removed (sleep mode, take-over-control, brightness_mode selector, YAML config). The README mostly auto-generated from those pages via markdown-code-runner. What's gone: - docs/ — all 11 pages + assets + run_markdown_code_runner.py - .github/workflows/docs.yml — zensical+shinylive GitHub Pages build - .github/workflows/markdown-code-runner.yml — auto-edit of README from docs/ - .github/update-services.py / update-strings.py — would clobber the hand-edited services.yaml / strings.json - scripts/update-generated-content — orchestrator for the above - custom_components/adaptive_lighting/_docs_helpers.py + docs_gen.py — only used by the deleted markdown-code-runner - zensical.toml — docs-site config - "docs" dependency group in pyproject.toml (markdown-code-runner, shinylive, zensical, etc.) + lock regenerated What's new: - README.md rewritten to describe the fork's actual surface — 3 switches, 4 number entities, 3 sensor entities per profile, 2 services (apply + change_switch_settings), entry-only setup, UI tuning, sun source. Preserves the existing "What's new in 2.1" / "2.2" block quotes. - webapp/README.md annotated to flag the Shiny simulator models the upstream curve (with brightness_mode, sleep mode, etc.) and does not reflect the fork. - CLAUDE.md command table no longer references update-generated-content. Sensor.py + test_sensor_platform.py: incidental black reformat from the lint pass (multi-arg function calls split per line). Tests still pass (123/123). Lint clean. Sensors implementation unchanged.
121 lines
4.2 KiB
Python
121 lines
4.2 KiB
Python
"""Sensor platform for the Adaptive Lighting integration (CDiT fork).
|
|
|
|
Each config entry exposes three read-only output sensors that publish the
|
|
curve's current target values + the actual sun elevation:
|
|
|
|
- ``sensor.<profile>_output_brightness`` (% — from self._settings["brightness_pct"])
|
|
- ``sensor.<profile>_output_color_temp`` (K — from self._settings["color_temp_kelvin"])
|
|
- ``sensor.<profile>_sun_elevation`` (° — from sun.sun.attributes["elevation"])
|
|
|
|
The sensors update via a per-entry dispatcher signal fired by the master
|
|
switch after every curve evaluation. They are pure readers — no curve math
|
|
runs in the sensor class. See ``add-output-sensors/design.md`` decisions
|
|
2, 3, and 8.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import TYPE_CHECKING
|
|
|
|
from homeassistant.components.sensor import SensorEntity, SensorStateClass
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.device_registry import DeviceEntryType
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity import DeviceInfo
|
|
|
|
from .const import DOMAIN, OUTPUT_SENSORS, SIGNAL_OUTPUTS_UPDATED
|
|
|
|
if TYPE_CHECKING:
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Create the three output sensors for this config entry."""
|
|
entities = [
|
|
AdaptiveOutputSensor(
|
|
hass=hass,
|
|
entry=config_entry,
|
|
output_key=row["key"],
|
|
display_name=row["name"],
|
|
unit=row["unit"],
|
|
icon=row["icon"],
|
|
)
|
|
for row in OUTPUT_SENSORS
|
|
]
|
|
async_add_entities(entities)
|
|
|
|
|
|
class AdaptiveOutputSensor(SensorEntity):
|
|
"""One read-only output value from an AL profile's curve tick."""
|
|
|
|
_attr_has_entity_name = True
|
|
_attr_should_poll = False
|
|
_attr_state_class = SensorStateClass.MEASUREMENT
|
|
_attr_device_class = None # explicit — no fitting HA device class
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
output_key: str,
|
|
display_name: str,
|
|
unit: str,
|
|
icon: str,
|
|
) -> None:
|
|
"""Initialise a single output sensor entity."""
|
|
self._hass = hass
|
|
self._entry = entry
|
|
self._output_key = output_key
|
|
self._attr_name = display_name
|
|
self._attr_translation_key = output_key
|
|
self._attr_unique_id = f"{entry.entry_id}_{output_key}"
|
|
self._attr_native_unit_of_measurement = unit
|
|
self._attr_icon = icon
|
|
# Renders as `unknown` until the first dispatcher signal arrives.
|
|
# Do NOT use RestoreEntity — restored values would be stale (the
|
|
# sun has moved); `unknown` for one tick is honest.
|
|
self._attr_native_value = None
|
|
|
|
@property
|
|
def device_info(self) -> DeviceInfo:
|
|
"""Group with the profile's switches and number entities."""
|
|
profile_name = self._entry.data.get("name") or self._entry.title
|
|
return DeviceInfo(
|
|
identifiers={(DOMAIN, profile_name)},
|
|
name=profile_name,
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
)
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Subscribe to the per-entry outputs-updated dispatcher signal."""
|
|
await super().async_added_to_hass()
|
|
signal = SIGNAL_OUTPUTS_UPDATED.format(entry_id=self._entry.entry_id)
|
|
self.async_on_remove(
|
|
async_dispatcher_connect(
|
|
self._hass,
|
|
signal,
|
|
self._handle_outputs_updated,
|
|
),
|
|
)
|
|
|
|
@callback
|
|
def _handle_outputs_updated(self) -> None:
|
|
"""Read this sensor's value from the cache and write state."""
|
|
outputs = (
|
|
self._hass.data.get(DOMAIN, {}).get(self._entry.entry_id, {}).get("outputs")
|
|
)
|
|
if not outputs:
|
|
# Early signal (e.g., setup race) — leave state as unknown.
|
|
return
|
|
self._attr_native_value = outputs.get(self._output_key)
|
|
self.async_write_ha_state()
|