aboutsummaryrefslogtreecommitdiffstats
path: root/System/test_System.py
diff options
context:
space:
mode:
Diffstat (limited to 'System/test_System.py')
-rw-r--r--System/test_System.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/System/test_System.py b/System/test_System.py
deleted file mode 100644
index c05affc..0000000
--- a/System/test_System.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# This test file implements a super simple control-type function for testing the System library.
-# DO NOT TEST ON ASSEMBLED PHYSICAL SYSTEM! It will probably break it.
-import time
-
-from System.system import System
-
-# Main program
-sys = System(angular_units = 'Radians')
-while 1:
- angle, linear = sys.measure()
- print("Angle: " + str(angle) + ", Linear: " + str(linear))
- time.sleep(0.2)
-