Running Vex servos

I am having trouble running a vex servo using a FRC controller. I assumed that the servos would be able to use a PWM signal and move accordingly. I was wrong. A snippet of the code that I was attempting to use would be the following. Simply I am asking for a bit of code that would fix my problem.
pwm01 = p1_y;

–or–

if (p1_sw_trig == 1){ // Analog input from the Joystick
pwm01 = 255;}
else{
pwm01 = 127;}

( I know that I have unnecessary { }'s )
Anyone have something that would be helpful, any bit of code or wisdom would be greatly appreciated

Can you define the problem? Specifically, what are you expecting to happen, and what is happening instead?

What is happening is nothing at all, what I would like to happen is the servo moving to a position and halt there. I have tested the servo, it works with VEX items it’s just the FRC that I won’t cooperate with the robot controler.

is it plugged in correctly? and is your backup battery charged?

I think this is probably your problem, because your code looks fine. Servos are powered exclusively by the backup battery. If this battery is missing or discharged, then you won’t see the expected motion.

Ahh, that would make a lot of sense. I did indeed not have a backup battery that was charged. Thanks a lot to you guys for your help.