chickenhouse/gate_guard/__init__.py
Thomas Klaehn 8e6a2550f0 gate: pylint
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
2018-08-27 11:27:39 +02:00

25 lines
457 B
Python

'''
Created on Dec 19, 2016
@author: klaehn
'''
import time
import sys
import logging
import gate_guard.gate
def main():
logging.basicConfig(filename='/var/log/gate_guard.log', level=logging.DEBUG)
gate_state = gate_guard.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())