|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#8
|
||||
|
||||
|
Re: Auto Mode Help
So I assume you have limit switches on a digital input channel then? If so, you can just program the victor with:
Code:
if (limitSwitch->Get() == 0)
{
armMotor->Set(0.5);
}
else
{
armMotor->Set(0.0);
}
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|