Wanted to update this thread. I was curious how some automation systems show "opening" when you click open the OH door. Turns out, many "fake" this status by setting a delay.
That is, they do not know when the door is actually fully opened. I wanted to solve this for my OH door.
I added an additional magnetic contact to my OH door for when the door is fully opened.
In Essentials, I added a two RRD-8NS switches. One to account for the OH door being closed (magnetic contact closure sensor in standard closed position) and the other to account for the OH door being fully opened (magnetic contact closure sensor in opened position from above)
![[Image: Capture4.jpg]](https://i.ibb.co/LPkqx5y/Capture4.jpg)
Then it was a matter of programming the Visor Controller Inputs 1 and 2.
When Input 1 (magnetic contact closure sensor in standard closed position) is Open (OH door is open), the "OH Door Closed Status" will be turned OFF/FALSE. When Input 1 is Close (OH door is closed), the switch will be turned ON/TRUE.
When Input 2 (magnetic contact closure sensor in opened position) is Open (OH door is closed), the "OH Door Opened Status" switch will be turned OFF/FALSE. When Input 2 is Close (OH door is fully opened), the switch will be turned ON/TRUE.
In CQC, you add these "Switches" to the RadioRA2 driver.
In this screen shot, my garage OH door is fully closed (GarageOHDoorClosedStatus is True and GarageOHDoorOpenedStatus is False).
In this screen shot, my garage OH door is fully opened (GarageOHDoorOpenedStatus is True and GarageOHDoorClosedStatus is False).
With this setup I can code the "Opening" logic in CQC and know exactly when the door is fully opened, closed, or in a "traveling state".