Reorganized sensors in the shooter.
diff --git a/frc971/control_loops/control_loops.q b/frc971/control_loops/control_loops.q
index 631fd59..ffadb94 100644
--- a/frc971/control_loops/control_loops.q
+++ b/frc971/control_loops/control_loops.q
@@ -13,3 +13,11 @@
   double posedge;
   double negedge;
 };
+
+// Records edges captured on a single hall effect sensor.
+struct PosedgeOnlyCountedHallEffectStruct {
+  bool current;
+  int32_t posedge_count;
+  int32_t negedge_count;
+  double posedge_value;
+};