Add uv_index to weather entity component (#1848)

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
G Johansson 2023-07-22 17:06:55 +02:00 committed by GitHub
parent 5210f4a1c3
commit 4264953161
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 %. | humidity | float | `None` | The current humidity in %.
| ozone | float | `None` | The current ozone level. | ozone | float | `None` | The current ozone level.
| cloud_coverage | int | `None` | The current cloud coverage in %. | 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 | 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_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. | 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 %. | precipitation_probability | int | `None` | The probability of precipitation in %.
| humidity | float | `None` | The humidity in %. | humidity | float | `None` | The humidity in %.
| cloud_coverage | int | `None` | The cloud coverage 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. | 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. | 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. | native_wind_gust_speed | int | `None` | The wind gust speed in m/s, km/h, mi/h, ft/s or kn.