added schematic and footprints for teenstep
[svn42.git] / switch-power.py
index ed838b0..818f8d5 100755 (executable)
@@ -37,13 +37,16 @@ class UWSConfig:
     self.config_parser.set('powerswitching','max_secs_since_movement','600')
     self.config_parser.add_section('slug')
     self.config_parser.set('slug','cgiuri','http://slug.realraum.at/cgi-bin/switch.cgi?id=%ID%&power=%ONOFF%')
+    self.config_parser.set('slug','lightleveluri','http://slug.realraum.at/cgi-bin/lightlevel.cgi')
     self.config_parser.set('slug','ids_logo','logo')
     self.config_parser.set('slug','ids_present_day_bright_room','ymhpoweron werkzeug ymhcd')
     self.config_parser.set('slug','ids_present_day_dark_room','ymhpoweron decke werkzeug ymhcd')
-    self.config_parser.set('slug','ids_present_night','ymhpoweron werkzeug schreibtisch idee labor ymhcd')
-    self.config_parser.set('slug','ids_panic','idee ymhmute labor werkzeug deckevorne deckehinten')
+    self.config_parser.set('slug','ids_present_night','ymhpoweron werkzeug schreibtisch spots1 labor ymhcd')
+    self.config_parser.set('slug','ids_panic','spots1 ymhmute labor werkzeug deckevorne deckehinten')
+    self.config_parser.set('slug','ids_decke','deckevorne deckehinten')
     self.config_parser.set('slug','ids_nonpresent_off','ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown ymhvoldown lichter ymhpoweroff lichter')
     self.config_parser.set('slug','light_threshold_brightness','400')
+    self.config_parser.set('slug','light_difference_decke','100')
     #self.config_parser.set('slug','time_day','6:00-17:00')
     self.config_parser.add_section('debug')
     self.config_parser.set('debug','enabled',"False")
@@ -120,6 +123,13 @@ def switchPower(powerid,turn_on=False):
     onoff="off"
   touchURL(uwscfg.slug_cgiuri.replace("%ID%",powerid).replace("%ONOFF%",onoff))
 
+def getLightValueNow():
+  lvalue = touchURL(uwscfg.slug_lightleveluri)
+  try:
+    return int(lvalue)
+  except:
+    return None
+
 def haveDaylight():
   dawn_per_month = {1:8, 2:7, 3:6, 4:6, 5:5, 6:5, 7:5, 8:6, 9:7, 10:8, 11:8, 12:8}
   dusk_per_month = {1:15, 2:16, 3:17, 4:19, 5:20, 6:20, 7:20, 8:19, 9:17, 10:17, 11:16, 12:15}
@@ -267,9 +277,22 @@ def eventNobodyHere():
 ##  eventPresent()
 
 def eventPanic():
+  global light_value
   logging.info("eventPanic(): switching around: "+uwscfg.slug_ids_panic)
   lst1 = uwscfg.slug_ids_panic.split(" ")
   lst2 = map(lambda e:[e,False], lst1)
+  deckenlicht_ids = uwscfg.slug_ids_decke.split(" ")
+  ceiling_light_was_on = False
+  #guess main light state:
+  if len(list(set(deckenlicht_ids) & set(lst1))) > 0:
+    light_value_before = light_value
+    for id in deckenlicht_ids:
+      switchPower(id,False)
+    time.sleep(2.8)
+    light_value_after = getLightValueNow()
+    if not (light_value_before is None or light_value_after is None):
+      ceiling_light_was_on = ((light_value_before - light_value_after) > int(uwscfg.slug_light_difference_decke))
+    logging.debug("eventPanic: light_value_before: %d, light_value_after: %d, ceiling_light_was_on: %s" % (light_value_before,light_value_after,str(ceiling_light_was_on)))
   for id in lst1:
     switchPower(id,False)
   for times in range(1,6):
@@ -282,6 +305,10 @@ def eventPanic():
     switchPower(id,False)
   time.sleep(1.2)
   eventPresent()
+  #we can only test if it was on, we don't any other informatino
+  if ceiling_light_was_on:
+    for id in deckenlicht_ids:
+      switchPower(id,True)
 
 
 ########################
@@ -318,6 +345,7 @@ RE_PHOTO = re.compile(r'photo\d: [^0-9]*?(\d+)')
 daylight=None
 wolfhour=None
 unixts_last_periodical=0
+light_value=0
 while True:
   try:
     if not os.path.exists(uwscfg.tracker_socket):