Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ########################################
- #
- # 0 Alkonyat érzékelő - Nap magasság / felhőzöttség függvénye
- #
- ########################################
- - name: 'felhos_alkony'
- unique_id:
- #friendly_name: Alkony kapcsoló
- state: >
- {% set h = now().hour %}
- {% if ((
- (( states('sensor.openweathermap_cloud_coverage')|int >= 75 ) and ( state_attr('sun.sun', 'elevation') <= -2 ) and ( state_attr('sun.sun', 'elevation') > -3 ))
- or
- (( states('sensor.openweathermap_cloud_coverage')|int < 75 ) and ( states('sensor.openweathermap_cloud_coverage')|int >= 50 ) and ( state_attr('sun.sun', 'elevation') <= -3 ) and ( state_attr('sun.sun', 'elevation') > -4 ))
- or
- (( states('sensor.openweathermap_cloud_coverage')|int < 50 ) and ( state_attr('sun.sun', 'elevation') <= -4 ) and ( state_attr('sun.sun', 'elevation') > -5))
- )
- and
- ( h > 12 )
- )
- %}
- on
- {% else %}
- off
- {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement