mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 04:05:01 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
21 lines
519 B
Python
21 lines
519 B
Python
"""Constants for the Forecast.Solar integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "forecast_solar"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_DECLINATION = "declination"
|
|
CONF_AZIMUTH = "azimuth"
|
|
CONF_MODULES_POWER = "modules_power"
|
|
CONF_DAMPING = "damping"
|
|
CONF_DAMPING_MORNING = "damping_morning"
|
|
CONF_DAMPING_EVENING = "damping_evening"
|
|
CONF_INVERTER_SIZE = "inverter_size"
|
|
DEFAULT_DECLINATION = 25
|
|
DEFAULT_AZIMUTH = 180
|
|
DEFAULT_MODULES_POWER = 10000
|
|
DEFAULT_DAMPING = 0.0
|
|
MAX_PLANES = 4
|
|
SUBENTRY_TYPE_PLANE = "plane"
|