Here is the easiest way to do this in easyC.
Code:
int Arm_Joystick;
unsigned char Arm_Output;
while ( 1 )
{
Arm_Joystick = GetOIAInput ( 2 , 2 ) ; // Analog OI Input Block
Arm_Output = ((( Arm_Joystick - 127 ) / 4) + 127 ) ; // User Code Block
SetPWM ( 4 , Arm_Output ) ; // PWM Control Block
}
Here is a more advanced way to do this in easyC Pro
Code:
while (1)
{
SetPWM ( 5 , ((( GetOIAInput(2,2) - 127) / 4) +127 ) ) ;
}
Oh, and when you put a smiley in your post all you have to do is click on the smile you want once and the forum software
automagicly loads the image.
