mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
When runtime config override entities (number/switch) are enabled, the Options Flow now displays warning indicators at the top of each affected section. Users see which fields are being managed by config entities and can still edit the base values if needed. Changes: - Add ConstantSelector warnings in Best Price/Peak Price sections - Implement multi-language support for override warnings (de, en, nb, nl, sv) - Add _get_override_translations() to load translated field labels - Add _get_active_overrides() to detect enabled override entities - Extend get_best_price_schema/get_peak_price_schema with translations param - Add 14 number/switch config entities for runtime period tuning - Document runtime configuration entities in user docs Warning format adapts to overridden fields: - Single: "⚠️ Flexibility controlled by config entity" - Multiple: "⚠️ Flexibility and Minimum Distance controlled by config entity" Impact: Users can now dynamically adjust period calculation parameters via Home Assistant automations, scripts, or dashboards without entering the Options Flow. Clear UI indicators show which settings are currently overridden.
84 lines
3.1 KiB
Python
84 lines
3.1 KiB
Python
"""
|
|
Switch entity definitions for Tibber Prices configuration overrides.
|
|
|
|
These switch entities allow runtime configuration of boolean settings
|
|
for Best Price and Peak Price period calculations.
|
|
|
|
When enabled, the entity value takes precedence over the options flow setting.
|
|
When disabled (default), the options flow setting is used.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from homeassistant.components.switch import SwitchEntityDescription
|
|
from homeassistant.const import EntityCategory
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class TibberPricesSwitchEntityDescription(SwitchEntityDescription):
|
|
"""Describes a Tibber Prices switch entity for config overrides."""
|
|
|
|
# The config key this entity overrides (matches CONF_* constants)
|
|
config_key: str
|
|
# The section in options where this setting is stored
|
|
config_section: str
|
|
# Whether this is for best_price (False) or peak_price (True)
|
|
is_peak_price: bool = False
|
|
# Default value from const.py
|
|
default_value: bool = True
|
|
|
|
|
|
# ============================================================================
|
|
# BEST PRICE PERIOD CONFIGURATION OVERRIDES (Boolean)
|
|
# ============================================================================
|
|
|
|
BEST_PRICE_SWITCH_ENTITIES = (
|
|
SwitchEntityDescription(
|
|
key="best_price_enable_relaxation_override",
|
|
translation_key="best_price_enable_relaxation_override",
|
|
name="Best Price: Achieve Minimum Count",
|
|
icon="mdi:arrow-down-bold-circle",
|
|
entity_category=EntityCategory.CONFIG,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
)
|
|
|
|
# Custom descriptions with extra fields
|
|
BEST_PRICE_SWITCH_ENTITY_DESCRIPTIONS = (
|
|
TibberPricesSwitchEntityDescription(
|
|
key="best_price_enable_relaxation_override",
|
|
translation_key="best_price_enable_relaxation_override",
|
|
name="Best Price: Achieve Minimum Count",
|
|
icon="mdi:arrow-down-bold-circle",
|
|
entity_category=EntityCategory.CONFIG,
|
|
entity_registry_enabled_default=False,
|
|
config_key="enable_min_periods_best",
|
|
config_section="relaxation_and_target_periods",
|
|
is_peak_price=False,
|
|
default_value=True, # DEFAULT_ENABLE_MIN_PERIODS_BEST
|
|
),
|
|
)
|
|
|
|
# ============================================================================
|
|
# PEAK PRICE PERIOD CONFIGURATION OVERRIDES (Boolean)
|
|
# ============================================================================
|
|
|
|
PEAK_PRICE_SWITCH_ENTITY_DESCRIPTIONS = (
|
|
TibberPricesSwitchEntityDescription(
|
|
key="peak_price_enable_relaxation_override",
|
|
translation_key="peak_price_enable_relaxation_override",
|
|
name="Peak Price: Achieve Minimum Count",
|
|
icon="mdi:arrow-up-bold-circle",
|
|
entity_category=EntityCategory.CONFIG,
|
|
entity_registry_enabled_default=False,
|
|
config_key="enable_min_periods_peak",
|
|
config_section="relaxation_and_target_periods",
|
|
is_peak_price=True,
|
|
default_value=True, # DEFAULT_ENABLE_MIN_PERIODS_PEAK
|
|
),
|
|
)
|
|
|
|
# All switch entity descriptions combined
|
|
SWITCH_ENTITY_DESCRIPTIONS = BEST_PRICE_SWITCH_ENTITY_DESCRIPTIONS + PEAK_PRICE_SWITCH_ENTITY_DESCRIPTIONS
|