Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Programming EasyC (http://www.chiefdelphi.com/forums/showthread.php?t=85830)

mjgard 17-05-2010 18:45

Programming EasyC
 
I am trying to use a digital I/O on the vex microcontroller to control a spike. Can someone help me with the programming. I understand all the drive functions, but dont understand how to use the digital to turn a spike on and off in easyC.

Thanks

RyanCahoon 18-05-2010 02:23

Re: Programming EasyC
 
I don't know easyC, but I assume you know how to control digital outputs.

Referencing the Users Guide on the Spike product info page, the input cable to the Spike is wired so that the White (or Yellow or Orange) wire is the Forward signal, the Red wire is the Reverse signal, and the Black wire is ground. So you'll need to use two digital outputs and create a cable like such:
Code:

                ,--W  \
                |  R  |  digital output 1
                |  B  /
        /  W----'     
to Spike |  R----.     
        \  B--. '--W  \
              |    R  |  digital output 2
              '----B  /

W,R,B = White, Red, Black

It might end up looking like a PWM Y-cable, but it is different. Then set the digital inputs as specified in the Users Guide to direct the spike into either Off, Forward, Reverse, or Brake modes.

Hope that answers your question

--Ryan

Mark McLeod 18-05-2010 10:15

Re: Programming EasyC
 
Using Ryan's wiring the code might look something like this:
Code:

Channel5=Get RxInput (1,5);
Channel6=Get RxInput (1,5);
 
if (Channel5 == 1) {
    // forward
    Set Digital Output (1,1);
    Set Digital Output (2,0);
} else if (Channel6 == 1) {
    // reverse
    Set Digital Output (1,0);
    Set Digital Output (2,1);
} else {
    // stop
    Set Digital Output (1,0);
    Set Digital Output (2,0);
}


mjgard 19-05-2010 14:05

Re: Programming EasyC
 
thank you both, i will try this.


All times are GMT -5. The time now is 03:31.

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