chickenhouse/source/gate_guard.py
Thomas Klaehn e541023bba ci: enable continuous integration
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
2018-08-27 11:26:31 +02:00

24 lines
366 B
Python

'''
Created on Dec 19, 2016
@author: klaehn
'''
import sys
sys.path.append('source/')
import time
import gate
def main():
gate_state = gate.Gate()
try:
while True:
gate_state.poll()
time.sleep(0.1)
except KeyboardInterrupt:
print "key exit"
return None
if __name__ == "__main__":
sys.exit(main())