I’m trying to improve my morning routines with Home Assistant. I have a set of Eve Motionblinds connected to Home Assistant, along with my Sonos with Alexa.

My goal is to set an alarm with Alexa, and have the Eve Motionblines raise 15-20m before the alarm goes off as a sort of sunrise alarm clock.

I’ve looked through the docs, but I can’t figure out any way to make something like this happen. Anyone have any ideas?

  • TotallyNotAMurderer@lemmy.world
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    This is the template trigger code I use in my automation. Automations triggers and ramps up lighting 5min before phone alarm goes off.

    The template checks the current time/date at the start of ever minute (the bracketed bit formats the current timestamp) then checks to see if current time matches my next alarm time formula and triggers automation if it does match.

    The next alarm formula gets the (time to) next alarm in milliseconds, devides that by a thousand to make it seconds then, subtracts 300 (= 5 minutes) then prints that formula to a time stamp formatted the same as the current time stamp (for it to compare against)

    This is for an Android phone and using the companion app sensor for ‘next alarm’. #USER# is to be replaced with users own name/entity. Not sore how much of this translates to an Amazon thing but, hopefully give you a bit of an idea of how to perform it once you find the right entity?

    {{now().strftime('%H:%M %Z %a %d %h %Y') == (((state_attr('sensor.#USER#_phone_next_alarm', 'Time in Milliseconds') | int / 1000 | int - 300 )) | timestamp_custom('%H:%M %Z %a %d %h %Y'))}}