Add intake flatbuffers

Signed-off-by: Aryan Khanna <aryankhanna0312@gmail.com>
Change-Id: I518b5e073abb92868b5e7b8a4fe6971e774c8b21
diff --git a/y2024/control_loops/superstructure/superstructure_output.fbs b/y2024/control_loops/superstructure/superstructure_output.fbs
index 6f0df4a..d54e608 100644
--- a/y2024/control_loops/superstructure/superstructure_output.fbs
+++ b/y2024/control_loops/superstructure/superstructure_output.fbs
@@ -1,6 +1,11 @@
 namespace y2024.control_loops.superstructure;
 
 table Output {
+    // Voltage of rollers on intake
+    intake_roller_voltage:double (id: 0);
+
+    // Voltage of intake pivot
+    intake_pivot_voltage:double (id: 1);
 }
 
 root_type Output;