mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-07-15 13:26:28 +00:00
Weather add wind gust speed (#1811)
This commit is contained in:
parent
015d7a6e85
commit
4851e36c1a
@ -25,6 +25,7 @@ Properties should always only return information from memory and not do I/O (lik
|
||||
| cloud_coverage | int | `None` | The current cloud coverage in %.
|
||||
| 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.
|
||||
| native_wind_speed | float | `None` | The current wind speed in m/s, km/h, mi/h, ft/s or kn.
|
||||
| native_wind_speed_unit | string | `None` | The wind speed unit;m/s, km/h, mi/h, ft/s or kn. Required if native_wind_speed is set.
|
||||
| native_precipitation_unit | string | `None` | The precipitation unit; mm or in.
|
||||
@ -57,6 +58,7 @@ Forecast data should either be daily or hourly.
|
||||
| cloud_coverage | int | `None` | The cloud coverage in %.
|
||||
| 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.
|
||||
| native_wind_speed | int | `None` | The wind speed in m/s, km/h, mi/h, ft/s or kn.
|
||||
|
||||
Forecast data needs to follow the same unit of measurement as defined for properties where applicable.
|
||||
|
Loading…
x
Reference in New Issue
Block a user