tuning stuff that we did at NASA
diff --git a/frc971/input/JoystickReader.cc b/frc971/input/JoystickReader.cc
index be4e188..a2404d0 100644
--- a/frc971/input/JoystickReader.cc
+++ b/frc971/input/JoystickReader.cc
@@ -82,7 +82,7 @@
       bool is_control_loop_driving = false;
       double left_goal = 0.0;
       double right_goal = 0.0;
-      const double wheel = data.GetAxis(kSteeringWheel);
+      const double wheel = -data.GetAxis(kSteeringWheel);
       const double throttle = -data.GetAxis(kDriveThrottle);
       LOG(DEBUG, "wheel %f throttle %f\n", wheel, throttle);
       const double kThrottleGain = 1.0 / 2.5;