Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Forecast.Solar integration."""
2 
3 from __future__ import annotations
4 
5 import logging
6 
7 DOMAIN = "forecast_solar"
8 LOGGER = logging.getLogger(__package__)
9 
10 CONF_DECLINATION = "declination"
11 CONF_AZIMUTH = "azimuth"
12 CONF_MODULES_POWER = "modules_power"
13 CONF_DAMPING = "damping"
14 CONF_DAMPING_MORNING = "damping_morning"
15 CONF_DAMPING_EVENING = "damping_evening"
16 CONF_INVERTER_SIZE = "inverter_size"