Wait until certain time

As you see in the picture, I’m trying to set myself “Luigi” as sleeping at 10:00pm regardless on when when wife and daughter go to sleep which is usually earlier. I prefer to do this in 1 flow and not have to enable/disable other flows to make this happen

Wouldn’t it be simpler to just use the WHEN card ‘Time is 22:00’ followed by the Mark yourself asleep card? As a separate flow on the same canvas?

Why? Normally splitting up in more flows makes things easier to understand and less error-prone.

You already state yourself regardless
in that case you should not connect it to other flow

@SunBeech has a nice and simple proposal…

As you are using advanced flows, you can use the trigger

in your advanced flow and just link yourself to that.

I had this originally on an AND command, but it would only work if it was triggered during that specific set time frame. I did not use the time command on a WHEN command because I would have to disable it if/when I had a day off

Okay. As an alternative you could add a logic card to your original flow that sets a yes/no variable (e.g. ‘BED TIME AT 22’) to Yes when you manually run it (after the cards that mark your wife/daughter asleep). Remove your own asleep card.

In a second flow you use the time card I mention before and next an additional check (via a logic card) on the value of the variable ‘BED TIME AT 22’. If Yes then mark yourself as asleep + set the variable to No. If no, do nothing.

Something like this?
Where the "Set BED TIME @ 22 to Yes, is the end of the 1st flow.

Indeed. This way you will only be set to asleep automatically at 22:00, when you triggered the first flow manually.

1 Like

Thank You!