fix fix the scrim bot because i'm an idiot

This commit is contained in:
ary 2023-09-09 15:04:53 -04:00
parent a97554390b
commit 5039666722
4 changed files with 14 additions and 7 deletions

View File

@ -1,9 +1,3 @@
/*
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <functional>

View File

@ -4,7 +4,7 @@ License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "ary-lib/util.hpp"
#include "arylib/util.hpp"
#include "main.h"
using namespace ary;

View File

@ -5,6 +5,18 @@ double JOYSTICK_TURN_SCALE = 1;
double cata_active_brake_kp = 0.1;
void Drive::init_curve_sd() {
// do absolutely nothing
}
void Drive::save_r_curve_sd() {
// do absolutely nothing
}
void Drive::save_l_curve_sd() {
// do absolutely nothing
}
// Set curve defaults
void Drive::set_curve_default(double left, double right) {
left_curve_scale = left;

View File

@ -59,6 +59,7 @@ void opcontrol() {
while (true) {
chassis.arcade_standard(ary::SINGLE, ary::DEFAULT); // Flipped single arcade
pros::delay(ary::util::DELAY_TIME);