Hello,
I am attempting to make some logic to control how my various “smart” devices respond to my requests. Specifically, I find it very annoying that when I prompt the Google Assistant at home (where I have a Sonos connected to this service), both my phone and my Sonos respond and talk over each other…
Therefore, this service seems to offer the opportunity to do the following, but I don’t know how to implement it:
If google_assistant_prompted == True:
if at_home == True && sonos_heard_request == True:
return sonos_response & no_phone_response
else
return phone_response & no_sonos_response
Any thoughts?