Set up control loops for y2024_swerve testing
Change-Id: Ic80503781a3b92ee711a1c8b2389fa194eacc31d
Signed-off-by: James Kuszmaul <jabukuszmaul+collab@gmail.com>
diff --git a/y2024_swerve/control_loops/python/BUILD b/y2024_swerve/control_loops/python/BUILD
new file mode 100644
index 0000000..0a6e2c6
--- /dev/null
+++ b/y2024_swerve/control_loops/python/BUILD
@@ -0,0 +1,14 @@
+py_binary(
+ name = "rotation",
+ srcs = [
+ "rotation.py",
+ ],
+ target_compatible_with = ["@platforms//cpu:x86_64"],
+ visibility = ["//y2024_swerve:__subpackages__"],
+ deps = [
+ "//frc971/control_loops/python:angular_system_current",
+ "//frc971/control_loops/python:controls",
+ "@pip//glog",
+ "@pip//python_gflags",
+ ],
+)