|
Re: vex brain
They are using cortex controllers
robotC
They also tether them together and all lights are green on controller and cortex
we've also tried programs like
Task main()
{
while(true)
{
motor[port3] =127;
wait1msec(1000);
motor[port2] =vexRT[ch2];
}
}
and
Task main()
{
while(true)
{
motor[port2] =vexRT[ch2];
}
}
|