Hello, could someone tell me all the types of weather condition that the accuweather integration can publish?
such as: windy, sunny, …
Here’s a comparison
This is not what I need. I need a list of all possible weather states that this integration can display:
something like this:
{% if is_state("sensor.zelenydom","lightning" ) %}
{% elif is_state("sensor.zelenydom","pouring" ) %}
{% elif is_state("sensor.zelenydom","rainy" ) %}
{% elif is_state("sensor.zelenydom","snowy-rainy" ) %}
{% elif is_state("sensor.zelenydom","snowy" ) %}
{% elif is_state("sensor.zelenydom","fog" ) %}
{% elif is_state("sensor.zelenydom","hurricane" ) %}
{% elif is_state("sensor.zelenydom","sunny" ) %}
{% elif is_state("sensor.zelenydom","partlycloudy") %}
{% elif is_state("sensor.zelenydom","clearnight" ) %}
{% elif is_state("sensor.zelenydom","cloudy" ) %}
{% elif is_state("sensor.zelenydom","windy" ) %}
{% elif is_state("sensor.zelenydom","hail" ) %}
{% endif %}
The guide links to this page: Weather entity | Home Assistant Developer Docs which should cover your question, assuming the integration implements the recommended values.
Alternatively, you can check the translation files in the source code.
1 Like