This commit is contained in:
ary 2023-10-24 09:20:52 -05:00
parent b15553abcd
commit 22e0b4aa3d
3 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,7 @@
void near_side();
void far_side();
void skills();
void default_constants();
void exit_condition_defaults();

View File

@ -68,3 +68,7 @@ void far_side() {
driveSync(70, true);
}
void skills() {
}

View File

@ -40,7 +40,8 @@ void initialize() {
*/
ary::autonselector::auton_selector.add_autons({
Auton("Near side (close to alliance goal) \n\nTo run when near alliance goal", near_side),
Auton("Far side (far from alliance goal) \n\nTo run when far from alliance goal", far_side)
Auton("Far side (far from alliance goal) \n\nTo run when far from alliance goal", far_side),
Auton("Skills \n\nPEAK!!!", skills)
});
motorsCoast(); // Allow the motors to coast initially