From 7d24ee0e013ba6d9442a4822f44818e10772e3d6 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Thu, 17 Oct 2013 08:51:12 +0200 Subject: [PATCH] fixes; implement the Pins --- actor.py | 24 +++++++++++++++++------- libtuer.py | 6 +++--- statemachine.py | 18 ++++++++++++++++-- 3 files changed, 36 insertions(+), 12 deletions(-) diff --git a/actor.py b/actor.py index 439a7bb..25939a6 100644 --- a/actor.py +++ b/actor.py @@ -3,9 +3,13 @@ import RPi.GPIO as GPIO import time class Actor: - CMD_BUZZ = 0 - CMD_UNLOCK = 1 - CMD_LOCK = 2 + CMD_BUZZ = 0 + CMD_UNLOCK = 1 + CMD_LOCK = 2 + CMD_GREEN_ON = 3 + CMD_GREEN_OFF = 4 + CMD_RED_ON = 5 + CMD_RED_OFF = 6 class CMD(): def __init__(self, name, pin, tid, todo): @@ -21,12 +25,17 @@ class Actor: if value is not None: logger.debug("Actor: Setting pin %d to %d" % (self.pin, value)) GPIO.output(self.pin, value) - time.sleep(delay) + if delay > 0: + time.sleep(delay) CMDs = { - CMD_UNLOCK: CMD("unlock", pin=12, tid=0, todo=[(True, 0.3), (False, 0.1)]), - CMD_LOCK: CMD("lock", pin=16, tid=0, todo=[(True, 0.3), (False, 0.1)]), - CMD_BUZZ: CMD("buzz", pin=22, tid=1, todo=[(True, 2.0), (False, 0.1)]), + CMD_UNLOCK: CMD("unlock", pin=12, tid=0, todo=[(True, 0.3), (False, 0.1)]), + CMD_LOCK: CMD("lock", pin=16, tid=0, todo=[(True, 0.3), (False, 0.1)]), + CMD_BUZZ: CMD("buzz", pin=22, tid=1, todo=[(True, 2.5), (False, 0.1)]), + CMD_GREEN_ON: CMD("green on", pin=23, tid=2, todo=[(True, 0)]), + CMD_GREEN_OFF: CMD("green off", pin=23, tid=2, todo=[(False, 0)]), + CMD_RED_ON: CMD("red on", pin=26, tid=2, todo=[(True, 0)]), + CMD_RED_OFF: CMD("red on", pin=26, tid=2, todo=[(False, 0)]), } def __init__(self): @@ -34,6 +43,7 @@ class Actor: self.threads = {} for cmd in Actor.CMDs.values(): GPIO.setup(cmd.pin, GPIO.OUT) + GPIO.output(cmd.pin, False) if not cmd.tid in self.threads: self.threads[cmd.tid] = ThreadFunction(self._execute, "Actor TID %d" % cmd.tid) diff --git a/libtuer.py b/libtuer.py index cd10a7b..308179e 100644 --- a/libtuer.py +++ b/libtuer.py @@ -5,7 +5,7 @@ import email.mime.text, email.utils # Logging configuration syslogLevel = logging.INFO mailLevel = logging.CRITICAL # must be "larger" than syslog level! -mailAddress = 'post+tuer'+'@'+'ralfj.de' +mailAddress = ['post+tuer'+'@'+'ralfj.de', 'vorstand@lists.hacksaar.de'] # Mail logging handler def sendeMail(subject, text, receivers, sender='sphinx@hacksaar.de', replyTo=None): @@ -19,7 +19,7 @@ def sendeMail(subject, text, receivers, sender='sphinx@hacksaar.de', replyTo=Non if replyTo is not None: msg['Reply-To'] = replyTo # put into envelope and send - s = smtplib.SMTP('ralfj.de') + s = smtplib.SMTP('localhost') s.sendmail(sender, receivers, msg.as_string()) s.quit() @@ -32,7 +32,7 @@ class Logger: facility = logging.handlers.SysLogHandler.LOG_LOCAL0)) def _log (self, lvl, what): - thestr = "%s[%d]: %s" % ("osspd", os.getpid(), what) + thestr = "%s[%d]: %s" % ("tuerd", os.getpid(), what) # console log print(thestr) # syslog diff --git a/statemachine.py b/statemachine.py index 850eb0e..5226576 100644 --- a/statemachine.py +++ b/statemachine.py @@ -99,16 +99,30 @@ class StateMachine(): else: raise Exception("Unknown command number: %d" % ev) - class AbstractLockedState(State): + class AbstractNonStartState(State): + def handle_pins_event(self): + if self.pins().door_locked != (not self.pins().space_active): + self.actor().act(Actor.CMD_RED_ON) + else: + self.actor().act(Actor.CMD_RED_OFF) + return super().handle_pins_event() + + class AbstractLockedState(AbstractNonStartState): '''A state with invariant "The space is locked", switching to StateAboutToOpen when the space becomes unlocked''' + def __init__(self, sm, nervlist = None): + super().__init__(sm, nervlist) + self.actor().act(Actor.CMD_GREEN_OFF) def handle_pins_event(self): if not self.pins().door_locked: logger.info("Door unlocked, space is about to open") return StateMachine.StateAboutToOpen(self.state_machine) return super().handle_pins_event() - class AbstractUnlockedState(State): + class AbstractUnlockedState(AbstractNonStartState): '''A state with invariant "The space is unlocked", switching to StateZu when the space becomes locked''' + def __init__(self, sm, nervlist = None): + super().__init__(sm, nervlist) + self.actor().act(Actor.CMD_GREEN_ON) def handle_pins_event(self): if self.pins().door_locked: logger.info("Door locked, closing space") -- 2.30.2