First commit
This commit is contained in:
20
custom_components/open_meteo_solar_forecast/const.py
Normal file
20
custom_components/open_meteo_solar_forecast/const.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""Constants for the Open-Meteo Solar Forecast integration."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
||||
DOMAIN = "open_meteo_solar_forecast"
|
||||
LOGGER = logging.getLogger(__package__)
|
||||
|
||||
CONF_BASE_URL = "base_url"
|
||||
CONF_DECLINATION = "declination"
|
||||
CONF_AZIMUTH = "azimuth"
|
||||
CONF_MODULES_POWER = "modules_power"
|
||||
CONF_DAMPING_MORNING = "damping_morning"
|
||||
CONF_DAMPING_EVENING = "damping_evening"
|
||||
CONF_INVERTER_POWER = "inverter_power"
|
||||
CONF_EFFICIENCY_FACTOR = "efficiency_factor"
|
||||
|
||||
ATTR_WATTS = "watts"
|
||||
ATTR_WH_PERIOD = "wh_period"
|
||||
Reference in New Issue
Block a user