oscarb / home-assistant-config

Configuration for Home Assistant
0 stars 0 forks source link

Sleep timer #130

Open oscarb opened 11 months ago

oscarb commented 11 months ago

Decrease volume over time and stop playing after x minutes

oscarb commented 11 months ago

Time pattern trigger

automation 3:
  trigger:
    - platform: time_pattern
      # You can also match on interval. This will match every 5 minutes
      minutes: "/5"

https://www.home-assistant.io/docs/automation/trigger/#time-pattern-trigger

oscarb commented 11 months ago

Wait for template Wait until point in time occurs to decrease volume

https://www.home-assistant.io/docs/automation/trigger/#time-pattern-trigger

oscarb commented 11 months ago

Repeat

https://www.home-assistant.io/docs/automation/trigger/#time-pattern-trigger

oscarb commented 11 months ago

https://community.home-assistant.io/t/smooth-media-player-volume-fade-with-multiple-curve-functions/349950