8e6a2550f0
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
25 lines
457 B
Python
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())
|