Hello I am trying to program a button to my remote but it will not work any feed back is awesome thank you.
task main()
{
while(true)
If(vexRT[Btn6U]==1);
{
motor[rightclaw]=127;
}
else if (vexRT[Btn6D]==1)
{
motor[rightclaw]= -127;
}
else
{
motor[rightclaw]=0;
}
}
