When declaring the motors you can put a true in the arguments list to reverse the motorā¦
vex::motor L_Drive(vex::PORT2, true); //this motor is reversed
vex::motor R_Drive(vex::PORT2, false); //this motor is not reversed
This way the when you call anything to do with motor, like .rotateFor() will be reversed.
Does thin mean you did reverse the motors? If what I said isnāt the problem can you further elaborate on the issue.
Want to make you code look good on vexforum?
Inline code is done using single back quotes: `some code`
Thisā¦
myClass someCode(); //comment
someCode.run();
is done by using three back quotes. They have to be on a line all by themselves⦠```
myClass someCode(); //comment
someCode.run();
```
This sometimes doesnāt correctly highlight your code so you can specify the type of language by writing it after the first three back quotes⦠```cpp
myClass someCode(); //comment
someCode.run();
```