added fallback mode, TODO: test&debug
[saartuer.git] / tuerd
1 #!/usr/bin/python3
2 import RPi.GPIO as GPIO
3 import statemachine, actor, pins, tysock, waker
4 from libtuer import logger
5 import argparse
6
7 # Parse arguments
8 parser = argparse.ArgumentParser(description='Run a door')
9 parser.add_argument("-d", "--debug",
10                                         action="store_true", dest="debug",
11                                         help="Don't send emails")
12 parser.add_argument("-f", "--fallback",
13                                         action="store_true", dest="fallback",
14                                         help="Fallback mode for unfunctional hardware: Depend on less sensor input")
15 args = parser.parse_args()
16 if args.debug:
17         import libtuer
18         libtuer.mailAddress = []
19 if args.fallback:
20         logger.info("Starting in fallback mode")
21 else:
22         # to avoid exceptions or getting None
23         args.fallback = False
24
25 # initialize GPIO stuff
26 GPIO.setmode(GPIO.BOARD)
27
28 # bring 'em all up
29 the_actor = actor.Actor()
30 the_machine = statemachine.StateMachine(the_actor, args.fallback)
31 the_socket = tysock.TySocket(the_machine)
32 the_pins = pins.PinsWatcher(the_machine)
33 the_waker = waker.Waker(the_machine)
34
35 # we do the socket accept thing in the main thread
36 try:
37         the_socket.accept()
38 except KeyboardInterrupt:
39         # this is what we waited for!
40         logger.info("Got SIGINT, terminating...")
41         pass
42
43 # bring 'em all down
44 the_waker.stop()
45 the_pins.stop()
46 the_machine.stop()
47 the_actor.stop()
48
49 # shutdown GPIO stuff
50 GPIO.cleanup()