Austin update the closed dt loop to keep valid estimates of velocity. we then use these in shoot action to set an offset in claw angle for shooting at velocity.
diff --git a/frc971/control_loops/drivetrain/drivetrain.q b/frc971/control_loops/drivetrain/drivetrain.q
index 443282c..50d9dbf 100644
--- a/frc971/control_loops/drivetrain/drivetrain.q
+++ b/frc971/control_loops/drivetrain/drivetrain.q
@@ -45,12 +45,13 @@
   message Output {
     float left_voltage;
     float right_voltage;
-	bool left_high;
-	bool right_high;
+    bool left_high;
+    bool right_high;
   };
 
   message Status {
     bool is_done;
+    double robot_speed;
   };
 
   queue Goal goal;