Obviously a bit new to Homey and trying to get a feel for setting up motion most efficiently. I have an mmwave in my Living Room/Kitchen. I have flows created that do certain things with certain lights depending on the time of day. I also have a “chill” flow that is on when I’m watching tv. If this flow is on I don’t want the mmwave to trigger the other flows. Am I overlooking something simple here?
It seems there should be an easy way to create a hierarchy of flows.
Create a YES/NO variable ‘The TV is on’ and set this to YES when you are watching TV.
Then your motion flow need an extra AND condition:
WHEN
There is motion
AND
logic-card ‘The TV is on’ is NO
THEN
………
2 Likes
This is the way I did it. Rather than introducing an extra variable to keep track of moods or enabled/disabled flows. I just tied into homey’s native functionality. Whenever my “movie watching” mood is triggered, I disable the autonomous dimming flows. En whenever the “autonomous dimming” mood is triggered, I enable them again and trigger them once. Simple, Efficient, and everyone in the house understands it as Homey has created a nice ui for it.
(edit: note that I added a 1 second delay before I actually trigger the flow. This is because activating the mood also sets the dim level of all the lights to what you have configured in the mood. The dimmers first have to receive this signal and process it before they can accept a new signal)
These are the other flows I enable and disable:
Motion:
Dim Dining Area Lights Based on Luminance:
Dim Home Cinema Lights Based on Luminance:
1 Like