From 7e24b4c019639a3f13199c5bd624e58f27915eda Mon Sep 17 00:00:00 2001 From: G Johansson Date: Thu, 22 Jun 2023 21:34:33 +0200 Subject: [PATCH] Add dew point to Weather entity component (#1814) --- 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 de71b5ba..07f365da 100644 --- a/docs/core/entity/weather.md +++ b/docs/core/entity/weather.md @@ -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.