Why can’t I assign a motor to the left and right arrows and “Y” and “A” buttons in the code. For context, I have a two motor drivetrain with two manipulators and three motors for the magazine. Is there a way to assign two motors to one button or assign a motor to the left and right arrows or the “Y” and “A” buttons. Any help would be greatly appreciated.
Please post your code. That will help us help you.
Not in the current version, you would need to do that with code.
6 Likes
you can just write a line of code that says
Controller1.Buttony.pressed(function);
and write a function with a name and replace the word function or you can use
if (Controller1.Buttony.pressing())
{
//input commands here
}
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.