87 lines
2.1 KiB
Python
87 lines
2.1 KiB
Python
"""Constants."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "sws12500"
|
|
DEFAULT_URL = "/weatherstation/updateweatherstation.php"
|
|
WINDY_URL = "https://stations.windy.com/pws/update/"
|
|
|
|
ICON = "mdi:weather"
|
|
|
|
API_KEY = "API_KEY"
|
|
API_ID = "API_ID"
|
|
|
|
DEV_DBG: Final = "dev_debug_checkbox"
|
|
|
|
WINDY_API_KEY = "WINDY_API_KEY"
|
|
WINDY_ENABLED: Final = "windy_enabled_checkbox"
|
|
WINDY_LOGGER_ENABLED: Final = "windy_logger_checkbox"
|
|
WINDY_NOT_INSERTED: Final = "Data was succefuly sent to Windy, but not inserted by Windy API. Does anyone else sent data to Windy?"
|
|
WINDY_INVALID_KEY: Final = "Windy API KEY is invalid. Send data to Windy is now disabled. Check your API KEY and try again."
|
|
WINDY_SUCCESS: Final = (
|
|
"Windy successfully sent data and data was successfully inserted by Windy API"
|
|
)
|
|
WINDY_UNEXPECTED: Final = (
|
|
"Windy responded unexpectedly 3 times in a row. Send to Windy is now disabled!"
|
|
)
|
|
|
|
INVALID_CREDENTIALS: Final = [
|
|
"API",
|
|
"API_ID",
|
|
"API ID",
|
|
"_ID",
|
|
"ID",
|
|
"API KEY",
|
|
"API_KEY",
|
|
"KEY",
|
|
"_KEY",
|
|
]
|
|
|
|
PURGE_DATA: Final = [
|
|
"ID",
|
|
"PASSWORD",
|
|
"action",
|
|
"rtfreq",
|
|
"realtime",
|
|
"dateutc",
|
|
"solarradiation",
|
|
"indoortempf",
|
|
"indoorhumidity",
|
|
"dailyrainin",
|
|
]
|
|
|
|
BARO_PRESSURE: Final = "baro_pressure"
|
|
OUTSIDE_TEMP: Final = "outside_temp"
|
|
DEW_POINT: Final = "dew_point"
|
|
OUTSIDE_HUMIDITY: Final = "outside_humidity"
|
|
WIND_SPEED: Final = "wind_speed"
|
|
WIND_GUST: Final = "wind_gust"
|
|
WIND_DIR: Final = "wind_dir"
|
|
RAIN: Final = "rain"
|
|
DAILY_RAIN: Final = "daily_rain"
|
|
SOLAR_RADIATION: Final = "solar_radiation"
|
|
INDOOR_TEMP: Final = "indoor_temp"
|
|
INDOOR_HUMIDITY: Final = "indoor_humidity"
|
|
UV: Final = "uv"
|
|
CH2_TEMP: Final = "ch2_temp"
|
|
CH2_HUMIDITY: Final = "ch2_humidity"
|
|
|
|
|
|
REMAP_ITEMS: dict = {
|
|
"baromin": BARO_PRESSURE,
|
|
"tempf": OUTSIDE_TEMP,
|
|
"dewptf": DEW_POINT,
|
|
"humidity": OUTSIDE_HUMIDITY,
|
|
"windspeedmph": WIND_SPEED,
|
|
"windgustmph": WIND_GUST,
|
|
"winddir": WIND_DIR,
|
|
"rainin": RAIN,
|
|
"dailyrainin": DAILY_RAIN,
|
|
"solarradiation": SOLAR_RADIATION,
|
|
"indoortempf": INDOOR_TEMP,
|
|
"indoorhumidity": INDOOR_HUMIDITY,
|
|
"UV": UV,
|
|
"soiltempf": CH2_TEMP,
|
|
"soilmoisture": CH2_HUMIDITY,
|
|
}
|