Add stuff we have so far to wpilib_interface.
Change-Id: If880956affacf585d12f4df799f3c6426cf677f1
diff --git a/y2016/autonomous/auto.cc b/y2016/autonomous/auto.cc
index ad211cf..56844e0 100644
--- a/y2016/autonomous/auto.cc
+++ b/y2016/autonomous/auto.cc
@@ -85,9 +85,9 @@
auto drivetrain_action = actors::MakeDrivetrainAction(params);
drivetrain_action->Start();
left_initial_position +=
- distance - theta * constants::GetValues().turn_width / 2.0;
+ distance - theta * constants::Values::kTurnWidth / 2.0;
right_initial_position +=
- distance + theta * constants::GetValues().turn_width / 2.0;
+ distance + theta * constants::Values::kTurnWidth / 2.0;
return ::std::move(drivetrain_action);
}