@slimypizza I am trying to duplicate your setup to Open and Close garage door with Alexa. I have the following programs and created a routine in Alexa app , one for Open and one for Close. What happens if I say Alexa, Open Small Garage it will open the door. If the door is already open and I Say Alexa, Open the Small Garage it will close it. Doesn't seem to look at the "if" on the program for the sensor status. Something I am missing?
Small_Garage_Open - [ID 0011][Parent 0013][Not Enabled]
If
'Garage_Gate / SmallGarage' Status is Off
Then
Set 'Garage_Gate / SmallGarage / GarageSmallRelay' On
Else
- No Actions - (To add one, press 'Action')
Sensor On = Open
Small_Garage_Close - [ID 0012][Parent 0013][Not Enabled]
If
'Garage_Gate / SmallGarage' Status is On
Then
Set 'Garage_Gate / SmallGarage / GarageSmallRelay' On
Else
- No Actions - (To add one, press 'Action')
Small_Garage_Relay_Off - [ID 000C][Parent 0013]
If
'Garage_Gate / SmallGarage / GarageSmallRelay' Status is On
Then
Wait 16 seconds
Set 'Garage_Gate / SmallGarage / GarageSmallRelay' Off
Else
- No Actions - (To add one, press 'Action')
Thanks, Mike