X-Git-Url: https://git.realraum.at/?a=blobdiff_plain;f=switch-power.py;h=c8707603d886558f0d2354ca7d5059d7c286714e;hb=a8262dc8575deeac26e4d19a33ee12841d2e9a78;hp=0c8069d2610f618fca6c3cbaf7572d34184ae55f;hpb=78695a975bdad302e3bd6b95e4d560914c29ae91;p=svn42.git diff --git a/switch-power.py b/switch-power.py index 0c8069d..c870760 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,True], lst1) + lst2 = map(lambda e:[e,False], lst1) for id in lst1: - switchPower(id,True) - for delay in map(lambda e: (40-e)/33.0,range(0,20)): - e = random.choice(lst2) - e[1]=not e[1] - switchPower(e[0],e[1]) + switchPower(id,False) + 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 lst2: + e[1]=not e[1] + switchPower(e[0],e[1]) for id in lst1: switchPower(id,False) time.sleep(1.2)