From: Bernhard Tittelbach Date: Thu, 12 Aug 2010 00:01:07 +0000 (+0000) Subject: new experimental eventPanic() X-Git-Url: https://git.realraum.at/?p=svn42.git;a=commitdiff_plain;h=85b29d83b79b660075a7aa02efb3f696c25e11f3 new experimental eventPanic() --- diff --git a/switch-power.py b/switch-power.py index 7e6b77c..5a33f19 100755 --- a/switch-power.py +++ b/switch-power.py @@ -207,18 +207,35 @@ def eventNobodyHere(): time.sleep(0.2) switchPower(id,False) +##def eventPanic(): +## logging.info("eventPanic(): switching around: "+uwscfg.slug_ids_panic) +## lst1 = uwscfg.slug_ids_panic.split(" ") +## lst2 = map(lambda e:[e,False], lst1) +## for id in lst1: +## switchPower(id,False) +## for delay in map(lambda e: (40-e)/33.0,range(10,33)): +## e = random.choice(lst2) +## e[1]=not e[1] +## switchPower(e[0],e[1]) +## time.sleep(delay) +## random.shuffle(lst1) +## for id in lst1: +## switchPower(id,False) +## time.sleep(1.2) +## eventPresent() + def eventPanic(): logging.info("eventPanic(): switching around: "+uwscfg.slug_ids_panic) lst1 = uwscfg.slug_ids_panic.split(" ") lst2 = map(lambda e:[e,False], lst1) for id in lst1: switchPower(id,False) - for delay in map(lambda e: (40-e)/33.0,range(10,33)): - e = random.choice(lst2) - e[1]=not e[1] - switchPower(e[0],e[1]) + for times in range(1,6) + delay = random.choice([0.3,1.4,0.9,0.5,0.3,1.4,0.9,0.5,2.2]) time.sleep(delay) - random.shuffle(lst1) + for e in lst1: + e[1]=not e[1] + switchPower(e[0],e[1]) for id in lst1: switchPower(id,False) time.sleep(1.2)