disable active brake in opcontrol

This commit is contained in:
ary 2023-09-22 20:12:51 -04:00
parent 1eb0b35133
commit b8926f3587

View File

@ -63,6 +63,7 @@ void autonomous() {
void opcontrol() {
chassis.set_drive_brake(MOTOR_BRAKE_COAST);
chassis.set_active_brake(0);
while (true) {
//chassis.arcade_standard(ary::SdPLIT, ary::DEFAULT);
@ -78,4 +79,5 @@ void opcontrol() {
}
pros::delay(ary::util::DELAY_TIME);
}
}