Added simulation for the brushless motor.
This is the motor we used in powerwheels.
Change-Id: I33a1d43d8c6374e289873c774ba5c16147619ff9
diff --git a/motors/python/BUILD b/motors/python/BUILD
new file mode 100644
index 0000000..20dd786
--- /dev/null
+++ b/motors/python/BUILD
@@ -0,0 +1,12 @@
+py_binary(
+ name = "phase_current",
+ srcs = [
+ "phase_current.py",
+ ],
+ deps = [
+ "//external:python-gflags",
+ "//external:python-glog",
+ "//frc971/control_loops/python:controls",
+ ],
+ restricted_to = ["//tools:k8"],
+)