mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 02:07:09 +00:00
Weather units: Buienradar (1.2/4) (#61470)
This commit is contained in:
parent
9bf1397c54
commit
b5d55ce7bc
@ -37,7 +37,16 @@ from homeassistant.components.weather import (
|
|||||||
WeatherEntity,
|
WeatherEntity,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_NAME, TEMP_CELSIUS
|
from homeassistant.const import (
|
||||||
|
CONF_LATITUDE,
|
||||||
|
CONF_LONGITUDE,
|
||||||
|
CONF_NAME,
|
||||||
|
LENGTH_METERS,
|
||||||
|
LENGTH_MILLIMETERS,
|
||||||
|
PRESSURE_HPA,
|
||||||
|
SPEED_METERS_PER_SECOND,
|
||||||
|
TEMP_CELSIUS,
|
||||||
|
)
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
@ -112,6 +121,10 @@ class BrWeather(WeatherEntity):
|
|||||||
"""Representation of a weather condition."""
|
"""Representation of a weather condition."""
|
||||||
|
|
||||||
_attr_temperature_unit = TEMP_CELSIUS
|
_attr_temperature_unit = TEMP_CELSIUS
|
||||||
|
_attr_pressure_unit = PRESSURE_HPA
|
||||||
|
_attr_visibility_unit = LENGTH_METERS
|
||||||
|
_attr_wind_speed_unit = SPEED_METERS_PER_SECOND
|
||||||
|
_attr_precipitation_unit = LENGTH_MILLIMETERS
|
||||||
|
|
||||||
def __init__(self, data, config, coordinates):
|
def __init__(self, data, config, coordinates):
|
||||||
"""Initialize the platform with a data instance and station name."""
|
"""Initialize the platform with a data instance and station name."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user