This repository was archived by the owner on Sep 14, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
src/org/usfirst/frc/team199/Robot2018 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 <classpathentry kind =" lib" path =" lib/CTRE_Phoenix-sources.jar" />
1717 <classpathentry kind =" lib" path =" lib/CTRE_Phoenix.jar" />
1818 <classpathentry kind =" lib" path =" lib/navx_frc.jar" />
19+ <classpathentry kind =" var" path =" USERLIBS_DIR/CTRE_Phoenix-sources.jar" />
20+ <classpathentry kind =" var" path =" USERLIBS_DIR/CTRE_Phoenix.jar" />
21+ <classpathentry kind =" var" path =" USERLIBS_DIR/navx_frc.jar" />
1922 <classpathentry kind =" output" path =" bin" />
2023</classpath >
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<projectDescription >
3- <name >Robot2018 </name >
3+ <name >DSRobot2018 </name >
44 <comment ></comment >
55 <projects >
66 </projects >
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ public RobotMap() {
9797 //getPort("LeftTalonSRXDrive", 2));
9898 configSRX (dtLeftDrive );
9999 dtLeftSlave = new WPI_VictorSPX (0 );
100- //getPort("LeftTalonSPXSlave ", 0));
100+ //getPort("LeftVictorSPXSlave ", 0));
101101 configSPX (dtLeftSlave );
102102 dtLeft = new SpeedControllerGroup (dtLeftDrive , dtLeftSlave );
103103
@@ -106,7 +106,7 @@ public RobotMap() {
106106 //getPort("RightTalonSRXDrive", 1));
107107 configSRX (dtRightDrive );
108108 dtRightSlave = new WPI_VictorSPX (3 );
109- //getPort("RightTalonSPXSlave ", 3));
109+ //getPort("RightVictorSPXSlave ", 3));
110110 configSPX (dtRightSlave );
111111 dtRight = new SpeedControllerGroup (dtRightDrive , dtRightSlave );
112112
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ public void teleopDrive() {
158158 Robot .dt .arcadeDrive (-Robot .oi .rightJoy .getY (), Robot .oi .leftJoy .getX ());
159159 }
160160 } else {
161- Robot .dt .tankDrive (-Robot .oi .leftJoy .getY (), Robot .oi .rightJoy .getY ());
161+ Robot .dt .tankDrive (-Robot .oi .leftJoy .getY (), - Robot .oi .rightJoy .getY ());
162162 }
163163 }
164164
You can’t perform that action at this time.
0 commit comments