|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Help Programming Buttons
HY im trying to program our triggers to move the cylinders. I have used search and found most of what I need. But when i compile it says I must define my symbol p1_sw_trig and p2_sw_trig
Im using easy C Can anyone help me please. |
|
#2
|
|||
|
|||
|
Re: Help Programming Buttons
Those variables are not predefined in EasyC. You need to either define them as a local variable, if you are only using them in one function, or globally if you use it in several functions.
Most likely you want to have them available anywhere in the program, so define them globally. Press F6 to pop up the global variables section and add a variable to the list at the bottom. Probably you will want an 'unsigned char', as joysticks use 0-255, but you may want an 'int' if you plan to do math on the value and the variable may end up holding a negative value. |
|
#3
|
|||||
|
|||||
|
Re: Help Programming Buttons
The code you've been looking at is not what you need in EasyC.
A better place to post future questions about EasyC programming is in this sub-forum http://www.chiefdelphi.com/forums/fo...play.php?f=164 You use those variables if you are using MPLAB, so ignore and don't try to use them. For EasyC use "OI to Relay" under "RC Control" to work your cylinders. For example, to use the trigger from Joystick Port 2, and the solenoid relay connected to Relay 7, you'll end up with a line of code something like: Code:
OIToRelay(2,1,7,1); Last edited by Mark McLeod : 14-02-2008 at 12:55. |
|
#4
|
||||
|
||||
|
Re: Help Programming Buttons
Thanks for the help yall.
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| PLEASE HELP!! Need help programming arm?? | amirjpl | Programming | 12 | 15-03-2007 15:11 |
| Programming Extra Joystick Buttons | Inverted | Programming | 2 | 08-02-2007 11:45 |
| Buttons, Buttons and more Buttons (2006) | Freddy Schurr | Team Organization | 11 | 14-12-2005 21:36 |
| Programming motors with joystick buttons | TMHStitans | Programming | 5 | 21-03-2005 21:07 |
| Looking for some help with buttons and pins... | Amanda Morrison | General Forum | 4 | 26-02-2003 17:32 |