diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-01-27 15:29:31 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-01-27 15:29:31 -0600 |
commit | 772cff67fd3b491d015ba89601a0a098c69edd69 (patch) | |
tree | 7c1f6b3110bb45913bc0b895c0754d5cefda52e0 /System/initialize_system.py | |
parent | Add Uploads to the gitignore. (diff) | |
download | ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.tar ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.tar.gz ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.tar.bz2 ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.tar.lz ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.tar.xz ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.tar.zst ee4511w-772cff67fd3b491d015ba89601a0a098c69edd69.zip |
Add code that was not committed before
Diffstat (limited to '')
-rw-r--r--[-rwxr-xr-x] | System/initialize_system.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/System/initialize_system.py b/System/initialize_system.py index 6df880f..38b7134 100755..100644 --- a/System/initialize_system.py +++ b/System/initialize_system.py @@ -4,6 +4,15 @@ from system import System import RPi.GPIO as GPIO
# Main program
+print("Got to init")
sys = System()
sys.initialize()
GPIO.cleanup()
+
+
+##debug version
+#print("alive")
+#sys = System()
+#limit_negative_pin = 19
+#while(1):
+# print(GPIO.input(limit_negative_pin))
\ No newline at end of file |