converted the claw to separate structures for each hall effect
diff --git a/frc971/control_loops/control_loops.q b/frc971/control_loops/control_loops.q
new file mode 100644
index 0000000..ccc8388
--- /dev/null
+++ b/frc971/control_loops/control_loops.q
@@ -0,0 +1,7 @@
+package frc971;
+
+struct HallEffectStruct {
+  bool current;
+  int32_t posedge_count;
+  int32_t negedge_count;
+};