210 lines
6.2 KiB
Python
210 lines
6.2 KiB
Python
"""Demo platform that offers fake meteorological data."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.components.weather import (
|
|
ATTR_CONDITION_CLOUDY,
|
|
ATTR_CONDITION_EXCEPTIONAL,
|
|
ATTR_CONDITION_FOG,
|
|
ATTR_CONDITION_HAIL,
|
|
ATTR_CONDITION_LIGHTNING,
|
|
ATTR_CONDITION_LIGHTNING_RAINY,
|
|
ATTR_CONDITION_PARTLYCLOUDY,
|
|
ATTR_CONDITION_POURING,
|
|
ATTR_CONDITION_RAINY,
|
|
ATTR_CONDITION_SNOWY,
|
|
ATTR_CONDITION_SNOWY_RAINY,
|
|
ATTR_CONDITION_SUNNY,
|
|
ATTR_CONDITION_WINDY,
|
|
ATTR_CONDITION_WINDY_VARIANT,
|
|
Forecast,
|
|
WeatherEntity,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
PRESSURE_HPA,
|
|
PRESSURE_INHG,
|
|
SPEED_METERS_PER_SECOND,
|
|
SPEED_MILES_PER_HOUR,
|
|
TEMP_CELSIUS,
|
|
TEMP_FAHRENHEIT,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
import homeassistant.util.dt as dt_util
|
|
|
|
CONDITION_CLASSES: dict[str, list[str]] = {
|
|
ATTR_CONDITION_CLOUDY: [],
|
|
ATTR_CONDITION_FOG: [],
|
|
ATTR_CONDITION_HAIL: [],
|
|
ATTR_CONDITION_LIGHTNING: [],
|
|
ATTR_CONDITION_LIGHTNING_RAINY: [],
|
|
ATTR_CONDITION_PARTLYCLOUDY: [],
|
|
ATTR_CONDITION_POURING: [],
|
|
ATTR_CONDITION_RAINY: ["shower rain"],
|
|
ATTR_CONDITION_SNOWY: [],
|
|
ATTR_CONDITION_SNOWY_RAINY: [],
|
|
ATTR_CONDITION_SUNNY: ["sunshine"],
|
|
ATTR_CONDITION_WINDY: [],
|
|
ATTR_CONDITION_WINDY_VARIANT: [],
|
|
ATTR_CONDITION_EXCEPTIONAL: [],
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Demo config entry."""
|
|
setup_platform(hass, {}, async_add_entities)
|
|
|
|
|
|
def setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the Demo weather."""
|
|
add_entities(
|
|
[
|
|
DemoWeather(
|
|
"South",
|
|
"Sunshine",
|
|
21.6414,
|
|
92,
|
|
1099,
|
|
0.5,
|
|
TEMP_CELSIUS,
|
|
PRESSURE_HPA,
|
|
SPEED_METERS_PER_SECOND,
|
|
[
|
|
[ATTR_CONDITION_RAINY, 1, 22, 15, 60],
|
|
[ATTR_CONDITION_RAINY, 5, 19, 8, 30],
|
|
[ATTR_CONDITION_CLOUDY, 0, 15, 9, 10],
|
|
[ATTR_CONDITION_SUNNY, 0, 12, 6, 0],
|
|
[ATTR_CONDITION_PARTLYCLOUDY, 2, 14, 7, 20],
|
|
[ATTR_CONDITION_RAINY, 15, 18, 7, 0],
|
|
[ATTR_CONDITION_FOG, 0.2, 21, 12, 100],
|
|
],
|
|
),
|
|
DemoWeather(
|
|
"North",
|
|
"Shower rain",
|
|
-12,
|
|
54,
|
|
987,
|
|
4.8,
|
|
TEMP_FAHRENHEIT,
|
|
PRESSURE_INHG,
|
|
SPEED_MILES_PER_HOUR,
|
|
[
|
|
[ATTR_CONDITION_SNOWY, 2, -10, -15, 60],
|
|
[ATTR_CONDITION_PARTLYCLOUDY, 1, -13, -14, 25],
|
|
[ATTR_CONDITION_SUNNY, 0, -18, -22, 70],
|
|
[ATTR_CONDITION_SUNNY, 0.1, -23, -23, 90],
|
|
[ATTR_CONDITION_SNOWY, 4, -19, -20, 40],
|
|
[ATTR_CONDITION_SUNNY, 0.3, -14, -19, 0],
|
|
[ATTR_CONDITION_SUNNY, 0, -9, -12, 0],
|
|
],
|
|
),
|
|
]
|
|
)
|
|
|
|
|
|
class DemoWeather(WeatherEntity):
|
|
"""Representation of a weather condition."""
|
|
|
|
_attr_attribution = "Powered by Home Assistant"
|
|
_attr_should_poll = False
|
|
|
|
def __init__(
|
|
self,
|
|
name: str,
|
|
condition: str,
|
|
temperature: float,
|
|
humidity: float,
|
|
pressure: float,
|
|
wind_speed: float,
|
|
temperature_unit: str,
|
|
pressure_unit: str,
|
|
wind_speed_unit: str,
|
|
forecast: list[list],
|
|
) -> None:
|
|
"""Initialize the Demo weather."""
|
|
self._attr_name = f"Demo Weather {name}"
|
|
self._condition = condition
|
|
self._native_temperature = temperature
|
|
self._native_temperature_unit = temperature_unit
|
|
self._humidity = humidity
|
|
self._native_pressure = pressure
|
|
self._native_pressure_unit = pressure_unit
|
|
self._native_wind_speed = wind_speed
|
|
self._native_wind_speed_unit = wind_speed_unit
|
|
self._forecast = forecast
|
|
|
|
@property
|
|
def native_temperature(self) -> float:
|
|
"""Return the temperature."""
|
|
return self._native_temperature
|
|
|
|
@property
|
|
def native_temperature_unit(self) -> str:
|
|
"""Return the unit of measurement."""
|
|
return self._native_temperature_unit
|
|
|
|
@property
|
|
def humidity(self) -> float:
|
|
"""Return the humidity."""
|
|
return self._humidity
|
|
|
|
@property
|
|
def native_wind_speed(self) -> float:
|
|
"""Return the wind speed."""
|
|
return self._native_wind_speed
|
|
|
|
@property
|
|
def native_wind_speed_unit(self) -> str:
|
|
"""Return the wind speed."""
|
|
return self._native_wind_speed_unit
|
|
|
|
@property
|
|
def native_pressure(self) -> float:
|
|
"""Return the pressure."""
|
|
return self._native_pressure
|
|
|
|
@property
|
|
def native_pressure_unit(self) -> str:
|
|
"""Return the pressure."""
|
|
return self._native_pressure_unit
|
|
|
|
@property
|
|
def condition(self) -> str:
|
|
"""Return the weather condition."""
|
|
return [
|
|
k for k, v in CONDITION_CLASSES.items() if self._condition.lower() in v
|
|
][0]
|
|
|
|
@property
|
|
def forecast(self) -> list[Forecast]:
|
|
"""Return the forecast."""
|
|
reftime = dt_util.now().replace(hour=16, minute=00)
|
|
|
|
forecast_data = []
|
|
for entry in self._forecast:
|
|
data_dict = Forecast(
|
|
datetime=reftime.isoformat(),
|
|
condition=entry[0],
|
|
precipitation=entry[1],
|
|
temperature=entry[2],
|
|
templow=entry[3],
|
|
precipitation_probability=entry[4],
|
|
)
|
|
reftime = reftime + timedelta(hours=4)
|
|
forecast_data.append(data_dict)
|
|
|
|
return forecast_data
|