{% set weather_entity = "weather.tian_qi"%}
当前天气{{state_attr(weather_entity,"condition_cn") }}
,未来1小时天气{{state_attr(weather_entity,"hourly_forecast")[0]["text"] }}。{% set
msg = "" %}{% set weather_entity = "weather.tian_qi"%}{% set
pp1=state_attr(weather_entity,"hourly_forecast")[0]["probable_precipitation"]%}{%
set
pp2=state_attr(weather_entity,"hourly_forecast")[1]["probable_precipitation"]
%}{% set
pp3=state_attr(weather_entity,"hourly_forecast")[2]["probable_precipitation"]%}{%
if pp2 > 0 %}{% set msg =
msg+"2小时内有"+state_attr(weather_entity,"hourly_forecast")[1]["text"]+","%}{%
endif %}{% if pp3 > 0 %}{% set msg =
msg+"3小时内有"+state_attr(weather_entity,"hourly_forecast")[1]["text"]+","%}{%
endif %}
{% if pp1>0 or pp2 > 0 or pp3 > 0 %}{% set msg = msg + "注意带伞!" %}{% endif
%}{{msg}}
{% set msg2 = "" %}{% if state_attr(weather_entity,"aqi").aqi | int > 129
%}{% set msg2 = msg2+ "室外污染指数为" + state_attr(weather_entity,"aqi").aqi |
string + ",记得戴口罩!" %}{% endif %}{{msg2}}
|