Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   have a question to ask about Double Solenoids to one spike programming (http://www.chiefdelphi.com/forums/showthread.php?t=35193)

davelu 21-02-2005 23:56

have a question to ask about Double Solenoids to one spike programming
 
Code:

                if (top_grab=OPEN) {
                grab_relay_open=OPEN;
                grab_relay_close=CLOSE;
        } else { grab_relay_open=CLOSE;
                        grab_relay_close=OPEN;
        }
 {

does it look somthing like this? well this work? for the double solenoids to one spike programming?

GregT 22-02-2005 00:39

Re: have a question to ask about Double Solenoids to one spike programming
 
Quote:

Originally Posted by davelu
Code:

                if (top_grab=OPEN) {
                grab_relay_open=OPEN;
                grab_relay_close=CLOSE;
        } else { grab_relay_open=CLOSE;
                        grab_relay_close=OPEN;
        }
 {

does it look somthing like this? well this work? for the double solenoids to one spike programming?

For double solenoid programming.

1) both ground leads go to a ground slot.
2) the hot leads each go to a side of the spike (one to each side).
3)
if(condition)
{
printf("actuator forward");
relay1_fwd = 1;
relay1_rev = 0;
} else {
printf("actuator back");
relay1_fwd = 0;
relay1_rev = 1;
}

sanddrag 22-02-2005 00:55

Re: have a question to ask about Double Solenoids to one spike programming
 
There is another thread similar to this called someting like "how do you wire your double solenoids"

Anyhow, it is more of a wiring thing than a programming thing I think. This is how we do it. We have two double solenoids. We have one relay that actuates the extend function on both, and one relay that actuates the retract function on both. We do this because it is the cylinders for shifting, and we don't mind (actually want) them firing at the same time.

Alan Anderson 22-02-2005 09:52

Re: have a question to ask about Double Solenoids to one spike programming
 
Quote:

Originally Posted by sanddrag
We have two double solenoids. We have one relay that actuates the extend function on both, and one relay that actuates the retract function on both. We do this because it is the cylinders for shifting, and we don't mind (actually want) them firing at the same time.

Would it not be easier to use only one solenoid, and connect both cylinders to it with T fittings?


All times are GMT -5. The time now is 04:38.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi