From 5e26cc78ae6f2a3b5b254ad46b73557d721288fa Mon Sep 17 00:00:00 2001 From: Aidan Ferguson Date: Fri, 26 Feb 2016 17:06:28 -0500 Subject: [PATCH] Cox wanted TURN_FACTOR upped. He gets what he wants. --- Robot2016/src/Robot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robot2016/src/Robot.cpp b/Robot2016/src/Robot.cpp index f5a3e93..0a0ac59 100644 --- a/Robot2016/src/Robot.cpp +++ b/Robot2016/src/Robot.cpp @@ -15,7 +15,7 @@ // affecting the robot. Use this for cleaning up drive train and shooter. // Also used for detecting changes in an axis' value. -#define TURN_FACTOR 0.5 // Left(x,y) = y*(1 + TF*x) : x < 0 +#define TURN_FACTOR 1.5 // Left(x,y) = y*(1 + TF*x) : x < 0 // = y : x >= 0 // Right(x,y) = y : x < 0 // = y*(1 - TF*x) : x >= 0