I’m not sure because I use Dutch language, but maybe you use the wrong flow card.
In Dutch there is “start flow” and “schakel flow in” which I think is activate.
If so, activate does not execute a flow but it enables it. Try the other card
Assuming you mean that “true” as long as Flow A is running (i.e. around 2min)? One option is to start timer on flow A (just examples from mine, use e.g. 2min instead) :
No ALL block after multiple triggers
Triggers probably never trigger at the exact same moment
Use an ANY block instead, or just connect both cards to the next one (ANY is fully optional).
Additional info:
I understand, and thanks for your tip, but I want the remaining part of that flow to continue only if both cards (timer completed andit’s 23:00).are true.
Tricker with time (23:00) and use when card "timer is running (see my 2nd set, 2nd snag) and continue only if false (then completed some time back unless you re-start / delete it) and you have it what you are looking for…
Sorry that I caught this so late, but I want Flow B to start 4 and a half hours after Flow A ended. Is my only option is to use a delay of 270 minutes?
Flow A only runs if someone rings the doorbell between 18:20 and 18:40 on a weekday.
And you want to run flow B at 23:00 only when flow A has run?
Then you should create a YES/NO variable ‘someone rang the doorbell between 18:20 and 18:40’
FlowA
WHEN
the doorbell rang
AND
Time is between 18:20 and 18:40
AND
it’s a weekday
THEN
set variable ‘someone rang the doorbell between 18:20 and 18:40’ to YES
and the rest of your flow
FlowB
WHEN
it’s 23:00
AND
logic-card ‘someone rang the doorbell between 18:20 and 18:40’ is YES
THEN
set ‘someone rang the doorbell between 18:20 and 18:40’ to NO
and the rest of flow B