Garage Door Programing HAI

HI, I am having trouble trying to make block in PC Access to open the garage door just enough for the cat to get in and out. Here is my current block.
 
Thanks
 
 
Screen Shot 2013-10-05 at 11.03.08 PM.png
 
So what problem are you having with your script? 2 seconds may be just not sufficient for your garage opener to start/stop and reverse. Perhaps you can try a longer delay?
 
The door opens, I cannot get it to stop though. When I send the on output to the relay from PC Access, it works with ON for 1 Second. Then I send that command again and it stops. It just does not work in programing. 
 
Thanks
 
It takes you longer than 2 seconds to resend command manually, so try setting your cat flag on for 5 seconds. Also in the second block set Garage 2 ON for 1 second.
 
From what I see the flag is setting the amount of time the door will be moving. So why do you have the garage on for 2 seconds in block 11?
Get rid of the garage off, change the 2 seconds to 1 second.
So then the door will be activated in block 10 along with the flag. After 2 seconds, the flag is off which will activate the door again, this time stopping it since the opener is just a toggle.
Should do it.
 
That worked to stop the garage about a foot up. Is there a way to make it stop less then a foot? So far I have tried to change the flag time to one second which is too short and does not trigger the door to stop and 2 seconds stops it at a foot. Any way to make a half a second? 
 
Thanks
 
Slow your motor down.
Check your owner's manual and see if there is an adjustment.
The upforce adjustment may help if there is no motor speed adjustment.

Or Try this

Code:
WHEN Overhead Cat
    THEN Garage 2 ON
    THEN Garage 2 OFF
    THEN Garage 2 ON
    THEN Garage 2 OFF

That should cycle the relay on and off very quickly similar to double tapping the manual button.

Or maybe this

Code:
WHEN Overhead Cat
    THEN Garage 2 ON
    THEN Garage 2 OFF
    THEN Overhead Cat Flag ON FOR 1 SECOND

WHEN Overhead Cat Flag OFF
    THEN Garage 2 ON
    THEN Garage 2 OFF
 
Back
Top