From 42649531613c4338905d2e2122ade64edbb0d1d1 Mon Sep 17 00:00:00 2001 From: G Johansson Date: Sat, 22 Jul 2023 17:06:55 +0200 Subject: [PATCH] Add uv_index to weather entity component (#1848) Co-authored-by: Franck Nijhof --- docs/core/entity/weather.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/core/entity/weather.md b/docs/core/entity/weather.md index 04533fac..23e877c7 100644 --- a/docs/core/entity/weather.md +++ b/docs/core/entity/weather.md @@ -23,6 +23,7 @@ Properties should always only return information from memory and not do I/O (lik | humidity | float | `None` | The current humidity in %. | ozone | float | `None` | The current ozone level. | cloud_coverage | int | `None` | The current cloud coverage in %. +| uv_index | float | `None` | The current [UV index](https://en.wikipedia.org/wiki/Ultraviolet_index). | native_visibility | float | `None` | The current visibility in km or mi. | native_visibility_unit | string | `None` | The visibility unit; km or mi. Required if native_visibility is set. | native_wind_gust_speed | float | `None` | The current wind gust speed in m/s, km/h, mi/h, ft/s or kn. @@ -56,6 +57,7 @@ Forecast data should either be daily or hourly. | precipitation_probability | int | `None` | The probability of precipitation in %. | humidity | float | `None` | The humidity in %. | cloud_coverage | int | `None` | The cloud coverage in %. +| uv_index | float | `None` | The UV index. | native_pressure | float | `None` | The air pressure in hPa, mbar, inHg or mmHg. | wind_bearing | float or string | `None` | The wind bearing in azimuth angle (degrees) or 1-3 letter cardinal direction. | native_wind_gust_speed | int | `None` | The wind gust speed in m/s, km/h, mi/h, ft/s or kn.