Add dew point to Weather entity component (#1814)

This commit is contained in:
G Johansson 2023-06-22 21:34:33 +02:00 committed by GitHub
parent 40a999ab6f
commit 7e24b4c019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@ Properties should always only return information from memory and not do I/O (lik
| native_temperature | float | **Required** | The current temperature in °C or °F.
| native_apparent_temperature | float | `None` | The current apparent (feels-like) temperature in °C or °F.
| native_temperature_unit | string | **Required** | The temperature unit; °C or °F.
| native_dew_point | float | `None` | The dew point temperature in °C or °F.
| native_pressure | float | `None` | The current air pressure in hPa, mbar, inHg or mmHg.
| native_pressure_unit | string | `None` | The air pressure unit; hPa, mbar, inHg or mmHg. Required if native_pressure is set.
| humidity | float | `None` | The current humidity in %.
@ -48,6 +49,7 @@ Forecast data should either be daily or hourly.
| native_apparent_temperature | float | `None` | The apparent (feels-like) temperature in °C or °F
| condition | string | `None` | The weather condition at this point.
| native_templow | float | `None` | The lower daily Temperature in °C or °F
| native_dew_point | float | `None` | The dew point temperature in °C or °F
| native_precipitation | float | `None` | The precipitation amount in mm or in.
| precipitation_probability | int | `None` | The probability of precipitation in %.
| native_pressure | float | `None` | The air pressure in hPa, mbar, inHg or mmHg.