diff --git a/.buildinfo b/.buildinfo index c60cc78edc..7437fd8830 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: de78cca9c8f13af44d847e2e1e6aaef6 +config: 3fb387bb0184b5c89c0b14df5da1ae62 tags: 53fce1f610f91183c07e2025655d47fe diff --git a/_modules/index.html b/_modules/index.html index 92a7ade8b9..4e8e85230c 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -3,7 +3,7 @@ - Überblick: Modul-Quellcode — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Überblick: Modul-Quellcode — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/_modules/lib/config.html b/_modules/lib/config.html index 4a66af48a1..4ef76a870a 100644 --- a/_modules/lib/config.html +++ b/_modules/lib/config.html @@ -3,7 +3,7 @@ - lib.config — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.config — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/_modules/lib/connection.html b/_modules/lib/connection.html index f2d316d38f..f246227da4 100644 --- a/_modules/lib/connection.html +++ b/_modules/lib/connection.html @@ -3,7 +3,7 @@ - lib.connection — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.connection — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/_modules/lib/daemon.html b/_modules/lib/daemon.html index fb276507b4..f9f4df2621 100644 --- a/_modules/lib/daemon.html +++ b/_modules/lib/daemon.html @@ -3,7 +3,7 @@ - lib.daemon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.daemon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/_modules/lib/db.html b/_modules/lib/db.html index f7b5196687..38510cb18a 100644 --- a/_modules/lib/db.html +++ b/_modules/lib/db.html @@ -3,7 +3,7 @@ - lib.db — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.db — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/_modules/lib/env.html b/_modules/lib/env.html index d19adf8c4e..e7ace971c8 100644 --- a/_modules/lib/env.html +++ b/_modules/lib/env.html @@ -3,7 +3,7 @@ - lib.env — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.env — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/_modules/lib/item/item.html b/_modules/lib/item/item.html index c1da66aecd..fef3a60841 100644 --- a/_modules/lib/item/item.html +++ b/_modules/lib/item/item.html @@ -3,7 +3,7 @@ - lib.item.item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.item.item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation @@ -7785,7 +7785,7 @@

Quellcode für lib.item.item

 
 
     # New for on_update / on_change
-    def _run_on_xxx(self, path, value, on_dest, on_eval, attr='?'):
+    def _run_on_xxx(self, path, value, on_dest, on_eval, attr='?', caller=None, source=None, dest=None):
         """
         common method for __run_on_update and __run_on_change
 
@@ -7847,7 +7847,7 @@ 

Quellcode für lib.item.item

                 pass
 
 
-    def __run_on_update(self, value=None):
+    def __run_on_update(self, value=None, caller=None, source=None, dest=None):
         """
         evaluate all 'on_update' entries of the actual item
         """
@@ -7855,10 +7855,10 @@ 

Quellcode für lib.item.item

             # sh = self._sh  # noqa
 #            logger.info("Item {}: 'on_update' evaluating {} = {}".format(self._path, self._on_update_dest_var, self._on_update))
             for on_update_dest, on_update_eval in zip(self._on_update_dest_var, self._on_update):
-                self._run_on_xxx(self._path, value, on_update_dest, on_update_eval, 'On_Update')
+                self._run_on_xxx(self._path, value, on_update_dest, on_update_eval, 'On_Update', caller=caller, source=source, dest=dest)
 
 
-    def __run_on_change(self, value=None):
+    def __run_on_change(self, value=None, caller=None, source=None, dest=None):
         """
         evaluate all 'on_change' entries of the actual item
         """
@@ -7866,7 +7866,7 @@ 

Quellcode für lib.item.item

             # sh = self._sh  # noqa
 #            logger.info("Item {}: 'on_change' evaluating lists {} = {}".format(self._path, self._on_change_dest_var, self._on_change))
             for on_change_dest, on_change_eval in zip(self._on_change_dest_var, self._on_change):
-                self._run_on_xxx(self._path, value, on_change_dest, on_change_eval, 'On_Change')
+                self._run_on_xxx(self._path, value, on_change_dest, on_change_eval, 'On_Change', caller=caller, source=source, dest=dest)
 
 
     def _log_build_standardtext(self, value, caller, source=None, dest=None):
@@ -8144,7 +8144,7 @@ 

Quellcode für lib.item.item

         self._lock.release()
 
         # ms: call run_on_update() from here
-        self.__run_on_update(value)
+        self.__run_on_update(value, caller=caller, source=source, dest=dest)
         if _changed or self._enforce_updates or self._type == 'scene':
             # ms: call run_on_change() from here -> noved down
             #self.__run_on_change(value)
@@ -8171,7 +8171,7 @@ 

Quellcode für lib.item.item

                 args = {'value': value, 'source': self._path}
                 self._sh.trigger(name='items.' + item.property.path, obj=item.__run_hysteresis, value=args, by=caller, source=source, dest=dest)
             # ms: call run_on_change() from here - after eval is run
-            self.__run_on_change(value)
+            self.__run_on_change(value, caller=caller, source=source, dest=dest)
 
         if _changed and self._cache and not self._fading:
             try:
diff --git a/_modules/lib/item/items.html b/_modules/lib/item/items.html
index b603a0469d..fb6605440a 100644
--- a/_modules/lib/item/items.html
+++ b/_modules/lib/item/items.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.item.items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.item.items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/item_conversion.html b/_modules/lib/item_conversion.html
index b5a2899bf9..2e15bd557e 100644
--- a/_modules/lib/item_conversion.html
+++ b/_modules/lib/item_conversion.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.item_conversion — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.item_conversion — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/log.html b/_modules/lib/log.html
index e56521391a..0c40581470 100644
--- a/_modules/lib/log.html
+++ b/_modules/lib/log.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.log — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.log — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/logic.html b/_modules/lib/logic.html
index 6a1ecc384a..a626b7f3ac 100644
--- a/_modules/lib/logic.html
+++ b/_modules/lib/logic.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.logic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.logic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/logutils.html b/_modules/lib/logutils.html
index 153650903b..5c1caa0f19 100644
--- a/_modules/lib/logutils.html
+++ b/_modules/lib/logutils.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.logutils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.logutils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/metadata.html b/_modules/lib/metadata.html
index 8e751d3ad8..b172778712 100644
--- a/_modules/lib/metadata.html
+++ b/_modules/lib/metadata.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.metadata — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.metadata — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/model/mqttplugin.html b/_modules/lib/model/mqttplugin.html
index 3a1f1437a7..618a13f861 100644
--- a/_modules/lib/model/mqttplugin.html
+++ b/_modules/lib/model/mqttplugin.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.model.mqttplugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.model.mqttplugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/model/smartdeviceplugin.html b/_modules/lib/model/smartdeviceplugin.html
index 8829d0600c..aeaab9263a 100644
--- a/_modules/lib/model/smartdeviceplugin.html
+++ b/_modules/lib/model/smartdeviceplugin.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.model.smartdeviceplugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.model.smartdeviceplugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/model/smartplugin.html b/_modules/lib/model/smartplugin.html
index f58f895a1a..7fd1f8bcba 100644
--- a/_modules/lib/model/smartplugin.html
+++ b/_modules/lib/model/smartplugin.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.model.smartplugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.model.smartplugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/module.html b/_modules/lib/module.html
index 1254c2e20e..deba5cd8db 100644
--- a/_modules/lib/module.html
+++ b/_modules/lib/module.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/network.html b/_modules/lib/network.html
index 661912f0a1..5e95c7a330 100644
--- a/_modules/lib/network.html
+++ b/_modules/lib/network.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.network — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.network — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/orb.html b/_modules/lib/orb.html
index 1494dca08d..87dfe60eda 100644
--- a/_modules/lib/orb.html
+++ b/_modules/lib/orb.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.orb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.orb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/plugin.html b/_modules/lib/plugin.html
index e3fb140f72..97dce12ea2 100644
--- a/_modules/lib/plugin.html
+++ b/_modules/lib/plugin.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/scene.html b/_modules/lib/scene.html
index c18f0547f0..bd2c10244d 100644
--- a/_modules/lib/scene.html
+++ b/_modules/lib/scene.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.scene — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.scene — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/scheduler.html b/_modules/lib/scheduler.html
index 5ae1699de0..d6106cf42c 100644
--- a/_modules/lib/scheduler.html
+++ b/_modules/lib/scheduler.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.scheduler — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.scheduler — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/shtime.html b/_modules/lib/shtime.html
index 2dfa2ece07..6182a78d05 100644
--- a/_modules/lib/shtime.html
+++ b/_modules/lib/shtime.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.shtime — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.shtime — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/shyaml.html b/_modules/lib/shyaml.html
index 84ad0154e3..cc29ec0ebe 100644
--- a/_modules/lib/shyaml.html
+++ b/_modules/lib/shyaml.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.shyaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.shyaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/smarthome.html b/_modules/lib/smarthome.html
index 9495cd0c7c..7d80a786e9 100644
--- a/_modules/lib/smarthome.html
+++ b/_modules/lib/smarthome.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.smarthome — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.smarthome — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/tools.html b/_modules/lib/tools.html
index 0096d9459e..4253efac21 100644
--- a/_modules/lib/tools.html
+++ b/_modules/lib/tools.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.tools — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.tools — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/translation.html b/_modules/lib/translation.html
index 3432f42714..db02cc42a7 100644
--- a/_modules/lib/translation.html
+++ b/_modules/lib/translation.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.translation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.translation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/lib/utils.html b/_modules/lib/utils.html
index 9685de516f..52235582ee 100644
--- a/_modules/lib/utils.html
+++ b/_modules/lib/utils.html
@@ -3,7 +3,7 @@
 
   
   
-  lib.utils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  lib.utils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/admin.html b/_modules/modules/admin.html
index f936a196d6..b16e165110 100644
--- a/_modules/modules/admin.html
+++ b/_modules/modules/admin.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.admin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.admin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/admin/api_plugin.html b/_modules/modules/admin/api_plugin.html
index bbbebe5d35..b79972b13c 100644
--- a/_modules/modules/admin/api_plugin.html
+++ b/_modules/modules/admin/api_plugin.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.admin.api_plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.admin.api_plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/admin/api_plugins.html b/_modules/modules/admin/api_plugins.html
index ff6b15d79a..b32690ac84 100644
--- a/_modules/modules/admin/api_plugins.html
+++ b/_modules/modules/admin/api_plugins.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.admin.api_plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.admin.api_plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/admin/rest.html b/_modules/modules/admin/rest.html
index 51677cf250..921cc162d2 100644
--- a/_modules/modules/admin/rest.html
+++ b/_modules/modules/admin/rest.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.admin.rest — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.admin.rest — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/http.html b/_modules/modules/http.html
index bccd6c79bc..ed7d524cec 100644
--- a/_modules/modules/http.html
+++ b/_modules/modules/http.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/mqtt.html b/_modules/modules/mqtt.html
index 94ef94a345..cf95bc20a5 100644
--- a/_modules/modules/mqtt.html
+++ b/_modules/modules/mqtt.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_modules/modules/websocket.html b/_modules/modules/websocket.html
index 2ee7bdaa59..1d5f6538c5 100644
--- a/_modules/modules/websocket.html
+++ b/_modules/modules/websocket.html
@@ -3,7 +3,7 @@
 
   
   
-  modules.websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  modules.websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/_static/documentation_options.js b/_static/documentation_options.js
index 6e9976a20c..4e65ae98f7 100644
--- a/_static/documentation_options.js
+++ b/_static/documentation_options.js
@@ -1,6 +1,6 @@
 var DOCUMENTATION_OPTIONS = {
     URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
-    VERSION: 'v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f)',
+    VERSION: 'v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b)',
     LANGUAGE: 'de',
     COLLAPSE_INDEX: false,
     BUILDER: 'html',
diff --git a/admin/admin.html b/admin/admin.html
index 554b5f4b3a..fc6c7cc09f 100644
--- a/admin/admin.html
+++ b/admin/admin.html
@@ -4,7 +4,7 @@
   
 
   
-  Administrations-Interface Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Administrations-Interface Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/dienste.html b/admin/dienste.html
index 3d0d0e7d8c..a7364977bf 100644
--- a/admin/dienste.html
+++ b/admin/dienste.html
@@ -4,7 +4,7 @@
   
 
   
-  Dienste — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Dienste — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/items.html b/admin/items.html
index f73ec4fd62..e4ee41b491 100644
--- a/admin/items.html
+++ b/admin/items.html
@@ -4,7 +4,7 @@
   
 
   
-  Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/logiken.html b/admin/logiken.html
index 670a2ef075..e43b50aaac 100644
--- a/admin/logiken.html
+++ b/admin/logiken.html
@@ -4,7 +4,7 @@
   
 
   
-  Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/logs.html b/admin/logs.html
index 1ec817282e..158a4971fb 100644
--- a/admin/logs.html
+++ b/admin/logs.html
@@ -4,7 +4,7 @@
   
 
   
-  Logs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Logs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/plugins.html b/admin/plugins.html
index 82a191ff5e..ce7e239bd7 100644
--- a/admin/plugins.html
+++ b/admin/plugins.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/scenes.html b/admin/scenes.html
index a86c63a794..b1fad9854f 100644
--- a/admin/scenes.html
+++ b/admin/scenes.html
@@ -4,7 +4,7 @@
   
 
   
-  Szenen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Szenen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/scheduler.html b/admin/scheduler.html
index 32264e13f7..0625ca13e3 100644
--- a/admin/scheduler.html
+++ b/admin/scheduler.html
@@ -4,7 +4,7 @@
   
 
   
-  Scheduler — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Scheduler — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/system.html b/admin/system.html
index e5793ef6fc..526a143c6f 100644
--- a/admin/system.html
+++ b/admin/system.html
@@ -4,7 +4,7 @@
   
 
   
-  System — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  System — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/admin/threads.html b/admin/threads.html
index d4c15fe0d6..55d41e0f69 100644
--- a/admin/threads.html
+++ b/admin/threads.html
@@ -4,7 +4,7 @@
   
 
   
-  Threads — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Threads — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/beispiele.html b/beispiele/beispiele.html
index 9e4d22c46e..69d253fefc 100644
--- a/beispiele/beispiele.html
+++ b/beispiele/beispiele.html
@@ -4,7 +4,7 @@
   
 
   
-  Beispiele, Tipps & Tricks Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Beispiele, Tipps & Tricks Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/items/items.html b/beispiele/items/items.html
index 2d5028481e..bfd2caadae 100644
--- a/beispiele/items/items.html
+++ b/beispiele/items/items.html
@@ -4,7 +4,7 @@
   
 
   
-  Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/items/items_eval_evaltrigger.html b/beispiele/items/items_eval_evaltrigger.html
index 477667b31e..291b6a8566 100644
--- a/beispiele/items/items_eval_evaltrigger.html
+++ b/beispiele/items/items_eval_evaltrigger.html
@@ -4,7 +4,7 @@
   
 
   
-  eval und eval_trigger — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  eval und eval_trigger — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/items/items_tipps_und_tricks.html b/beispiele/items/items_tipps_und_tricks.html
index 166e017dd4..4d6d0293ab 100644
--- a/beispiele/items/items_tipps_und_tricks.html
+++ b/beispiele/items/items_tipps_und_tricks.html
@@ -4,7 +4,7 @@
   
 
   
-  Tipps und Tricks Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Tipps und Tricks Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/knxd.html b/beispiele/knxd.html
index 05c51ac027..3b89efbd94 100644
--- a/beispiele/knxd.html
+++ b/beispiele/knxd.html
@@ -4,7 +4,7 @@
   
 
   
-  knxd: Hinweise und Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  knxd: Hinweise und Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/beispiel_beaufort.html b/beispiele/logiken/beispiel_beaufort.html
index d5b3b7dcfe..4d840e9d7e 100644
--- a/beispiele/logiken/beispiel_beaufort.html
+++ b/beispiele/logiken/beispiel_beaufort.html
@@ -4,7 +4,7 @@
   
 
   
-  Berechnung der Windstärke — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Berechnung der Windstärke — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/beispiel_berechnung_zeitdaten.html b/beispiele/logiken/beispiel_berechnung_zeitdaten.html
index e9c4f797bc..2add83de0d 100644
--- a/beispiele/logiken/beispiel_berechnung_zeitdaten.html
+++ b/beispiele/logiken/beispiel_berechnung_zeitdaten.html
@@ -4,7 +4,7 @@
   
 
   
-  Berechnung von Zeitdaten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Berechnung von Zeitdaten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/beispiel_blinken.html b/beispiele/logiken/beispiel_blinken.html
index 1799ac2919..5c256b78df 100644
--- a/beispiele/logiken/beispiel_blinken.html
+++ b/beispiele/logiken/beispiel_blinken.html
@@ -4,7 +4,7 @@
   
 
   
-  Blinken per Logik — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Blinken per Logik — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/beispiel_dpt2.html b/beispiele/logiken/beispiel_dpt2.html
index 2751c6f62b..4785782f92 100644
--- a/beispiele/logiken/beispiel_dpt2.html
+++ b/beispiele/logiken/beispiel_dpt2.html
@@ -4,7 +4,7 @@
   
 
   
-  Darstellung von DPT 2 Werten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Darstellung von DPT 2 Werten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/beispiel_icon_zenith.html b/beispiele/logiken/beispiel_icon_zenith.html
index e7d7cb5f9b..dedfc92d6d 100644
--- a/beispiele/logiken/beispiel_icon_zenith.html
+++ b/beispiele/logiken/beispiel_icon_zenith.html
@@ -4,7 +4,7 @@
   
 
   
-  Steuerung des dyn.zenith-Icons — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Steuerung des dyn.zenith-Icons — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/beispiel_nachdimmen.html b/beispiele/logiken/beispiel_nachdimmen.html
index 8e339b6cad..5a2deb59f2 100644
--- a/beispiele/logiken/beispiel_nachdimmen.html
+++ b/beispiele/logiken/beispiel_nachdimmen.html
@@ -4,7 +4,7 @@
   
 
   
-  Nachdimmen von Leuchten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Nachdimmen von Leuchten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/logiken/logiken.html b/beispiele/logiken/logiken.html
index 8e0db2766a..04f72fc9b2 100644
--- a/beispiele/logiken/logiken.html
+++ b/beispiele/logiken/logiken.html
@@ -4,7 +4,7 @@
   
 
   
-  Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/plugins/plugin_aus_develop.html b/beispiele/plugins/plugin_aus_develop.html
index bf3802069d..5d6bda9497 100644
--- a/beispiele/plugins/plugin_aus_develop.html
+++ b/beispiele/plugins/plugin_aus_develop.html
@@ -4,7 +4,7 @@
   
 
   
-  Ein Plugin aus develop installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Ein Plugin aus develop installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/plugins/plugins.html b/beispiele/plugins/plugins.html
index 1162b2e616..33ea63a9fd 100644
--- a/beispiele/plugins/plugins.html
+++ b/beispiele/plugins/plugins.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/structs/1_structs.html b/beispiele/structs/1_structs.html
index ef0d95f1a2..b0fd60e266 100644
--- a/beispiele/structs/1_structs.html
+++ b/beispiele/structs/1_structs.html
@@ -4,7 +4,7 @@
   
 
   
-  structs (Item Strukturen) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  structs (Item Strukturen) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/structs/item_strukturen_kopieren.html b/beispiele/structs/item_strukturen_kopieren.html
index 8b4eb0e1ca..7f50e2d87a 100644
--- a/beispiele/structs/item_strukturen_kopieren.html
+++ b/beispiele/structs/item_strukturen_kopieren.html
@@ -4,7 +4,7 @@
   
 
   
-  Item Strukturen bequem kopieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Item Strukturen bequem kopieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/structs/structs.html b/beispiele/structs/structs.html
index fe390a6017..26b1947788 100644
--- a/beispiele/structs/structs.html
+++ b/beispiele/structs/structs.html
@@ -4,7 +4,7 @@
   
 
   
-  Structs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Structs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/beispiele/umzug.html b/beispiele/umzug.html
index 57c7170810..1e513ac3c4 100644
--- a/beispiele/umzug.html
+++ b/beispiele/umzug.html
@@ -4,7 +4,7 @@
   
 
   
-  SmartHomeNG umziehen Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  SmartHomeNG umziehen Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/datenschutz.html b/datenschutz.html
index f2e2c29abd..29f4cbc26a 100644
--- a/datenschutz.html
+++ b/datenschutz.html
@@ -4,7 +4,7 @@
   
 
   
-  Datenschutzerklärung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Datenschutzerklärung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dev/README.html b/dev/README.html
index 3d8c99a891..1a17879678 100644
--- a/dev/README.html
+++ b/dev/README.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugin development guidelines — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugin development guidelines — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dev/sample_module/README.html b/dev/sample_module/README.html
index 720cc77f76..8f867f6eb7 100644
--- a/dev/sample_module/README.html
+++ b/dev/sample_module/README.html
@@ -4,7 +4,7 @@
   
 
   
-  Module sample — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Module sample — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dev/sample_mqttplugin/user_doc.html b/dev/sample_mqttplugin/user_doc.html
index 62c0744166..308fb0f2bf 100644
--- a/dev/sample_mqttplugin/user_doc.html
+++ b/dev/sample_mqttplugin/user_doc.html
@@ -4,7 +4,7 @@
   
 
   
-  Mqtt-Pluginname (in Kleinbuchstaben) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Mqtt-Pluginname (in Kleinbuchstaben) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dev/sample_plugin/user_doc.html b/dev/sample_plugin/user_doc.html
index 1cbe41b659..72bb28c7a9 100644
--- a/dev/sample_plugin/user_doc.html
+++ b/dev/sample_plugin/user_doc.html
@@ -4,7 +4,7 @@
   
 
   
-  Pluginname (in Kleinbuchstaben) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Pluginname (in Kleinbuchstaben) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dev/sample_smartdevice_plugin/user_doc.html b/dev/sample_smartdevice_plugin/user_doc.html
index f6af01c3a7..856e0cd047 100644
--- a/dev/sample_smartdevice_plugin/user_doc.html
+++ b/dev/sample_smartdevice_plugin/user_doc.html
@@ -4,7 +4,7 @@
   
 
   
-  Sample Plugin <- hier den Namen des Plugins einsetzen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Sample Plugin <- hier den Namen des Plugins einsetzen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dev/sample_smartdevice_standalone_plugin/user_doc.html b/dev/sample_smartdevice_standalone_plugin/user_doc.html
index f6af01c3a7..856e0cd047 100644
--- a/dev/sample_smartdevice_standalone_plugin/user_doc.html
+++ b/dev/sample_smartdevice_standalone_plugin/user_doc.html
@@ -4,7 +4,7 @@
   
 
   
-  Sample Plugin <- hier den Namen des Plugins einsetzen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Sample Plugin <- hier den Namen des Plugins einsetzen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/dummy_for_readmes.html b/dummy_for_readmes.html
index 7a78e7eec1..8b7e3a8743 100644
--- a/dummy_for_readmes.html
+++ b/dummy_for_readmes.html
@@ -4,7 +4,7 @@
   
 
   
-  <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/einleitung.html b/einleitung.html
index f75685f104..18aa374f73 100644
--- a/einleitung.html
+++ b/einleitung.html
@@ -4,7 +4,7 @@
   
 
   
-  Einleitung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Einleitung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/build_doc.html b/entwicklung/build_doc.html
index 7a454b7d8a..30a9a2e382 100644
--- a/entwicklung/build_doc.html
+++ b/entwicklung/build_doc.html
@@ -4,7 +4,7 @@
   
 
   
-  Bau der Dokumentation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Bau der Dokumentation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/core/core.html b/entwicklung/core/core.html
index 1ae355dc2b..3e447b8df1 100644
--- a/entwicklung/core/core.html
+++ b/entwicklung/core/core.html
@@ -4,7 +4,7 @@
   
 
   
-  Entwicklung des Core — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Entwicklung des Core — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/core/core_libraries.html b/entwicklung/core/core_libraries.html
index 2813a661de..28c72702ae 100644
--- a/entwicklung/core/core_libraries.html
+++ b/entwicklung/core/core_libraries.html
@@ -4,7 +4,7 @@
   
 
   
-  Programm Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Programm Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/core/core_shng.html b/entwicklung/core/core_shng.html
index 75347524f6..eb6b206bd7 100644
--- a/entwicklung/core/core_shng.html
+++ b/entwicklung/core/core_shng.html
@@ -4,7 +4,7 @@
   
 
   
-  Der Core von SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Der Core von SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/entwicklung.html b/entwicklung/entwicklung.html
index 0353a3f79d..7262194297 100644
--- a/entwicklung/entwicklung.html
+++ b/entwicklung/entwicklung.html
@@ -4,7 +4,7 @@
   
 
   
-  Entwicklung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Entwicklung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/logiken/logiken.html b/entwicklung/logiken/logiken.html
index 8089fc2106..42efb1fb56 100644
--- a/entwicklung/logiken/logiken.html
+++ b/entwicklung/logiken/logiken.html
@@ -4,7 +4,7 @@
   
 
   
-  Logiken under construction — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Logiken under construction — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/module/module.html b/entwicklung/module/module.html
index 2afa4f7965..a6000e6dce 100644
--- a/entwicklung/module/module.html
+++ b/entwicklung/module/module.html
@@ -4,7 +4,7 @@
   
 
   
-  Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/module/module_http.html b/entwicklung/module/module_http.html
index 4161b8db54..dbdee608ee 100644
--- a/entwicklung/module/module_http.html
+++ b/entwicklung/module/module_http.html
@@ -4,7 +4,7 @@
   
 
   
-  Module http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Module http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/module/module_mqtt.html b/entwicklung/module/module_mqtt.html
index c885025540..3ccc15e7b7 100644
--- a/entwicklung/module/module_mqtt.html
+++ b/entwicklung/module/module_mqtt.html
@@ -4,7 +4,7 @@
   
 
   
-  Module mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Module mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/async_in_plugins.html b/entwicklung/plugins/async_in_plugins.html
index 951a65d832..39e08659bf 100644
--- a/entwicklung/plugins/async_in_plugins.html
+++ b/entwicklung/plugins/async_in_plugins.html
@@ -4,7 +4,7 @@
   
 
   
-  AsyncIO in Plugins neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  AsyncIO in Plugins neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/entwicklungsrichtlinien.html b/entwicklung/plugins/entwicklungsrichtlinien.html
index 4c015cf8e8..024017188b 100644
--- a/entwicklung/plugins/entwicklungsrichtlinien.html
+++ b/entwicklung/plugins/entwicklungsrichtlinien.html
@@ -4,7 +4,7 @@
   
 
   
-  Entwicklungsrichtlinien under construction — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Entwicklungsrichtlinien under construction — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/kurzanleitung.html b/entwicklung/plugins/kurzanleitung/kurzanleitung.html
index a2d4e1b97b..0b435d75ad 100644
--- a/entwicklung/plugins/kurzanleitung/kurzanleitung.html
+++ b/entwicklung/plugins/kurzanleitung/kurzanleitung.html
@@ -4,7 +4,7 @@
   
 
   
-  Kurzanleitung update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Kurzanleitung update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/libraries_plugins.html b/entwicklung/plugins/kurzanleitung/libraries_plugins.html
index 161b3cefc7..59d62c2779 100644
--- a/entwicklung/plugins/kurzanleitung/libraries_plugins.html
+++ b/entwicklung/plugins/kurzanleitung/libraries_plugins.html
@@ -4,7 +4,7 @@
   
 
   
-  Programm Module zur Nutzung in Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Programm Module zur Nutzung in Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/multilanguage.html b/entwicklung/plugins/kurzanleitung/multilanguage.html
index 4243719ac7..53840d6e4e 100644
--- a/entwicklung/plugins/kurzanleitung/multilanguage.html
+++ b/entwicklung/plugins/kurzanleitung/multilanguage.html
@@ -4,7 +4,7 @@
   
 
   
-  Unterstützung mehrerer Sprachen Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Unterstützung mehrerer Sprachen Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/plugin_documentation_files.html b/entwicklung/plugins/kurzanleitung/plugin_documentation_files.html
index 4831fd97a3..37b115d8b8 100644
--- a/entwicklung/plugins/kurzanleitung/plugin_documentation_files.html
+++ b/entwicklung/plugins/kurzanleitung/plugin_documentation_files.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugin-Dokumentation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugin-Dokumentation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/plugin_in5minutes.html b/entwicklung/plugins/kurzanleitung/plugin_in5minutes.html
index 50e87243a2..28f52c2720 100644
--- a/entwicklung/plugins/kurzanleitung/plugin_in5minutes.html
+++ b/entwicklung/plugins/kurzanleitung/plugin_in5minutes.html
@@ -4,7 +4,7 @@
   
 
   
-  In wenigen Minuten zum eigenen Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  In wenigen Minuten zum eigenen Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/plugin_metadata.html b/entwicklung/plugins/kurzanleitung/plugin_metadata.html
index 009c4d7f65..b248cfc904 100644
--- a/entwicklung/plugins/kurzanleitung/plugin_metadata.html
+++ b/entwicklung/plugins/kurzanleitung/plugin_metadata.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugin-Metadata update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugin-Metadata update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/samplemqttplugin.html b/entwicklung/plugins/kurzanleitung/samplemqttplugin.html
index eba4df2330..46787309a1 100644
--- a/entwicklung/plugins/kurzanleitung/samplemqttplugin.html
+++ b/entwicklung/plugins/kurzanleitung/samplemqttplugin.html
@@ -4,7 +4,7 @@
   
 
   
-  Beispielplugin mit MQTT-Unterstützung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Beispielplugin mit MQTT-Unterstützung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/sampleplugin.html b/entwicklung/plugins/kurzanleitung/sampleplugin.html
index 2a82273fb6..21925c6465 100644
--- a/entwicklung/plugins/kurzanleitung/sampleplugin.html
+++ b/entwicklung/plugins/kurzanleitung/sampleplugin.html
@@ -4,7 +4,7 @@
   
 
   
-  Beispielplugin update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Beispielplugin update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface.html b/entwicklung/plugins/kurzanleitung/webinterface.html
index f870266ef0..79e4abb044 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface.html
@@ -4,7 +4,7 @@
   
 
   
-  Webinterface update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Webinterface update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components.html b/entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components.html
index 6d95cc8df7..83201664ef 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components.html
@@ -4,7 +4,7 @@
   
 
   
-  Komponenten von Drittanbietern für Webinterfaces — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Komponenten von Drittanbietern für Webinterfaces — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface_automatic_update.html b/entwicklung/plugins/kurzanleitung/webinterface_automatic_update.html
index 62ff242b39..073b76d916 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface_automatic_update.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface_automatic_update.html
@@ -4,7 +4,7 @@
   
 
   
-  Automatische Updates der Daten im Webinterface new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Automatische Updates der Daten im Webinterface new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface_extend_plugin.html b/entwicklung/plugins/kurzanleitung/webinterface_extend_plugin.html
index aa5d02a20f..074b31a0b7 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface_extend_plugin.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface_extend_plugin.html
@@ -4,7 +4,7 @@
   
 
   
-  Erweitern eines bestehenden Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Erweitern eines bestehenden Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface.html b/entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface.html
index 372f418474..99687008b1 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface.html
@@ -4,7 +4,7 @@
   
 
   
-  Das Webinterface mit Inhalt füllen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Das Webinterface mit Inhalt füllen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface_multilanguage.html b/entwicklung/plugins/kurzanleitung/webinterface_multilanguage.html
index 7aaca7214d..98d4046e37 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface_multilanguage.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface_multilanguage.html
@@ -4,7 +4,7 @@
   
 
   
-  Unterstützung mehrerer Sprachen new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Unterstützung mehrerer Sprachen new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction.html b/entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction.html
index 08c2ee3cb1..74cca7c7b9 100644
--- a/entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction.html
+++ b/entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction.html
@@ -4,7 +4,7 @@
   
 
   
-  Interaktion des Webinterface mit dem Plugin new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Interaktion des Webinterface mit dem Plugin new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/mqttplugin.html b/entwicklung/plugins/mqttplugin.html
index b3faaee1be..2aaaf93439 100644
--- a/entwicklung/plugins/mqttplugin.html
+++ b/entwicklung/plugins/mqttplugin.html
@@ -4,7 +4,7 @@
   
 
   
-  Class MqttPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Class MqttPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/plugin_checker.html b/entwicklung/plugins/plugin_checker.html
index fee96cf06b..231e0a8f8e 100644
--- a/entwicklung/plugins/plugin_checker.html
+++ b/entwicklung/plugins/plugin_checker.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugin-Checker neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugin-Checker neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/plugins.html b/entwicklung/plugins/plugins.html
index 5b4844fb1b..f3dcc158de 100644
--- a/entwicklung/plugins/plugins.html
+++ b/entwicklung/plugins/plugins.html
@@ -4,7 +4,7 @@
   
 
   
-  Plugins Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Plugins Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/smartplugin.html b/entwicklung/plugins/smartplugin.html
index c118100936..efc4d29c7d 100644
--- a/entwicklung/plugins/smartplugin.html
+++ b/entwicklung/plugins/smartplugin.html
@@ -4,7 +4,7 @@
   
 
   
-  Class SmartPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Class SmartPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/plugins/vorueberlegungen.html b/entwicklung/plugins/vorueberlegungen.html
index ee0fa17c8f..ea5786b0c4 100644
--- a/entwicklung/plugins/vorueberlegungen.html
+++ b/entwicklung/plugins/vorueberlegungen.html
@@ -4,7 +4,7 @@
   
 
   
-  Vorüberlegungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Vorüberlegungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/entwicklung/virtual_env.html b/entwicklung/virtual_env.html
index 22d1188247..f1d53e45cc 100644
--- a/entwicklung/virtual_env.html
+++ b/entwicklung/virtual_env.html
@@ -4,7 +4,7 @@
   
 
   
-  Virtuelle Umgebungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Virtuelle Umgebungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/faq.html b/faq.html
index dacfbaf568..f4b6a1edaf 100644
--- a/faq.html
+++ b/faq.html
@@ -4,7 +4,7 @@
   
 
   
-  FAQ - Häufig gestellte Fragen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  FAQ - Häufig gestellte Fragen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/fehlersuche.html b/fehlersuche.html
index 3814e86dfa..2e465043fe 100644
--- a/fehlersuche.html
+++ b/fehlersuche.html
@@ -4,7 +4,7 @@
   
 
   
-  Fehlersuche — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Fehlersuche — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/fehlersuche_checkliste.html b/fehlersuche_checkliste.html
index c5951ca3f4..10414d28f9 100644
--- a/fehlersuche_checkliste.html
+++ b/fehlersuche_checkliste.html
@@ -4,7 +4,7 @@
   
 
   
-  Checkliste für die Fehlersuche — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Checkliste für die Fehlersuche — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/gedankenstuetzen/admonition_arten.html b/gedankenstuetzen/admonition_arten.html
index 9db40f427b..270051c9f4 100644
--- a/gedankenstuetzen/admonition_arten.html
+++ b/gedankenstuetzen/admonition_arten.html
@@ -4,7 +4,7 @@
   
 
   
-  Admonition Arten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Admonition Arten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/gedankenstuetzen/knxd_compilieren.html b/gedankenstuetzen/knxd_compilieren.html
index ae8574b4c5..4852896999 100644
--- a/gedankenstuetzen/knxd_compilieren.html
+++ b/gedankenstuetzen/knxd_compilieren.html
@@ -4,7 +4,7 @@
   
 
   
-  Alternativ knxd compilieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Alternativ knxd compilieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/gedankenstuetzen/tabs.html b/gedankenstuetzen/tabs.html
index fdab5dcaa6..f69e885f8b 100644
--- a/gedankenstuetzen/tabs.html
+++ b/gedankenstuetzen/tabs.html
@@ -4,7 +4,7 @@
   
 
   
-  Verwendung von Tabs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Verwendung von Tabs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/genindex.html b/genindex.html
index a869b57759..5b19bf00dd 100644
--- a/genindex.html
+++ b/genindex.html
@@ -3,7 +3,7 @@
 
   
   
-  Stichwortverzeichnis — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Stichwortverzeichnis — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/ideen_kommendes_release.html b/ideen_kommendes_release.html
index 94e6b36207..7fe79c3651 100644
--- a/ideen_kommendes_release.html
+++ b/ideen_kommendes_release.html
@@ -4,7 +4,7 @@
   
 
   
-  Ideen für das Release 1.9 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Ideen für das Release 1.9 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/impressum.html b/impressum.html
index 3bb0cbd346..d0a26d3783 100644
--- a/impressum.html
+++ b/impressum.html
@@ -4,7 +4,7 @@
   
 
   
-  Impressum — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  Impressum — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
diff --git a/index.html b/index.html
index a8b5af7733..55a66b48c0 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
   
 
   
-  SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation
+  SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation
       
       
       
@@ -5735,7 +5735,7 @@ 

DokumentationReferenz zu finden.

Diese Dokumentation reflektiert das aktuelle Release:

    -
  • Version des Core: v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f)

  • +
  • Version des Core: v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b)

  • Version der Plugins: v1.10.0.1 develop

Hilfe zu SmartHomeNG gibt es im Supportforum im KNX-User-Forum diff --git a/installation/anforderungen.html b/installation/anforderungen.html index 8970b9cf67..0bfa79a668 100644 --- a/installation/anforderungen.html +++ b/installation/anforderungen.html @@ -4,7 +4,7 @@ - Hard- u. Software Anforderungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Hard- u. Software Anforderungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/docker.html b/installation/docker.html index a039244c49..f1c010ba69 100644 --- a/installation/docker.html +++ b/installation/docker.html @@ -4,7 +4,7 @@ - Installation über Docker — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Installation über Docker — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/installation.html b/installation/installation.html index 13a9a437d5..43927d2128 100644 --- a/installation/installation.html +++ b/installation/installation.html @@ -4,7 +4,7 @@ - Installation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Installation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/01_debian.html b/installation/komplettanleitung/01_debian.html index 72ee71bb5e..09190b0c98 100644 --- a/installation/komplettanleitung/01_debian.html +++ b/installation/komplettanleitung/01_debian.html @@ -4,7 +4,7 @@ - Debian Linux installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Debian Linux installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/02_smarthomeng.html b/installation/komplettanleitung/02_smarthomeng.html index ae990105c7..44975225d9 100644 --- a/installation/komplettanleitung/02_smarthomeng.html +++ b/installation/komplettanleitung/02_smarthomeng.html @@ -4,7 +4,7 @@ - SmartHomeNG installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartHomeNG installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/03_mosquitto.html b/installation/komplettanleitung/03_mosquitto.html index 3535dace73..e564d5690d 100644 --- a/installation/komplettanleitung/03_mosquitto.html +++ b/installation/komplettanleitung/03_mosquitto.html @@ -4,7 +4,7 @@ - MQTT Broker installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + MQTT Broker installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/04_smartvisu.html b/installation/komplettanleitung/04_smartvisu.html index 12e3730741..f3901f5acb 100644 --- a/installation/komplettanleitung/04_smartvisu.html +++ b/installation/komplettanleitung/04_smartvisu.html @@ -4,7 +4,7 @@ - smartVISU installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + smartVISU installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/05_knxd.html b/installation/komplettanleitung/05_knxd.html index 3e0f6c749e..b7b566531a 100644 --- a/installation/komplettanleitung/05_knxd.html +++ b/installation/komplettanleitung/05_knxd.html @@ -4,7 +4,7 @@ - knxd installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + knxd installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/06_onewire.html b/installation/komplettanleitung/06_onewire.html index 97790f67a3..33068cd0c5 100644 --- a/installation/komplettanleitung/06_onewire.html +++ b/installation/komplettanleitung/06_onewire.html @@ -4,7 +4,7 @@ - Onewire installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Onewire installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/07_samba.html b/installation/komplettanleitung/07_samba.html index a266f52478..10d45cc802 100644 --- a/installation/komplettanleitung/07_samba.html +++ b/installation/komplettanleitung/07_samba.html @@ -4,7 +4,7 @@ - Samba installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Samba installieren — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/08_shng_daemon.html b/installation/komplettanleitung/08_shng_daemon.html index 7f0b0c1444..83876f4afc 100644 --- a/installation/komplettanleitung/08_shng_daemon.html +++ b/installation/komplettanleitung/08_shng_daemon.html @@ -4,7 +4,7 @@ - SmartHomeNG als Dienst update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartHomeNG als Dienst update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/09_esphome.html b/installation/komplettanleitung/09_esphome.html index 2c34068ba5..beca7ec456 100644 --- a/installation/komplettanleitung/09_esphome.html +++ b/installation/komplettanleitung/09_esphome.html @@ -4,7 +4,7 @@ - ESPHome Dashboard new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + ESPHome Dashboard new — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/komplettanleitung/komplettanleitung.html b/installation/komplettanleitung/komplettanleitung.html index 6c8a5871a6..b458eb92f2 100644 --- a/installation/komplettanleitung/komplettanleitung.html +++ b/installation/komplettanleitung/komplettanleitung.html @@ -4,7 +4,7 @@ - Komplettanleitung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Komplettanleitung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/installation/update_upgrade.html b/installation/update_upgrade.html index 75eb06bcec..abfd91b8a1 100644 --- a/installation/update_upgrade.html +++ b/installation/update_upgrade.html @@ -4,7 +4,7 @@ - Update von einer älteren Version — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Update von einer älteren Version — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/admin_gui/admin_gui.html b/konfiguration/admin_gui/admin_gui.html index dc4254846b..bfec428bab 100644 --- a/konfiguration/admin_gui/admin_gui.html +++ b/konfiguration/admin_gui/admin_gui.html @@ -4,7 +4,7 @@ - Konfiguration über die GUI — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration über die GUI — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/admin_gui/admin_gui_items.html b/konfiguration/admin_gui/admin_gui_items.html index 775e66f3b4..1d650ecc11 100644 --- a/konfiguration/admin_gui/admin_gui_items.html +++ b/konfiguration/admin_gui/admin_gui_items.html @@ -4,7 +4,7 @@ - Konfiguration von Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration von Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/admin_gui/admin_gui_plugins.html b/konfiguration/admin_gui/admin_gui_plugins.html index 9bddebaaad..5af0c9fc22 100644 --- a/konfiguration/admin_gui/admin_gui_plugins.html +++ b/konfiguration/admin_gui/admin_gui_plugins.html @@ -4,7 +4,7 @@ - Konfiguration von Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration von Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/admin_gui/admin_gui_system.html b/konfiguration/admin_gui/admin_gui_system.html index dc3b4b612b..ac499f9f0b 100644 --- a/konfiguration/admin_gui/admin_gui_system.html +++ b/konfiguration/admin_gui/admin_gui_system.html @@ -4,7 +4,7 @@ - Systemkonfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Systemkonfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/item_structs.html b/konfiguration/item_structs.html index 850c75fcab..41a05c690f 100644 --- a/konfiguration/item_structs.html +++ b/konfiguration/item_structs.html @@ -4,7 +4,7 @@ - structs (Item Strukturen) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + structs (Item Strukturen) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/items/initiale_itemkonfiguration.html b/konfiguration/items/initiale_itemkonfiguration.html index d10cd77e85..bcd89076d3 100644 --- a/konfiguration/items/initiale_itemkonfiguration.html +++ b/konfiguration/items/initiale_itemkonfiguration.html @@ -4,7 +4,7 @@ - Initiale Item-Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Initiale Item-Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/items/items.html b/konfiguration/items/items.html index b8ef09a677..a0f8422a66 100644 --- a/konfiguration/items/items.html +++ b/konfiguration/items/items.html @@ -4,7 +4,7 @@ - Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/items/ueberblick.html b/konfiguration/items/ueberblick.html index 9d7fe03567..5a2dfc44e9 100644 --- a/konfiguration/items/ueberblick.html +++ b/konfiguration/items/ueberblick.html @@ -4,7 +4,7 @@ - Überblick — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Überblick — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfiguration.html b/konfiguration/konfiguration.html index c9dcafad9a..f417da2af3 100644 --- a/konfiguration/konfiguration.html +++ b/konfiguration/konfiguration.html @@ -4,7 +4,7 @@ - Konfiguration Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfiguration_backup_restore.html b/konfiguration/konfiguration_backup_restore.html index 15ea3cc10a..6efa814d24 100644 --- a/konfiguration/konfiguration_backup_restore.html +++ b/konfiguration/konfiguration_backup_restore.html @@ -4,7 +4,7 @@ - Konfiguration Sichern und Wiederherstellen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration Sichern und Wiederherstellen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfiguration_ueberblick.html b/konfiguration/konfiguration_ueberblick.html index 0ba49a331a..e027f24b8f 100644 --- a/konfiguration/konfiguration_ueberblick.html +++ b/konfiguration/konfiguration_ueberblick.html @@ -4,7 +4,7 @@ - Allgemeines zur Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Allgemeines zur Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/holidays.html b/konfiguration/konfigurationsdateien/holidays.html index 4bf72eab27..7ac26f4dd5 100644 --- a/konfiguration/konfigurationsdateien/holidays.html +++ b/konfiguration/konfigurationsdateien/holidays.html @@ -4,7 +4,7 @@ - holidays.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + holidays.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/items.html b/konfiguration/konfigurationsdateien/items.html index 89e318c10d..9de8ed21c3 100644 --- a/konfiguration/konfigurationsdateien/items.html +++ b/konfiguration/konfigurationsdateien/items.html @@ -4,7 +4,7 @@ - items/*.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + items/*.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/konfigdateien.html b/konfiguration/konfigurationsdateien/konfigdateien.html index d9402d6bc8..71cd888d99 100644 --- a/konfiguration/konfigurationsdateien/konfigdateien.html +++ b/konfiguration/konfigurationsdateien/konfigdateien.html @@ -4,7 +4,7 @@ - Konfiguration über Dateien — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration über Dateien — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/logging.html b/konfiguration/konfigurationsdateien/logging.html index 9081026537..fe8f0da108 100644 --- a/konfiguration/konfigurationsdateien/logging.html +++ b/konfiguration/konfigurationsdateien/logging.html @@ -4,7 +4,7 @@ - logging.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + logging.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/logic.html b/konfiguration/konfigurationsdateien/logic.html index 632a089c43..6886d36308 100644 --- a/konfiguration/konfigurationsdateien/logic.html +++ b/konfiguration/konfigurationsdateien/logic.html @@ -4,7 +4,7 @@ - logic.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + logic.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/logics.html b/konfiguration/konfigurationsdateien/logics.html index 60d2888195..6e83d66aa9 100644 --- a/konfiguration/konfigurationsdateien/logics.html +++ b/konfiguration/konfigurationsdateien/logics.html @@ -4,7 +4,7 @@ - logics/*.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + logics/*.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/module.html b/konfiguration/konfigurationsdateien/module.html index 2e2326e2d7..bda3c9ea88 100644 --- a/konfiguration/konfigurationsdateien/module.html +++ b/konfiguration/konfigurationsdateien/module.html @@ -4,7 +4,7 @@ - module.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + module.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/plugin.html b/konfiguration/konfigurationsdateien/plugin.html index 0300d5fe6d..244c411ff3 100644 --- a/konfiguration/konfigurationsdateien/plugin.html +++ b/konfiguration/konfigurationsdateien/plugin.html @@ -4,7 +4,7 @@ - plugin.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + plugin.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/scenes.html b/konfiguration/konfigurationsdateien/scenes.html index f4e7a47f13..ef3baed237 100644 --- a/konfiguration/konfigurationsdateien/scenes.html +++ b/konfiguration/konfigurationsdateien/scenes.html @@ -4,7 +4,7 @@ - scenes/*.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + scenes/*.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/smarthome.html b/konfiguration/konfigurationsdateien/smarthome.html index d274977b35..dc1cab33dd 100644 --- a/konfiguration/konfigurationsdateien/smarthome.html +++ b/konfiguration/konfigurationsdateien/smarthome.html @@ -4,7 +4,7 @@ - smarthome.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + smarthome.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/konfigurationsdateien/struct.html b/konfiguration/konfigurationsdateien/struct.html index 3d93cb85d7..8bf448bf17 100644 --- a/konfiguration/konfigurationsdateien/struct.html +++ b/konfiguration/konfigurationsdateien/struct.html @@ -4,7 +4,7 @@ - struct.yaml und struct_*.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + struct.yaml und struct_*.yaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/logging.html b/konfiguration/logging.html index d444b51bf0..5d28c1c0f1 100644 --- a/konfiguration/logging.html +++ b/konfiguration/logging.html @@ -4,7 +4,7 @@ - Logging — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/logging_best_practices.html b/konfiguration/logging_best_practices.html index 6db2eb5fae..39bee17b10 100644 --- a/konfiguration/logging_best_practices.html +++ b/konfiguration/logging_best_practices.html @@ -4,7 +4,7 @@ - Logging - Best Practices — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging - Best Practices — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/logiken.html b/konfiguration/logiken.html index f470eb9c95..487992d955 100644 --- a/konfiguration/logiken.html +++ b/konfiguration/logiken.html @@ -4,7 +4,7 @@ - Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/module/module.html b/konfiguration/module/module.html index bfbd59bd38..fa82590623 100644 --- a/konfiguration/module/module.html +++ b/konfiguration/module/module.html @@ -4,7 +4,7 @@ - Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/module/module_admin.html b/konfiguration/module/module_admin.html index c1b6416e92..de1e81f415 100644 --- a/konfiguration/module/module_admin.html +++ b/konfiguration/module/module_admin.html @@ -4,7 +4,7 @@ - Module admin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module admin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/module/module_http.html b/konfiguration/module/module_http.html index e4b57b1bf3..d7d068219f 100644 --- a/konfiguration/module/module_http.html +++ b/konfiguration/module/module_http.html @@ -4,7 +4,7 @@ - Module http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/module/module_mqtt.html b/konfiguration/module/module_mqtt.html index fbeeebbfa1..1b4e538fdd 100644 --- a/konfiguration/module/module_mqtt.html +++ b/konfiguration/module/module_mqtt.html @@ -4,7 +4,7 @@ - Module mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/module/module_websocket.html b/konfiguration/module/module_websocket.html index ab5d5a1110..7e0362bbef 100644 --- a/konfiguration/module/module_websocket.html +++ b/konfiguration/module/module_websocket.html @@ -4,7 +4,7 @@ - Module websocket Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module websocket Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/plugins.html b/konfiguration/plugins.html index 25f77d2039..610d85927e 100644 --- a/konfiguration/plugins.html +++ b/konfiguration/plugins.html @@ -4,7 +4,7 @@ - Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/szenen.html b/konfiguration/szenen.html index ab540a05ff..6de16c01de 100644 --- a/konfiguration/szenen.html +++ b/konfiguration/szenen.html @@ -4,7 +4,7 @@ - Szenen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Szenen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/konfiguration/userfunctions.html b/konfiguration/userfunctions.html index 5129f0d142..91727e264f 100644 --- a/konfiguration/userfunctions.html +++ b/konfiguration/userfunctions.html @@ -4,7 +4,7 @@ - Userfunctions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Userfunctions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/config.html b/lib/config.html index 147024b50a..ba9fa5d225 100644 --- a/lib/config.html +++ b/lib/config.html @@ -4,7 +4,7 @@ - lib.config — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.config — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/connection.html b/lib/connection.html index e77c65d7e4..8f76df4d86 100644 --- a/lib/connection.html +++ b/lib/connection.html @@ -4,7 +4,7 @@ - lib.connection — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.connection — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/constants.html b/lib/constants.html index be93bdc56c..36be6d0a92 100644 --- a/lib/constants.html +++ b/lib/constants.html @@ -4,7 +4,7 @@ - lib.constants — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.constants — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/daemon.html b/lib/daemon.html index 7f593e5467..3deeb9f4ea 100644 --- a/lib/daemon.html +++ b/lib/daemon.html @@ -4,7 +4,7 @@ - lib.daemon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.daemon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/db.html b/lib/db.html index da4d2b96b3..076089f5df 100644 --- a/lib/db.html +++ b/lib/db.html @@ -4,7 +4,7 @@ - lib.db — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.db — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/env.html b/lib/env.html index 4a241ae199..3c3039d84a 100644 --- a/lib/env.html +++ b/lib/env.html @@ -4,7 +4,7 @@ - lib.env — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.env — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/item.html b/lib/item.html index 8adf52c71f..3f9b52c509 100644 --- a/lib/item.html +++ b/lib/item.html @@ -4,7 +4,7 @@ - Items-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Items-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/item_class_item.html b/lib/item_class_item.html index 5d4b10a565..5a1445c81c 100644 --- a/lib/item_class_item.html +++ b/lib/item_class_item.html @@ -4,7 +4,7 @@ - Class Item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class Item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/item_class_items.html b/lib/item_class_items.html index 1ab6147e31..1d5c96ed83 100644 --- a/lib/item_class_items.html +++ b/lib/item_class_items.html @@ -4,7 +4,7 @@ - Class Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/item_conversion.html b/lib/item_conversion.html index accfabe392..5981024472 100644 --- a/lib/item_conversion.html +++ b/lib/item_conversion.html @@ -4,7 +4,7 @@ - lib.item_conversion — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.item_conversion — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/log.html b/lib/log.html index 17f86bcdb2..cc00d641c1 100644 --- a/lib/log.html +++ b/lib/log.html @@ -4,7 +4,7 @@ - lib.log — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.log — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/logic.html b/lib/logic.html index 20fe2d2f5f..b66e7502f0 100644 --- a/lib/logic.html +++ b/lib/logic.html @@ -4,7 +4,7 @@ - Logics-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logics-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/logutils.html b/lib/logutils.html index b525137698..2306821c51 100644 --- a/lib/logutils.html +++ b/lib/logutils.html @@ -4,7 +4,7 @@ - lib.logutils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.logutils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/metadata.html b/lib/metadata.html index 1c1793fd4f..b934e4aae3 100644 --- a/lib/metadata.html +++ b/lib/metadata.html @@ -4,7 +4,7 @@ - lib.metadata — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.metadata — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/module.html b/lib/module.html index 3159fc5d73..9ee97aa3ca 100644 --- a/lib/module.html +++ b/lib/module.html @@ -4,7 +4,7 @@ - lib.module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/network.html b/lib/network.html index 91165b557c..7d90eff5bf 100644 --- a/lib/network.html +++ b/lib/network.html @@ -4,7 +4,7 @@ - lib.network — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.network — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/orb.html b/lib/orb.html index 7b3807bd43..7de1b141f2 100644 --- a/lib/orb.html +++ b/lib/orb.html @@ -4,7 +4,7 @@ - lib.orb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.orb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/plugin.html b/lib/plugin.html index 38662e7cd1..62a4f67420 100644 --- a/lib/plugin.html +++ b/lib/plugin.html @@ -4,7 +4,7 @@ - Plugins-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugins-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/plugin_class_plugins.html b/lib/plugin_class_plugins.html index ae542ec21c..df116c2bb4 100644 --- a/lib/plugin_class_plugins.html +++ b/lib/plugin_class_plugins.html @@ -4,7 +4,7 @@ - Class Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/plugin_class_pluginwrapper.html b/lib/plugin_class_pluginwrapper.html index d8ed9e1421..cfcc9efd3b 100644 --- a/lib/plugin_class_pluginwrapper.html +++ b/lib/plugin_class_pluginwrapper.html @@ -4,7 +4,7 @@ - Class PluginWrapper — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class PluginWrapper — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/scene.html b/lib/scene.html index dda24299c6..65de07300e 100644 --- a/lib/scene.html +++ b/lib/scene.html @@ -4,7 +4,7 @@ - lib.scene — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.scene — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/scheduler.html b/lib/scheduler.html index 9730e37314..af214c5bf9 100644 --- a/lib/scheduler.html +++ b/lib/scheduler.html @@ -4,7 +4,7 @@ - Scheduler-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Scheduler-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/shtime.html b/lib/shtime.html index 33ff8e8509..986918855f 100644 --- a/lib/shtime.html +++ b/lib/shtime.html @@ -4,7 +4,7 @@ - Shtime-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Shtime-API — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/shyaml.html b/lib/shyaml.html index 8ceacf613b..221370be6c 100644 --- a/lib/shyaml.html +++ b/lib/shyaml.html @@ -4,7 +4,7 @@ - lib.shyaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.shyaml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/tools.html b/lib/tools.html index 4ba6afa2bf..d34c34dd4e 100644 --- a/lib/tools.html +++ b/lib/tools.html @@ -4,7 +4,7 @@ - lib.tools — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.tools — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/translation.html b/lib/translation.html index 440a88e6e9..de95841163 100644 --- a/lib/translation.html +++ b/lib/translation.html @@ -4,7 +4,7 @@ - lib.translation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.translation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/lib/utils.html b/lib/utils.html index 22008e5836..2806bc4157 100644 --- a/lib/utils.html +++ b/lib/utils.html @@ -4,7 +4,7 @@ - lib.utils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lib.utils — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/logiken/logics.html b/logiken/logics.html index 9b9d081400..59be20484c 100644 --- a/logiken/logics.html +++ b/logiken/logics.html @@ -4,7 +4,7 @@ - Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/modules/admin/README.html b/modules/admin/README.html index abd89e2cc7..3231fe31e4 100644 --- a/modules/admin/README.html +++ b/modules/admin/README.html @@ -4,7 +4,7 @@ - Module admin (README) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module admin (README) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/modules/admin/websocket_admingui_requests.html b/modules/admin/websocket_admingui_requests.html index d5a25e56c1..431641d22b 100644 --- a/modules/admin/websocket_admingui_requests.html +++ b/modules/admin/websocket_admingui_requests.html @@ -4,7 +4,7 @@ - Requests von der Admin GUI an SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Requests von der Admin GUI an SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/modules/admin/websocket_shng_requests.html b/modules/admin/websocket_shng_requests.html index ff244ccbf7..1c126bc071 100644 --- a/modules/admin/websocket_shng_requests.html +++ b/modules/admin/websocket_shng_requests.html @@ -4,7 +4,7 @@ - Requests von SmartHomeNG an die smartVISU — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Requests von SmartHomeNG an die smartVISU — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/modules/http/README.html b/modules/http/README.html index 7b81e13dc9..87eaa0b076 100644 --- a/modules/http/README.html +++ b/modules/http/README.html @@ -4,7 +4,7 @@ - Module http (README) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module http (README) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/modules/mqtt/README.html b/modules/mqtt/README.html index 108fd57830..8f1c951fc1 100644 --- a/modules/mqtt/README.html +++ b/modules/mqtt/README.html @@ -4,7 +4,7 @@ - Module mqtt (README) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module mqtt (README) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/README.html b/plugins/README.html index 17291bdbf4..40901467b9 100644 --- a/plugins/README.html +++ b/plugins/README.html @@ -4,7 +4,7 @@ - SmartHomeNG Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartHomeNG Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/alexa/README.html b/plugins/alexa/README.html index 04c9194849..38023efca1 100644 --- a/plugins/alexa/README.html +++ b/plugins/alexa/README.html @@ -4,7 +4,7 @@ - Alexa — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Alexa — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/alexa/nginx.html b/plugins/alexa/nginx.html index ca0633ced1..25d935baad 100644 --- a/plugins/alexa/nginx.html +++ b/plugins/alexa/nginx.html @@ -4,7 +4,7 @@ - NGINX — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + NGINX — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/alexa4p3/README.html b/plugins/alexa4p3/README.html index 44c86f3b08..a9fa9c063c 100644 --- a/plugins/alexa4p3/README.html +++ b/plugins/alexa4p3/README.html @@ -4,7 +4,7 @@ - alexa4p3 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + alexa4p3 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/alexa4p3/user_doc.html b/plugins/alexa4p3/user_doc.html index 90d681d9a9..6ec253d624 100644 --- a/plugins/alexa4p3/user_doc.html +++ b/plugins/alexa4p3/user_doc.html @@ -4,7 +4,7 @@ - alexa4p3 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + alexa4p3 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/alexarc4shng/user_doc.html b/plugins/alexarc4shng/user_doc.html index fab8080d0d..e8b97c74c1 100644 --- a/plugins/alexarc4shng/user_doc.html +++ b/plugins/alexarc4shng/user_doc.html @@ -4,7 +4,7 @@ - alexarc4shng — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + alexarc4shng — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/apcups/user_doc.html b/plugins/apcups/user_doc.html index d62c3f4e19..f2814af00c 100644 --- a/plugins/apcups/user_doc.html +++ b/plugins/apcups/user_doc.html @@ -4,7 +4,7 @@ - apcups — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + apcups — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/appletv/user_doc.html b/plugins/appletv/user_doc.html index eb78a663ee..8fa0febe75 100644 --- a/plugins/appletv/user_doc.html +++ b/plugins/appletv/user_doc.html @@ -4,7 +4,7 @@ - appletv — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + appletv — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/artnet/user_doc.html b/plugins/artnet/user_doc.html index 824b15a02d..b33cd7663e 100644 --- a/plugins/artnet/user_doc.html +++ b/plugins/artnet/user_doc.html @@ -4,7 +4,7 @@ - artnet — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + artnet — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/asterisk/user_doc.html b/plugins/asterisk/user_doc.html index d121096631..52c0433798 100644 --- a/plugins/asterisk/user_doc.html +++ b/plugins/asterisk/user_doc.html @@ -4,7 +4,7 @@ - asterisk — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + asterisk — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/avdevice/user_doc.html b/plugins/avdevice/user_doc.html index e67e5024ee..b5b3993f15 100644 --- a/plugins/avdevice/user_doc.html +++ b/plugins/avdevice/user_doc.html @@ -4,7 +4,7 @@ - avdevice — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + avdevice — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/avm/user_doc.html b/plugins/avm/user_doc.html index a3c58db1df..e563deb9d9 100644 --- a/plugins/avm/user_doc.html +++ b/plugins/avm/user_doc.html @@ -4,7 +4,7 @@ - avm — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + avm — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/avm_smarthome/user_doc.html b/plugins/avm_smarthome/user_doc.html index eb048af9bc..d03231aee4 100644 --- a/plugins/avm_smarthome/user_doc.html +++ b/plugins/avm_smarthome/user_doc.html @@ -4,7 +4,7 @@ - avm_smarthome — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + avm_smarthome — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/blockly/user_doc.html b/plugins/blockly/user_doc.html index 41cca3b9ce..34ba31bd46 100644 --- a/plugins/blockly/user_doc.html +++ b/plugins/blockly/user_doc.html @@ -4,7 +4,7 @@ - blockly — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + blockly — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/bose_soundtouch/README.html b/plugins/bose_soundtouch/README.html index 011c94dba7..e978207592 100644 --- a/plugins/bose_soundtouch/README.html +++ b/plugins/bose_soundtouch/README.html @@ -4,7 +4,7 @@ - Bose Soundtouch Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Bose Soundtouch Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/bose_soundtouch/user_doc.html b/plugins/bose_soundtouch/user_doc.html index adb0691843..e56ad7e027 100644 --- a/plugins/bose_soundtouch/user_doc.html +++ b/plugins/bose_soundtouch/user_doc.html @@ -4,7 +4,7 @@ - bose_soundtouch — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + bose_soundtouch — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/bsblan/README.html b/plugins/bsblan/README.html index b2565893ab..18fb864108 100644 --- a/plugins/bsblan/README.html +++ b/plugins/bsblan/README.html @@ -4,7 +4,7 @@ - Plugin for BSB-Lan-Adapter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin for BSB-Lan-Adapter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/buderus/README.html b/plugins/buderus/README.html index 576005bb53..eb29dccf65 100644 --- a/plugins/buderus/README.html +++ b/plugins/buderus/README.html @@ -4,7 +4,7 @@ - Buderus Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Buderus Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/buderus/URLs.html b/plugins/buderus/URLs.html index cd809f629d..3302c25f4f 100644 --- a/plugins/buderus/URLs.html +++ b/plugins/buderus/URLs.html @@ -4,7 +4,7 @@ - REST URLs KM200 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + REST URLs KM200 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/byd_bat/user_doc.html b/plugins/byd_bat/user_doc.html index 8aa1560cfb..e3582c6e76 100644 --- a/plugins/byd_bat/user_doc.html +++ b/plugins/byd_bat/user_doc.html @@ -4,7 +4,7 @@ - byd_bat — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + byd_bat — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/casambi/user_doc.html b/plugins/casambi/user_doc.html index 1188ac19ea..ec0af2d678 100644 --- a/plugins/casambi/user_doc.html +++ b/plugins/casambi/user_doc.html @@ -4,7 +4,7 @@ - casambi — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + casambi — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/cli/README.html b/plugins/cli/README.html index 72b85a013a..e5dd08f171 100644 --- a/plugins/cli/README.html +++ b/plugins/cli/README.html @@ -4,7 +4,7 @@ - CLI — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + CLI — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/cli/user_doc.html b/plugins/cli/user_doc.html index 8425c635e1..22bec5656d 100644 --- a/plugins/cli/user_doc.html +++ b/plugins/cli/user_doc.html @@ -4,7 +4,7 @@ - cli — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + cli — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/co2meter/README.html b/plugins/co2meter/README.html index b24d4217aa..e91497ffc8 100644 --- a/plugins/co2meter/README.html +++ b/plugins/co2meter/README.html @@ -4,7 +4,7 @@ - CO2Meter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + CO2Meter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/comfoair/README.html b/plugins/comfoair/README.html index b63b00874c..e69c27fcd8 100644 --- a/plugins/comfoair/README.html +++ b/plugins/comfoair/README.html @@ -4,7 +4,7 @@ - ComfoAir — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + ComfoAir — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/darksky/user_doc.html b/plugins/darksky/user_doc.html index 506c8a0f4b..a8e7fbcae1 100644 --- a/plugins/darksky/user_doc.html +++ b/plugins/darksky/user_doc.html @@ -4,7 +4,7 @@ - darksky — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + darksky — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/dashbutton/README.html b/plugins/dashbutton/README.html index 641db25fd9..36ebfd8288 100644 --- a/plugins/dashbutton/README.html +++ b/plugins/dashbutton/README.html @@ -4,7 +4,7 @@ - Dashbutton Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Dashbutton Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/database/README.html b/plugins/database/README.html index 363e486722..d6dacb445f 100644 --- a/plugins/database/README.html +++ b/plugins/database/README.html @@ -4,7 +4,7 @@ - Database — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Database — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/database/user_doc.html b/plugins/database/user_doc.html index 63095e64c6..7db08a7daf 100644 --- a/plugins/database/user_doc.html +++ b/plugins/database/user_doc.html @@ -4,7 +4,7 @@ - database — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + database — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/datalog/user_doc.html b/plugins/datalog/user_doc.html index 7a1a9f2fd9..5a5d83486b 100644 --- a/plugins/datalog/user_doc.html +++ b/plugins/datalog/user_doc.html @@ -4,7 +4,7 @@ - datalog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + datalog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/db_addon/user_doc.html b/plugins/db_addon/user_doc.html index c14d934570..93a8340809 100644 --- a/plugins/db_addon/user_doc.html +++ b/plugins/db_addon/user_doc.html @@ -4,7 +4,7 @@ - db_addon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + db_addon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/deebot_ozmo/README.html b/plugins/deebot_ozmo/README.html index 7142aafd3a..ed7505d081 100644 --- a/plugins/deebot_ozmo/README.html +++ b/plugins/deebot_ozmo/README.html @@ -4,7 +4,7 @@ - Plugin for Deebot Ozmo 920 / 950 / 960 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin for Deebot Ozmo 920 / 950 / 960 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/denon/user_doc.html b/plugins/denon/user_doc.html index 1afca71289..466bace99c 100644 --- a/plugins/denon/user_doc.html +++ b/plugins/denon/user_doc.html @@ -4,7 +4,7 @@ - denon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + denon — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/dlms/user_doc.html b/plugins/dlms/user_doc.html index de96c6604a..1b3140ae44 100644 --- a/plugins/dlms/user_doc.html +++ b/plugins/dlms/user_doc.html @@ -4,7 +4,7 @@ - dlms — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + dlms — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/dmx/README.html b/plugins/dmx/README.html index 6f1040c004..c1baec1ba3 100644 --- a/plugins/dmx/README.html +++ b/plugins/dmx/README.html @@ -4,7 +4,7 @@ - DMX — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + DMX — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/dmx/user_doc.html b/plugins/dmx/user_doc.html index 4c663424ca..f4509ee7f3 100644 --- a/plugins/dmx/user_doc.html +++ b/plugins/dmx/user_doc.html @@ -4,7 +4,7 @@ - dmx — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + dmx — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/drexelundweiss/README.html b/plugins/drexelundweiss/README.html index 147f85576f..4a91f736dc 100644 --- a/plugins/drexelundweiss/README.html +++ b/plugins/drexelundweiss/README.html @@ -4,7 +4,7 @@ - Drexel & Weiss — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Drexel & Weiss — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/drexelundweiss/user_doc.html b/plugins/drexelundweiss/user_doc.html index 61bd41b50e..617f160eed 100644 --- a/plugins/drexelundweiss/user_doc.html +++ b/plugins/drexelundweiss/user_doc.html @@ -4,7 +4,7 @@ - drexelundweiss — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + drexelundweiss — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/ebus/user_doc.html b/plugins/ebus/user_doc.html index df4014042a..da0b4a0792 100644 --- a/plugins/ebus/user_doc.html +++ b/plugins/ebus/user_doc.html @@ -4,7 +4,7 @@ - ebus — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + ebus — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/enigma2/README.html b/plugins/enigma2/README.html index 2857ea6414..59c3cddadd 100644 --- a/plugins/enigma2/README.html +++ b/plugins/enigma2/README.html @@ -4,7 +4,7 @@ - Enigma2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Enigma2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/enocean/README.html b/plugins/enocean/README.html index 02a1fbcdd7..d33b54123b 100644 --- a/plugins/enocean/README.html +++ b/plugins/enocean/README.html @@ -4,7 +4,7 @@ - Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/enocean/user_doc.html b/plugins/enocean/user_doc.html index a1a1d96347..9c0e1230ff 100644 --- a/plugins/enocean/user_doc.html +++ b/plugins/enocean/user_doc.html @@ -4,7 +4,7 @@ - enocean — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + enocean — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/epson/user_doc.html b/plugins/epson/user_doc.html index 30cb55304e..23c5a90be4 100644 --- a/plugins/epson/user_doc.html +++ b/plugins/epson/user_doc.html @@ -4,7 +4,7 @@ - epson — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + epson — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/eta_pu/README.html b/plugins/eta_pu/README.html index 9a783a8d1f..e258cdbc53 100644 --- a/plugins/eta_pu/README.html +++ b/plugins/eta_pu/README.html @@ -4,7 +4,7 @@ - eta_pu - ETA Pellet Unit PU — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + eta_pu - ETA Pellet Unit PU — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/executor/user_doc.html b/plugins/executor/user_doc.html index 14a0b27ec1..a49e09c895 100644 --- a/plugins/executor/user_doc.html +++ b/plugins/executor/user_doc.html @@ -4,7 +4,7 @@ - executor — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + executor — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/gpio/user_doc.html b/plugins/gpio/user_doc.html index dbc3e98b24..02472f9b18 100644 --- a/plugins/gpio/user_doc.html +++ b/plugins/gpio/user_doc.html @@ -4,7 +4,7 @@ - gpio — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + gpio — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/harmony/README.html b/plugins/harmony/README.html index 96f8b4d109..57a5cd9c43 100644 --- a/plugins/harmony/README.html +++ b/plugins/harmony/README.html @@ -4,7 +4,7 @@ - Harmony Hub Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Harmony Hub Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/helios/README.html b/plugins/helios/README.html index 30e96dc280..47dfbdf707 100644 --- a/plugins/helios/README.html +++ b/plugins/helios/README.html @@ -4,7 +4,7 @@ - helios - Helios ECx00Pro / Vallox xx SE Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + helios - Helios ECx00Pro / Vallox xx SE Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/helios_tcp/user_doc.html b/plugins/helios_tcp/user_doc.html index 99616bbd10..734d191d6e 100644 --- a/plugins/helios_tcp/user_doc.html +++ b/plugins/helios_tcp/user_doc.html @@ -4,7 +4,7 @@ - helios_tcp — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + helios_tcp — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/homeconnect/README.html b/plugins/homeconnect/README.html index 06bf511f79..7eee2d10a1 100644 --- a/plugins/homeconnect/README.html +++ b/plugins/homeconnect/README.html @@ -4,7 +4,7 @@ - HomeConnect — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + HomeConnect — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/homematic/README.html b/plugins/homematic/README.html index 3cd8d78d02..9161cb34cd 100644 --- a/plugins/homematic/README.html +++ b/plugins/homematic/README.html @@ -4,7 +4,7 @@ - homematic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + homematic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/homematic/user_doc.html b/plugins/homematic/user_doc.html index eecaf06540..1bfba45f7d 100644 --- a/plugins/homematic/user_doc.html +++ b/plugins/homematic/user_doc.html @@ -4,7 +4,7 @@ - homematic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + homematic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/hue/README.html b/plugins/hue/README.html index f419d9e176..ad24ac5633 100644 --- a/plugins/hue/README.html +++ b/plugins/hue/README.html @@ -4,7 +4,7 @@ - Phillips HUE — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Phillips HUE — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/hue2/user_doc.html b/plugins/hue2/user_doc.html index 387692a3cf..8b15f38056 100644 --- a/plugins/hue2/user_doc.html +++ b/plugins/hue2/user_doc.html @@ -4,7 +4,7 @@ - hue2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + hue2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/hue3/user_doc.html b/plugins/hue3/user_doc.html index 5fdd712480..68642c843e 100644 --- a/plugins/hue3/user_doc.html +++ b/plugins/hue3/user_doc.html @@ -4,7 +4,7 @@ - hue3 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + hue3 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/husky/user_doc.html b/plugins/husky/user_doc.html index 7693fee9e1..fe554020a6 100644 --- a/plugins/husky/user_doc.html +++ b/plugins/husky/user_doc.html @@ -4,7 +4,7 @@ - husky — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + husky — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/husky2/user_doc.html b/plugins/husky2/user_doc.html index f22edeaa77..f30a5e6a65 100644 --- a/plugins/husky2/user_doc.html +++ b/plugins/husky2/user_doc.html @@ -4,7 +4,7 @@ - husky2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + husky2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/ical/README.html b/plugins/ical/README.html index b586d0a08c..1f58b5df9d 100644 --- a/plugins/ical/README.html +++ b/plugins/ical/README.html @@ -4,7 +4,7 @@ - iCal — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + iCal — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/ical/user_doc.html b/plugins/ical/user_doc.html index 95ad27f4ce..83b7ba31a3 100644 --- a/plugins/ical/user_doc.html +++ b/plugins/ical/user_doc.html @@ -4,7 +4,7 @@ - ical — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + ical — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/indego/README.html b/plugins/indego/README.html index 316c21fa45..f921a74bc7 100644 --- a/plugins/indego/README.html +++ b/plugins/indego/README.html @@ -4,7 +4,7 @@ - indego Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + indego Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/indego4shng/README.html b/plugins/indego4shng/README.html index 4b436fdf39..14cd961678 100644 --- a/plugins/indego4shng/README.html +++ b/plugins/indego4shng/README.html @@ -4,7 +4,7 @@ - Indego4shNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Indego4shNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/indego4shng/user_doc.html b/plugins/indego4shng/user_doc.html index 77b8c3c327..6fb36ed6d5 100644 --- a/plugins/indego4shng/user_doc.html +++ b/plugins/indego4shng/user_doc.html @@ -4,7 +4,7 @@ - indego4shng — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + indego4shng — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/influxdata/README.html b/plugins/influxdata/README.html index 9cd11356c6..b2689c8518 100644 --- a/plugins/influxdata/README.html +++ b/plugins/influxdata/README.html @@ -4,7 +4,7 @@ - influxdata — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + influxdata — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/influxdb/user_doc.html b/plugins/influxdb/user_doc.html index ad4f88b3f0..9c8ed85b2a 100644 --- a/plugins/influxdb/user_doc.html +++ b/plugins/influxdb/user_doc.html @@ -4,7 +4,7 @@ - influxdb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + influxdb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/influxdb2/user_doc.html b/plugins/influxdb2/user_doc.html index 8fb94744ad..a6270536c4 100644 --- a/plugins/influxdb2/user_doc.html +++ b/plugins/influxdb2/user_doc.html @@ -4,7 +4,7 @@ - influxdb2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + influxdb2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/influxdb2/user_doc/influxdb_einfuehrung.html b/plugins/influxdb2/user_doc/influxdb_einfuehrung.html index aafaf4aebd..483dc93a13 100644 --- a/plugins/influxdb2/user_doc/influxdb_einfuehrung.html +++ b/plugins/influxdb2/user_doc/influxdb_einfuehrung.html @@ -4,7 +4,7 @@ - InfluxDB Einführung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + InfluxDB Einführung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/influxdb2/user_doc/influxdb_installation.html b/plugins/influxdb2/user_doc/influxdb_installation.html index 02acd810ae..d6cdbb33c6 100644 --- a/plugins/influxdb2/user_doc/influxdb_installation.html +++ b/plugins/influxdb2/user_doc/influxdb_installation.html @@ -4,7 +4,7 @@ - InfluxDB Installation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + InfluxDB Installation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/influxdb2/user_doc/influxdb_konfiguration.html b/plugins/influxdb2/user_doc/influxdb_konfiguration.html index 330b38b22d..5db6e592ba 100644 --- a/plugins/influxdb2/user_doc/influxdb_konfiguration.html +++ b/plugins/influxdb2/user_doc/influxdb_konfiguration.html @@ -4,7 +4,7 @@ - InfluxDB Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + InfluxDB Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/intercom_2n/README.html b/plugins/intercom_2n/README.html index 41118b460f..286fe0b66f 100644 --- a/plugins/intercom_2n/README.html +++ b/plugins/intercom_2n/README.html @@ -4,7 +4,7 @@ - Intercom-2N Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Intercom-2N Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/join/user_doc.html b/plugins/join/user_doc.html index 097e887c80..86fef0acb9 100644 --- a/plugins/join/user_doc.html +++ b/plugins/join/user_doc.html @@ -4,7 +4,7 @@ - join — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + join — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/jsonread/user_doc.html b/plugins/jsonread/user_doc.html index a1a5daccb4..e49c8c04a3 100644 --- a/plugins/jsonread/user_doc.html +++ b/plugins/jsonread/user_doc.html @@ -4,7 +4,7 @@ - jsonread — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + jsonread — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/jvcproj/user_doc.html b/plugins/jvcproj/user_doc.html index 1e50b850f8..5999269d69 100644 --- a/plugins/jvcproj/user_doc.html +++ b/plugins/jvcproj/user_doc.html @@ -4,7 +4,7 @@ - jvcproj — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + jvcproj — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/kathrein/README.html b/plugins/kathrein/README.html index 7a7eddd45d..9ddbebe543 100644 --- a/plugins/kathrein/README.html +++ b/plugins/kathrein/README.html @@ -4,7 +4,7 @@ - kathrein — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + kathrein — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/knx/user_doc.html b/plugins/knx/user_doc.html index 61268cdb96..d440e87b99 100644 --- a/plugins/knx/user_doc.html +++ b/plugins/knx/user_doc.html @@ -4,7 +4,7 @@ - knx — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + knx — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/kodi/user_doc.html b/plugins/kodi/user_doc.html index 01ad4f4fcc..90190e0b3b 100644 --- a/plugins/kodi/user_doc.html +++ b/plugins/kodi/user_doc.html @@ -4,7 +4,7 @@ - kodi — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + kodi — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/kostal/README.html b/plugins/kostal/README.html index 201219f914..a74442d5d2 100644 --- a/plugins/kostal/README.html +++ b/plugins/kostal/README.html @@ -4,7 +4,7 @@ - kostal — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + kostal — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/kostalmodbus/README.html b/plugins/kostalmodbus/README.html index 4e69b37cee..09c6d33712 100644 --- a/plugins/kostalmodbus/README.html +++ b/plugins/kostalmodbus/README.html @@ -4,7 +4,7 @@ - Modbus Plugin for Kostal inverters — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Modbus Plugin for Kostal inverters — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/ksemmodbus/README.html b/plugins/ksemmodbus/README.html index 28dc7b1e82..69a47ea275 100644 --- a/plugins/ksemmodbus/README.html +++ b/plugins/ksemmodbus/README.html @@ -4,7 +4,7 @@ - Modbus Plugin for Kostal Smart Energy Meter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Modbus Plugin for Kostal Smart Energy Meter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/lirc/user_doc.html b/plugins/lirc/user_doc.html index 5a895661c2..8d8d46c732 100644 --- a/plugins/lirc/user_doc.html +++ b/plugins/lirc/user_doc.html @@ -4,7 +4,7 @@ - lirc — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lirc — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/lms/user_doc.html b/plugins/lms/user_doc.html index bfe2a304f2..6621054a9b 100644 --- a/plugins/lms/user_doc.html +++ b/plugins/lms/user_doc.html @@ -4,7 +4,7 @@ - lms — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + lms — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/logo/README.html b/plugins/logo/README.html index b4df1a57b7..224715488f 100644 --- a/plugins/logo/README.html +++ b/plugins/logo/README.html @@ -4,7 +4,7 @@ - logo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + logo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/luxtronic2/README.html b/plugins/luxtronic2/README.html index c54f59860d..1c6eec0433 100644 --- a/plugins/luxtronic2/README.html +++ b/plugins/luxtronic2/README.html @@ -4,7 +4,7 @@ - luxtronic2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + luxtronic2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mailrcv/user_doc.html b/plugins/mailrcv/user_doc.html index 6826413397..7fd85d18ff 100644 --- a/plugins/mailrcv/user_doc.html +++ b/plugins/mailrcv/user_doc.html @@ -4,7 +4,7 @@ - mailrcv — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mailrcv — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mailsend/user_doc.html b/plugins/mailsend/user_doc.html index 9b236bbed2..2a4d384526 100644 --- a/plugins/mailsend/user_doc.html +++ b/plugins/mailsend/user_doc.html @@ -4,7 +4,7 @@ - mailsend — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mailsend — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/memlog/user_doc.html b/plugins/memlog/user_doc.html index 6661083e39..c2892dc4f4 100644 --- a/plugins/memlog/user_doc.html +++ b/plugins/memlog/user_doc.html @@ -4,7 +4,7 @@ - memlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + memlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mieleathome/user_doc.html b/plugins/mieleathome/user_doc.html index 5e0c1d43a7..bd7c2e9b29 100644 --- a/plugins/mieleathome/user_doc.html +++ b/plugins/mieleathome/user_doc.html @@ -4,7 +4,7 @@ - mieleathome — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mieleathome — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/miflora/README.html b/plugins/miflora/README.html index f4268a4772..624e4c2120 100644 --- a/plugins/miflora/README.html +++ b/plugins/miflora/README.html @@ -4,7 +4,7 @@ - miflora — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + miflora — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mikrotik/user_doc.html b/plugins/mikrotik/user_doc.html index 20b0972d7e..5bfbe939f8 100644 --- a/plugins/mikrotik/user_doc.html +++ b/plugins/mikrotik/user_doc.html @@ -4,7 +4,7 @@ - mikrotik — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mikrotik — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/milight/README.html b/plugins/milight/README.html index 74e67ed28f..d6c450fa42 100644 --- a/plugins/milight/README.html +++ b/plugins/milight/README.html @@ -4,7 +4,7 @@ - milight — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + milight — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mlgw/README.html b/plugins/mlgw/README.html index e5145140a7..d94e4ce4b7 100644 --- a/plugins/mlgw/README.html +++ b/plugins/mlgw/README.html @@ -4,7 +4,7 @@ - mlgw Plugin - Bang & Olufsen Masterlink Gateway — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mlgw Plugin - Bang & Olufsen Masterlink Gateway — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/modbus_tcp/user_doc.html b/plugins/modbus_tcp/user_doc.html index 3ab43c291d..f74b1acacf 100644 --- a/plugins/modbus_tcp/user_doc.html +++ b/plugins/modbus_tcp/user_doc.html @@ -4,7 +4,7 @@ - modbus_tcp — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + modbus_tcp — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mpd/user_doc.html b/plugins/mpd/user_doc.html index 1e3e883446..57b2edf7ff 100644 --- a/plugins/mpd/user_doc.html +++ b/plugins/mpd/user_doc.html @@ -4,7 +4,7 @@ - mpd — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mpd — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mqtt/README.html b/plugins/mqtt/README.html index ee82d26791..8e493bc974 100644 --- a/plugins/mqtt/README.html +++ b/plugins/mqtt/README.html @@ -4,7 +4,7 @@ - Sample Plugin <- put the name of your plugin here — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Sample Plugin <- put the name of your plugin here — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mqtt/user_doc.html b/plugins/mqtt/user_doc.html index 54b5284ac5..fda9b83b7e 100644 --- a/plugins/mqtt/user_doc.html +++ b/plugins/mqtt/user_doc.html @@ -4,7 +4,7 @@ - mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/mvg_live/README.html b/plugins/mvg_live/README.html index 5d2adb3bd7..3f2fddc7c1 100644 --- a/plugins/mvg_live/README.html +++ b/plugins/mvg_live/README.html @@ -4,7 +4,7 @@ - mvg_live - MVG Live — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + mvg_live - MVG Live — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/neato/README.html b/plugins/neato/README.html index d8ad838b5e..d6aa164656 100644 --- a/plugins/neato/README.html +++ b/plugins/neato/README.html @@ -4,7 +4,7 @@ - Neato/Vorwerk Vacuum Robot — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Neato/Vorwerk Vacuum Robot — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/neato/user_doc.html b/plugins/neato/user_doc.html index 018e044b67..6e8981ed00 100644 --- a/plugins/neato/user_doc.html +++ b/plugins/neato/user_doc.html @@ -4,7 +4,7 @@ - neato — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + neato — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/network/user_doc.html b/plugins/network/user_doc.html index e4b6ab9af5..c8c27e1c81 100644 --- a/plugins/network/user_doc.html +++ b/plugins/network/user_doc.html @@ -4,7 +4,7 @@ - network — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + network — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/nuki/README.html b/plugins/nuki/README.html index 5d228b7b7d..c68685c02f 100644 --- a/plugins/nuki/README.html +++ b/plugins/nuki/README.html @@ -4,7 +4,7 @@ - Nuki — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Nuki — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/nut/README.html b/plugins/nut/README.html index 9824f4a639..39c696698a 100644 --- a/plugins/nut/README.html +++ b/plugins/nut/README.html @@ -4,7 +4,7 @@ - NUT - Network UPS Tools plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + NUT - Network UPS Tools plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/nut/user_doc.html b/plugins/nut/user_doc.html index dea8dff520..a6486f67d6 100644 --- a/plugins/nut/user_doc.html +++ b/plugins/nut/user_doc.html @@ -4,7 +4,7 @@ - nut — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + nut — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/odlinfo/README.html b/plugins/odlinfo/README.html index 2eb9e86da1..7521a1d571 100644 --- a/plugins/odlinfo/README.html +++ b/plugins/odlinfo/README.html @@ -4,7 +4,7 @@ - ODLInfo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + ODLInfo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/onewire/user_doc.html b/plugins/onewire/user_doc.html index 7bb5ec413f..3d2ea17ad8 100644 --- a/plugins/onewire/user_doc.html +++ b/plugins/onewire/user_doc.html @@ -4,7 +4,7 @@ - onewire — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + onewire — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/openweathermap/user_doc.html b/plugins/openweathermap/user_doc.html index 95ab04e5a3..464a7e6d22 100644 --- a/plugins/openweathermap/user_doc.html +++ b/plugins/openweathermap/user_doc.html @@ -4,7 +4,7 @@ - openweathermap — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + openweathermap — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/operationlog/user_doc.html b/plugins/operationlog/user_doc.html index 5ff68c23bc..8c9fac2a9e 100644 --- a/plugins/operationlog/user_doc.html +++ b/plugins/operationlog/user_doc.html @@ -4,7 +4,7 @@ - operationlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + operationlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/oppo/user_doc.html b/plugins/oppo/user_doc.html index 9a54734a71..f5c53c3363 100644 --- a/plugins/oppo/user_doc.html +++ b/plugins/oppo/user_doc.html @@ -4,7 +4,7 @@ - oppo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + oppo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/panasonic_ac/user_doc.html b/plugins/panasonic_ac/user_doc.html index 16289d936c..776433a465 100644 --- a/plugins/panasonic_ac/user_doc.html +++ b/plugins/panasonic_ac/user_doc.html @@ -4,7 +4,7 @@ - panasonic_ac — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + panasonic_ac — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/philips_tv/user_doc.html b/plugins/philips_tv/user_doc.html index 0e3cb40296..60c74e18c0 100644 --- a/plugins/philips_tv/user_doc.html +++ b/plugins/philips_tv/user_doc.html @@ -4,7 +4,7 @@ - philips_tv — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + philips_tv — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/pioneer/user_doc.html b/plugins/pioneer/user_doc.html index 1f23cfd6fe..7336b383e8 100644 --- a/plugins/pioneer/user_doc.html +++ b/plugins/pioneer/user_doc.html @@ -4,7 +4,7 @@ - pioneer — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + pioneer — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/piratewthr/user_doc.html b/plugins/piratewthr/user_doc.html index a89b2734a8..ae25fa2d8a 100644 --- a/plugins/piratewthr/user_doc.html +++ b/plugins/piratewthr/user_doc.html @@ -4,7 +4,7 @@ - piratewthr — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + piratewthr — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/plex/README.html b/plugins/plex/README.html index 1b5d677dfd..9bb73688f1 100644 --- a/plugins/plex/README.html +++ b/plugins/plex/README.html @@ -4,7 +4,7 @@ - plex — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + plex — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/pluggit/README.html b/plugins/pluggit/README.html index ea53517812..4f82791d9b 100644 --- a/plugins/pluggit/README.html +++ b/plugins/pluggit/README.html @@ -4,7 +4,7 @@ - pluggit — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + pluggit — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/pluggit/user_doc.html b/plugins/pluggit/user_doc.html index 016629f2a3..c2156b1f06 100644 --- a/plugins/pluggit/user_doc.html +++ b/plugins/pluggit/user_doc.html @@ -4,7 +4,7 @@ - pluggit — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + pluggit — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/prowl/user_doc.html b/plugins/prowl/user_doc.html index 19c5fed5d7..563d801e01 100644 --- a/plugins/prowl/user_doc.html +++ b/plugins/prowl/user_doc.html @@ -4,7 +4,7 @@ - prowl — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + prowl — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/pushbullet/README.html b/plugins/pushbullet/README.html index 7d6589c619..3ece374dd6 100644 --- a/plugins/pushbullet/README.html +++ b/plugins/pushbullet/README.html @@ -4,7 +4,7 @@ - Pushbullet — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Pushbullet — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/pushover/README.html b/plugins/pushover/README.html index 9137a0fb15..373dabce8f 100644 --- a/plugins/pushover/README.html +++ b/plugins/pushover/README.html @@ -4,7 +4,7 @@ - Pushover — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Pushover — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/raumfeld/README.html b/plugins/raumfeld/README.html index 79f9813c5e..ad470da238 100644 --- a/plugins/raumfeld/README.html +++ b/plugins/raumfeld/README.html @@ -4,7 +4,7 @@ - Raumfeld — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Raumfeld — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/raumfeld_ng/user_doc.html b/plugins/raumfeld_ng/user_doc.html index dcc8fbec80..13ccdc8c8f 100644 --- a/plugins/raumfeld_ng/user_doc.html +++ b/plugins/raumfeld_ng/user_doc.html @@ -4,7 +4,7 @@ - raumfeld_ng — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + raumfeld_ng — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rcs1000n/user_doc.html b/plugins/rcs1000n/user_doc.html index ef2bb220d5..13716f5652 100644 --- a/plugins/rcs1000n/user_doc.html +++ b/plugins/rcs1000n/user_doc.html @@ -4,7 +4,7 @@ - rcs1000n — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + rcs1000n — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rcswitch/README.html b/plugins/rcswitch/README.html index 1d3dc40011..f04f289466 100644 --- a/plugins/rcswitch/README.html +++ b/plugins/rcswitch/README.html @@ -4,7 +4,7 @@ - RCswitch — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + RCswitch — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/resol/user_doc.html b/plugins/resol/user_doc.html index 9f4d7054cb..539c77d2e0 100644 --- a/plugins/resol/user_doc.html +++ b/plugins/resol/user_doc.html @@ -4,7 +4,7 @@ - resol — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + resol — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/robonect/README.html b/plugins/robonect/README.html index 7638fd1f7c..7122b4b2fb 100644 --- a/plugins/robonect/README.html +++ b/plugins/robonect/README.html @@ -4,7 +4,7 @@ - Robonect Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Robonect Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/roomba/README.html b/plugins/roomba/README.html index be12903606..3b780b055e 100644 --- a/plugins/roomba/README.html +++ b/plugins/roomba/README.html @@ -4,7 +4,7 @@ - Roomba — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Roomba — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/roomba_980/README.html b/plugins/roomba_980/README.html index 5cc6dd1775..79334d49f7 100644 --- a/plugins/roomba_980/README.html +++ b/plugins/roomba_980/README.html @@ -4,7 +4,7 @@ - roomba_980 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + roomba_980 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/roombapysh/README.html b/plugins/roombapysh/README.html index a1994e8e91..6d078413a8 100644 --- a/plugins/roombapysh/README.html +++ b/plugins/roombapysh/README.html @@ -4,7 +4,7 @@ - roombapysh — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + roombapysh — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/roombapysh/user_doc.html b/plugins/roombapysh/user_doc.html index 7a5e39203c..164fe6cf6b 100644 --- a/plugins/roombapysh/user_doc.html +++ b/plugins/roombapysh/user_doc.html @@ -4,7 +4,7 @@ - Roomba für SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Roomba für SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rpi1wire/user_doc.html b/plugins/rpi1wire/user_doc.html index 2b939091c7..5874e44591 100644 --- a/plugins/rpi1wire/user_doc.html +++ b/plugins/rpi1wire/user_doc.html @@ -4,7 +4,7 @@ - rpi1wire — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + rpi1wire — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rpi_info/user_doc.html b/plugins/rpi_info/user_doc.html index 942daa0343..1ac3750433 100644 --- a/plugins/rpi_info/user_doc.html +++ b/plugins/rpi_info/user_doc.html @@ -4,7 +4,7 @@ - rpi_info — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + rpi_info — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rrd/user_doc.html b/plugins/rrd/user_doc.html index 95ccaa6829..20d88dadf2 100644 --- a/plugins/rrd/user_doc.html +++ b/plugins/rrd/user_doc.html @@ -4,7 +4,7 @@ - rrd — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + rrd — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rtr/README.html b/plugins/rtr/README.html index 813a26fb53..f86114f495 100644 --- a/plugins/rtr/README.html +++ b/plugins/rtr/README.html @@ -4,7 +4,7 @@ - RTR plug-in — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + RTR plug-in — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/rtr2/user_doc.html b/plugins/rtr2/user_doc.html index ef9b2e45fa..733b4bf7eb 100644 --- a/plugins/rtr2/user_doc.html +++ b/plugins/rtr2/user_doc.html @@ -4,7 +4,7 @@ - rtr2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + rtr2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/russound/README.html b/plugins/russound/README.html index 76bf1dd659..96df686349 100644 --- a/plugins/russound/README.html +++ b/plugins/russound/README.html @@ -4,7 +4,7 @@ - Russound — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Russound — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/shelly/user_doc.html b/plugins/shelly/user_doc.html index 6ef8ef3cea..77e22b5da5 100644 --- a/plugins/shelly/user_doc.html +++ b/plugins/shelly/user_doc.html @@ -4,7 +4,7 @@ - shelly — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + shelly — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/shelly/user_doc/device_installation.html b/plugins/shelly/user_doc/device_installation.html index 8d01059254..67bbe74ce7 100644 --- a/plugins/shelly/user_doc/device_installation.html +++ b/plugins/shelly/user_doc/device_installation.html @@ -4,7 +4,7 @@ - Shelly Device in Betrieb nehmen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Shelly Device in Betrieb nehmen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/shelly/user_doc/plugin_configuration.html b/plugins/shelly/user_doc/plugin_configuration.html index 761d7d5f33..2752c3974c 100644 --- a/plugins/shelly/user_doc/plugin_configuration.html +++ b/plugins/shelly/user_doc/plugin_configuration.html @@ -4,7 +4,7 @@ - Konfiguration des Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration des Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/simulation/README.html b/plugins/simulation/README.html index 72b775eb65..44561a093f 100644 --- a/plugins/simulation/README.html +++ b/plugins/simulation/README.html @@ -4,7 +4,7 @@ - Simulation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Simulation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/simulation/user_doc.html b/plugins/simulation/user_doc.html index 451a0f0a8b..c22c5685be 100644 --- a/plugins/simulation/user_doc.html +++ b/plugins/simulation/user_doc.html @@ -4,7 +4,7 @@ - simulation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + simulation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/slack/README.html b/plugins/slack/README.html index 53847025d9..48d91d6494 100644 --- a/plugins/slack/README.html +++ b/plugins/slack/README.html @@ -4,7 +4,7 @@ - smarthome-slack — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + smarthome-slack — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sma/README.html b/plugins/sma/README.html index 7549878470..13173c705e 100644 --- a/plugins/sma/README.html +++ b/plugins/sma/README.html @@ -4,7 +4,7 @@ - SMA — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SMA — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sma_em/README.html b/plugins/sma_em/README.html index 8aafe06eb3..a765500a92 100644 --- a/plugins/sma_em/README.html +++ b/plugins/sma_em/README.html @@ -4,7 +4,7 @@ - SMA-EM Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SMA-EM Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sma_mb/README.html b/plugins/sma_mb/README.html index a79fe58858..475416f4f8 100644 --- a/plugins/sma_mb/README.html +++ b/plugins/sma_mb/README.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sma_mb/user_doc.html b/plugins/sma_mb/user_doc.html index 48d86d41ef..65feed1b4c 100644 --- a/plugins/sma_mb/user_doc.html +++ b/plugins/sma_mb/user_doc.html @@ -4,7 +4,7 @@ - sma_mb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + sma_mb — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/smarttv/README.html b/plugins/smarttv/README.html index cd988623aa..6bdc9ffb12 100644 --- a/plugins/smarttv/README.html +++ b/plugins/smarttv/README.html @@ -4,7 +4,7 @@ - SmartTV — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartTV — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/smartvisu/user_doc.html b/plugins/smartvisu/user_doc.html index c6987e6b56..1835e63f9e 100644 --- a/plugins/smartvisu/user_doc.html +++ b/plugins/smartvisu/user_doc.html @@ -4,7 +4,7 @@ - smartvisu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + smartvisu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/smartvisu/user_doc/websocket_shng_requests.html b/plugins/smartvisu/user_doc/websocket_shng_requests.html index c2758445c7..09d8d51203 100644 --- a/plugins/smartvisu/user_doc/websocket_shng_requests.html +++ b/plugins/smartvisu/user_doc/websocket_shng_requests.html @@ -4,7 +4,7 @@ - Requests von SmartHomeNG an die smartVISU — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Requests von SmartHomeNG an die smartVISU — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/smartvisu/user_doc/websocket_visu_requests.html b/plugins/smartvisu/user_doc/websocket_visu_requests.html index 50428967e2..4527960b84 100644 --- a/plugins/smartvisu/user_doc/websocket_visu_requests.html +++ b/plugins/smartvisu/user_doc/websocket_visu_requests.html @@ -4,7 +4,7 @@ - Requests von der smartVISU an SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Requests von der smartVISU an SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sml/README.html b/plugins/sml/README.html index 426eaf7ee2..8619f00d6f 100644 --- a/plugins/sml/README.html +++ b/plugins/sml/README.html @@ -4,7 +4,7 @@ - Sml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Sml — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sml2/user_doc.html b/plugins/sml2/user_doc.html index 78332fd274..a21260de98 100644 --- a/plugins/sml2/user_doc.html +++ b/plugins/sml2/user_doc.html @@ -4,7 +4,7 @@ - sml2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + sml2 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/smlx/user_doc.html b/plugins/smlx/user_doc.html index c07276766b..8f7f4d235d 100644 --- a/plugins/smlx/user_doc.html +++ b/plugins/smlx/user_doc.html @@ -4,7 +4,7 @@ - smlx — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + smlx — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/snap7_logo/README.html b/plugins/snap7_logo/README.html index 08d74e601b..68e6f5b010 100644 --- a/plugins/snap7_logo/README.html +++ b/plugins/snap7_logo/README.html @@ -4,7 +4,7 @@ - snap7_logo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + snap7_logo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/snap7_logo/user_doc.html b/plugins/snap7_logo/user_doc.html index f6be1093d1..772b5065e5 100644 --- a/plugins/snap7_logo/user_doc.html +++ b/plugins/snap7_logo/user_doc.html @@ -4,7 +4,7 @@ - snap7_logo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + snap7_logo — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/snmp/user_doc.html b/plugins/snmp/user_doc.html index eb45ce6d3e..0794885110 100644 --- a/plugins/snmp/user_doc.html +++ b/plugins/snmp/user_doc.html @@ -4,7 +4,7 @@ - snmp — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + snmp — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/solarforecast/user_doc.html b/plugins/solarforecast/user_doc.html index 5532878921..beeee735a9 100644 --- a/plugins/solarforecast/user_doc.html +++ b/plugins/solarforecast/user_doc.html @@ -4,7 +4,7 @@ - solarforecast — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + solarforecast — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/solarlog/README.html b/plugins/solarlog/README.html index 681e536350..25b56f3492 100644 --- a/plugins/solarlog/README.html +++ b/plugins/solarlog/README.html @@ -4,7 +4,7 @@ - Solarlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Solarlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/solarlog/user_doc.html b/plugins/solarlog/user_doc.html index 42d080fd07..9f2a87b6f5 100644 --- a/plugins/solarlog/user_doc.html +++ b/plugins/solarlog/user_doc.html @@ -4,7 +4,7 @@ - solarlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + solarlog — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sonos/user_doc.html b/plugins/sonos/user_doc.html index 5f8071c30c..353883ace5 100644 --- a/plugins/sonos/user_doc.html +++ b/plugins/sonos/user_doc.html @@ -4,7 +4,7 @@ - sonos — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + sonos — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/speech/README.html b/plugins/speech/README.html index d678deb648..0181304696 100644 --- a/plugins/speech/README.html +++ b/plugins/speech/README.html @@ -4,7 +4,7 @@ - Speech — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Speech — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/speech/user_doc.html b/plugins/speech/user_doc.html index b647634692..28a5e506c9 100644 --- a/plugins/speech/user_doc.html +++ b/plugins/speech/user_doc.html @@ -4,7 +4,7 @@ - speech — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + speech — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/sqlite_visu2_8/README.html b/plugins/sqlite_visu2_8/README.html index cea4a5cc37..8dffee1db3 100644 --- a/plugins/sqlite_visu2_8/README.html +++ b/plugins/sqlite_visu2_8/README.html @@ -4,7 +4,7 @@ - SQLite (for SmartVisu >= 2.8) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SQLite (for SmartVisu >= 2.8) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/squeezebox/README.html b/plugins/squeezebox/README.html index 88ae61298a..772070ae03 100644 --- a/plugins/squeezebox/README.html +++ b/plugins/squeezebox/README.html @@ -4,7 +4,7 @@ - Squeezebox — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Squeezebox — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/squeezebox/user_doc.html b/plugins/squeezebox/user_doc.html index d9e83f571b..3126a289fb 100644 --- a/plugins/squeezebox/user_doc.html +++ b/plugins/squeezebox/user_doc.html @@ -4,7 +4,7 @@ - squeezebox — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + squeezebox — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc.html b/plugins/stateengine/user_doc.html index 23e2b095e0..fc25359151 100644 --- a/plugins/stateengine/user_doc.html +++ b/plugins/stateengine/user_doc.html @@ -4,7 +4,7 @@ - stateengine — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + stateengine — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/01_allgemein.html b/plugins/stateengine/user_doc/01_allgemein.html index d255827965..c78ebb20c1 100644 --- a/plugins/stateengine/user_doc/01_allgemein.html +++ b/plugins/stateengine/user_doc/01_allgemein.html @@ -4,7 +4,7 @@ - Allgemein — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Allgemein — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/02_konfiguration.html b/plugins/stateengine/user_doc/02_konfiguration.html index cf49f81262..ad70616a20 100644 --- a/plugins/stateengine/user_doc/02_konfiguration.html +++ b/plugins/stateengine/user_doc/02_konfiguration.html @@ -4,7 +4,7 @@ - Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/03_regelwerk.html b/plugins/stateengine/user_doc/03_regelwerk.html index 262c4aeae9..062bafbf45 100644 --- a/plugins/stateengine/user_doc/03_regelwerk.html +++ b/plugins/stateengine/user_doc/03_regelwerk.html @@ -4,7 +4,7 @@ - Regelwerk-Item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Regelwerk-Item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/04_zustand.html b/plugins/stateengine/user_doc/04_zustand.html index 29f4534ef5..aebd28142c 100644 --- a/plugins/stateengine/user_doc/04_zustand.html +++ b/plugins/stateengine/user_doc/04_zustand.html @@ -4,7 +4,7 @@ - Zustand-Item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Zustand-Item — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/05_bedingungen.html b/plugins/stateengine/user_doc/05_bedingungen.html index dc29c8a61b..982d16ea9d 100644 --- a/plugins/stateengine/user_doc/05_bedingungen.html +++ b/plugins/stateengine/user_doc/05_bedingungen.html @@ -4,7 +4,7 @@ - Bedingungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Bedingungen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/06_aktionen.html b/plugins/stateengine/user_doc/06_aktionen.html index 0b3563a407..0c26777599 100644 --- a/plugins/stateengine/user_doc/06_aktionen.html +++ b/plugins/stateengine/user_doc/06_aktionen.html @@ -4,7 +4,7 @@ - Aktionen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Aktionen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/07_zeitpunkt.html b/plugins/stateengine/user_doc/07_zeitpunkt.html index f3833456c0..e53da66c4b 100644 --- a/plugins/stateengine/user_doc/07_zeitpunkt.html +++ b/plugins/stateengine/user_doc/07_zeitpunkt.html @@ -4,7 +4,7 @@ - Ausführungszeitpunkt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Ausführungszeitpunkt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/08_beispiel.html b/plugins/stateengine/user_doc/08_beispiel.html index b783834dcc..28e44e4c56 100644 --- a/plugins/stateengine/user_doc/08_beispiel.html +++ b/plugins/stateengine/user_doc/08_beispiel.html @@ -4,7 +4,7 @@ - Beispiel — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Beispiel — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/09_vorlagen.html b/plugins/stateengine/user_doc/09_vorlagen.html index 13df943caf..d67b112e51 100644 --- a/plugins/stateengine/user_doc/09_vorlagen.html +++ b/plugins/stateengine/user_doc/09_vorlagen.html @@ -4,7 +4,7 @@ - Zustand-Templates — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Zustand-Templates — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/10_funktionen_variablen.html b/plugins/stateengine/user_doc/10_funktionen_variablen.html index bd482597b8..447639c342 100644 --- a/plugins/stateengine/user_doc/10_funktionen_variablen.html +++ b/plugins/stateengine/user_doc/10_funktionen_variablen.html @@ -4,7 +4,7 @@ - Funktionen und Variablen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Funktionen und Variablen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/11_sonderzustaende.html b/plugins/stateengine/user_doc/11_sonderzustaende.html index fe108706a0..d4df9f0860 100644 --- a/plugins/stateengine/user_doc/11_sonderzustaende.html +++ b/plugins/stateengine/user_doc/11_sonderzustaende.html @@ -4,7 +4,7 @@ - Besondere Zustände — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Besondere Zustände — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/12_aktioneneinzeln.html b/plugins/stateengine/user_doc/12_aktioneneinzeln.html index 00a33927c2..12634357aa 100644 --- a/plugins/stateengine/user_doc/12_aktioneneinzeln.html +++ b/plugins/stateengine/user_doc/12_aktioneneinzeln.html @@ -4,7 +4,7 @@ - Aktionen - einzeln — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Aktionen - einzeln — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/stateengine/user_doc/13_sonstiges.html b/plugins/stateengine/user_doc/13_sonstiges.html index 2c59367397..671c9fa0e3 100644 --- a/plugins/stateengine/user_doc/13_sonstiges.html +++ b/plugins/stateengine/user_doc/13_sonstiges.html @@ -4,7 +4,7 @@ - Sonstiges — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Sonstiges — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/systemair/README.html b/plugins/systemair/README.html index ff35387da6..92f8756047 100644 --- a/plugins/systemair/README.html +++ b/plugins/systemair/README.html @@ -4,7 +4,7 @@ - Systemair — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Systemair — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/tankerkoenig/README.html b/plugins/tankerkoenig/README.html index 11fad5d3cd..1f49853943 100644 --- a/plugins/tankerkoenig/README.html +++ b/plugins/tankerkoenig/README.html @@ -4,7 +4,7 @@ - TankerKoenig — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + TankerKoenig — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/tankerkoenig/user_doc.html b/plugins/tankerkoenig/user_doc.html index 4dba079484..f1cf2dcf1c 100644 --- a/plugins/tankerkoenig/user_doc.html +++ b/plugins/tankerkoenig/user_doc.html @@ -4,7 +4,7 @@ - tankerkoenig — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + tankerkoenig — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/tasmota/user_doc.html b/plugins/tasmota/user_doc.html index dd9bfa9fbd..620ef6428c 100644 --- a/plugins/tasmota/user_doc.html +++ b/plugins/tasmota/user_doc.html @@ -4,7 +4,7 @@ - tasmota — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + tasmota — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/telegram/user_doc.html b/plugins/telegram/user_doc.html index 4d1e9c4f9a..05a691c2e2 100644 --- a/plugins/telegram/user_doc.html +++ b/plugins/telegram/user_doc.html @@ -4,7 +4,7 @@ - telegram — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + telegram — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/text_display/README.html b/plugins/text_display/README.html index 5a62cbde90..a7a1ce5abc 100644 --- a/plugins/text_display/README.html +++ b/plugins/text_display/README.html @@ -4,7 +4,7 @@ - text_display — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + text_display — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/text_display/user_doc.html b/plugins/text_display/user_doc.html index 073192d5af..38676ac180 100644 --- a/plugins/text_display/user_doc.html +++ b/plugins/text_display/user_doc.html @@ -4,7 +4,7 @@ - text_display — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + text_display — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/thz/README.html b/plugins/thz/README.html index 8b167cabfc..8abd75ce0b 100644 --- a/plugins/thz/README.html +++ b/plugins/thz/README.html @@ -4,7 +4,7 @@ - THZ — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + THZ — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/timmy/README.html b/plugins/timmy/README.html index 9e95301a27..714ea772a9 100644 --- a/plugins/timmy/README.html +++ b/plugins/timmy/README.html @@ -4,7 +4,7 @@ - Timmy Plugin for SmarthomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Timmy Plugin for SmarthomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/timmy/user_doc.html b/plugins/timmy/user_doc.html index 80664d462b..fc0cc0a7ff 100644 --- a/plugins/timmy/user_doc.html +++ b/plugins/timmy/user_doc.html @@ -4,7 +4,7 @@ - timmy — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + timmy — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/traffic/README.html b/plugins/traffic/README.html index 3a61821c92..fcb5c95694 100644 --- a/plugins/traffic/README.html +++ b/plugins/traffic/README.html @@ -4,7 +4,7 @@ - Traffic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Traffic — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/trovis557x/README.html b/plugins/trovis557x/README.html index fc6e09ca22..7d94f50bee 100644 --- a/plugins/trovis557x/README.html +++ b/plugins/trovis557x/README.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/unifi/user_doc.html b/plugins/unifi/user_doc.html index 79dde21bf7..65c07d5934 100644 --- a/plugins/unifi/user_doc.html +++ b/plugins/unifi/user_doc.html @@ -4,7 +4,7 @@ - unifi — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + unifi — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/uzsu/user_doc.html b/plugins/uzsu/user_doc.html index d6ac533731..b583654fca 100644 --- a/plugins/uzsu/user_doc.html +++ b/plugins/uzsu/user_doc.html @@ -4,7 +4,7 @@ - uzsu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + uzsu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/vacations/user_doc.html b/plugins/vacations/user_doc.html index 6f3bc289db..4b3a7d528f 100644 --- a/plugins/vacations/user_doc.html +++ b/plugins/vacations/user_doc.html @@ -4,7 +4,7 @@ - vacations — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + vacations — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/vicare/user_doc.html b/plugins/vicare/user_doc.html index 4b4fe87b22..6a8aed949f 100644 --- a/plugins/vicare/user_doc.html +++ b/plugins/vicare/user_doc.html @@ -4,7 +4,7 @@ - vicare — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + vicare — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/viessmann/README.html b/plugins/viessmann/README.html index 7bb1f4a8bb..f64995f384 100644 --- a/plugins/viessmann/README.html +++ b/plugins/viessmann/README.html @@ -4,7 +4,7 @@ - viessmann — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + viessmann — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/viessmann/user_doc.html b/plugins/viessmann/user_doc.html index c99dfc2748..e9c3c24c83 100644 --- a/plugins/viessmann/user_doc.html +++ b/plugins/viessmann/user_doc.html @@ -4,7 +4,7 @@ - viessmann — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + viessmann — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/visu_smartvisu/README.html b/plugins/visu_smartvisu/README.html index ebc32cd50d..9bc34b7aa3 100644 --- a/plugins/visu_smartvisu/README.html +++ b/plugins/visu_smartvisu/README.html @@ -4,7 +4,7 @@ - Visualisation (smartVISU support) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Visualisation (smartVISU support) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/visu_smartvisu/developer_doc.html b/plugins/visu_smartvisu/developer_doc.html index 844d5e0b05..64165279b2 100644 --- a/plugins/visu_smartvisu/developer_doc.html +++ b/plugins/visu_smartvisu/developer_doc.html @@ -4,7 +4,7 @@ - visu_smartvisu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + visu_smartvisu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/visu_smartvisu/user_doc.html b/plugins/visu_smartvisu/user_doc.html index 2e8ff07518..2c679e9387 100644 --- a/plugins/visu_smartvisu/user_doc.html +++ b/plugins/visu_smartvisu/user_doc.html @@ -4,7 +4,7 @@ - visu_smartvisu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + visu_smartvisu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/visu_websocket/README.html b/plugins/visu_websocket/README.html index 95945ca761..10a3430dfb 100644 --- a/plugins/visu_websocket/README.html +++ b/plugins/visu_websocket/README.html @@ -4,7 +4,7 @@ - Visualisation (Websocket Protocol) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Visualisation (Websocket Protocol) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/visu_websocket/developer_doc.html b/plugins/visu_websocket/developer_doc.html index ce14e2242d..30dc07544f 100644 --- a/plugins/visu_websocket/developer_doc.html +++ b/plugins/visu_websocket/developer_doc.html @@ -4,7 +4,7 @@ - visu_websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + visu_websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/visu_websocket/user_doc.html b/plugins/visu_websocket/user_doc.html index 25b65d7bcf..95ee901f38 100644 --- a/plugins/visu_websocket/user_doc.html +++ b/plugins/visu_websocket/user_doc.html @@ -4,7 +4,7 @@ - visu_websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + visu_websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/volkszaehler/README.html b/plugins/volkszaehler/README.html index 6295519d29..ceeb36ea64 100644 --- a/plugins/volkszaehler/README.html +++ b/plugins/volkszaehler/README.html @@ -4,7 +4,7 @@ - Volkszaehler Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Volkszaehler Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/webpush/user_doc.html b/plugins/webpush/user_doc.html index 45b466cf55..6cd240b595 100644 --- a/plugins/webpush/user_doc.html +++ b/plugins/webpush/user_doc.html @@ -4,7 +4,7 @@ - webpush — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + webpush — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/webservices/user_doc.html b/plugins/webservices/user_doc.html index 0f5ca152a3..0727d7fba7 100644 --- a/plugins/webservices/user_doc.html +++ b/plugins/webservices/user_doc.html @@ -4,7 +4,7 @@ - webservices — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + webservices — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/wettercom/README.html b/plugins/wettercom/README.html index af1ba76307..c06d55ba30 100644 --- a/plugins/wettercom/README.html +++ b/plugins/wettercom/README.html @@ -4,7 +4,7 @@ - wettercom Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + wettercom Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/withings_health/user_doc.html b/plugins/withings_health/user_doc.html index c06caf8091..ff6517e108 100644 --- a/plugins/withings_health/user_doc.html +++ b/plugins/withings_health/user_doc.html @@ -4,7 +4,7 @@ - withings_health — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + withings_health — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/wol/user_doc.html b/plugins/wol/user_doc.html index 450263955a..5f1213dea1 100644 --- a/plugins/wol/user_doc.html +++ b/plugins/wol/user_doc.html @@ -4,7 +4,7 @@ - wol — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + wol — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/wunderground/README.html b/plugins/wunderground/README.html index 86d5c86ac5..f5d270fc81 100644 --- a/plugins/wunderground/README.html +++ b/plugins/wunderground/README.html @@ -4,7 +4,7 @@ - wunderground — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + wunderground — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/wunderground/README_OLD.html b/plugins/wunderground/README_OLD.html index cc852e05f2..b52df18052 100644 --- a/plugins/wunderground/README_OLD.html +++ b/plugins/wunderground/README_OLD.html @@ -4,7 +4,7 @@ - Wunderground — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Wunderground — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/wunderground/user_doc.html b/plugins/wunderground/user_doc.html index 741111ca98..19109eca0c 100644 --- a/plugins/wunderground/user_doc.html +++ b/plugins/wunderground/user_doc.html @@ -4,7 +4,7 @@ - wunderground — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + wunderground — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/xiaomi_vac/user_doc.html b/plugins/xiaomi_vac/user_doc.html index c51e212676..28347eaef8 100644 --- a/plugins/xiaomi_vac/user_doc.html +++ b/plugins/xiaomi_vac/user_doc.html @@ -4,7 +4,7 @@ - xiaomi_vac — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + xiaomi_vac — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/xmpp/README.html b/plugins/xmpp/README.html index a87cc2eab2..456f26d9f2 100644 --- a/plugins/xmpp/README.html +++ b/plugins/xmpp/README.html @@ -4,7 +4,7 @@ - XMPP — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + XMPP — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/yamaha/user_doc.html b/plugins/yamaha/user_doc.html index 1e47fc3b1c..f6c80906bb 100644 --- a/plugins/yamaha/user_doc.html +++ b/plugins/yamaha/user_doc.html @@ -4,7 +4,7 @@ - yamaha — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + yamaha — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/yamahayxc/user_doc.html b/plugins/yamahayxc/user_doc.html index 16f1ec84b8..6cd21928de 100644 --- a/plugins/yamahayxc/user_doc.html +++ b/plugins/yamahayxc/user_doc.html @@ -4,7 +4,7 @@ - yamahayxc — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + yamahayxc — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/zigbee2mqtt/user_doc.html b/plugins/zigbee2mqtt/user_doc.html index 9463499520..fcdb212f3c 100644 --- a/plugins/zigbee2mqtt/user_doc.html +++ b/plugins/zigbee2mqtt/user_doc.html @@ -4,7 +4,7 @@ - zigbee2mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + zigbee2mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins/zwave/README.html b/plugins/zwave/README.html index 62cd845467..b01f70c68b 100644 --- a/plugins/zwave/README.html +++ b/plugins/zwave/README.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_all.html b/plugins_all.html index 4e388c086f..dc001fce6b 100644 --- a/plugins_all.html +++ b/plugins_all.html @@ -4,7 +4,7 @@ - Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/alexa.html b/plugins_doc/config/alexa.html index c8fd028f1b..35b705fca4 100644 --- a/plugins_doc/config/alexa.html +++ b/plugins_doc/config/alexa.html @@ -4,7 +4,7 @@ - Plugin ‚alexa‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚alexa‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/alexa4p3.html b/plugins_doc/config/alexa4p3.html index dbe347a610..cee79d2a3c 100644 --- a/plugins_doc/config/alexa4p3.html +++ b/plugins_doc/config/alexa4p3.html @@ -4,7 +4,7 @@ - Plugin ‚alexa4p3‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚alexa4p3‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/alexarc4shng.html b/plugins_doc/config/alexarc4shng.html index 726e4e1fe4..37a0678bfc 100644 --- a/plugins_doc/config/alexarc4shng.html +++ b/plugins_doc/config/alexarc4shng.html @@ -4,7 +4,7 @@ - Plugin ‚alexarc4shng‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚alexarc4shng‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/apcups.html b/plugins_doc/config/apcups.html index a99a7c0a0d..c4aae7a55d 100644 --- a/plugins_doc/config/apcups.html +++ b/plugins_doc/config/apcups.html @@ -4,7 +4,7 @@ - Plugin ‚apcups‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚apcups‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/appletv.html b/plugins_doc/config/appletv.html index d1aedd4573..15e65d8c2e 100644 --- a/plugins_doc/config/appletv.html +++ b/plugins_doc/config/appletv.html @@ -4,7 +4,7 @@ - Plugin ‚appletv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚appletv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/artnet.html b/plugins_doc/config/artnet.html index 2b1bcf8c17..e185c0556f 100644 --- a/plugins_doc/config/artnet.html +++ b/plugins_doc/config/artnet.html @@ -4,7 +4,7 @@ - Plugin ‚artnet‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚artnet‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/asterisk.html b/plugins_doc/config/asterisk.html index a8287bdf98..148042ac57 100644 --- a/plugins_doc/config/asterisk.html +++ b/plugins_doc/config/asterisk.html @@ -4,7 +4,7 @@ - Plugin ‚asterisk‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚asterisk‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/avdevice.html b/plugins_doc/config/avdevice.html index 07874ef64d..c8e60a98d2 100644 --- a/plugins_doc/config/avdevice.html +++ b/plugins_doc/config/avdevice.html @@ -4,7 +4,7 @@ - Plugin ‚avdevice‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚avdevice‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/avm.html b/plugins_doc/config/avm.html index a5daaf7c7e..4ae27dfd6b 100644 --- a/plugins_doc/config/avm.html +++ b/plugins_doc/config/avm.html @@ -4,7 +4,7 @@ - Plugin ‚avm‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚avm‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/avm_smarthome.html b/plugins_doc/config/avm_smarthome.html index 0ca59f1459..24f9288ec5 100644 --- a/plugins_doc/config/avm_smarthome.html +++ b/plugins_doc/config/avm_smarthome.html @@ -4,7 +4,7 @@ - Plugin ‚avm_smarthome‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚avm_smarthome‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/beolink.html b/plugins_doc/config/beolink.html index d6bc3f135f..6b880524ff 100644 --- a/plugins_doc/config/beolink.html +++ b/plugins_doc/config/beolink.html @@ -4,7 +4,7 @@ - Plugin ‚beolink‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚beolink‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/blockly.html b/plugins_doc/config/blockly.html index 3350a1bdac..8cd48b6289 100644 --- a/plugins_doc/config/blockly.html +++ b/plugins_doc/config/blockly.html @@ -4,7 +4,7 @@ - Plugin ‚blockly‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚blockly‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/bose_soundtouch.html b/plugins_doc/config/bose_soundtouch.html index 0307ec6fab..9993213bf1 100644 --- a/plugins_doc/config/bose_soundtouch.html +++ b/plugins_doc/config/bose_soundtouch.html @@ -4,7 +4,7 @@ - Plugin ‚bose_soundtouch‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚bose_soundtouch‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/bsblan.html b/plugins_doc/config/bsblan.html index 9e0a6d2074..cea78d2ee5 100644 --- a/plugins_doc/config/bsblan.html +++ b/plugins_doc/config/bsblan.html @@ -4,7 +4,7 @@ - Plugin ‚bsblan‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚bsblan‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/buderus.html b/plugins_doc/config/buderus.html index d71d376900..c237c4ff0e 100644 --- a/plugins_doc/config/buderus.html +++ b/plugins_doc/config/buderus.html @@ -4,7 +4,7 @@ - Plugin ‚buderus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚buderus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/byd_bat.html b/plugins_doc/config/byd_bat.html index 87ee22a7e7..469db94ff9 100644 --- a/plugins_doc/config/byd_bat.html +++ b/plugins_doc/config/byd_bat.html @@ -4,7 +4,7 @@ - Plugin ‚byd_bat‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚byd_bat‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/casambi.html b/plugins_doc/config/casambi.html index b3bf1ce23e..a9e4e593cd 100644 --- a/plugins_doc/config/casambi.html +++ b/plugins_doc/config/casambi.html @@ -4,7 +4,7 @@ - Plugin ‚casambi‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚casambi‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/cli.html b/plugins_doc/config/cli.html index 8b2ba560e6..42b4980d60 100644 --- a/plugins_doc/config/cli.html +++ b/plugins_doc/config/cli.html @@ -4,7 +4,7 @@ - Plugin ‚cli‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚cli‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/co2meter.html b/plugins_doc/config/co2meter.html index 14174c72c6..91e684ab99 100644 --- a/plugins_doc/config/co2meter.html +++ b/plugins_doc/config/co2meter.html @@ -4,7 +4,7 @@ - Plugin ‚co2meter‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚co2meter‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/comfoair.html b/plugins_doc/config/comfoair.html index 5aadacc93b..4cf89dd102 100644 --- a/plugins_doc/config/comfoair.html +++ b/plugins_doc/config/comfoair.html @@ -4,7 +4,7 @@ - Plugin ‚comfoair‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚comfoair‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/darksky.html b/plugins_doc/config/darksky.html index 49b381b289..bb3bb364a9 100644 --- a/plugins_doc/config/darksky.html +++ b/plugins_doc/config/darksky.html @@ -4,7 +4,7 @@ - Plugin ‚darksky‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚darksky‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/dashbutton.html b/plugins_doc/config/dashbutton.html index 4bc09a65e5..ee53be598e 100644 --- a/plugins_doc/config/dashbutton.html +++ b/plugins_doc/config/dashbutton.html @@ -4,7 +4,7 @@ - Plugin ‚dashbutton‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚dashbutton‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/database.html b/plugins_doc/config/database.html index 934ffaa12c..981ca0036f 100644 --- a/plugins_doc/config/database.html +++ b/plugins_doc/config/database.html @@ -4,7 +4,7 @@ - Plugin ‚database‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚database‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/datalog.html b/plugins_doc/config/datalog.html index aac0bd4e80..4b75c1e715 100644 --- a/plugins_doc/config/datalog.html +++ b/plugins_doc/config/datalog.html @@ -4,7 +4,7 @@ - Plugin ‚datalog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚datalog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/db_addon.html b/plugins_doc/config/db_addon.html index 630ed86c5a..91875f0e20 100644 --- a/plugins_doc/config/db_addon.html +++ b/plugins_doc/config/db_addon.html @@ -4,7 +4,7 @@ - Plugin ‚db_addon‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚db_addon‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/deebot_ozmo.html b/plugins_doc/config/deebot_ozmo.html index 5403df61ea..5c27ea9486 100644 --- a/plugins_doc/config/deebot_ozmo.html +++ b/plugins_doc/config/deebot_ozmo.html @@ -4,7 +4,7 @@ - Plugin ‚deebot_ozmo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚deebot_ozmo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/denon.html b/plugins_doc/config/denon.html index dff26674f6..c04a5e03ea 100644 --- a/plugins_doc/config/denon.html +++ b/plugins_doc/config/denon.html @@ -4,7 +4,7 @@ - Plugin ‚denon‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚denon‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/dlms.html b/plugins_doc/config/dlms.html index 16bb31b807..300cac7c1e 100644 --- a/plugins_doc/config/dlms.html +++ b/plugins_doc/config/dlms.html @@ -4,7 +4,7 @@ - Plugin ‚dlms‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚dlms‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/dmx.html b/plugins_doc/config/dmx.html index bd32279bd2..7c5911b9fa 100644 --- a/plugins_doc/config/dmx.html +++ b/plugins_doc/config/dmx.html @@ -4,7 +4,7 @@ - Plugin ‚dmx‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚dmx‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/drexelundweiss.html b/plugins_doc/config/drexelundweiss.html index 47c330f833..7e465d8468 100644 --- a/plugins_doc/config/drexelundweiss.html +++ b/plugins_doc/config/drexelundweiss.html @@ -4,7 +4,7 @@ - Plugin ‚drexelundweiss‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚drexelundweiss‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/dummy_config.html b/plugins_doc/config/dummy_config.html index d865d39ca3..338e6149be 100644 --- a/plugins_doc/config/dummy_config.html +++ b/plugins_doc/config/dummy_config.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/ebus.html b/plugins_doc/config/ebus.html index cfaf8eee6e..7dab5cc148 100644 --- a/plugins_doc/config/ebus.html +++ b/plugins_doc/config/ebus.html @@ -4,7 +4,7 @@ - Plugin ‚ebus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚ebus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/enigma2.html b/plugins_doc/config/enigma2.html index d45f4eb86f..c7ada72d96 100644 --- a/plugins_doc/config/enigma2.html +++ b/plugins_doc/config/enigma2.html @@ -4,7 +4,7 @@ - Plugin ‚enigma2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚enigma2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/enocean.html b/plugins_doc/config/enocean.html index 144f3223f9..d4368eaaf5 100644 --- a/plugins_doc/config/enocean.html +++ b/plugins_doc/config/enocean.html @@ -4,7 +4,7 @@ - Plugin ‚enocean‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚enocean‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/epson.html b/plugins_doc/config/epson.html index e09348f138..cdadc0e14d 100644 --- a/plugins_doc/config/epson.html +++ b/plugins_doc/config/epson.html @@ -4,7 +4,7 @@ - Plugin ‚epson‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚epson‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/eta_pu.html b/plugins_doc/config/eta_pu.html index 45a2ce9fa1..70a1ad2562 100644 --- a/plugins_doc/config/eta_pu.html +++ b/plugins_doc/config/eta_pu.html @@ -4,7 +4,7 @@ - Plugin ‚eta_pu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚eta_pu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/executor.html b/plugins_doc/config/executor.html index a285f4f2be..e2b0c6aa07 100644 --- a/plugins_doc/config/executor.html +++ b/plugins_doc/config/executor.html @@ -4,7 +4,7 @@ - Plugin ‚executor‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚executor‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/garminconnect.html b/plugins_doc/config/garminconnect.html index 054cbfba3c..6e56080f4e 100644 --- a/plugins_doc/config/garminconnect.html +++ b/plugins_doc/config/garminconnect.html @@ -4,7 +4,7 @@ - Plugin ‚garminconnect‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚garminconnect‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/gpio.html b/plugins_doc/config/gpio.html index aa7f7f8e1c..825d574d28 100644 --- a/plugins_doc/config/gpio.html +++ b/plugins_doc/config/gpio.html @@ -4,7 +4,7 @@ - Plugin ‚gpio‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚gpio‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/harmony.html b/plugins_doc/config/harmony.html index fb7d8a6e0c..92dfb9b85d 100644 --- a/plugins_doc/config/harmony.html +++ b/plugins_doc/config/harmony.html @@ -4,7 +4,7 @@ - Plugin ‚harmony‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚harmony‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/helios.html b/plugins_doc/config/helios.html index f6c2e3e0b7..ce06a89dc6 100644 --- a/plugins_doc/config/helios.html +++ b/plugins_doc/config/helios.html @@ -4,7 +4,7 @@ - Plugin ‚helios‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚helios‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/helios_tcp.html b/plugins_doc/config/helios_tcp.html index fbb0a5c39a..f9b2ef50dc 100644 --- a/plugins_doc/config/helios_tcp.html +++ b/plugins_doc/config/helios_tcp.html @@ -4,7 +4,7 @@ - Plugin ‚helios_tcp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚helios_tcp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/homeconnect.html b/plugins_doc/config/homeconnect.html index 760410596e..7cc3077ac9 100644 --- a/plugins_doc/config/homeconnect.html +++ b/plugins_doc/config/homeconnect.html @@ -4,7 +4,7 @@ - Plugin ‚homeconnect‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚homeconnect‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/homematic.html b/plugins_doc/config/homematic.html index 591fd69f7c..bacd53c4eb 100644 --- a/plugins_doc/config/homematic.html +++ b/plugins_doc/config/homematic.html @@ -4,7 +4,7 @@ - Plugin ‚homematic‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚homematic‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/hue.html b/plugins_doc/config/hue.html index 5715495b70..e91000e1a1 100644 --- a/plugins_doc/config/hue.html +++ b/plugins_doc/config/hue.html @@ -4,7 +4,7 @@ - Plugin ‚hue‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚hue‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/hue2.html b/plugins_doc/config/hue2.html index ccb08a882f..1c2a1df326 100644 --- a/plugins_doc/config/hue2.html +++ b/plugins_doc/config/hue2.html @@ -4,7 +4,7 @@ - Plugin ‚hue2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚hue2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/hue3.html b/plugins_doc/config/hue3.html index d5f5f98ec5..79c0eb59f1 100644 --- a/plugins_doc/config/hue3.html +++ b/plugins_doc/config/hue3.html @@ -4,7 +4,7 @@ - Plugin ‚hue3‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚hue3‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/husky.html b/plugins_doc/config/husky.html index 765cbc0276..e97cdf8df3 100644 --- a/plugins_doc/config/husky.html +++ b/plugins_doc/config/husky.html @@ -4,7 +4,7 @@ - Plugin ‚husky‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚husky‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/husky2.html b/plugins_doc/config/husky2.html index 6f6fef89a0..75116a2a04 100644 --- a/plugins_doc/config/husky2.html +++ b/plugins_doc/config/husky2.html @@ -4,7 +4,7 @@ - Plugin ‚husky2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚husky2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/ical.html b/plugins_doc/config/ical.html index d71f5f7c2c..8e79208287 100644 --- a/plugins_doc/config/ical.html +++ b/plugins_doc/config/ical.html @@ -4,7 +4,7 @@ - Plugin ‚ical‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚ical‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/indego.html b/plugins_doc/config/indego.html index db373f125a..217d7465f9 100644 --- a/plugins_doc/config/indego.html +++ b/plugins_doc/config/indego.html @@ -4,7 +4,7 @@ - Plugin ‚indego‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚indego‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/indego4shng.html b/plugins_doc/config/indego4shng.html index b54f0ab989..ede9972c66 100644 --- a/plugins_doc/config/indego4shng.html +++ b/plugins_doc/config/indego4shng.html @@ -4,7 +4,7 @@ - Plugin ‚indego4shng‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚indego4shng‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/influxdata.html b/plugins_doc/config/influxdata.html index 211cec08e3..4312edc192 100644 --- a/plugins_doc/config/influxdata.html +++ b/plugins_doc/config/influxdata.html @@ -4,7 +4,7 @@ - Plugin ‚influxdata‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚influxdata‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/influxdb.html b/plugins_doc/config/influxdb.html index 29de16fd07..ab83048466 100644 --- a/plugins_doc/config/influxdb.html +++ b/plugins_doc/config/influxdb.html @@ -4,7 +4,7 @@ - Plugin ‚influxdb‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚influxdb‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/influxdb2.html b/plugins_doc/config/influxdb2.html index ef93472246..780ebd36d2 100644 --- a/plugins_doc/config/influxdb2.html +++ b/plugins_doc/config/influxdb2.html @@ -4,7 +4,7 @@ - Plugin ‚influxdb2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚influxdb2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/intercom_2n.html b/plugins_doc/config/intercom_2n.html index f10f7bebd8..5b2a50794c 100644 --- a/plugins_doc/config/intercom_2n.html +++ b/plugins_doc/config/intercom_2n.html @@ -4,7 +4,7 @@ - Plugin ‚intercom_2n‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚intercom_2n‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/join.html b/plugins_doc/config/join.html index e802bf7daa..b45f4a0325 100644 --- a/plugins_doc/config/join.html +++ b/plugins_doc/config/join.html @@ -4,7 +4,7 @@ - Plugin ‚join‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚join‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/jsonread.html b/plugins_doc/config/jsonread.html index 938a67d153..5ec2455cd7 100644 --- a/plugins_doc/config/jsonread.html +++ b/plugins_doc/config/jsonread.html @@ -4,7 +4,7 @@ - Plugin ‚jsonread‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚jsonread‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/jvcproj.html b/plugins_doc/config/jvcproj.html index 7cc3b8a8d1..be766702c6 100644 --- a/plugins_doc/config/jvcproj.html +++ b/plugins_doc/config/jvcproj.html @@ -4,7 +4,7 @@ - Plugin ‚jvcproj‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚jvcproj‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/kathrein.html b/plugins_doc/config/kathrein.html index 8673a425f7..5c808c2ffa 100644 --- a/plugins_doc/config/kathrein.html +++ b/plugins_doc/config/kathrein.html @@ -4,7 +4,7 @@ - Plugin ‚kathrein‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚kathrein‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/knx.html b/plugins_doc/config/knx.html index a3f029b279..ebf061f3cb 100644 --- a/plugins_doc/config/knx.html +++ b/plugins_doc/config/knx.html @@ -4,7 +4,7 @@ - Plugin ‚knx‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚knx‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/kodi.html b/plugins_doc/config/kodi.html index 756e5d7f80..2edb928e2a 100644 --- a/plugins_doc/config/kodi.html +++ b/plugins_doc/config/kodi.html @@ -4,7 +4,7 @@ - Plugin ‚kodi‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚kodi‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/kostal.html b/plugins_doc/config/kostal.html index 643ae8b057..239ba8d877 100644 --- a/plugins_doc/config/kostal.html +++ b/plugins_doc/config/kostal.html @@ -4,7 +4,7 @@ - Plugin ‚kostal‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚kostal‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/kostalmodbus.html b/plugins_doc/config/kostalmodbus.html index ea15043c96..d8383918e9 100644 --- a/plugins_doc/config/kostalmodbus.html +++ b/plugins_doc/config/kostalmodbus.html @@ -4,7 +4,7 @@ - Plugin ‚kostalmodbus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚kostalmodbus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/ksemmodbus.html b/plugins_doc/config/ksemmodbus.html index 7f759a17e0..7a3dd501e7 100644 --- a/plugins_doc/config/ksemmodbus.html +++ b/plugins_doc/config/ksemmodbus.html @@ -4,7 +4,7 @@ - Plugin ‚ksemmodbus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚ksemmodbus‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/leveljet.html b/plugins_doc/config/leveljet.html index 964a9f4325..6bb3813d3c 100644 --- a/plugins_doc/config/leveljet.html +++ b/plugins_doc/config/leveljet.html @@ -4,7 +4,7 @@ - Plugin ‚leveljet‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚leveljet‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/lirc.html b/plugins_doc/config/lirc.html index a9e288e8ef..a096faf8e7 100644 --- a/plugins_doc/config/lirc.html +++ b/plugins_doc/config/lirc.html @@ -4,7 +4,7 @@ - Plugin ‚lirc‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚lirc‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/lms.html b/plugins_doc/config/lms.html index 2e4def26bf..9d792cf067 100644 --- a/plugins_doc/config/lms.html +++ b/plugins_doc/config/lms.html @@ -4,7 +4,7 @@ - Plugin ‚lms‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚lms‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/logo.html b/plugins_doc/config/logo.html index e8657aa9c9..e43b66c127 100644 --- a/plugins_doc/config/logo.html +++ b/plugins_doc/config/logo.html @@ -4,7 +4,7 @@ - Plugin ‚logo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚logo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/luxtronic2.html b/plugins_doc/config/luxtronic2.html index 8806f3c12a..190fbec7af 100644 --- a/plugins_doc/config/luxtronic2.html +++ b/plugins_doc/config/luxtronic2.html @@ -4,7 +4,7 @@ - Plugin ‚luxtronic2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚luxtronic2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mailrcv.html b/plugins_doc/config/mailrcv.html index d56eb5036a..4af9313d23 100644 --- a/plugins_doc/config/mailrcv.html +++ b/plugins_doc/config/mailrcv.html @@ -4,7 +4,7 @@ - Plugin ‚mailrcv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mailrcv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mailsend.html b/plugins_doc/config/mailsend.html index 335682bb6f..fe191c7dcf 100644 --- a/plugins_doc/config/mailsend.html +++ b/plugins_doc/config/mailsend.html @@ -4,7 +4,7 @@ - Plugin ‚mailsend‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mailsend‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/memlog.html b/plugins_doc/config/memlog.html index 0bb08f130f..beb67bdc7f 100644 --- a/plugins_doc/config/memlog.html +++ b/plugins_doc/config/memlog.html @@ -4,7 +4,7 @@ - Plugin ‚memlog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚memlog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mieleathome.html b/plugins_doc/config/mieleathome.html index 02331b9ac7..5ff8a652aa 100644 --- a/plugins_doc/config/mieleathome.html +++ b/plugins_doc/config/mieleathome.html @@ -4,7 +4,7 @@ - Plugin ‚mieleathome‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mieleathome‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/miflora.html b/plugins_doc/config/miflora.html index 7f10477cda..1195b9d415 100644 --- a/plugins_doc/config/miflora.html +++ b/plugins_doc/config/miflora.html @@ -4,7 +4,7 @@ - Plugin ‚miflora‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚miflora‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mikrotik.html b/plugins_doc/config/mikrotik.html index 3162bee19a..c6e7722caf 100644 --- a/plugins_doc/config/mikrotik.html +++ b/plugins_doc/config/mikrotik.html @@ -4,7 +4,7 @@ - Plugin ‚mikrotik‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mikrotik‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/milight.html b/plugins_doc/config/milight.html index 0e597101e5..e0cc68b645 100644 --- a/plugins_doc/config/milight.html +++ b/plugins_doc/config/milight.html @@ -4,7 +4,7 @@ - Plugin ‚milight‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚milight‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mlgw.html b/plugins_doc/config/mlgw.html index 55b24ade04..af149c0081 100644 --- a/plugins_doc/config/mlgw.html +++ b/plugins_doc/config/mlgw.html @@ -4,7 +4,7 @@ - Plugin ‚mlgw‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mlgw‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/modbus_tcp.html b/plugins_doc/config/modbus_tcp.html index 9961d9f928..0de1d4ec8e 100644 --- a/plugins_doc/config/modbus_tcp.html +++ b/plugins_doc/config/modbus_tcp.html @@ -4,7 +4,7 @@ - Plugin ‚modbus_tcp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚modbus_tcp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mpd.html b/plugins_doc/config/mpd.html index b9c29e28a7..17a37a80d1 100644 --- a/plugins_doc/config/mpd.html +++ b/plugins_doc/config/mpd.html @@ -4,7 +4,7 @@ - Plugin ‚mpd‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mpd‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mqtt.html b/plugins_doc/config/mqtt.html index 93c37bc837..46197565a1 100644 --- a/plugins_doc/config/mqtt.html +++ b/plugins_doc/config/mqtt.html @@ -4,7 +4,7 @@ - Plugin ‚mqtt‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mqtt‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/mvg_live.html b/plugins_doc/config/mvg_live.html index e845dad7bb..b7382e5dd1 100644 --- a/plugins_doc/config/mvg_live.html +++ b/plugins_doc/config/mvg_live.html @@ -4,7 +4,7 @@ - Plugin ‚mvg_live‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚mvg_live‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/neato.html b/plugins_doc/config/neato.html index 5a33f9f196..8df72e6ef5 100644 --- a/plugins_doc/config/neato.html +++ b/plugins_doc/config/neato.html @@ -4,7 +4,7 @@ - Plugin ‚neato‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚neato‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/network.html b/plugins_doc/config/network.html index ccb49fb664..c8a04993c4 100644 --- a/plugins_doc/config/network.html +++ b/plugins_doc/config/network.html @@ -4,7 +4,7 @@ - Plugin ‚network‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚network‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/nuki.html b/plugins_doc/config/nuki.html index 46d279e227..1e91674728 100644 --- a/plugins_doc/config/nuki.html +++ b/plugins_doc/config/nuki.html @@ -4,7 +4,7 @@ - Plugin ‚nuki‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚nuki‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/nut.html b/plugins_doc/config/nut.html index cd898bd3ac..1c8bd24cb0 100644 --- a/plugins_doc/config/nut.html +++ b/plugins_doc/config/nut.html @@ -4,7 +4,7 @@ - Plugin ‚nut‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚nut‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/odlinfo.html b/plugins_doc/config/odlinfo.html index e3ddcb95e6..d40c27265a 100644 --- a/plugins_doc/config/odlinfo.html +++ b/plugins_doc/config/odlinfo.html @@ -4,7 +4,7 @@ - Plugin ‚odlinfo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚odlinfo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/onewire.html b/plugins_doc/config/onewire.html index 6913c665cb..af81812696 100644 --- a/plugins_doc/config/onewire.html +++ b/plugins_doc/config/onewire.html @@ -4,7 +4,7 @@ - Plugin ‚onewire‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚onewire‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/openweathermap.html b/plugins_doc/config/openweathermap.html index f461994a4f..d0ccced52e 100644 --- a/plugins_doc/config/openweathermap.html +++ b/plugins_doc/config/openweathermap.html @@ -4,7 +4,7 @@ - Plugin ‚openweathermap‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚openweathermap‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/operationlog.html b/plugins_doc/config/operationlog.html index 707b67bd17..20452a97eb 100644 --- a/plugins_doc/config/operationlog.html +++ b/plugins_doc/config/operationlog.html @@ -4,7 +4,7 @@ - Plugin ‚operationlog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚operationlog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/oppo.html b/plugins_doc/config/oppo.html index 62c19eea1a..bbe14755b3 100644 --- a/plugins_doc/config/oppo.html +++ b/plugins_doc/config/oppo.html @@ -4,7 +4,7 @@ - Plugin ‚oppo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚oppo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/panasonic_ac.html b/plugins_doc/config/panasonic_ac.html index eac6fa7b11..3bd90f6d0a 100644 --- a/plugins_doc/config/panasonic_ac.html +++ b/plugins_doc/config/panasonic_ac.html @@ -4,7 +4,7 @@ - Plugin ‚panasonic_ac‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚panasonic_ac‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/philips_tv.html b/plugins_doc/config/philips_tv.html index f6bba5fdcf..e477810347 100644 --- a/plugins_doc/config/philips_tv.html +++ b/plugins_doc/config/philips_tv.html @@ -4,7 +4,7 @@ - Plugin ‚philips_tv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚philips_tv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/pioneer.html b/plugins_doc/config/pioneer.html index 10f12fe31a..0a4c63885b 100644 --- a/plugins_doc/config/pioneer.html +++ b/plugins_doc/config/pioneer.html @@ -4,7 +4,7 @@ - Plugin ‚pioneer‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚pioneer‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/piratewthr.html b/plugins_doc/config/piratewthr.html index ce2e7427e9..7e87c72f0a 100644 --- a/plugins_doc/config/piratewthr.html +++ b/plugins_doc/config/piratewthr.html @@ -4,7 +4,7 @@ - Plugin ‚piratewthr‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚piratewthr‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/plex.html b/plugins_doc/config/plex.html index 9f1ce07c52..37db9be0f6 100644 --- a/plugins_doc/config/plex.html +++ b/plugins_doc/config/plex.html @@ -4,7 +4,7 @@ - Plugin ‚plex‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚plex‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/pluggit.html b/plugins_doc/config/pluggit.html index b63b107d66..a566a50949 100644 --- a/plugins_doc/config/pluggit.html +++ b/plugins_doc/config/pluggit.html @@ -4,7 +4,7 @@ - Plugin ‚pluggit‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚pluggit‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/prowl.html b/plugins_doc/config/prowl.html index 0f8917ddd5..d7ea2e2c16 100644 --- a/plugins_doc/config/prowl.html +++ b/plugins_doc/config/prowl.html @@ -4,7 +4,7 @@ - Plugin ‚prowl‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚prowl‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/pushbullet.html b/plugins_doc/config/pushbullet.html index 3111809eae..953b7167ac 100644 --- a/plugins_doc/config/pushbullet.html +++ b/plugins_doc/config/pushbullet.html @@ -4,7 +4,7 @@ - Plugin ‚pushbullet‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚pushbullet‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/pushover.html b/plugins_doc/config/pushover.html index 96d8a93fd7..08078b93d2 100644 --- a/plugins_doc/config/pushover.html +++ b/plugins_doc/config/pushover.html @@ -4,7 +4,7 @@ - Plugin ‚pushover‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚pushover‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/raumfeld.html b/plugins_doc/config/raumfeld.html index 7b9a10dc69..f5742c4120 100644 --- a/plugins_doc/config/raumfeld.html +++ b/plugins_doc/config/raumfeld.html @@ -4,7 +4,7 @@ - Plugin ‚raumfeld‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚raumfeld‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/raumfeld_ng.html b/plugins_doc/config/raumfeld_ng.html index e80886c1e4..049d023774 100644 --- a/plugins_doc/config/raumfeld_ng.html +++ b/plugins_doc/config/raumfeld_ng.html @@ -4,7 +4,7 @@ - Plugin ‚raumfeld_ng‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚raumfeld_ng‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rcs1000n.html b/plugins_doc/config/rcs1000n.html index 1c4e90de1e..f71876db85 100644 --- a/plugins_doc/config/rcs1000n.html +++ b/plugins_doc/config/rcs1000n.html @@ -4,7 +4,7 @@ - Plugin ‚rcs1000n‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rcs1000n‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rcswitch.html b/plugins_doc/config/rcswitch.html index 1df465698d..26fb753727 100644 --- a/plugins_doc/config/rcswitch.html +++ b/plugins_doc/config/rcswitch.html @@ -4,7 +4,7 @@ - Plugin ‚rcswitch‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rcswitch‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/resol.html b/plugins_doc/config/resol.html index 245bd28245..c8109393a4 100644 --- a/plugins_doc/config/resol.html +++ b/plugins_doc/config/resol.html @@ -4,7 +4,7 @@ - Plugin ‚resol‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚resol‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/robonect.html b/plugins_doc/config/robonect.html index 1708270632..f13cec69a7 100644 --- a/plugins_doc/config/robonect.html +++ b/plugins_doc/config/robonect.html @@ -4,7 +4,7 @@ - Plugin ‚robonect‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚robonect‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/roomba.html b/plugins_doc/config/roomba.html index e760c0d08d..bfec9e98a2 100644 --- a/plugins_doc/config/roomba.html +++ b/plugins_doc/config/roomba.html @@ -4,7 +4,7 @@ - Plugin ‚roomba‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚roomba‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/roomba_980.html b/plugins_doc/config/roomba_980.html index 88903b6992..dd9d7a0298 100644 --- a/plugins_doc/config/roomba_980.html +++ b/plugins_doc/config/roomba_980.html @@ -4,7 +4,7 @@ - Plugin ‚roomba_980‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚roomba_980‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/roombapysh.html b/plugins_doc/config/roombapysh.html index 8c08f46fe0..6323cabe80 100644 --- a/plugins_doc/config/roombapysh.html +++ b/plugins_doc/config/roombapysh.html @@ -4,7 +4,7 @@ - Plugin ‚roombapysh‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚roombapysh‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rpi1wire.html b/plugins_doc/config/rpi1wire.html index 9511805176..731f7eb7cb 100644 --- a/plugins_doc/config/rpi1wire.html +++ b/plugins_doc/config/rpi1wire.html @@ -4,7 +4,7 @@ - Plugin ‚rpi1wire‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rpi1wire‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rpi_info.html b/plugins_doc/config/rpi_info.html index 3fd4362fca..005f2d60ae 100644 --- a/plugins_doc/config/rpi_info.html +++ b/plugins_doc/config/rpi_info.html @@ -4,7 +4,7 @@ - Plugin ‚rpi_info‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rpi_info‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rrd.html b/plugins_doc/config/rrd.html index 2eca98ea52..6c89607ce6 100644 --- a/plugins_doc/config/rrd.html +++ b/plugins_doc/config/rrd.html @@ -4,7 +4,7 @@ - Plugin ‚rrd‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rrd‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rtr.html b/plugins_doc/config/rtr.html index 4563e5dba3..932e27586b 100644 --- a/plugins_doc/config/rtr.html +++ b/plugins_doc/config/rtr.html @@ -4,7 +4,7 @@ - Plugin ‚rtr‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rtr‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/rtr2.html b/plugins_doc/config/rtr2.html index 0958b056eb..30655068a0 100644 --- a/plugins_doc/config/rtr2.html +++ b/plugins_doc/config/rtr2.html @@ -4,7 +4,7 @@ - Plugin ‚rtr2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚rtr2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/russound.html b/plugins_doc/config/russound.html index 3d6692e320..432b5ab635 100644 --- a/plugins_doc/config/russound.html +++ b/plugins_doc/config/russound.html @@ -4,7 +4,7 @@ - Plugin ‚russound‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚russound‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/shelly.html b/plugins_doc/config/shelly.html index 09797383fe..573734cd1e 100644 --- a/plugins_doc/config/shelly.html +++ b/plugins_doc/config/shelly.html @@ -4,7 +4,7 @@ - Plugin ‚shelly‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚shelly‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/simulation.html b/plugins_doc/config/simulation.html index 53fa6f60bc..92de9aeb23 100644 --- a/plugins_doc/config/simulation.html +++ b/plugins_doc/config/simulation.html @@ -4,7 +4,7 @@ - Plugin ‚simulation‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚simulation‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/slack.html b/plugins_doc/config/slack.html index da2924a895..f265a89468 100644 --- a/plugins_doc/config/slack.html +++ b/plugins_doc/config/slack.html @@ -4,7 +4,7 @@ - Plugin ‚slack‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚slack‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sma.html b/plugins_doc/config/sma.html index 840c94ac68..c24b4e40f9 100644 --- a/plugins_doc/config/sma.html +++ b/plugins_doc/config/sma.html @@ -4,7 +4,7 @@ - Plugin ‚sma‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sma‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sma_em.html b/plugins_doc/config/sma_em.html index 080e065cea..e3952a99e5 100644 --- a/plugins_doc/config/sma_em.html +++ b/plugins_doc/config/sma_em.html @@ -4,7 +4,7 @@ - Plugin ‚sma_em‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sma_em‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sma_mb.html b/plugins_doc/config/sma_mb.html index c993f46abe..92bf150218 100644 --- a/plugins_doc/config/sma_mb.html +++ b/plugins_doc/config/sma_mb.html @@ -4,7 +4,7 @@ - Plugin ‚sma_mb‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sma_mb‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/smarttv.html b/plugins_doc/config/smarttv.html index 21768b241c..7389a9e665 100644 --- a/plugins_doc/config/smarttv.html +++ b/plugins_doc/config/smarttv.html @@ -4,7 +4,7 @@ - Plugin ‚smarttv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚smarttv‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/smartvisu.html b/plugins_doc/config/smartvisu.html index 0383a55910..3e23d84143 100644 --- a/plugins_doc/config/smartvisu.html +++ b/plugins_doc/config/smartvisu.html @@ -4,7 +4,7 @@ - Plugin ‚smartvisu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚smartvisu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sml.html b/plugins_doc/config/sml.html index 28b32a16dc..62c8d1aafe 100644 --- a/plugins_doc/config/sml.html +++ b/plugins_doc/config/sml.html @@ -4,7 +4,7 @@ - Plugin ‚sml‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sml‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sml2.html b/plugins_doc/config/sml2.html index 832dde3638..db3f44a493 100644 --- a/plugins_doc/config/sml2.html +++ b/plugins_doc/config/sml2.html @@ -4,7 +4,7 @@ - Plugin ‚sml2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sml2‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/smlx.html b/plugins_doc/config/smlx.html index deb9478495..474eb497b0 100644 --- a/plugins_doc/config/smlx.html +++ b/plugins_doc/config/smlx.html @@ -4,7 +4,7 @@ - Plugin ‚smlx‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚smlx‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/snap7_logo.html b/plugins_doc/config/snap7_logo.html index c6ba60e2a5..6b65c4c3e9 100644 --- a/plugins_doc/config/snap7_logo.html +++ b/plugins_doc/config/snap7_logo.html @@ -4,7 +4,7 @@ - Plugin ‚snap7_logo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚snap7_logo‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/snmp.html b/plugins_doc/config/snmp.html index 0c7af09dc0..4197c0d54f 100644 --- a/plugins_doc/config/snmp.html +++ b/plugins_doc/config/snmp.html @@ -4,7 +4,7 @@ - Plugin ‚snmp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚snmp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/solarforecast.html b/plugins_doc/config/solarforecast.html index 5b908777c0..3b6647266f 100644 --- a/plugins_doc/config/solarforecast.html +++ b/plugins_doc/config/solarforecast.html @@ -4,7 +4,7 @@ - Plugin ‚solarforecast‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚solarforecast‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/solarlog.html b/plugins_doc/config/solarlog.html index bc15193f89..8960c4df96 100644 --- a/plugins_doc/config/solarlog.html +++ b/plugins_doc/config/solarlog.html @@ -4,7 +4,7 @@ - Plugin ‚solarlog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚solarlog‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sonos.html b/plugins_doc/config/sonos.html index 471ca036c0..1dc4c287b4 100644 --- a/plugins_doc/config/sonos.html +++ b/plugins_doc/config/sonos.html @@ -4,7 +4,7 @@ - Plugin ‚sonos‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sonos‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/speech.html b/plugins_doc/config/speech.html index e36b5317de..823817d319 100644 --- a/plugins_doc/config/speech.html +++ b/plugins_doc/config/speech.html @@ -4,7 +4,7 @@ - Plugin ‚speech‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚speech‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/sqlite_visu2_8.html b/plugins_doc/config/sqlite_visu2_8.html index dbef650c1b..cdb59a4907 100644 --- a/plugins_doc/config/sqlite_visu2_8.html +++ b/plugins_doc/config/sqlite_visu2_8.html @@ -4,7 +4,7 @@ - Plugin ‚sqlite_visu2_8‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚sqlite_visu2_8‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/squeezebox.html b/plugins_doc/config/squeezebox.html index 172a0bd13a..6c4e81ba08 100644 --- a/plugins_doc/config/squeezebox.html +++ b/plugins_doc/config/squeezebox.html @@ -4,7 +4,7 @@ - Plugin ‚squeezebox‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚squeezebox‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/stateengine.html b/plugins_doc/config/stateengine.html index 35a3d7295c..de37529c9a 100644 --- a/plugins_doc/config/stateengine.html +++ b/plugins_doc/config/stateengine.html @@ -4,7 +4,7 @@ - Plugin ‚stateengine‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚stateengine‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/systemair.html b/plugins_doc/config/systemair.html index f988b3ff3b..c99a60658b 100644 --- a/plugins_doc/config/systemair.html +++ b/plugins_doc/config/systemair.html @@ -4,7 +4,7 @@ - Plugin ‚systemair‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚systemair‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/tankerkoenig.html b/plugins_doc/config/tankerkoenig.html index 5902c31df7..2016c4abf8 100644 --- a/plugins_doc/config/tankerkoenig.html +++ b/plugins_doc/config/tankerkoenig.html @@ -4,7 +4,7 @@ - Plugin ‚tankerkoenig‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚tankerkoenig‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/tasmota.html b/plugins_doc/config/tasmota.html index 2bd3e9a4f6..bf67f13480 100644 --- a/plugins_doc/config/tasmota.html +++ b/plugins_doc/config/tasmota.html @@ -4,7 +4,7 @@ - Plugin ‚tasmota‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚tasmota‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/telegram.html b/plugins_doc/config/telegram.html index b5df3626e3..c1ee5e91e4 100644 --- a/plugins_doc/config/telegram.html +++ b/plugins_doc/config/telegram.html @@ -4,7 +4,7 @@ - Plugin ‚telegram‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚telegram‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/text_display.html b/plugins_doc/config/text_display.html index 8a64b9b9f2..eabf393e76 100644 --- a/plugins_doc/config/text_display.html +++ b/plugins_doc/config/text_display.html @@ -4,7 +4,7 @@ - Plugin ‚text_display‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚text_display‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/thz.html b/plugins_doc/config/thz.html index 57d35fc8dc..78ceacdbe8 100644 --- a/plugins_doc/config/thz.html +++ b/plugins_doc/config/thz.html @@ -4,7 +4,7 @@ - Plugin ‚thz‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚thz‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/timmy.html b/plugins_doc/config/timmy.html index e9980c8779..045b4d350e 100644 --- a/plugins_doc/config/timmy.html +++ b/plugins_doc/config/timmy.html @@ -4,7 +4,7 @@ - Plugin ‚timmy‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚timmy‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/traffic.html b/plugins_doc/config/traffic.html index 8af1ca5fe1..af93292631 100644 --- a/plugins_doc/config/traffic.html +++ b/plugins_doc/config/traffic.html @@ -4,7 +4,7 @@ - Plugin ‚traffic‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚traffic‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/trovis557x.html b/plugins_doc/config/trovis557x.html index 74b792710a..187f957123 100644 --- a/plugins_doc/config/trovis557x.html +++ b/plugins_doc/config/trovis557x.html @@ -4,7 +4,7 @@ - Plugin ‚trovis557x‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚trovis557x‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/unifi.html b/plugins_doc/config/unifi.html index 324d843041..6c419ca0e9 100644 --- a/plugins_doc/config/unifi.html +++ b/plugins_doc/config/unifi.html @@ -4,7 +4,7 @@ - Plugin ‚unifi‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚unifi‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/uzsu.html b/plugins_doc/config/uzsu.html index 4f49ff50eb..c8a638c160 100644 --- a/plugins_doc/config/uzsu.html +++ b/plugins_doc/config/uzsu.html @@ -4,7 +4,7 @@ - Plugin ‚uzsu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚uzsu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/vacations.html b/plugins_doc/config/vacations.html index 6de77516ac..1e1ebd96e4 100644 --- a/plugins_doc/config/vacations.html +++ b/plugins_doc/config/vacations.html @@ -4,7 +4,7 @@ - Plugin ‚vacations‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚vacations‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/vicare.html b/plugins_doc/config/vicare.html index 1a584d24a4..da9cfcbbcd 100644 --- a/plugins_doc/config/vicare.html +++ b/plugins_doc/config/vicare.html @@ -4,7 +4,7 @@ - Plugin ‚vicare‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚vicare‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/viessmann.html b/plugins_doc/config/viessmann.html index bd9052fe23..f31a7537f5 100644 --- a/plugins_doc/config/viessmann.html +++ b/plugins_doc/config/viessmann.html @@ -4,7 +4,7 @@ - Plugin ‚viessmann‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚viessmann‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/visu_smartvisu.html b/plugins_doc/config/visu_smartvisu.html index 20b4be14a3..d6fd341d1f 100644 --- a/plugins_doc/config/visu_smartvisu.html +++ b/plugins_doc/config/visu_smartvisu.html @@ -4,7 +4,7 @@ - Plugin ‚visu_smartvisu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚visu_smartvisu‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/visu_websocket.html b/plugins_doc/config/visu_websocket.html index f95d927497..0373043c64 100644 --- a/plugins_doc/config/visu_websocket.html +++ b/plugins_doc/config/visu_websocket.html @@ -4,7 +4,7 @@ - Plugin ‚visu_websocket‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚visu_websocket‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/volkszaehler.html b/plugins_doc/config/volkszaehler.html index 766c4ec6db..5e50e33ecd 100644 --- a/plugins_doc/config/volkszaehler.html +++ b/plugins_doc/config/volkszaehler.html @@ -4,7 +4,7 @@ - Plugin ‚volkszaehler‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚volkszaehler‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/waterkotte.html b/plugins_doc/config/waterkotte.html index 3da9c449c1..a6784d5c50 100644 --- a/plugins_doc/config/waterkotte.html +++ b/plugins_doc/config/waterkotte.html @@ -4,7 +4,7 @@ - Plugin ‚waterkotte‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚waterkotte‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/webpush.html b/plugins_doc/config/webpush.html index e69e1ac9bb..b1eb61bd80 100644 --- a/plugins_doc/config/webpush.html +++ b/plugins_doc/config/webpush.html @@ -4,7 +4,7 @@ - Plugin ‚webpush‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚webpush‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/webservices.html b/plugins_doc/config/webservices.html index eabf2200c5..f07e89e713 100644 --- a/plugins_doc/config/webservices.html +++ b/plugins_doc/config/webservices.html @@ -4,7 +4,7 @@ - Plugin ‚webservices‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚webservices‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/wettercom.html b/plugins_doc/config/wettercom.html index c990717d07..5471efa8b7 100644 --- a/plugins_doc/config/wettercom.html +++ b/plugins_doc/config/wettercom.html @@ -4,7 +4,7 @@ - Plugin ‚wettercom‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚wettercom‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/withings_health.html b/plugins_doc/config/withings_health.html index 973d770be9..1beff27041 100644 --- a/plugins_doc/config/withings_health.html +++ b/plugins_doc/config/withings_health.html @@ -4,7 +4,7 @@ - Plugin ‚withings_health‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚withings_health‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/wol.html b/plugins_doc/config/wol.html index 579d4de6f9..4390dfac56 100644 --- a/plugins_doc/config/wol.html +++ b/plugins_doc/config/wol.html @@ -4,7 +4,7 @@ - Plugin ‚wol‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚wol‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/wunderground.html b/plugins_doc/config/wunderground.html index 7c78d1c174..689da842ed 100644 --- a/plugins_doc/config/wunderground.html +++ b/plugins_doc/config/wunderground.html @@ -4,7 +4,7 @@ - Plugin ‚wunderground‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚wunderground‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/xiaomi_vac.html b/plugins_doc/config/xiaomi_vac.html index 4b25351aec..38788dd9f7 100644 --- a/plugins_doc/config/xiaomi_vac.html +++ b/plugins_doc/config/xiaomi_vac.html @@ -4,7 +4,7 @@ - Plugin ‚xiaomi_vac‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚xiaomi_vac‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/xmpp.html b/plugins_doc/config/xmpp.html index 586faed531..abaa8886b8 100644 --- a/plugins_doc/config/xmpp.html +++ b/plugins_doc/config/xmpp.html @@ -4,7 +4,7 @@ - Plugin ‚xmpp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚xmpp‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/yamaha.html b/plugins_doc/config/yamaha.html index 6f2445d22e..523ded975f 100644 --- a/plugins_doc/config/yamaha.html +++ b/plugins_doc/config/yamaha.html @@ -4,7 +4,7 @@ - Plugin ‚yamaha‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚yamaha‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/yamahayxc.html b/plugins_doc/config/yamahayxc.html index 3ad86ba708..4583a12caa 100644 --- a/plugins_doc/config/yamahayxc.html +++ b/plugins_doc/config/yamahayxc.html @@ -4,7 +4,7 @@ - Plugin ‚yamahayxc‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚yamahayxc‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/zigbee2mqtt.html b/plugins_doc/config/zigbee2mqtt.html index 5c1940788c..9188da9f3e 100644 --- a/plugins_doc/config/zigbee2mqtt.html +++ b/plugins_doc/config/zigbee2mqtt.html @@ -4,7 +4,7 @@ - Plugin ‚zigbee2mqtt‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚zigbee2mqtt‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/config/zwave.html b/plugins_doc/config/zwave.html index b05632a130..bf277d2de7 100644 --- a/plugins_doc/config/zwave.html +++ b/plugins_doc/config/zwave.html @@ -4,7 +4,7 @@ - Plugin ‚zwave‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin ‚zwave‘ Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/dummy_all.html b/plugins_doc/dummy_all.html index a644a109c7..f4c681c541 100644 --- a/plugins_doc/dummy_all.html +++ b/plugins_doc/dummy_all.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/dummy_gateway.html b/plugins_doc/dummy_gateway.html index a644a109c7..f4c681c541 100644 --- a/plugins_doc/dummy_gateway.html +++ b/plugins_doc/dummy_gateway.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/dummy_interface.html b/plugins_doc/dummy_interface.html index a644a109c7..f4c681c541 100644 --- a/plugins_doc/dummy_interface.html +++ b/plugins_doc/dummy_interface.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/dummy_protocol.html b/plugins_doc/dummy_protocol.html index a644a109c7..f4c681c541 100644 --- a/plugins_doc/dummy_protocol.html +++ b/plugins_doc/dummy_protocol.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/dummy_system.html b/plugins_doc/dummy_system.html index a644a109c7..f4c681c541 100644 --- a/plugins_doc/dummy_system.html +++ b/plugins_doc/dummy_system.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/dummy_web.html b/plugins_doc/dummy_web.html index a644a109c7..f4c681c541 100644 --- a/plugins_doc/dummy_web.html +++ b/plugins_doc/dummy_web.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_all.html b/plugins_doc/plugins_all.html index 15e401ea8c..66d4b52354 100644 --- a/plugins_doc/plugins_all.html +++ b/plugins_doc/plugins_all.html @@ -4,7 +4,7 @@ - Alle Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Alle Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_all_header.html b/plugins_doc/plugins_all_header.html index 7874dac703..02da37f709 100644 --- a/plugins_doc/plugins_all_header.html +++ b/plugins_doc/plugins_all_header.html @@ -4,7 +4,7 @@ - Alle Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Alle Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_footer.html b/plugins_doc/plugins_footer.html index b3a51781f3..927fb9378b 100644 --- a/plugins_doc/plugins_footer.html +++ b/plugins_doc/plugins_footer.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_gateway.html b/plugins_doc/plugins_gateway.html index 05b8522e86..0fd54c8331 100644 --- a/plugins_doc/plugins_gateway.html +++ b/plugins_doc/plugins_gateway.html @@ -4,7 +4,7 @@ - Gateway Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Gateway Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_gateway_header.html b/plugins_doc/plugins_gateway_header.html index d252fe937b..8335cfa136 100644 --- a/plugins_doc/plugins_gateway_header.html +++ b/plugins_doc/plugins_gateway_header.html @@ -4,7 +4,7 @@ - Gateway Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Gateway Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_interface.html b/plugins_doc/plugins_interface.html index 43fa06d606..608b061035 100644 --- a/plugins_doc/plugins_interface.html +++ b/plugins_doc/plugins_interface.html @@ -4,7 +4,7 @@ - Interface Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Interface Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_interface_header.html b/plugins_doc/plugins_interface_header.html index 664ff49369..a8f22cb8eb 100644 --- a/plugins_doc/plugins_interface_header.html +++ b/plugins_doc/plugins_interface_header.html @@ -4,7 +4,7 @@ - Interface Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Interface Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_protocol.html b/plugins_doc/plugins_protocol.html index da13830ca8..61e97c4c6f 100644 --- a/plugins_doc/plugins_protocol.html +++ b/plugins_doc/plugins_protocol.html @@ -4,7 +4,7 @@ - Protokoll Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Protokoll Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_protocol_header.html b/plugins_doc/plugins_protocol_header.html index 7de9ceebf3..fc6209af07 100644 --- a/plugins_doc/plugins_protocol_header.html +++ b/plugins_doc/plugins_protocol_header.html @@ -4,7 +4,7 @@ - Protokoll Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Protokoll Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_system.html b/plugins_doc/plugins_system.html index 907bba821e..9b6ae4cf4c 100644 --- a/plugins_doc/plugins_system.html +++ b/plugins_doc/plugins_system.html @@ -4,7 +4,7 @@ - System Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + System Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_system_header.html b/plugins_doc/plugins_system_header.html index eb75ea6b0a..8ccdf846a4 100644 --- a/plugins_doc/plugins_system_header.html +++ b/plugins_doc/plugins_system_header.html @@ -4,7 +4,7 @@ - System Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + System Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_unclassified.html b/plugins_doc/plugins_unclassified.html index 50bf3f8759..98cb92866a 100644 --- a/plugins_doc/plugins_unclassified.html +++ b/plugins_doc/plugins_unclassified.html @@ -4,7 +4,7 @@ - Nicht klassifizierte Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Nicht klassifizierte Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_unclassified_header.html b/plugins_doc/plugins_unclassified_header.html index 812f79a9f7..b135b82fe8 100644 --- a/plugins_doc/plugins_unclassified_header.html +++ b/plugins_doc/plugins_unclassified_header.html @@ -4,7 +4,7 @@ - Nicht klassifizierte Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Nicht klassifizierte Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_web.html b/plugins_doc/plugins_web.html index 342a2e1758..8d23e7b66b 100644 --- a/plugins_doc/plugins_web.html +++ b/plugins_doc/plugins_web.html @@ -4,7 +4,7 @@ - Web/Cloud Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Web/Cloud Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/plugins_doc/plugins_web_header.html b/plugins_doc/plugins_web_header.html index 506b0d3ecc..1c3717d9a9 100644 --- a/plugins_doc/plugins_web_header.html +++ b/plugins_doc/plugins_web_header.html @@ -4,7 +4,7 @@ - Web/Cloud Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Web/Cloud Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/py-modindex.html b/py-modindex.html index 165ab6f8e1..4bc7ea3463 100644 --- a/py-modindex.html +++ b/py-modindex.html @@ -3,7 +3,7 @@ - Python-Modulindex — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Python-Modulindex — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/APIs.html b/referenz/APIs.html index 6d159c873a..1ad6f22021 100644 --- a/referenz/APIs.html +++ b/referenz/APIs.html @@ -4,7 +4,7 @@ - APIs von SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + APIs von SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/attributes_relative_referenzen.html b/referenz/items/attributes_relative_referenzen.html index 36bb9e5838..6412552d0f 100644 --- a/referenz/items/attributes_relative_referenzen.html +++ b/referenz/items/attributes_relative_referenzen.html @@ -4,7 +4,7 @@ - Relative Item Referenzen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Relative Item Referenzen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/funktionen.html b/referenz/items/funktionen.html index 07e8db4df5..58ae0ffc00 100644 --- a/referenz/items/funktionen.html +++ b/referenz/items/funktionen.html @@ -4,7 +4,7 @@ - Funktionen eines Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Funktionen eines Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/item_zugriff.html b/referenz/items/item_zugriff.html index 2beb59373e..64cd8f6a5d 100644 --- a/referenz/items/item_zugriff.html +++ b/referenz/items/item_zugriff.html @@ -4,7 +4,7 @@ - Zugriff auf die Werte von Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Zugriff auf die Werte von Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/items.html b/referenz/items/items.html index f42fe23229..b016172d81 100644 --- a/referenz/items/items.html +++ b/referenz/items/items.html @@ -4,7 +4,7 @@ - Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/methoden.html b/referenz/items/methoden.html index 311e91703b..66fb0f2514 100644 --- a/referenz/items/methoden.html +++ b/referenz/items/methoden.html @@ -4,7 +4,7 @@ - Methoden zum Zugriff auf Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Methoden zum Zugriff auf Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/plugin_attribute.html b/referenz/items/plugin_attribute.html index dbdcbd4fa1..6dc6426077 100644 --- a/referenz/items/plugin_attribute.html +++ b/referenz/items/plugin_attribute.html @@ -4,7 +4,7 @@ - Plugin-spezifische Attribute — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin-spezifische Attribute — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/properties.html b/referenz/items/properties.html index 344d3bfa34..79540086be 100644 --- a/referenz/items/properties.html +++ b/referenz/items/properties.html @@ -4,7 +4,7 @@ - Properties eines Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Properties eines Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/autotimer.html b/referenz/items/standard_attribute/autotimer.html index f5ba339669..3415089817 100644 --- a/referenz/items/standard_attribute/autotimer.html +++ b/referenz/items/standard_attribute/autotimer.html @@ -4,7 +4,7 @@ - autotimer — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + autotimer — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/crontab.html b/referenz/items/standard_attribute/crontab.html index c725ad7ed1..003bbf6bd6 100644 --- a/referenz/items/standard_attribute/crontab.html +++ b/referenz/items/standard_attribute/crontab.html @@ -4,7 +4,7 @@ - crontab Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + crontab Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/cycle.html b/referenz/items/standard_attribute/cycle.html index 8170fcfb4d..c70716fad4 100644 --- a/referenz/items/standard_attribute/cycle.html +++ b/referenz/items/standard_attribute/cycle.html @@ -4,7 +4,7 @@ - cycle — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + cycle — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/enforce_change.html b/referenz/items/standard_attribute/enforce_change.html index 49026d39cc..a72a4a02cc 100644 --- a/referenz/items/standard_attribute/enforce_change.html +++ b/referenz/items/standard_attribute/enforce_change.html @@ -4,7 +4,7 @@ - enforce_change — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + enforce_change — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/enforce_updates.html b/referenz/items/standard_attribute/enforce_updates.html index c4b2cd4ee9..670dfddde3 100644 --- a/referenz/items/standard_attribute/enforce_updates.html +++ b/referenz/items/standard_attribute/enforce_updates.html @@ -4,7 +4,7 @@ - enforce_updates — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + enforce_updates — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/eval.html b/referenz/items/standard_attribute/eval.html index c2f50a3c4c..90ed4d93cf 100644 --- a/referenz/items/standard_attribute/eval.html +++ b/referenz/items/standard_attribute/eval.html @@ -4,7 +4,7 @@ - eval und eval_trigger — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + eval und eval_trigger — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/hysteresis.html b/referenz/items/standard_attribute/hysteresis.html index 61a6f0d477..b4297380f8 100644 --- a/referenz/items/standard_attribute/hysteresis.html +++ b/referenz/items/standard_attribute/hysteresis.html @@ -4,7 +4,7 @@ - Hysterese — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Hysterese — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/log_change.html b/referenz/items/standard_attribute/log_change.html index 520d6c84e8..046da5d917 100644 --- a/referenz/items/standard_attribute/log_change.html +++ b/referenz/items/standard_attribute/log_change.html @@ -4,7 +4,7 @@ - log_change und log_text — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + log_change und log_text — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/on_update.html b/referenz/items/standard_attribute/on_update.html index b3c333d015..001872bc61 100644 --- a/referenz/items/standard_attribute/on_update.html +++ b/referenz/items/standard_attribute/on_update.html @@ -4,7 +4,7 @@ - on_update und on_change — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + on_update und on_change — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/standard_attribute.html b/referenz/items/standard_attribute/standard_attribute.html index 465e2d2443..14e66f5caf 100644 --- a/referenz/items/standard_attribute/standard_attribute.html +++ b/referenz/items/standard_attribute/standard_attribute.html @@ -4,7 +4,7 @@ - Standard Attribute Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Standard Attribute Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/struct.html b/referenz/items/standard_attribute/struct.html index 4a4d05c9d0..3af2978da2 100644 --- a/referenz/items/standard_attribute/struct.html +++ b/referenz/items/standard_attribute/struct.html @@ -4,7 +4,7 @@ - struct — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + struct — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/standard_attribute/type.html b/referenz/items/standard_attribute/type.html index 04f4444119..c9805a7ef6 100644 --- a/referenz/items/standard_attribute/type.html +++ b/referenz/items/standard_attribute/type.html @@ -4,7 +4,7 @@ - type — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + type — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/items/systemitems.html b/referenz/items/systemitems.html index 29ee9f762b..d231a88bc3 100644 --- a/referenz/items/systemitems.html +++ b/referenz/items/systemitems.html @@ -4,7 +4,7 @@ - SmartHomeNG Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartHomeNG Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/libraries_plugins_logics.html b/referenz/libraries_plugins_logics.html index d2eada6b8b..23fa381630 100644 --- a/referenz/libraries_plugins_logics.html +++ b/referenz/libraries_plugins_logics.html @@ -4,7 +4,7 @@ - Libraries für Plugins und Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Libraries für Plugins und Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logging/logging.html b/referenz/logging/logging.html index 4642e45cf1..ddd3728812 100644 --- a/referenz/logging/logging.html +++ b/referenz/logging/logging.html @@ -4,7 +4,7 @@ - Logging — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logging/logging_filter.html b/referenz/logging/logging_filter.html index cd600e836e..8fc3c212cb 100644 --- a/referenz/logging/logging_filter.html +++ b/referenz/logging/logging_filter.html @@ -4,7 +4,7 @@ - Logging Filter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging Filter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logging/logging_formatter.html b/referenz/logging/logging_formatter.html index df1fa29b23..19a765a7f8 100644 --- a/referenz/logging/logging_formatter.html +++ b/referenz/logging/logging_formatter.html @@ -4,7 +4,7 @@ - Logging Formatter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging Formatter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logging/logging_handler.html b/referenz/logging/logging_handler.html index f9e48c489f..9f6737fdd9 100644 --- a/referenz/logging/logging_handler.html +++ b/referenz/logging/logging_handler.html @@ -4,7 +4,7 @@ - Logging Handler — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging Handler — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logging/logging_textformatierung.html b/referenz/logging/logging_textformatierung.html index c9f3592381..40a04242f9 100644 --- a/referenz/logging/logging_textformatierung.html +++ b/referenz/logging/logging_textformatierung.html @@ -4,7 +4,7 @@ - Text Formatierung beim Logging — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Text Formatierung beim Logging — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken.html b/referenz/logiken/logiken.html index c398bf2fb4..d177803e8e 100644 --- a/referenz/logiken/logiken.html +++ b/referenz/logiken/logiken.html @@ -4,7 +4,7 @@ - Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_exceptions.html b/referenz/logiken/logiken_exceptions.html index c1e1b2ff0b..29525bf1b4 100644 --- a/referenz/logiken/logiken_exceptions.html +++ b/referenz/logiken/logiken_exceptions.html @@ -4,7 +4,7 @@ - Exceptions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Exceptions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_funktionen.html b/referenz/logiken/logiken_funktionen.html index d907a9b1ca..619599edd3 100644 --- a/referenz/logiken/logiken_funktionen.html +++ b/referenz/logiken/logiken_funktionen.html @@ -4,7 +4,7 @@ - Funktionen und Klassen in Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Funktionen und Klassen in Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_grundstruktur.html b/referenz/logiken/logiken_grundstruktur.html index 8905a2188c..eed8d85757 100644 --- a/referenz/logiken/logiken_grundstruktur.html +++ b/referenz/logiken/logiken_grundstruktur.html @@ -4,7 +4,7 @@ - Grundstruktur einer Logik — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Grundstruktur einer Logik — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_items.html b/referenz/logiken/logiken_items.html index 05ee5175a5..da4799c563 100644 --- a/referenz/logiken/logiken_items.html +++ b/referenz/logiken/logiken_items.html @@ -4,7 +4,7 @@ - Zugriff auf Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Zugriff auf Items — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_konfiguration.html b/referenz/logiken/logiken_konfiguration.html index da1e9828ea..4401ad7952 100644 --- a/referenz/logiken/logiken_konfiguration.html +++ b/referenz/logiken/logiken_konfiguration.html @@ -4,7 +4,7 @@ - Logik Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logik Konfiguration — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_logging.html b/referenz/logiken/logiken_logging.html index 2101ec6bf2..f3ecc294c7 100644 --- a/referenz/logiken/logiken_logging.html +++ b/referenz/logiken/logiken_logging.html @@ -4,7 +4,7 @@ - Logging in Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Logging in Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_logic_objekt.html b/referenz/logiken/logiken_logic_objekt.html index 3a9c6a781c..cbdf982343 100644 --- a/referenz/logiken/logiken_logic_objekt.html +++ b/referenz/logiken/logiken_logic_objekt.html @@ -4,7 +4,7 @@ - Die Objekte logic und logics — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Die Objekte logic und logics — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_mqtt.html b/referenz/logiken/logiken_mqtt.html index dbbb1aa5dc..fba104ac02 100644 --- a/referenz/logiken/logiken_mqtt.html +++ b/referenz/logiken/logiken_mqtt.html @@ -4,7 +4,7 @@ - Nutzung von MQTT in Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Nutzung von MQTT in Logiken — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_persistente_vars.html b/referenz/logiken/logiken_persistente_vars.html index 1757583cf9..d9235de083 100644 --- a/referenz/logiken/logiken_persistente_vars.html +++ b/referenz/logiken/logiken_persistente_vars.html @@ -4,7 +4,7 @@ - Persistente Variablen und Objekte — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Persistente Variablen und Objekte — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_plugin_funktionen.html b/referenz/logiken/logiken_plugin_funktionen.html index 3fc36ce322..f07831057d 100644 --- a/referenz/logiken/logiken_plugin_funktionen.html +++ b/referenz/logiken/logiken_plugin_funktionen.html @@ -4,7 +4,7 @@ - Nutzung von Plugin Funktionen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Nutzung von Plugin Funktionen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_python_module.html b/referenz/logiken/logiken_python_module.html index 30fc34f2a5..a1bc237c18 100644 --- a/referenz/logiken/logiken_python_module.html +++ b/referenz/logiken/logiken_python_module.html @@ -4,7 +4,7 @@ - Bereits geladene Python Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Bereits geladene Python Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_smarthomeng_methoden.html b/referenz/logiken/logiken_smarthomeng_methoden.html index cac05773fa..70ef0fce6a 100644 --- a/referenz/logiken/logiken_smarthomeng_methoden.html +++ b/referenz/logiken/logiken_smarthomeng_methoden.html @@ -4,7 +4,7 @@ - SmartHomeNG Methoden — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartHomeNG Methoden — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/logiken/logiken_standardparameter.html b/referenz/logiken/logiken_standardparameter.html index b5c79566cc..a009bad5fb 100644 --- a/referenz/logiken/logiken_standardparameter.html +++ b/referenz/logiken/logiken_standardparameter.html @@ -4,7 +4,7 @@ - Standardparameter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Standardparameter — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/item_attribute_prefixes.html b/referenz/metadata/item_attribute_prefixes.html index c33e7ecd70..ddeb0589b5 100644 --- a/referenz/metadata/item_attribute_prefixes.html +++ b/referenz/metadata/item_attribute_prefixes.html @@ -4,7 +4,7 @@ - item_attribute_prefixes — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + item_attribute_prefixes — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/item_attributes.html b/referenz/metadata/item_attributes.html index cc0f411b92..cf38d51625 100644 --- a/referenz/metadata/item_attributes.html +++ b/referenz/metadata/item_attributes.html @@ -4,7 +4,7 @@ - item_attributes — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + item_attributes — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/item_structs.html b/referenz/metadata/item_structs.html index f870fab02d..9c8bc9d176 100644 --- a/referenz/metadata/item_structs.html +++ b/referenz/metadata/item_structs.html @@ -4,7 +4,7 @@ - item_structs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + item_structs — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/logic_parameters.html b/referenz/metadata/logic_parameters.html index 578275cb51..4530c62757 100644 --- a/referenz/metadata/logic_parameters.html +++ b/referenz/metadata/logic_parameters.html @@ -4,7 +4,7 @@ - logic_parameters — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + logic_parameters — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/metadata.html b/referenz/metadata/metadata.html index 9886b809b6..9fe1664f38 100644 --- a/referenz/metadata/metadata.html +++ b/referenz/metadata/metadata.html @@ -4,7 +4,7 @@ - Metadaten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Metadaten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/module_global.html b/referenz/metadata/module_global.html index fe3ba80276..4e03c9bd1e 100644 --- a/referenz/metadata/module_global.html +++ b/referenz/metadata/module_global.html @@ -4,7 +4,7 @@ - module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/parameter_keys.html b/referenz/metadata/parameter_keys.html index a8f60eeae9..cd882293b5 100644 --- a/referenz/metadata/parameter_keys.html +++ b/referenz/metadata/parameter_keys.html @@ -4,7 +4,7 @@ - <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + <no title> — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/parameters.html b/referenz/metadata/parameters.html index 6132a78d19..b5a54c8dac 100644 --- a/referenz/metadata/parameters.html +++ b/referenz/metadata/parameters.html @@ -4,7 +4,7 @@ - parameters — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + parameters — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/plugin_functions.html b/referenz/metadata/plugin_functions.html index 3d67d6875c..9f6853a581 100644 --- a/referenz/metadata/plugin_functions.html +++ b/referenz/metadata/plugin_functions.html @@ -4,7 +4,7 @@ - plugin_functions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + plugin_functions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/metadata/plugin_global.html b/referenz/metadata/plugin_global.html index f7a487064b..16c160226d 100644 --- a/referenz/metadata/plugin_global.html +++ b/referenz/metadata/plugin_global.html @@ -4,7 +4,7 @@ - plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/module/module.html b/referenz/module/module.html index ce51e8aaf4..469d872b6b 100644 --- a/referenz/module/module.html +++ b/referenz/module/module.html @@ -4,7 +4,7 @@ - Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/module/module_admin.html b/referenz/module/module_admin.html index b0543cb9c3..ce2e61be7d 100644 --- a/referenz/module/module_admin.html +++ b/referenz/module/module_admin.html @@ -4,7 +4,7 @@ - Modul admin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Modul admin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/module/module_http.html b/referenz/module/module_http.html index 1bd5848e8b..5572343591 100644 --- a/referenz/module/module_http.html +++ b/referenz/module/module_http.html @@ -4,7 +4,7 @@ - Modul http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Modul http — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/module/module_metadata.html b/referenz/module/module_metadata.html index e5c340409e..04e92c5410 100644 --- a/referenz/module/module_metadata.html +++ b/referenz/module/module_metadata.html @@ -4,7 +4,7 @@ - Metadaten für Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Metadaten für Module — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/module/module_mqtt.html b/referenz/module/module_mqtt.html index c5c527e7ab..541fe7efd6 100644 --- a/referenz/module/module_mqtt.html +++ b/referenz/module/module_mqtt.html @@ -4,7 +4,7 @@ - Modul mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Modul mqtt — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/module/module_websocket.html b/referenz/module/module_websocket.html index 8d0af80d03..2ed9e8864b 100644 --- a/referenz/module/module_websocket.html +++ b/referenz/module/module_websocket.html @@ -4,7 +4,7 @@ - Module websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Module websocket — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/netzwerk.html b/referenz/netzwerk.html index 84c77ccbb8..76fc9b974e 100644 --- a/referenz/netzwerk.html +++ b/referenz/netzwerk.html @@ -4,7 +4,7 @@ - Netzwerk — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Netzwerk — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/asyncio_support.html b/referenz/plugins/asyncio_support.html index 0955fc1278..6413ddddc1 100644 --- a/referenz/plugins/asyncio_support.html +++ b/referenz/plugins/asyncio_support.html @@ -4,7 +4,7 @@ - asyncio Unterstützung in Plugins Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + asyncio Unterstützung in Plugins Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_metadata.html b/referenz/plugins/plugin_metadata.html index 0f2bc06609..fa7fb55bc5 100644 --- a/referenz/plugins/plugin_metadata.html +++ b/referenz/plugins/plugin_metadata.html @@ -4,7 +4,7 @@ - Metadaten für Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Metadaten für Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_typen/mqttplugin_class.html b/referenz/plugins/plugin_typen/mqttplugin_class.html index 39ff9dea94..5acbea316f 100644 --- a/referenz/plugins/plugin_typen/mqttplugin_class.html +++ b/referenz/plugins/plugin_typen/mqttplugin_class.html @@ -4,7 +4,7 @@ - Class MqttPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class MqttPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_typen/plugin_typen.html b/referenz/plugins/plugin_typen/plugin_typen.html index 8cd6009d06..9aa0be0598 100644 --- a/referenz/plugins/plugin_typen/plugin_typen.html +++ b/referenz/plugins/plugin_typen/plugin_typen.html @@ -4,7 +4,7 @@ - Plugin Typen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin Typen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_typen/smartdeviceplugin.html b/referenz/plugins/plugin_typen/smartdeviceplugin.html index 0c2314a46f..9e729c260c 100644 --- a/referenz/plugins/plugin_typen/smartdeviceplugin.html +++ b/referenz/plugins/plugin_typen/smartdeviceplugin.html @@ -4,7 +4,7 @@ - Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_typen/smartdeviceplugin_class.html b/referenz/plugins/plugin_typen/smartdeviceplugin_class.html index c7c30a47ac..adba2869f8 100644 --- a/referenz/plugins/plugin_typen/smartdeviceplugin_class.html +++ b/referenz/plugins/plugin_typen/smartdeviceplugin_class.html @@ -4,7 +4,7 @@ - Class SmartDevicePlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class SmartDevicePlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_typen/smartplugin_class.html b/referenz/plugins/plugin_typen/smartplugin_class.html index a9b86dcf70..026d452a3b 100644 --- a/referenz/plugins/plugin_typen/smartplugin_class.html +++ b/referenz/plugins/plugin_typen/smartplugin_class.html @@ -4,7 +4,7 @@ - Class SmartPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Class SmartPlugin — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugin_user_doc.html b/referenz/plugins/plugin_user_doc.html index f2d38ceec5..abd54f36a1 100644 --- a/referenz/plugins/plugin_user_doc.html +++ b/referenz/plugins/plugin_user_doc.html @@ -4,7 +4,7 @@ - Dokumentation des Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Dokumentation des Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/plugins/plugins.html b/referenz/plugins/plugins.html index 40258cae09..86a9ec079e 100644 --- a/referenz/plugins/plugins.html +++ b/referenz/plugins/plugins.html @@ -4,7 +4,7 @@ - Plugins Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Plugins Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/python/python.html b/referenz/python/python.html index c488225c78..84f73f0dd1 100644 --- a/referenz/python/python.html +++ b/referenz/python/python.html @@ -4,7 +4,7 @@ - Python Environment Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Python Environment Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/python/python_installation.html b/referenz/python/python_installation.html index b7be01ea52..58de55ecf0 100644 --- a/referenz/python/python_installation.html +++ b/referenz/python/python_installation.html @@ -4,7 +4,7 @@ - Python Version Installieren Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Python Version Installieren Neu — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/python/support_skripte.html b/referenz/python/support_skripte.html index 8700b82d88..c9d6fc10d0 100644 --- a/referenz/python/support_skripte.html +++ b/referenz/python/support_skripte.html @@ -4,7 +4,7 @@ - Support Skripte für SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Support Skripte für SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/python/virtual_environments.html b/referenz/python/virtual_environments.html index cc78e2f815..d4fcd1b68e 100644 --- a/referenz/python/virtual_environments.html +++ b/referenz/python/virtual_environments.html @@ -4,7 +4,7 @@ - Virtuelle Python Environments Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Virtuelle Python Environments Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/referenz.html b/referenz/referenz.html index f4a478e229..fc965e08df 100644 --- a/referenz/referenz.html +++ b/referenz/referenz.html @@ -4,7 +4,7 @@ - Referenz Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Referenz Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/smarthomeng/ablauf_startup.html b/referenz/smarthomeng/ablauf_startup.html index 4870860af8..708395fb46 100644 --- a/referenz/smarthomeng/ablauf_startup.html +++ b/referenz/smarthomeng/ablauf_startup.html @@ -4,7 +4,7 @@ - Ablauf des Starts von SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Ablauf des Starts von SmartHomeNG — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/smarthomeng/feiertage.html b/referenz/smarthomeng/feiertage.html index f25c29fce9..4463012abe 100644 --- a/referenz/smarthomeng/feiertage.html +++ b/referenz/smarthomeng/feiertage.html @@ -4,7 +4,7 @@ - Feiertage — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Feiertage — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/smarthomeng/feiertage_datum_zeit.html b/referenz/smarthomeng/feiertage_datum_zeit.html index d7335c590d..056554465a 100644 --- a/referenz/smarthomeng/feiertage_datum_zeit.html +++ b/referenz/smarthomeng/feiertage_datum_zeit.html @@ -4,7 +4,7 @@ - Feiertage, Daten und Zeiten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Feiertage, Daten und Zeiten — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/smarthomeng/kommandozeilen_optionen.html b/referenz/smarthomeng/kommandozeilen_optionen.html index 1e4e08f6f0..2dd70968e9 100644 --- a/referenz/smarthomeng/kommandozeilen_optionen.html +++ b/referenz/smarthomeng/kommandozeilen_optionen.html @@ -4,7 +4,7 @@ - Kommandozeilen-Optionen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Kommandozeilen-Optionen — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/smarthomeng/methoden_sonne_mond.html b/referenz/smarthomeng/methoden_sonne_mond.html index df47ba7dea..8911caf702 100644 --- a/referenz/smarthomeng/methoden_sonne_mond.html +++ b/referenz/smarthomeng/methoden_sonne_mond.html @@ -4,7 +4,7 @@ - Astronomie (Sonne und Mond) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Astronomie (Sonne und Mond) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/smarthomeng/smarthomeng.html b/referenz/smarthomeng/smarthomeng.html index b5cdfcd4fa..cb58c48a57 100644 --- a/referenz/smarthomeng/smarthomeng.html +++ b/referenz/smarthomeng/smarthomeng.html @@ -4,7 +4,7 @@ - SmartHomeNG (der Core) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + SmartHomeNG (der Core) — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/referenz/userfunctions/userfunctions.html b/referenz/userfunctions/userfunctions.html index 349a6d099a..6905ce5816 100644 --- a/referenz/userfunctions/userfunctions.html +++ b/referenz/userfunctions/userfunctions.html @@ -4,7 +4,7 @@ - Userfunctions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Userfunctions — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_00_release_sh_py.html b/release/1_00_release_sh_py.html index db70f4e8a5..204c15fb5c 100644 --- a/release/1_00_release_sh_py.html +++ b/release/1_00_release_sh_py.html @@ -4,7 +4,7 @@ - Release 1.0 und davor — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.0 und davor — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_01_and_newer.html b/release/1_01_and_newer.html index 52172121cd..3a208da984 100644 --- a/release/1_01_and_newer.html +++ b/release/1_01_and_newer.html @@ -4,7 +4,7 @@ - Release 1.1 bis 1.5 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.1 bis 1.5 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_06.html b/release/1_06.html index 0899fce30a..5ff4eddb66 100644 --- a/release/1_06.html +++ b/release/1_06.html @@ -4,7 +4,7 @@ - Release 1.6 - 11. Mai 2019 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.6 - 11. Mai 2019 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_06_1.html b/release/1_06_1.html index 12aeef050d..48cc6d1935 100644 --- a/release/1_06_1.html +++ b/release/1_06_1.html @@ -4,7 +4,7 @@ - Release 1.6.1 - 10. August 2019 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.6.1 - 10. August 2019 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_07.html b/release/1_07.html index 94c37dce83..97b4337af3 100644 --- a/release/1_07.html +++ b/release/1_07.html @@ -4,7 +4,7 @@ - Release 1.7 - 6. April 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.7 - 6. April 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_07_1.html b/release/1_07_1.html index dd7bc3360c..80b20135bb 100644 --- a/release/1_07_1.html +++ b/release/1_07_1.html @@ -4,7 +4,7 @@ - Release 1.7.1 - 14. April 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.7.1 - 14. April 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_07_2.html b/release/1_07_2.html index 3548673bd8..ec04d31cc0 100644 --- a/release/1_07_2.html +++ b/release/1_07_2.html @@ -4,7 +4,7 @@ - Release 1.7.2 - 23. Juni 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.7.2 - 23. Juni 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_08.html b/release/1_08.html index 1421e3bb6e..8674fc1fa2 100644 --- a/release/1_08.html +++ b/release/1_08.html @@ -4,7 +4,7 @@ - Release 1.8 - 15. Januar 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.8 - 15. Januar 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_08_1.html b/release/1_08_1.html index 4620c5af10..6d55bbdb23 100644 --- a/release/1_08_1.html +++ b/release/1_08_1.html @@ -4,7 +4,7 @@ - Release 1.8.1 - 24. Januar 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.8.1 - 24. Januar 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_08_2.html b/release/1_08_2.html index 9f1344b172..fb21cfb4d8 100644 --- a/release/1_08_2.html +++ b/release/1_08_2.html @@ -4,7 +4,7 @@ - Release 1.8.2 - 21. Februar 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.8.2 - 21. Februar 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_09.html b/release/1_09.html index 7704fd6b6c..9390d5dc76 100644 --- a/release/1_09.html +++ b/release/1_09.html @@ -4,7 +4,7 @@ - Release 1.9 - 28. Dezember 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.9 - 28. Dezember 2021 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_09_1.html b/release/1_09_1.html index 833237e267..0b82d1fedd 100644 --- a/release/1_09_1.html +++ b/release/1_09_1.html @@ -4,7 +4,7 @@ - Release 1.9.1 - 13. Feb 2022 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.9.1 - 13. Feb 2022 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_09_2.html b/release/1_09_2.html index c088a5c9d1..23e0208a8a 100644 --- a/release/1_09_2.html +++ b/release/1_09_2.html @@ -4,7 +4,7 @@ - Release 1.9.2 - 2. Mai 2022 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.9.2 - 2. Mai 2022 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_09_3.html b/release/1_09_3.html index 75ce56b244..3ca8c08474 100644 --- a/release/1_09_3.html +++ b/release/1_09_3.html @@ -4,7 +4,7 @@ - Release 1.9.3 - 31. Okt 2022 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.9.3 - 31. Okt 2022 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_09_4.html b/release/1_09_4.html index 46de527808..f34b747570 100644 --- a/release/1_09_4.html +++ b/release/1_09_4.html @@ -4,7 +4,7 @@ - Release 1.9.4 - 14. März 2023 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.9.4 - 14. März 2023 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_09_5.html b/release/1_09_5.html index 6c6c7f7dfb..7b065066b8 100644 --- a/release/1_09_5.html +++ b/release/1_09_5.html @@ -4,7 +4,7 @@ - Release 1.9.5 - 31. März 2023 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.9.5 - 31. März 2023 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_10.html b/release/1_10.html index 91f9b3435b..0777589178 100644 --- a/release/1_10.html +++ b/release/1_10.html @@ -4,7 +4,7 @@ - Release 1.10 - 29. Jan 2024 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.10 - 29. Jan 2024 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/1_10_x.html b/release/1_10_x.html index cf2ac41276..6e2d777970 100644 --- a/release/1_10_x.html +++ b/release/1_10_x.html @@ -4,7 +4,7 @@ - Release 1.10.x - tt. mmm 2024 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.10.x - tt. mmm 2024 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/release.html b/release/release.html index 99dbc4dec9..a8ffbdff53 100644 --- a/release/release.html +++ b/release/release.html @@ -4,7 +4,7 @@ - Release Notes — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release Notes — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_1.html b/release/smarthome_py/0_1.html index 29c6351293..4361e21114 100644 --- a/release/smarthome_py/0_1.html +++ b/release/smarthome_py/0_1.html @@ -4,7 +4,7 @@ - Release 0.1 - April 09th, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.1 - April 09th, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_2.html b/release/smarthome_py/0_2.html index 5de70a9e96..930357af97 100644 --- a/release/smarthome_py/0_2.html +++ b/release/smarthome_py/0_2.html @@ -4,7 +4,7 @@ - Release 0.2 - June 21st, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.2 - June 21st, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_3.html b/release/smarthome_py/0_3.html index ee268f1232..bd9f852602 100644 --- a/release/smarthome_py/0_3.html +++ b/release/smarthome_py/0_3.html @@ -4,7 +4,7 @@ - Release 0.3 - August 14th, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.3 - August 14th, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_4.html b/release/smarthome_py/0_4.html index c88de0762c..946a74e9fd 100644 --- a/release/smarthome_py/0_4.html +++ b/release/smarthome_py/0_4.html @@ -4,7 +4,7 @@ - Release 0.4 - October 10th, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.4 - October 10th, 2011 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_5.html b/release/smarthome_py/0_5.html index c56aee4a00..05537c3518 100644 --- a/release/smarthome_py/0_5.html +++ b/release/smarthome_py/0_5.html @@ -4,7 +4,7 @@ - Release 0.5 - July 12th, 2012 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.5 - July 12th, 2012 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_6.html b/release/smarthome_py/0_6.html index 552a8ed214..7c068a54cf 100644 --- a/release/smarthome_py/0_6.html +++ b/release/smarthome_py/0_6.html @@ -4,7 +4,7 @@ - Release 0.6 - June 21th, 2012 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.6 - June 21th, 2012 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_7.html b/release/smarthome_py/0_7.html index 89cae10068..f35d57e924 100644 --- a/release/smarthome_py/0_7.html +++ b/release/smarthome_py/0_7.html @@ -4,7 +4,7 @@ - Release 0.7 - September 27th 2012 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.7 - September 27th 2012 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_8.html b/release/smarthome_py/0_8.html index 4d38cbeae0..a35922cb14 100644 --- a/release/smarthome_py/0_8.html +++ b/release/smarthome_py/0_8.html @@ -4,7 +4,7 @@ - Release 0.8 - January 31st, 2013 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.8 - January 31st, 2013 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/0_9.html b/release/smarthome_py/0_9.html index c9f9a3dd97..ae28c8f93a 100644 --- a/release/smarthome_py/0_9.html +++ b/release/smarthome_py/0_9.html @@ -4,7 +4,7 @@ - Release 0.9 - June 6th 2013 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 0.9 - June 6th 2013 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthome_py/1_0.html b/release/smarthome_py/1_0.html index 13bf657595..2f5af50c55 100644 --- a/release/smarthome_py/1_0.html +++ b/release/smarthome_py/1_0.html @@ -4,7 +4,7 @@ - Release 1.0 - November 14th, 2013 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.0 - November 14th, 2013 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_01.html b/release/smarthomeng_older/1_01.html index 5e438b8a44..1fc126bb15 100644 --- a/release/smarthomeng_older/1_01.html +++ b/release/smarthomeng_older/1_01.html @@ -4,7 +4,7 @@ - Release 1.1 - 13. April 2016 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.1 - 13. April 2016 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_02.html b/release/smarthomeng_older/1_02.html index a8e1f11841..8c6c8bedd1 100644 --- a/release/smarthomeng_older/1_02.html +++ b/release/smarthomeng_older/1_02.html @@ -4,7 +4,7 @@ - Release 1.2 - 16. Mai 2016 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.2 - 16. Mai 2016 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_03.html b/release/smarthomeng_older/1_03.html index 4274381cc4..d79569d16b 100644 --- a/release/smarthomeng_older/1_03.html +++ b/release/smarthomeng_older/1_03.html @@ -4,7 +4,7 @@ - Release 1.3 - 5. August 2017 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.3 - 5. August 2017 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_04.html b/release/smarthomeng_older/1_04.html index b5c8d794ea..f6b6d5c5ea 100644 --- a/release/smarthomeng_older/1_04.html +++ b/release/smarthomeng_older/1_04.html @@ -4,7 +4,7 @@ - Release 1.4 - 17. Dezember 2017 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.4 - 17. Dezember 2017 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_04_1.html b/release/smarthomeng_older/1_04_1.html index 924d72c94b..eedc234c2d 100644 --- a/release/smarthomeng_older/1_04_1.html +++ b/release/smarthomeng_older/1_04_1.html @@ -4,7 +4,7 @@ - Release 1.4.1 - 23. Dezember 2017 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.4.1 - 23. Dezember 2017 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_04_2.html b/release/smarthomeng_older/1_04_2.html index f1885bd71c..a0ea79f057 100644 --- a/release/smarthomeng_older/1_04_2.html +++ b/release/smarthomeng_older/1_04_2.html @@ -4,7 +4,7 @@ - Release 1.4.2 - 2. Januar 2018 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.4.2 - 2. Januar 2018 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_05.html b/release/smarthomeng_older/1_05.html index 71a4177a29..f466fa29f0 100644 --- a/release/smarthomeng_older/1_05.html +++ b/release/smarthomeng_older/1_05.html @@ -4,7 +4,7 @@ - Release 1.5 - 8. Juli 2018 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.5 - 8. Juli 2018 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/release/smarthomeng_older/1_05_1.html b/release/smarthomeng_older/1_05_1.html index d4199fa774..5c33a07fa2 100644 --- a/release/smarthomeng_older/1_05_1.html +++ b/release/smarthomeng_older/1_05_1.html @@ -4,7 +4,7 @@ - Release 1.5.1 - 15. Juli 2018 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.5.1 - 15. Juli 2018 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/search.html b/search.html index 9741595173..d5de72fb7d 100644 --- a/search.html +++ b/search.html @@ -3,7 +3,7 @@ - Suche — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Suche — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/searchindex.js b/searchindex.js index 700c0cef66..1a2b67dabb 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["admin/admin", "admin/dienste", "admin/items", "admin/logiken", "admin/logs", "admin/plugins", "admin/scenes", "admin/scheduler", "admin/system", "admin/threads", "beispiele/beispiele", "beispiele/items/items", "beispiele/items/items_eval_evaltrigger", "beispiele/items/items_tipps_und_tricks", "beispiele/knxd", "beispiele/logiken/beispiel_beaufort", "beispiele/logiken/beispiel_berechnung_zeitdaten", "beispiele/logiken/beispiel_blinken", "beispiele/logiken/beispiel_dpt2", "beispiele/logiken/beispiel_icon_zenith", "beispiele/logiken/beispiel_nachdimmen", "beispiele/logiken/logiken", "beispiele/plugins/plugin_aus_develop", "beispiele/plugins/plugins", "beispiele/structs/1_structs", "beispiele/structs/item_strukturen_kopieren", "beispiele/structs/structs", "beispiele/umzug", "datenschutz", "dev/README", "dev/sample_module/README", "dev/sample_mqttplugin/user_doc", "dev/sample_plugin/user_doc", "dev/sample_smartdevice_plugin/user_doc", "dev/sample_smartdevice_standalone_plugin/user_doc", "dummy_for_readmes", "einleitung", "entwicklung/build_doc", "entwicklung/core/core", "entwicklung/core/core_libraries", "entwicklung/core/core_shng", "entwicklung/entwicklung", "entwicklung/logiken/logiken", "entwicklung/module/module", "entwicklung/module/module_http", "entwicklung/module/module_mqtt", "entwicklung/plugins/async_in_plugins", "entwicklung/plugins/entwicklungsrichtlinien", "entwicklung/plugins/kurzanleitung/kurzanleitung", "entwicklung/plugins/kurzanleitung/libraries_plugins", "entwicklung/plugins/kurzanleitung/multilanguage", "entwicklung/plugins/kurzanleitung/plugin_documentation_files", "entwicklung/plugins/kurzanleitung/plugin_in5minutes", "entwicklung/plugins/kurzanleitung/plugin_metadata", "entwicklung/plugins/kurzanleitung/samplemqttplugin", "entwicklung/plugins/kurzanleitung/sampleplugin", "entwicklung/plugins/kurzanleitung/webinterface", "entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components", "entwicklung/plugins/kurzanleitung/webinterface_automatic_update", "entwicklung/plugins/kurzanleitung/webinterface_extend_plugin", "entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface", "entwicklung/plugins/kurzanleitung/webinterface_multilanguage", "entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction", "entwicklung/plugins/mqttplugin", "entwicklung/plugins/plugin_checker", "entwicklung/plugins/plugins", "entwicklung/plugins/smartplugin", "entwicklung/plugins/vorueberlegungen", "entwicklung/virtual_env", "faq", "fehlersuche", "fehlersuche_checkliste", "gedankenstuetzen/admonition_arten", "gedankenstuetzen/knxd_compilieren", "gedankenstuetzen/tabs", "genindex", "ideen_kommendes_release", "impressum", "index", "installation/anforderungen", "installation/docker", "installation/installation", "installation/komplettanleitung/01_debian", "installation/komplettanleitung/02_smarthomeng", "installation/komplettanleitung/03_mosquitto", "installation/komplettanleitung/04_smartvisu", "installation/komplettanleitung/05_knxd", "installation/komplettanleitung/06_onewire", "installation/komplettanleitung/07_samba", "installation/komplettanleitung/08_shng_daemon", "installation/komplettanleitung/09_esphome", "installation/komplettanleitung/komplettanleitung", "installation/update_upgrade", "konfiguration/admin_gui/admin_gui", "konfiguration/admin_gui/admin_gui_items", "konfiguration/admin_gui/admin_gui_plugins", "konfiguration/admin_gui/admin_gui_system", "konfiguration/item_structs", "konfiguration/items/initiale_itemkonfiguration", "konfiguration/items/items", "konfiguration/items/ueberblick", "konfiguration/konfiguration", "konfiguration/konfiguration_backup_restore", "konfiguration/konfiguration_ueberblick", "konfiguration/konfigurationsdateien/holidays", "konfiguration/konfigurationsdateien/items", "konfiguration/konfigurationsdateien/konfigdateien", "konfiguration/konfigurationsdateien/logging", "konfiguration/konfigurationsdateien/logic", "konfiguration/konfigurationsdateien/logics", "konfiguration/konfigurationsdateien/module", "konfiguration/konfigurationsdateien/plugin", "konfiguration/konfigurationsdateien/scenes", "konfiguration/konfigurationsdateien/smarthome", "konfiguration/konfigurationsdateien/struct", "konfiguration/logging", "konfiguration/logging_best_practices", "konfiguration/logiken", "konfiguration/module/module", "konfiguration/module/module_admin", "konfiguration/module/module_http", "konfiguration/module/module_mqtt", "konfiguration/module/module_websocket", "konfiguration/plugins", "konfiguration/szenen", "konfiguration/userfunctions", "lib/config", "lib/connection", "lib/constants", "lib/daemon", "lib/db", "lib/env", "lib/item", "lib/item_class_item", "lib/item_class_items", "lib/item_conversion", "lib/log", "lib/logic", "lib/logutils", "lib/metadata", "lib/module", "lib/network", "lib/orb", "lib/plugin", "lib/plugin_class_plugins", "lib/plugin_class_pluginwrapper", "lib/scene", "lib/scheduler", "lib/shtime", "lib/shyaml", "lib/tools", "lib/translation", "lib/utils", "logiken/logics", "modules/admin/README", "modules/admin/websocket_admingui_requests", "modules/admin/websocket_shng_requests", "modules/http/README", "modules/mqtt/README", "plugins/README", "plugins/alexa/README", "plugins/alexa/nginx", "plugins/alexa4p3/README", "plugins/alexa4p3/user_doc", "plugins/alexarc4shng/user_doc", "plugins/apcups/user_doc", "plugins/appletv/user_doc", "plugins/artnet/user_doc", "plugins/asterisk/user_doc", "plugins/avdevice/user_doc", "plugins/avm/user_doc", "plugins/avm_smarthome/user_doc", "plugins/blockly/user_doc", "plugins/bose_soundtouch/README", "plugins/bose_soundtouch/user_doc", "plugins/bsblan/README", "plugins/buderus/README", "plugins/buderus/URLs", "plugins/byd_bat/user_doc", "plugins/casambi/user_doc", "plugins/cli/README", "plugins/cli/user_doc", "plugins/co2meter/README", "plugins/comfoair/README", "plugins/darksky/user_doc", "plugins/dashbutton/README", "plugins/database/README", "plugins/database/user_doc", "plugins/datalog/user_doc", "plugins/db_addon/user_doc", "plugins/deebot_ozmo/README", "plugins/denon/user_doc", "plugins/dlms/user_doc", "plugins/dmx/README", "plugins/dmx/user_doc", "plugins/drexelundweiss/README", "plugins/drexelundweiss/user_doc", "plugins/ebus/user_doc", "plugins/enigma2/README", "plugins/enocean/README", "plugins/enocean/user_doc", "plugins/epson/user_doc", "plugins/eta_pu/README", "plugins/executor/user_doc", "plugins/gpio/user_doc", "plugins/harmony/README", "plugins/helios/README", "plugins/helios_tcp/user_doc", "plugins/homeconnect/README", "plugins/homematic/README", "plugins/homematic/user_doc", "plugins/hue/README", "plugins/hue2/user_doc", "plugins/hue3/user_doc", "plugins/husky/user_doc", "plugins/husky2/user_doc", "plugins/ical/README", "plugins/ical/user_doc", "plugins/indego/README", "plugins/indego4shng/README", "plugins/indego4shng/user_doc", "plugins/influxdata/README", "plugins/influxdb/user_doc", "plugins/influxdb2/user_doc", "plugins/influxdb2/user_doc/influxdb_einfuehrung", "plugins/influxdb2/user_doc/influxdb_installation", "plugins/influxdb2/user_doc/influxdb_konfiguration", "plugins/intercom_2n/README", "plugins/join/user_doc", "plugins/jsonread/user_doc", "plugins/jvcproj/user_doc", "plugins/kathrein/README", "plugins/knx/user_doc", "plugins/kodi/user_doc", "plugins/kostal/README", "plugins/kostalmodbus/README", "plugins/ksemmodbus/README", "plugins/lirc/user_doc", "plugins/lms/user_doc", "plugins/logo/README", "plugins/luxtronic2/README", "plugins/mailrcv/user_doc", "plugins/mailsend/user_doc", "plugins/memlog/user_doc", "plugins/mieleathome/user_doc", "plugins/miflora/README", "plugins/mikrotik/user_doc", "plugins/milight/README", "plugins/mlgw/README", "plugins/modbus_tcp/user_doc", "plugins/mpd/user_doc", "plugins/mqtt/README", "plugins/mqtt/user_doc", "plugins/mvg_live/README", "plugins/neato/README", "plugins/neato/user_doc", "plugins/network/user_doc", "plugins/nuki/README", "plugins/nut/README", "plugins/nut/user_doc", "plugins/odlinfo/README", "plugins/onewire/user_doc", "plugins/openweathermap/user_doc", "plugins/operationlog/user_doc", "plugins/oppo/user_doc", "plugins/panasonic_ac/user_doc", "plugins/philips_tv/user_doc", "plugins/pioneer/user_doc", "plugins/piratewthr/user_doc", "plugins/plex/README", "plugins/pluggit/README", "plugins/pluggit/user_doc", "plugins/prowl/user_doc", "plugins/pushbullet/README", "plugins/pushover/README", "plugins/raumfeld/README", "plugins/raumfeld_ng/user_doc", "plugins/rcs1000n/user_doc", "plugins/rcswitch/README", "plugins/resol/user_doc", "plugins/robonect/README", "plugins/roomba/README", "plugins/roomba_980/README", "plugins/roombapysh/README", "plugins/roombapysh/user_doc", "plugins/rpi1wire/user_doc", "plugins/rpi_info/user_doc", "plugins/rrd/user_doc", "plugins/rtr/README", "plugins/rtr2/user_doc", "plugins/russound/README", "plugins/shelly/user_doc", "plugins/shelly/user_doc/device_installation", "plugins/shelly/user_doc/plugin_configuration", "plugins/simulation/README", "plugins/simulation/user_doc", "plugins/slack/README", "plugins/sma/README", "plugins/sma_em/README", "plugins/sma_mb/README", "plugins/sma_mb/user_doc", "plugins/smarttv/README", "plugins/smartvisu/user_doc", "plugins/smartvisu/user_doc/websocket_shng_requests", "plugins/smartvisu/user_doc/websocket_visu_requests", "plugins/sml/README", "plugins/sml2/user_doc", "plugins/smlx/user_doc", "plugins/snap7_logo/README", "plugins/snap7_logo/user_doc", "plugins/snmp/user_doc", "plugins/solarforecast/user_doc", "plugins/solarlog/README", "plugins/solarlog/user_doc", "plugins/sonos/user_doc", "plugins/speech/README", "plugins/speech/user_doc", "plugins/sqlite_visu2_8/README", "plugins/squeezebox/README", "plugins/squeezebox/user_doc", "plugins/stateengine/user_doc", "plugins/stateengine/user_doc/01_allgemein", "plugins/stateengine/user_doc/02_konfiguration", "plugins/stateengine/user_doc/03_regelwerk", "plugins/stateengine/user_doc/04_zustand", "plugins/stateengine/user_doc/05_bedingungen", "plugins/stateengine/user_doc/06_aktionen", "plugins/stateengine/user_doc/07_zeitpunkt", "plugins/stateengine/user_doc/08_beispiel", "plugins/stateengine/user_doc/09_vorlagen", "plugins/stateengine/user_doc/10_funktionen_variablen", "plugins/stateengine/user_doc/11_sonderzustaende", "plugins/stateengine/user_doc/12_aktioneneinzeln", "plugins/stateengine/user_doc/13_sonstiges", "plugins/systemair/README", "plugins/tankerkoenig/README", "plugins/tankerkoenig/user_doc", "plugins/tasmota/user_doc", "plugins/telegram/user_doc", "plugins/text_display/README", "plugins/text_display/user_doc", "plugins/thz/README", "plugins/timmy/README", "plugins/timmy/user_doc", "plugins/traffic/README", "plugins/trovis557x/README", "plugins/unifi/user_doc", "plugins/uzsu/user_doc", "plugins/vacations/user_doc", "plugins/vicare/user_doc", "plugins/viessmann/README", "plugins/viessmann/user_doc", "plugins/visu_smartvisu/README", "plugins/visu_smartvisu/developer_doc", "plugins/visu_smartvisu/user_doc", "plugins/visu_websocket/README", "plugins/visu_websocket/developer_doc", "plugins/visu_websocket/user_doc", "plugins/volkszaehler/README", "plugins/webpush/user_doc", "plugins/webservices/user_doc", "plugins/wettercom/README", "plugins/withings_health/user_doc", "plugins/wol/user_doc", "plugins/wunderground/README", "plugins/wunderground/README_OLD", "plugins/wunderground/user_doc", "plugins/xiaomi_vac/user_doc", "plugins/xmpp/README", "plugins/yamaha/user_doc", "plugins/yamahayxc/user_doc", "plugins/zigbee2mqtt/user_doc", "plugins/zwave/README", "plugins_all", "plugins_doc/config/alexa", "plugins_doc/config/alexa4p3", "plugins_doc/config/alexarc4shng", "plugins_doc/config/apcups", "plugins_doc/config/appletv", "plugins_doc/config/artnet", "plugins_doc/config/asterisk", "plugins_doc/config/avdevice", "plugins_doc/config/avm", "plugins_doc/config/avm_smarthome", "plugins_doc/config/beolink", "plugins_doc/config/blockly", "plugins_doc/config/bose_soundtouch", "plugins_doc/config/bsblan", "plugins_doc/config/buderus", "plugins_doc/config/byd_bat", "plugins_doc/config/casambi", "plugins_doc/config/cli", "plugins_doc/config/co2meter", "plugins_doc/config/comfoair", "plugins_doc/config/darksky", "plugins_doc/config/dashbutton", "plugins_doc/config/database", "plugins_doc/config/datalog", "plugins_doc/config/db_addon", "plugins_doc/config/deebot_ozmo", "plugins_doc/config/denon", "plugins_doc/config/dlms", "plugins_doc/config/dmx", "plugins_doc/config/drexelundweiss", "plugins_doc/config/dummy_config", "plugins_doc/config/ebus", "plugins_doc/config/enigma2", "plugins_doc/config/enocean", "plugins_doc/config/epson", "plugins_doc/config/eta_pu", "plugins_doc/config/executor", "plugins_doc/config/garminconnect", "plugins_doc/config/gpio", "plugins_doc/config/harmony", "plugins_doc/config/helios", "plugins_doc/config/helios_tcp", "plugins_doc/config/homeconnect", "plugins_doc/config/homematic", "plugins_doc/config/hue", "plugins_doc/config/hue2", "plugins_doc/config/hue3", "plugins_doc/config/husky", "plugins_doc/config/husky2", "plugins_doc/config/ical", "plugins_doc/config/indego", "plugins_doc/config/indego4shng", "plugins_doc/config/influxdata", "plugins_doc/config/influxdb", "plugins_doc/config/influxdb2", "plugins_doc/config/intercom_2n", "plugins_doc/config/join", "plugins_doc/config/jsonread", "plugins_doc/config/jvcproj", "plugins_doc/config/kathrein", "plugins_doc/config/knx", "plugins_doc/config/kodi", "plugins_doc/config/kostal", "plugins_doc/config/kostalmodbus", "plugins_doc/config/ksemmodbus", "plugins_doc/config/leveljet", "plugins_doc/config/lirc", "plugins_doc/config/lms", "plugins_doc/config/logo", "plugins_doc/config/luxtronic2", "plugins_doc/config/mailrcv", "plugins_doc/config/mailsend", "plugins_doc/config/memlog", "plugins_doc/config/mieleathome", "plugins_doc/config/miflora", "plugins_doc/config/mikrotik", "plugins_doc/config/milight", "plugins_doc/config/mlgw", "plugins_doc/config/modbus_tcp", "plugins_doc/config/mpd", "plugins_doc/config/mqtt", "plugins_doc/config/mvg_live", "plugins_doc/config/neato", "plugins_doc/config/network", "plugins_doc/config/nuki", "plugins_doc/config/nut", "plugins_doc/config/odlinfo", "plugins_doc/config/onewire", "plugins_doc/config/openweathermap", "plugins_doc/config/operationlog", "plugins_doc/config/oppo", "plugins_doc/config/panasonic_ac", "plugins_doc/config/philips_tv", "plugins_doc/config/pioneer", "plugins_doc/config/piratewthr", "plugins_doc/config/plex", "plugins_doc/config/pluggit", "plugins_doc/config/prowl", "plugins_doc/config/pushbullet", "plugins_doc/config/pushover", "plugins_doc/config/raumfeld", "plugins_doc/config/raumfeld_ng", "plugins_doc/config/rcs1000n", "plugins_doc/config/rcswitch", "plugins_doc/config/resol", "plugins_doc/config/robonect", "plugins_doc/config/roomba", "plugins_doc/config/roomba_980", "plugins_doc/config/roombapysh", "plugins_doc/config/rpi1wire", "plugins_doc/config/rpi_info", "plugins_doc/config/rrd", "plugins_doc/config/rtr", "plugins_doc/config/rtr2", "plugins_doc/config/russound", "plugins_doc/config/shelly", "plugins_doc/config/simulation", "plugins_doc/config/slack", "plugins_doc/config/sma", "plugins_doc/config/sma_em", "plugins_doc/config/sma_mb", "plugins_doc/config/smarttv", "plugins_doc/config/smartvisu", "plugins_doc/config/sml", "plugins_doc/config/sml2", "plugins_doc/config/smlx", "plugins_doc/config/snap7_logo", "plugins_doc/config/snmp", "plugins_doc/config/solarforecast", "plugins_doc/config/solarlog", "plugins_doc/config/sonos", "plugins_doc/config/speech", "plugins_doc/config/sqlite_visu2_8", "plugins_doc/config/squeezebox", "plugins_doc/config/stateengine", "plugins_doc/config/systemair", "plugins_doc/config/tankerkoenig", "plugins_doc/config/tasmota", "plugins_doc/config/telegram", "plugins_doc/config/text_display", "plugins_doc/config/thz", "plugins_doc/config/timmy", "plugins_doc/config/traffic", "plugins_doc/config/trovis557x", "plugins_doc/config/unifi", "plugins_doc/config/uzsu", "plugins_doc/config/vacations", "plugins_doc/config/vicare", "plugins_doc/config/viessmann", "plugins_doc/config/visu_smartvisu", "plugins_doc/config/visu_websocket", "plugins_doc/config/volkszaehler", "plugins_doc/config/waterkotte", "plugins_doc/config/webpush", "plugins_doc/config/webservices", "plugins_doc/config/wettercom", "plugins_doc/config/withings_health", "plugins_doc/config/wol", "plugins_doc/config/wunderground", "plugins_doc/config/xiaomi_vac", "plugins_doc/config/xmpp", "plugins_doc/config/yamaha", "plugins_doc/config/yamahayxc", "plugins_doc/config/zigbee2mqtt", "plugins_doc/config/zwave", "plugins_doc/dummy_all", "plugins_doc/dummy_gateway", "plugins_doc/dummy_interface", "plugins_doc/dummy_protocol", "plugins_doc/dummy_system", "plugins_doc/dummy_web", "plugins_doc/plugins_all", "plugins_doc/plugins_all_header", "plugins_doc/plugins_footer", "plugins_doc/plugins_gateway", "plugins_doc/plugins_gateway_header", "plugins_doc/plugins_interface", "plugins_doc/plugins_interface_header", "plugins_doc/plugins_protocol", "plugins_doc/plugins_protocol_header", "plugins_doc/plugins_system", "plugins_doc/plugins_system_header", "plugins_doc/plugins_unclassified", "plugins_doc/plugins_unclassified_header", "plugins_doc/plugins_web", "plugins_doc/plugins_web_header", "referenz/APIs", "referenz/items/attributes_relative_referenzen", "referenz/items/funktionen", "referenz/items/item_zugriff", "referenz/items/items", "referenz/items/methoden", "referenz/items/plugin_attribute", "referenz/items/properties", "referenz/items/standard_attribute/autotimer", "referenz/items/standard_attribute/crontab", "referenz/items/standard_attribute/cycle", "referenz/items/standard_attribute/enforce_change", "referenz/items/standard_attribute/enforce_updates", "referenz/items/standard_attribute/eval", "referenz/items/standard_attribute/hysteresis", "referenz/items/standard_attribute/log_change", "referenz/items/standard_attribute/on_update", "referenz/items/standard_attribute/standard_attribute", "referenz/items/standard_attribute/struct", "referenz/items/standard_attribute/type", "referenz/items/systemitems", "referenz/libraries_plugins_logics", "referenz/logging/logging", "referenz/logging/logging_filter", "referenz/logging/logging_formatter", "referenz/logging/logging_handler", "referenz/logging/logging_textformatierung", "referenz/logiken/logiken", "referenz/logiken/logiken_exceptions", "referenz/logiken/logiken_funktionen", "referenz/logiken/logiken_grundstruktur", "referenz/logiken/logiken_items", "referenz/logiken/logiken_konfiguration", "referenz/logiken/logiken_logging", "referenz/logiken/logiken_logic_objekt", "referenz/logiken/logiken_mqtt", "referenz/logiken/logiken_persistente_vars", "referenz/logiken/logiken_plugin_funktionen", "referenz/logiken/logiken_python_module", "referenz/logiken/logiken_smarthomeng_methoden", "referenz/logiken/logiken_standardparameter", "referenz/metadata/item_attribute_prefixes", "referenz/metadata/item_attributes", "referenz/metadata/item_structs", "referenz/metadata/logic_parameters", "referenz/metadata/metadata", "referenz/metadata/module_global", "referenz/metadata/parameter_keys", "referenz/metadata/parameters", "referenz/metadata/plugin_functions", "referenz/metadata/plugin_global", "referenz/module/module", "referenz/module/module_admin", "referenz/module/module_http", "referenz/module/module_metadata", "referenz/module/module_mqtt", "referenz/module/module_websocket", "referenz/netzwerk", "referenz/plugins/asyncio_support", "referenz/plugins/plugin_metadata", "referenz/plugins/plugin_typen/mqttplugin_class", "referenz/plugins/plugin_typen/plugin_typen", "referenz/plugins/plugin_typen/smartdeviceplugin", "referenz/plugins/plugin_typen/smartdeviceplugin_class", "referenz/plugins/plugin_typen/smartplugin_class", "referenz/plugins/plugin_user_doc", "referenz/plugins/plugins", "referenz/python/python", "referenz/python/python_installation", "referenz/python/support_skripte", "referenz/python/virtual_environments", "referenz/referenz", "referenz/smarthomeng/ablauf_startup", "referenz/smarthomeng/feiertage", "referenz/smarthomeng/feiertage_datum_zeit", "referenz/smarthomeng/kommandozeilen_optionen", "referenz/smarthomeng/methoden_sonne_mond", "referenz/smarthomeng/smarthomeng", "referenz/userfunctions/userfunctions", "release/1_00_release_sh_py", "release/1_01_and_newer", "release/1_06", "release/1_06_1", "release/1_07", "release/1_07_1", "release/1_07_2", "release/1_08", "release/1_08_1", "release/1_08_2", "release/1_09", "release/1_09_1", "release/1_09_2", "release/1_09_3", "release/1_09_4", "release/1_09_5", "release/1_10", "release/1_10_x", "release/release", "release/smarthome_py/0_1", "release/smarthome_py/0_2", "release/smarthome_py/0_3", "release/smarthome_py/0_4", "release/smarthome_py/0_5", "release/smarthome_py/0_6", "release/smarthome_py/0_7", "release/smarthome_py/0_8", "release/smarthome_py/0_9", "release/smarthome_py/1_0", "release/smarthomeng_older/1_01", "release/smarthomeng_older/1_02", "release/smarthomeng_older/1_03", "release/smarthomeng_older/1_04", "release/smarthomeng_older/1_04_1", "release/smarthomeng_older/1_04_2", "release/smarthomeng_older/1_05", "release/smarthomeng_older/1_05_1", "tools/tools", "tools/tools_backup_restore", "tools/tools_build_requirements", "tools/tools_conf_to_yaml_converter", "tools/tools_getshngpid", "tools/tools_plugin_metadata_checker", "visualisierung/automatic_generation", "visualisierung/beispiel", "visualisierung/changes_in_1.8", "visualisierung/install_widgets", "visualisierung/item_attributes", "visualisierung/plugin_widgets", "visualisierung/reverse_proxy", "visualisierung/visualisierung", "visualisierung/websocket_communication", "vorlagen/1_x_vorlage_Release_Notes", "was_ist_neu", "was_war_neu"], "filenames": ["admin/admin.rst", "admin/dienste.rst", "admin/items.rst", "admin/logiken.rst", "admin/logs.rst", "admin/plugins.rst", "admin/scenes.rst", "admin/scheduler.rst", "admin/system.rst", "admin/threads.rst", "beispiele/beispiele.rst", "beispiele/items/items.rst", "beispiele/items/items_eval_evaltrigger.rst", "beispiele/items/items_tipps_und_tricks.rst", "beispiele/knxd.rst", "beispiele/logiken/beispiel_beaufort.rst", "beispiele/logiken/beispiel_berechnung_zeitdaten.rst", "beispiele/logiken/beispiel_blinken.rst", "beispiele/logiken/beispiel_dpt2.rst", "beispiele/logiken/beispiel_icon_zenith.rst", "beispiele/logiken/beispiel_nachdimmen.rst", "beispiele/logiken/logiken.rst", "beispiele/plugins/plugin_aus_develop.rst", "beispiele/plugins/plugins.rst", "beispiele/structs/1_structs.rst", "beispiele/structs/item_strukturen_kopieren.rst", "beispiele/structs/structs.rst", "beispiele/umzug.rst", "datenschutz.rst", "dev/README.md", "dev/sample_module/README.md", "dev/sample_mqttplugin/user_doc.rst", "dev/sample_plugin/user_doc.rst", "dev/sample_smartdevice_plugin/user_doc.rst", "dev/sample_smartdevice_standalone_plugin/user_doc.rst", "dummy_for_readmes.rst", "einleitung.rst", "entwicklung/build_doc.rst", "entwicklung/core/core.rst", "entwicklung/core/core_libraries.rst", "entwicklung/core/core_shng.rst", "entwicklung/entwicklung.rst", "entwicklung/logiken/logiken.rst", "entwicklung/module/module.rst", "entwicklung/module/module_http.rst", "entwicklung/module/module_mqtt.rst", "entwicklung/plugins/async_in_plugins.rst", "entwicklung/plugins/entwicklungsrichtlinien.rst", "entwicklung/plugins/kurzanleitung/kurzanleitung.rst", "entwicklung/plugins/kurzanleitung/libraries_plugins.rst", "entwicklung/plugins/kurzanleitung/multilanguage.rst", "entwicklung/plugins/kurzanleitung/plugin_documentation_files.rst", "entwicklung/plugins/kurzanleitung/plugin_in5minutes.rst", "entwicklung/plugins/kurzanleitung/plugin_metadata.rst", "entwicklung/plugins/kurzanleitung/samplemqttplugin.rst", "entwicklung/plugins/kurzanleitung/sampleplugin.rst", "entwicklung/plugins/kurzanleitung/webinterface.rst", "entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components.rst", "entwicklung/plugins/kurzanleitung/webinterface_automatic_update.rst", "entwicklung/plugins/kurzanleitung/webinterface_extend_plugin.rst", "entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface.rst", "entwicklung/plugins/kurzanleitung/webinterface_multilanguage.rst", "entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction.rst", "entwicklung/plugins/mqttplugin.rst", "entwicklung/plugins/plugin_checker.rst", "entwicklung/plugins/plugins.rst", "entwicklung/plugins/smartplugin.rst", "entwicklung/plugins/vorueberlegungen.rst", "entwicklung/virtual_env.rst", "faq.rst", "fehlersuche.rst", "fehlersuche_checkliste.rst", "gedankenstuetzen/admonition_arten.rst", "gedankenstuetzen/knxd_compilieren.rst", "gedankenstuetzen/tabs.rst", "genindex.rst", "ideen_kommendes_release.rst", "impressum.rst", "index.rst", "installation/anforderungen.rst", "installation/docker.rst", "installation/installation.rst", "installation/komplettanleitung/01_debian.rst", "installation/komplettanleitung/02_smarthomeng.rst", "installation/komplettanleitung/03_mosquitto.rst", "installation/komplettanleitung/04_smartvisu.rst", "installation/komplettanleitung/05_knxd.rst", "installation/komplettanleitung/06_onewire.rst", "installation/komplettanleitung/07_samba.rst", "installation/komplettanleitung/08_shng_daemon.rst", "installation/komplettanleitung/09_esphome.rst", "installation/komplettanleitung/komplettanleitung.rst", "installation/update_upgrade.rst", "konfiguration/admin_gui/admin_gui.rst", "konfiguration/admin_gui/admin_gui_items.rst", "konfiguration/admin_gui/admin_gui_plugins.rst", "konfiguration/admin_gui/admin_gui_system.rst", "konfiguration/item_structs.rst", "konfiguration/items/initiale_itemkonfiguration.rst", "konfiguration/items/items.rst", "konfiguration/items/ueberblick.rst", "konfiguration/konfiguration.rst", "konfiguration/konfiguration_backup_restore.rst", "konfiguration/konfiguration_ueberblick.rst", "konfiguration/konfigurationsdateien/holidays.rst", "konfiguration/konfigurationsdateien/items.rst", "konfiguration/konfigurationsdateien/konfigdateien.rst", "konfiguration/konfigurationsdateien/logging.rst", "konfiguration/konfigurationsdateien/logic.rst", "konfiguration/konfigurationsdateien/logics.rst", "konfiguration/konfigurationsdateien/module.rst", "konfiguration/konfigurationsdateien/plugin.rst", "konfiguration/konfigurationsdateien/scenes.rst", "konfiguration/konfigurationsdateien/smarthome.rst", "konfiguration/konfigurationsdateien/struct.rst", "konfiguration/logging.rst", "konfiguration/logging_best_practices.rst", "konfiguration/logiken.rst", "konfiguration/module/module.rst", "konfiguration/module/module_admin.rst", "konfiguration/module/module_http.rst", "konfiguration/module/module_mqtt.rst", "konfiguration/module/module_websocket.rst", "konfiguration/plugins.rst", "konfiguration/szenen.rst", "konfiguration/userfunctions.rst", "lib/config.rst", "lib/connection.rst", "lib/constants.rst", "lib/daemon.rst", "lib/db.rst", "lib/env.rst", "lib/item.rst", "lib/item_class_item.rst", "lib/item_class_items.rst", "lib/item_conversion.rst", "lib/log.rst", "lib/logic.rst", "lib/logutils.rst", "lib/metadata.rst", "lib/module.rst", "lib/network.rst", "lib/orb.rst", "lib/plugin.rst", "lib/plugin_class_plugins.rst", "lib/plugin_class_pluginwrapper.rst", "lib/scene.rst", "lib/scheduler.rst", "lib/shtime.rst", "lib/shyaml.rst", "lib/tools.rst", "lib/translation.rst", "lib/utils.rst", "logiken/logics.rst", "modules/admin/README.md", "modules/admin/websocket_admingui_requests.rst", "modules/admin/websocket_shng_requests.rst", "modules/http/README.md", "modules/mqtt/README.md", "plugins/README.md", "plugins/alexa/README.md", "plugins/alexa/nginx.md", "plugins/alexa4p3/README.md", "plugins/alexa4p3/user_doc.rst", "plugins/alexarc4shng/user_doc.rst", "plugins/apcups/user_doc.rst", "plugins/appletv/user_doc.rst", "plugins/artnet/user_doc.rst", "plugins/asterisk/user_doc.rst", "plugins/avdevice/user_doc.rst", "plugins/avm/user_doc.rst", "plugins/avm_smarthome/user_doc.rst", "plugins/blockly/user_doc.rst", "plugins/bose_soundtouch/README.md", "plugins/bose_soundtouch/user_doc.rst", "plugins/bsblan/README.md", "plugins/buderus/README.md", "plugins/buderus/URLs.md", "plugins/byd_bat/user_doc.rst", "plugins/casambi/user_doc.rst", "plugins/cli/README.md", "plugins/cli/user_doc.rst", "plugins/co2meter/README.md", "plugins/comfoair/README.md", "plugins/darksky/user_doc.rst", "plugins/dashbutton/README.md", "plugins/database/README.md", "plugins/database/user_doc.rst", "plugins/datalog/user_doc.rst", "plugins/db_addon/user_doc.rst", "plugins/deebot_ozmo/README.md", "plugins/denon/user_doc.rst", "plugins/dlms/user_doc.rst", "plugins/dmx/README.md", "plugins/dmx/user_doc.rst", "plugins/drexelundweiss/README.md", "plugins/drexelundweiss/user_doc.rst", "plugins/ebus/user_doc.rst", "plugins/enigma2/README.md", "plugins/enocean/README.md", "plugins/enocean/user_doc.rst", "plugins/epson/user_doc.rst", "plugins/eta_pu/README.md", "plugins/executor/user_doc.rst", "plugins/gpio/user_doc.rst", "plugins/harmony/README.md", "plugins/helios/README.md", "plugins/helios_tcp/user_doc.rst", "plugins/homeconnect/README.md", "plugins/homematic/README.md", "plugins/homematic/user_doc.rst", "plugins/hue/README.md", "plugins/hue2/user_doc.rst", "plugins/hue3/user_doc.rst", "plugins/husky/user_doc.rst", "plugins/husky2/user_doc.rst", "plugins/ical/README.md", "plugins/ical/user_doc.rst", "plugins/indego/README.md", "plugins/indego4shng/README.md", "plugins/indego4shng/user_doc.rst", "plugins/influxdata/README.md", "plugins/influxdb/user_doc.rst", "plugins/influxdb2/user_doc.rst", "plugins/influxdb2/user_doc/influxdb_einfuehrung.rst", "plugins/influxdb2/user_doc/influxdb_installation.rst", "plugins/influxdb2/user_doc/influxdb_konfiguration.rst", "plugins/intercom_2n/README.md", "plugins/join/user_doc.rst", "plugins/jsonread/user_doc.rst", "plugins/jvcproj/user_doc.rst", "plugins/kathrein/README.md", "plugins/knx/user_doc.rst", "plugins/kodi/user_doc.rst", "plugins/kostal/README.md", "plugins/kostalmodbus/README.md", "plugins/ksemmodbus/README.md", "plugins/lirc/user_doc.rst", "plugins/lms/user_doc.rst", "plugins/logo/README.md", "plugins/luxtronic2/README.md", "plugins/mailrcv/user_doc.rst", "plugins/mailsend/user_doc.rst", "plugins/memlog/user_doc.rst", "plugins/mieleathome/user_doc.rst", "plugins/miflora/README.md", "plugins/mikrotik/user_doc.rst", "plugins/milight/README.md", "plugins/mlgw/README.md", "plugins/modbus_tcp/user_doc.rst", "plugins/mpd/user_doc.rst", "plugins/mqtt/README.md", "plugins/mqtt/user_doc.rst", "plugins/mvg_live/README.md", "plugins/neato/README.md", "plugins/neato/user_doc.rst", "plugins/network/user_doc.rst", "plugins/nuki/README.md", "plugins/nut/README.md", "plugins/nut/user_doc.rst", "plugins/odlinfo/README.md", "plugins/onewire/user_doc.rst", "plugins/openweathermap/user_doc.rst", "plugins/operationlog/user_doc.rst", "plugins/oppo/user_doc.rst", "plugins/panasonic_ac/user_doc.rst", "plugins/philips_tv/user_doc.rst", "plugins/pioneer/user_doc.rst", "plugins/piratewthr/user_doc.rst", "plugins/plex/README.md", "plugins/pluggit/README.md", "plugins/pluggit/user_doc.rst", "plugins/prowl/user_doc.rst", "plugins/pushbullet/README.md", "plugins/pushover/README.md", "plugins/raumfeld/README.md", "plugins/raumfeld_ng/user_doc.rst", "plugins/rcs1000n/user_doc.rst", "plugins/rcswitch/README.md", "plugins/resol/user_doc.rst", "plugins/robonect/README.md", "plugins/roomba/README.md", "plugins/roomba_980/README.md", "plugins/roombapysh/README.md", "plugins/roombapysh/user_doc.rst", "plugins/rpi1wire/user_doc.rst", "plugins/rpi_info/user_doc.rst", "plugins/rrd/user_doc.rst", "plugins/rtr/README.md", "plugins/rtr2/user_doc.rst", "plugins/russound/README.md", "plugins/shelly/user_doc.rst", "plugins/shelly/user_doc/device_installation.rst", "plugins/shelly/user_doc/plugin_configuration.rst", "plugins/simulation/README.md", "plugins/simulation/user_doc.rst", "plugins/slack/README.md", "plugins/sma/README.md", "plugins/sma_em/README.md", "plugins/sma_mb/README.md", "plugins/sma_mb/user_doc.rst", "plugins/smarttv/README.md", "plugins/smartvisu/user_doc.rst", "plugins/smartvisu/user_doc/websocket_shng_requests.rst", "plugins/smartvisu/user_doc/websocket_visu_requests.rst", "plugins/sml/README.md", "plugins/sml2/user_doc.rst", "plugins/smlx/user_doc.rst", "plugins/snap7_logo/README.md", "plugins/snap7_logo/user_doc.rst", "plugins/snmp/user_doc.rst", "plugins/solarforecast/user_doc.rst", "plugins/solarlog/README.md", "plugins/solarlog/user_doc.rst", "plugins/sonos/user_doc.rst", "plugins/speech/README.md", "plugins/speech/user_doc.rst", "plugins/sqlite_visu2_8/README.md", "plugins/squeezebox/README.md", "plugins/squeezebox/user_doc.rst", "plugins/stateengine/user_doc.rst", "plugins/stateengine/user_doc/01_allgemein.rst", "plugins/stateengine/user_doc/02_konfiguration.rst", "plugins/stateengine/user_doc/03_regelwerk.rst", "plugins/stateengine/user_doc/04_zustand.rst", "plugins/stateengine/user_doc/05_bedingungen.rst", "plugins/stateengine/user_doc/06_aktionen.rst", "plugins/stateengine/user_doc/07_zeitpunkt.rst", "plugins/stateengine/user_doc/08_beispiel.rst", "plugins/stateengine/user_doc/09_vorlagen.rst", "plugins/stateengine/user_doc/10_funktionen_variablen.rst", "plugins/stateengine/user_doc/11_sonderzustaende.rst", "plugins/stateengine/user_doc/12_aktioneneinzeln.rst", "plugins/stateengine/user_doc/13_sonstiges.rst", "plugins/systemair/README.md", "plugins/tankerkoenig/README.md", "plugins/tankerkoenig/user_doc.rst", "plugins/tasmota/user_doc.rst", "plugins/telegram/user_doc.rst", "plugins/text_display/README.md", "plugins/text_display/user_doc.rst", "plugins/thz/README.md", "plugins/timmy/README.md", "plugins/timmy/user_doc.rst", "plugins/traffic/README.md", "plugins/trovis557x/README.md", "plugins/unifi/user_doc.rst", "plugins/uzsu/user_doc.rst", "plugins/vacations/user_doc.rst", "plugins/vicare/user_doc.rst", "plugins/viessmann/README.md", "plugins/viessmann/user_doc.rst", "plugins/visu_smartvisu/README.md", "plugins/visu_smartvisu/developer_doc.md", "plugins/visu_smartvisu/user_doc.rst", "plugins/visu_websocket/README.md", "plugins/visu_websocket/developer_doc.rst", "plugins/visu_websocket/user_doc.rst", "plugins/volkszaehler/README.md", "plugins/webpush/user_doc.rst", "plugins/webservices/user_doc.rst", "plugins/wettercom/README.md", "plugins/withings_health/user_doc.rst", "plugins/wol/user_doc.rst", "plugins/wunderground/README.md", "plugins/wunderground/README_OLD.md", "plugins/wunderground/user_doc.rst", "plugins/xiaomi_vac/user_doc.rst", "plugins/xmpp/README.md", "plugins/yamaha/user_doc.rst", "plugins/yamahayxc/user_doc.rst", "plugins/zigbee2mqtt/user_doc.rst", "plugins/zwave/README.md", "plugins_all.rst", "plugins_doc/config/alexa.rst", "plugins_doc/config/alexa4p3.rst", "plugins_doc/config/alexarc4shng.rst", "plugins_doc/config/apcups.rst", "plugins_doc/config/appletv.rst", "plugins_doc/config/artnet.rst", "plugins_doc/config/asterisk.rst", "plugins_doc/config/avdevice.rst", "plugins_doc/config/avm.rst", "plugins_doc/config/avm_smarthome.rst", "plugins_doc/config/beolink.rst", "plugins_doc/config/blockly.rst", "plugins_doc/config/bose_soundtouch.rst", "plugins_doc/config/bsblan.rst", "plugins_doc/config/buderus.rst", "plugins_doc/config/byd_bat.rst", "plugins_doc/config/casambi.rst", "plugins_doc/config/cli.rst", "plugins_doc/config/co2meter.rst", "plugins_doc/config/comfoair.rst", "plugins_doc/config/darksky.rst", "plugins_doc/config/dashbutton.rst", "plugins_doc/config/database.rst", "plugins_doc/config/datalog.rst", "plugins_doc/config/db_addon.rst", "plugins_doc/config/deebot_ozmo.rst", "plugins_doc/config/denon.rst", "plugins_doc/config/dlms.rst", "plugins_doc/config/dmx.rst", "plugins_doc/config/drexelundweiss.rst", "plugins_doc/config/dummy_config.rst", "plugins_doc/config/ebus.rst", "plugins_doc/config/enigma2.rst", "plugins_doc/config/enocean.rst", "plugins_doc/config/epson.rst", "plugins_doc/config/eta_pu.rst", "plugins_doc/config/executor.rst", "plugins_doc/config/garminconnect.rst", "plugins_doc/config/gpio.rst", "plugins_doc/config/harmony.rst", "plugins_doc/config/helios.rst", "plugins_doc/config/helios_tcp.rst", "plugins_doc/config/homeconnect.rst", "plugins_doc/config/homematic.rst", "plugins_doc/config/hue.rst", "plugins_doc/config/hue2.rst", "plugins_doc/config/hue3.rst", "plugins_doc/config/husky.rst", "plugins_doc/config/husky2.rst", "plugins_doc/config/ical.rst", "plugins_doc/config/indego.rst", "plugins_doc/config/indego4shng.rst", "plugins_doc/config/influxdata.rst", "plugins_doc/config/influxdb.rst", "plugins_doc/config/influxdb2.rst", "plugins_doc/config/intercom_2n.rst", "plugins_doc/config/join.rst", "plugins_doc/config/jsonread.rst", "plugins_doc/config/jvcproj.rst", "plugins_doc/config/kathrein.rst", "plugins_doc/config/knx.rst", "plugins_doc/config/kodi.rst", "plugins_doc/config/kostal.rst", "plugins_doc/config/kostalmodbus.rst", "plugins_doc/config/ksemmodbus.rst", "plugins_doc/config/leveljet.rst", "plugins_doc/config/lirc.rst", "plugins_doc/config/lms.rst", "plugins_doc/config/logo.rst", "plugins_doc/config/luxtronic2.rst", "plugins_doc/config/mailrcv.rst", "plugins_doc/config/mailsend.rst", "plugins_doc/config/memlog.rst", "plugins_doc/config/mieleathome.rst", "plugins_doc/config/miflora.rst", "plugins_doc/config/mikrotik.rst", "plugins_doc/config/milight.rst", "plugins_doc/config/mlgw.rst", "plugins_doc/config/modbus_tcp.rst", "plugins_doc/config/mpd.rst", "plugins_doc/config/mqtt.rst", "plugins_doc/config/mvg_live.rst", "plugins_doc/config/neato.rst", "plugins_doc/config/network.rst", "plugins_doc/config/nuki.rst", "plugins_doc/config/nut.rst", "plugins_doc/config/odlinfo.rst", "plugins_doc/config/onewire.rst", "plugins_doc/config/openweathermap.rst", "plugins_doc/config/operationlog.rst", "plugins_doc/config/oppo.rst", "plugins_doc/config/panasonic_ac.rst", "plugins_doc/config/philips_tv.rst", "plugins_doc/config/pioneer.rst", "plugins_doc/config/piratewthr.rst", "plugins_doc/config/plex.rst", "plugins_doc/config/pluggit.rst", "plugins_doc/config/prowl.rst", "plugins_doc/config/pushbullet.rst", "plugins_doc/config/pushover.rst", "plugins_doc/config/raumfeld.rst", "plugins_doc/config/raumfeld_ng.rst", "plugins_doc/config/rcs1000n.rst", "plugins_doc/config/rcswitch.rst", "plugins_doc/config/resol.rst", "plugins_doc/config/robonect.rst", "plugins_doc/config/roomba.rst", "plugins_doc/config/roomba_980.rst", "plugins_doc/config/roombapysh.rst", "plugins_doc/config/rpi1wire.rst", "plugins_doc/config/rpi_info.rst", "plugins_doc/config/rrd.rst", "plugins_doc/config/rtr.rst", "plugins_doc/config/rtr2.rst", "plugins_doc/config/russound.rst", "plugins_doc/config/shelly.rst", "plugins_doc/config/simulation.rst", "plugins_doc/config/slack.rst", "plugins_doc/config/sma.rst", "plugins_doc/config/sma_em.rst", "plugins_doc/config/sma_mb.rst", "plugins_doc/config/smarttv.rst", "plugins_doc/config/smartvisu.rst", "plugins_doc/config/sml.rst", "plugins_doc/config/sml2.rst", "plugins_doc/config/smlx.rst", "plugins_doc/config/snap7_logo.rst", "plugins_doc/config/snmp.rst", "plugins_doc/config/solarforecast.rst", "plugins_doc/config/solarlog.rst", "plugins_doc/config/sonos.rst", "plugins_doc/config/speech.rst", "plugins_doc/config/sqlite_visu2_8.rst", "plugins_doc/config/squeezebox.rst", "plugins_doc/config/stateengine.rst", "plugins_doc/config/systemair.rst", "plugins_doc/config/tankerkoenig.rst", "plugins_doc/config/tasmota.rst", "plugins_doc/config/telegram.rst", "plugins_doc/config/text_display.rst", "plugins_doc/config/thz.rst", "plugins_doc/config/timmy.rst", "plugins_doc/config/traffic.rst", "plugins_doc/config/trovis557x.rst", "plugins_doc/config/unifi.rst", "plugins_doc/config/uzsu.rst", "plugins_doc/config/vacations.rst", "plugins_doc/config/vicare.rst", "plugins_doc/config/viessmann.rst", "plugins_doc/config/visu_smartvisu.rst", "plugins_doc/config/visu_websocket.rst", "plugins_doc/config/volkszaehler.rst", "plugins_doc/config/waterkotte.rst", "plugins_doc/config/webpush.rst", "plugins_doc/config/webservices.rst", "plugins_doc/config/wettercom.rst", "plugins_doc/config/withings_health.rst", "plugins_doc/config/wol.rst", "plugins_doc/config/wunderground.rst", "plugins_doc/config/xiaomi_vac.rst", "plugins_doc/config/xmpp.rst", "plugins_doc/config/yamaha.rst", "plugins_doc/config/yamahayxc.rst", "plugins_doc/config/zigbee2mqtt.rst", "plugins_doc/config/zwave.rst", "plugins_doc/dummy_all.rst", "plugins_doc/dummy_gateway.rst", "plugins_doc/dummy_interface.rst", "plugins_doc/dummy_protocol.rst", "plugins_doc/dummy_system.rst", "plugins_doc/dummy_web.rst", "plugins_doc/plugins_all.rst", "plugins_doc/plugins_all_header.rst", "plugins_doc/plugins_footer.rst", "plugins_doc/plugins_gateway.rst", "plugins_doc/plugins_gateway_header.rst", "plugins_doc/plugins_interface.rst", "plugins_doc/plugins_interface_header.rst", "plugins_doc/plugins_protocol.rst", "plugins_doc/plugins_protocol_header.rst", "plugins_doc/plugins_system.rst", "plugins_doc/plugins_system_header.rst", "plugins_doc/plugins_unclassified.rst", "plugins_doc/plugins_unclassified_header.rst", "plugins_doc/plugins_web.rst", "plugins_doc/plugins_web_header.rst", "referenz/APIs.rst", "referenz/items/attributes_relative_referenzen.rst", "referenz/items/funktionen.rst", "referenz/items/item_zugriff.rst", "referenz/items/items.rst", "referenz/items/methoden.rst", "referenz/items/plugin_attribute.rst", "referenz/items/properties.rst", "referenz/items/standard_attribute/autotimer.rst", "referenz/items/standard_attribute/crontab.rst", "referenz/items/standard_attribute/cycle.rst", "referenz/items/standard_attribute/enforce_change.rst", "referenz/items/standard_attribute/enforce_updates.rst", "referenz/items/standard_attribute/eval.rst", "referenz/items/standard_attribute/hysteresis.rst", "referenz/items/standard_attribute/log_change.rst", "referenz/items/standard_attribute/on_update.rst", "referenz/items/standard_attribute/standard_attribute.rst", "referenz/items/standard_attribute/struct.rst", "referenz/items/standard_attribute/type.rst", "referenz/items/systemitems.rst", "referenz/libraries_plugins_logics.rst", "referenz/logging/logging.rst", "referenz/logging/logging_filter.rst", "referenz/logging/logging_formatter.rst", "referenz/logging/logging_handler.rst", "referenz/logging/logging_textformatierung.rst", "referenz/logiken/logiken.rst", "referenz/logiken/logiken_exceptions.rst", "referenz/logiken/logiken_funktionen.rst", "referenz/logiken/logiken_grundstruktur.rst", "referenz/logiken/logiken_items.rst", "referenz/logiken/logiken_konfiguration.rst", "referenz/logiken/logiken_logging.rst", "referenz/logiken/logiken_logic_objekt.rst", "referenz/logiken/logiken_mqtt.rst", "referenz/logiken/logiken_persistente_vars.rst", "referenz/logiken/logiken_plugin_funktionen.rst", "referenz/logiken/logiken_python_module.rst", "referenz/logiken/logiken_smarthomeng_methoden.rst", "referenz/logiken/logiken_standardparameter.rst", "referenz/metadata/item_attribute_prefixes.rst", "referenz/metadata/item_attributes.rst", "referenz/metadata/item_structs.rst", "referenz/metadata/logic_parameters.rst", "referenz/metadata/metadata.rst", "referenz/metadata/module_global.rst", "referenz/metadata/parameter_keys.rst", "referenz/metadata/parameters.rst", "referenz/metadata/plugin_functions.rst", "referenz/metadata/plugin_global.rst", "referenz/module/module.rst", "referenz/module/module_admin.rst", "referenz/module/module_http.rst", "referenz/module/module_metadata.rst", "referenz/module/module_mqtt.rst", "referenz/module/module_websocket.rst", "referenz/netzwerk.rst", "referenz/plugins/asyncio_support.rst", "referenz/plugins/plugin_metadata.rst", "referenz/plugins/plugin_typen/mqttplugin_class.rst", "referenz/plugins/plugin_typen/plugin_typen.rst", "referenz/plugins/plugin_typen/smartdeviceplugin.rst", "referenz/plugins/plugin_typen/smartdeviceplugin_class.rst", "referenz/plugins/plugin_typen/smartplugin_class.rst", "referenz/plugins/plugin_user_doc.rst", "referenz/plugins/plugins.rst", "referenz/python/python.rst", "referenz/python/python_installation.rst", "referenz/python/support_skripte.rst", "referenz/python/virtual_environments.rst", "referenz/referenz.rst", "referenz/smarthomeng/ablauf_startup.rst", "referenz/smarthomeng/feiertage.rst", "referenz/smarthomeng/feiertage_datum_zeit.rst", "referenz/smarthomeng/kommandozeilen_optionen.rst", "referenz/smarthomeng/methoden_sonne_mond.rst", "referenz/smarthomeng/smarthomeng.rst", "referenz/userfunctions/userfunctions.rst", "release/1_00_release_sh_py.rst", "release/1_01_and_newer.rst", "release/1_06.rst", "release/1_06_1.rst", "release/1_07.rst", "release/1_07_1.rst", "release/1_07_2.rst", "release/1_08.rst", "release/1_08_1.rst", "release/1_08_2.rst", "release/1_09.rst", "release/1_09_1.rst", "release/1_09_2.rst", "release/1_09_3.rst", "release/1_09_4.rst", "release/1_09_5.rst", "release/1_10.rst", "release/1_10_x.rst", "release/release.rst", "release/smarthome_py/0_1.rst", "release/smarthome_py/0_2.rst", "release/smarthome_py/0_3.rst", "release/smarthome_py/0_4.rst", "release/smarthome_py/0_5.rst", "release/smarthome_py/0_6.rst", "release/smarthome_py/0_7.rst", "release/smarthome_py/0_8.rst", "release/smarthome_py/0_9.rst", "release/smarthome_py/1_0.rst", "release/smarthomeng_older/1_01.rst", "release/smarthomeng_older/1_02.rst", "release/smarthomeng_older/1_03.rst", "release/smarthomeng_older/1_04.rst", "release/smarthomeng_older/1_04_1.rst", "release/smarthomeng_older/1_04_2.rst", "release/smarthomeng_older/1_05.rst", "release/smarthomeng_older/1_05_1.rst", "tools/tools.rst", "tools/tools_backup_restore.rst", "tools/tools_build_requirements.rst", "tools/tools_conf_to_yaml_converter.rst", "tools/tools_getshngpid.rst", "tools/tools_plugin_metadata_checker.rst", "visualisierung/automatic_generation.rst", "visualisierung/beispiel.rst", "visualisierung/changes_in_1.8.rst", "visualisierung/install_widgets.rst", "visualisierung/item_attributes.rst", "visualisierung/plugin_widgets.rst", "visualisierung/reverse_proxy.rst", "visualisierung/visualisierung.rst", "visualisierung/websocket_communication.rst", "vorlagen/1_x_vorlage_Release_Notes.rst", "was_ist_neu.rst", "was_war_neu.rst"], "titles": ["Administrations-Interface Update", "Dienste", "Items", "Logiken", "Logs", "Plugins", "Szenen", "Scheduler", "System", "Threads", "Beispiele, Tipps & Tricks Update", "Items", "eval und eval_trigger", "Tipps und Tricks Update", "knxd: Hinweise und Konfiguration", "Berechnung der Windst\u00e4rke", "Berechnung von Zeitdaten", "Blinken per Logik", "Darstellung von DPT 2 Werten", "Steuerung des dyn.zenith-Icons", "Nachdimmen von Leuchten", "Logiken", "Ein Plugin aus develop installieren", "Plugins", "structs (Item Strukturen)", "Item Strukturen bequem kopieren", "Structs", "SmartHomeNG umziehen Neu", "Datenschutzerkla\u0308rung", "Plugin development guidelines", "Module sample", "Mqtt-Pluginname (in Kleinbuchstaben)", "Pluginname (in Kleinbuchstaben)", "Sample Plugin <- hier den Namen des Plugins einsetzen", "Sample Plugin <- hier den Namen des Plugins einsetzen", "<no title>", "Einleitung", "Bau der Dokumentation", "Entwicklung des Core", "Programm Module", "Der Core von SmartHomeNG", "Entwicklung", "Logiken under construction", "Module", "Module http", "Module mqtt", "AsyncIO in Plugins neu", "Entwicklungsrichtlinien under construction", "Kurzanleitung update", "Programm Module zur Nutzung in Plugins", "Unterst\u00fctzung mehrerer Sprachen Update", "Plugin-Dokumentation", "In wenigen Minuten zum eigenen Plugin", "Plugin-Metadata update", "Beispielplugin mit MQTT-Unterst\u00fctzung", "Beispielplugin update", "Webinterface update", "Komponenten von Drittanbietern f\u00fcr Webinterfaces", "Automatische Updates der Daten im Webinterface new", "Erweitern eines bestehenden Plugins", "Das Webinterface mit Inhalt f\u00fcllen", "Unterst\u00fctzung mehrerer Sprachen new", "Interaktion des Webinterface mit dem Plugin new", "Class MqttPlugin", "Plugin-Checker neu", "Plugins Update", "Class SmartPlugin", "Vor\u00fcberlegungen", "Virtuelle Umgebungen", "FAQ - H\u00e4ufig gestellte Fragen", "Fehlersuche", "Checkliste f\u00fcr die Fehlersuche", "Admonition Arten", "Alternativ knxd compilieren", "Verwendung von Tabs", "Stichwort Verzeichnis", "Ideen f\u00fcr das Release 1.9", "Impressum", "SmartHomeNG", "Hard- u. Software Anforderungen", "Installation \u00fcber Docker", "Installation", "Debian Linux installieren", "SmartHomeNG installieren", "MQTT Broker installieren", "smartVISU installieren", "knxd installieren", "Onewire installieren", "Samba installieren", "SmartHomeNG als Dienst update", "ESPHome Dashboard new", "Komplettanleitung", "Update von einer \u00e4lteren Version", "Konfiguration \u00fcber die GUI", "Konfiguration von Items", "Konfiguration von Plugins", "Systemkonfiguration", "structs (Item Strukturen)", "Initiale Item-Konfiguration", "Items", "\u00dcberblick", "Konfiguration Update", "Konfiguration Sichern und Wiederherstellen", "Allgemeines zur Konfiguration", "holidays.yaml", "items/*.yaml", "Konfiguration \u00fcber Dateien", "logging.yaml", "logic.yaml", "logics/*.py", "module.yaml", "plugin.yaml", "scenes/*.yaml", "smarthome.yaml", "struct.yaml und struct_*.yaml", "Logging", "Logging - Best Practices", "Logiken", "Module", "Module admin", "Module http", "Module mqtt", "Module websocket Neu", "Plugins", "Szenen", "Userfunctions", "lib.config", "lib.connection", "lib.constants", "lib.daemon", "lib.db", "lib.env", "Items-API", "Class Item", "Class Items", "lib.item_conversion", "lib.log", "Logics-API", "lib.logutils", "lib.metadata", "lib.module", "lib.network", "lib.orb", "Plugins-API", "Class Plugins", "Class PluginWrapper", "lib.scene", "Scheduler-API", "Shtime-API", "lib.shyaml", "lib.tools", "lib.translation", "lib.utils", "Logiken", "Module admin (README)", "Requests von der Admin GUI an SmartHomeNG", "Requests von SmartHomeNG an die smartVISU", "Module http (README)", "Module mqtt (README)", "SmartHomeNG Plugins", "Alexa", "NGINX", "alexa4p3", "alexa4p3", "alexarc4shng", "apcups", "appletv", "artnet", "asterisk", "avdevice", "avm", "avm_smarthome", "blockly", "Bose Soundtouch Plugin", "bose_soundtouch", "Plugin for BSB-Lan-Adapter", "Buderus Plugin", "REST URLs KM200", "byd_bat", "casambi", "CLI", "cli", "CO2Meter", "ComfoAir", "darksky", "Dashbutton Plugin", "Database", "database", "datalog", "db_addon", "Plugin for Deebot Ozmo 920 / 950 / 960", "denon", "dlms", "DMX", "dmx", "Drexel & Weiss", "drexelundweiss", "ebus", "Enigma2", "Items", "enocean", "epson", "eta_pu - ETA Pellet Unit PU", "executor", "gpio", "Harmony Hub Plugin", "helios - Helios ECx00Pro / Vallox xx SE Plugin", "helios_tcp", "HomeConnect", "homematic", "homematic", "Phillips HUE", "hue2", "hue3", "husky", "husky2", "iCal", "ical", "indego Plugin", "Indego4shNG", "indego4shng", "influxdata", "influxdb", "influxdb2", "InfluxDB Einf\u00fchrung", "InfluxDB Installation", "InfluxDB Konfiguration", "Intercom-2N Plugin", "join", "jsonread", "jvcproj", "kathrein", "knx", "kodi", "kostal", "Modbus Plugin for Kostal inverters", "Modbus Plugin for Kostal Smart Energy Meter", "lirc", "lms", "logo", "luxtronic2", "mailrcv", "mailsend", "memlog", "mieleathome", "miflora", "mikrotik", "milight", "mlgw Plugin - Bang & Olufsen Masterlink Gateway", "modbus_tcp", "mpd", "Sample Plugin <- put the name of your plugin here", "mqtt", "mvg_live - MVG Live", "Neato/Vorwerk Vacuum Robot", "neato", "network", "Nuki", "NUT - Network UPS Tools plugin", "nut", "ODLInfo", "onewire", "openweathermap", "operationlog", "oppo", "panasonic_ac", "philips_tv", "pioneer", "piratewthr", "plex", "pluggit", "pluggit", "prowl", "Pushbullet", "Pushover", "Raumfeld", "raumfeld_ng", "rcs1000n", "RCswitch", "resol", "Robonect Plugin", "Roomba", "roomba_980", "roombapysh", "Roomba f\u00fcr SmartHomeNG", "rpi1wire", "rpi_info", "rrd", "RTR plug-in", "rtr2", "Russound", "shelly", "Shelly Device in Betrieb nehmen", "Konfiguration des Plugins", "Simulation", "simulation", "smarthome-slack", "SMA", "SMA-EM Plugin", "<no title>", "sma_mb", "SmartTV", "smartvisu", "Requests von SmartHomeNG an die smartVISU", "Requests von der smartVISU an SmartHomeNG", "Sml", "sml2", "smlx", "snap7_logo", "snap7_logo", "snmp", "solarforecast", "Solarlog", "solarlog", "sonos", "Speech", "speech", "SQLite (for SmartVisu >= 2.8)", "Squeezebox", "squeezebox", "stateengine", "Allgemein", "Konfiguration", "Regelwerk-Item", "Zustand-Item", "Bedingungen", "Aktionen", "Ausf\u00fchrungszeitpunkt", "Beispiel", "Zustand-Templates", "Funktionen und Variablen", "Besondere Zust\u00e4nde", "Aktionen - einzeln", "Sonstiges", "Systemair", "TankerKoenig", "tankerkoenig", "tasmota", "telegram", "text_display", "text_display", "THZ", "Timmy Plugin for SmarthomeNG", "timmy", "Traffic", "<no title>", "unifi", "uzsu", "vacations", "vicare", "viessmann", "viessmann", "Visualisation (smartVISU support)", "visu_smartvisu", "visu_smartvisu", "Visualisation (Websocket Protocol)", "visu_websocket", "visu_websocket", "Volkszaehler Plugin", "webpush", "webservices", "wettercom Plugin", "withings_health", "wol", "wunderground", "Wunderground", "wunderground", "xiaomi_vac", "XMPP", "yamaha", "yamahayxc", "zigbee2mqtt", "<no title>", "Plugins", "Plugin \u201aalexa\u2018 Konfiguration", "Plugin \u201aalexa4p3\u2018 Konfiguration", "Plugin \u201aalexarc4shng\u2018 Konfiguration", "Plugin \u201aapcups\u2018 Konfiguration", "Plugin \u201aappletv\u2018 Konfiguration", "Plugin \u201aartnet\u2018 Konfiguration", "Plugin \u201aasterisk\u2018 Konfiguration", "Plugin \u201aavdevice\u2018 Konfiguration", "Plugin \u201aavm\u2018 Konfiguration", "Plugin \u201aavm_smarthome\u2018 Konfiguration", "Plugin \u201abeolink\u2018 Konfiguration", "Plugin \u201ablockly\u2018 Konfiguration", "Plugin \u201abose_soundtouch\u2018 Konfiguration", "Plugin \u201absblan\u2018 Konfiguration", "Plugin \u201abuderus\u2018 Konfiguration", "Plugin \u201abyd_bat\u2018 Konfiguration", "Plugin \u201acasambi\u2018 Konfiguration", "Plugin \u201acli\u2018 Konfiguration", "Plugin \u201aco2meter\u2018 Konfiguration", "Plugin \u201acomfoair\u2018 Konfiguration", "Plugin \u201adarksky\u2018 Konfiguration", "Plugin \u201adashbutton\u2018 Konfiguration", "Plugin \u201adatabase\u2018 Konfiguration", "Plugin \u201adatalog\u2018 Konfiguration", "Plugin \u201adb_addon\u2018 Konfiguration", "Plugin \u201adeebot_ozmo\u2018 Konfiguration", "Plugin \u201adenon\u2018 Konfiguration", "Plugin \u201adlms\u2018 Konfiguration", "Plugin \u201admx\u2018 Konfiguration", "Plugin \u201adrexelundweiss\u2018 Konfiguration", "<no title>", "Plugin \u201aebus\u2018 Konfiguration", "Plugin \u201aenigma2\u2018 Konfiguration", "Plugin \u201aenocean\u2018 Konfiguration", "Plugin \u201aepson\u2018 Konfiguration", "Plugin \u201aeta_pu\u2018 Konfiguration", "Plugin \u201aexecutor\u2018 Konfiguration", "Plugin \u201agarminconnect\u2018 Konfiguration", "Plugin \u201agpio\u2018 Konfiguration", "Plugin \u201aharmony\u2018 Konfiguration", "Plugin \u201ahelios\u2018 Konfiguration", "Plugin \u201ahelios_tcp\u2018 Konfiguration", "Plugin \u201ahomeconnect\u2018 Konfiguration", "Plugin \u201ahomematic\u2018 Konfiguration", "Plugin \u201ahue\u2018 Konfiguration", "Plugin \u201ahue2\u2018 Konfiguration", "Plugin \u201ahue3\u2018 Konfiguration", "Plugin \u201ahusky\u2018 Konfiguration", "Plugin \u201ahusky2\u2018 Konfiguration", "Plugin \u201aical\u2018 Konfiguration", "Plugin \u201aindego\u2018 Konfiguration", "Plugin \u201aindego4shng\u2018 Konfiguration", "Plugin \u201ainfluxdata\u2018 Konfiguration", "Plugin \u201ainfluxdb\u2018 Konfiguration", "Plugin \u201ainfluxdb2\u2018 Konfiguration", "Plugin \u201aintercom_2n\u2018 Konfiguration", "Plugin \u201ajoin\u2018 Konfiguration", "Plugin \u201ajsonread\u2018 Konfiguration", "Plugin \u201ajvcproj\u2018 Konfiguration", "Plugin \u201akathrein\u2018 Konfiguration", "Plugin \u201aknx\u2018 Konfiguration", "Plugin \u201akodi\u2018 Konfiguration", "Plugin \u201akostal\u2018 Konfiguration", "Plugin \u201akostalmodbus\u2018 Konfiguration", "Plugin \u201aksemmodbus\u2018 Konfiguration", "Plugin \u201aleveljet\u2018 Konfiguration", "Plugin \u201alirc\u2018 Konfiguration", "Plugin \u201alms\u2018 Konfiguration", "Plugin \u201alogo\u2018 Konfiguration", "Plugin \u201aluxtronic2\u2018 Konfiguration", "Plugin \u201amailrcv\u2018 Konfiguration", "Plugin \u201amailsend\u2018 Konfiguration", "Plugin \u201amemlog\u2018 Konfiguration", "Plugin \u201amieleathome\u2018 Konfiguration", "Plugin \u201amiflora\u2018 Konfiguration", "Plugin \u201amikrotik\u2018 Konfiguration", "Plugin \u201amilight\u2018 Konfiguration", "Plugin \u201amlgw\u2018 Konfiguration", "Plugin \u201amodbus_tcp\u2018 Konfiguration", "Plugin \u201ampd\u2018 Konfiguration", "Plugin \u201amqtt\u2018 Konfiguration", "Plugin \u201amvg_live\u2018 Konfiguration", "Plugin \u201aneato\u2018 Konfiguration", "Plugin \u201anetwork\u2018 Konfiguration", "Plugin \u201anuki\u2018 Konfiguration", "Plugin \u201anut\u2018 Konfiguration", "Plugin \u201aodlinfo\u2018 Konfiguration", "Plugin \u201aonewire\u2018 Konfiguration", "Plugin \u201aopenweathermap\u2018 Konfiguration", "Plugin \u201aoperationlog\u2018 Konfiguration", "Plugin \u201aoppo\u2018 Konfiguration", "Plugin \u201apanasonic_ac\u2018 Konfiguration", "Plugin \u201aphilips_tv\u2018 Konfiguration", "Plugin \u201apioneer\u2018 Konfiguration", "Plugin \u201apiratewthr\u2018 Konfiguration", "Plugin \u201aplex\u2018 Konfiguration", "Plugin \u201apluggit\u2018 Konfiguration", "Plugin \u201aprowl\u2018 Konfiguration", "Plugin \u201apushbullet\u2018 Konfiguration", "Plugin \u201apushover\u2018 Konfiguration", "Plugin \u201araumfeld\u2018 Konfiguration", "Plugin \u201araumfeld_ng\u2018 Konfiguration", "Plugin \u201arcs1000n\u2018 Konfiguration", "Plugin \u201arcswitch\u2018 Konfiguration", "Plugin \u201aresol\u2018 Konfiguration", "Plugin \u201arobonect\u2018 Konfiguration", "Plugin \u201aroomba\u2018 Konfiguration", "Plugin \u201aroomba_980\u2018 Konfiguration", "Plugin \u201aroombapysh\u2018 Konfiguration", "Plugin \u201arpi1wire\u2018 Konfiguration", "Plugin \u201arpi_info\u2018 Konfiguration", "Plugin \u201arrd\u2018 Konfiguration", "Plugin \u201artr\u2018 Konfiguration", "Plugin \u201artr2\u2018 Konfiguration", "Plugin \u201arussound\u2018 Konfiguration", "Plugin \u201ashelly\u2018 Konfiguration", "Plugin \u201asimulation\u2018 Konfiguration", "Plugin \u201aslack\u2018 Konfiguration", "Plugin \u201asma\u2018 Konfiguration", "Plugin \u201asma_em\u2018 Konfiguration", "Plugin \u201asma_mb\u2018 Konfiguration", "Plugin \u201asmarttv\u2018 Konfiguration", "Plugin \u201asmartvisu\u2018 Konfiguration", "Plugin \u201asml\u2018 Konfiguration", "Plugin \u201asml2\u2018 Konfiguration", "Plugin \u201asmlx\u2018 Konfiguration", "Plugin \u201asnap7_logo\u2018 Konfiguration", "Plugin \u201asnmp\u2018 Konfiguration", "Plugin \u201asolarforecast\u2018 Konfiguration", "Plugin \u201asolarlog\u2018 Konfiguration", "Plugin \u201asonos\u2018 Konfiguration", "Plugin \u201aspeech\u2018 Konfiguration", "Plugin \u201asqlite_visu2_8\u2018 Konfiguration", "Plugin \u201asqueezebox\u2018 Konfiguration", "Plugin \u201astateengine\u2018 Konfiguration", "Plugin \u201asystemair\u2018 Konfiguration", "Plugin \u201atankerkoenig\u2018 Konfiguration", "Plugin \u201atasmota\u2018 Konfiguration", "Plugin \u201atelegram\u2018 Konfiguration", "Plugin \u201atext_display\u2018 Konfiguration", "Plugin \u201athz\u2018 Konfiguration", "Plugin \u201atimmy\u2018 Konfiguration", "Plugin \u201atraffic\u2018 Konfiguration", "Plugin \u201atrovis557x\u2018 Konfiguration", "Plugin \u201aunifi\u2018 Konfiguration", "Plugin \u201auzsu\u2018 Konfiguration", "Plugin \u201avacations\u2018 Konfiguration", "Plugin \u201avicare\u2018 Konfiguration", "Plugin \u201aviessmann\u2018 Konfiguration", "Plugin \u201avisu_smartvisu\u2018 Konfiguration", "Plugin \u201avisu_websocket\u2018 Konfiguration", "Plugin \u201avolkszaehler\u2018 Konfiguration", "Plugin \u201awaterkotte\u2018 Konfiguration", "Plugin \u201awebpush\u2018 Konfiguration", "Plugin \u201awebservices\u2018 Konfiguration", "Plugin \u201awettercom\u2018 Konfiguration", "Plugin \u201awithings_health\u2018 Konfiguration", "Plugin \u201awol\u2018 Konfiguration", "Plugin \u201awunderground\u2018 Konfiguration", "Plugin \u201axiaomi_vac\u2018 Konfiguration", "Plugin \u201axmpp\u2018 Konfiguration", "Plugin \u201ayamaha\u2018 Konfiguration", "Plugin \u201ayamahayxc\u2018 Konfiguration", "Plugin \u201azigbee2mqtt\u2018 Konfiguration", "Plugin \u201azwave\u2018 Konfiguration", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "Alle Plugins", "Alle Plugins", "<no title>", "Gateway Plugins", "Gateway Plugins", "Interface Plugins", "Interface Plugins", "Protokoll Plugins", "Protokoll Plugins", "System Plugins", "System Plugins", "Nicht klassifizierte Plugins", "Nicht klassifizierte Plugins", "Web/Cloud Plugins", "Web/Cloud Plugins", "APIs von SmartHomeNG", "Relative Item Referenzen", "Funktionen eines Items", "Zugriff auf die Werte von Items", "Items", "Methoden zum Zugriff auf Items", "Plugin-spezifische Attribute", "Properties eines Items", "autotimer", "crontab Update", "cycle", "enforce_change", "enforce_updates", "eval und eval_trigger", "Hysterese", "log_change und log_text", "on_update und on_change", "Standard Attribute Update", "struct", "type", "SmartHomeNG Items", "Libraries f\u00fcr Plugins und Logiken", "Logging", "Logging Filter", "Logging Formatter", "Logging Handler", "Text Formatierung beim Logging", "Logiken", "Exceptions", "Funktionen und Klassen in Logiken", "Grundstruktur einer Logik", "Zugriff auf Items", "Logik Konfiguration", "Logging in Logiken", "Die Objekte logic und logics", "Nutzung von MQTT in Logiken", "Persistente Variablen und Objekte", "Nutzung von Plugin Funktionen", "Bereits geladene Python Module", "SmartHomeNG Methoden", "Standardparameter", "item_attribute_prefixes", "item_attributes", "item_structs", "logic_parameters", "Metadaten", "module", "<no title>", "parameters", "plugin_functions", "plugin", "Module", "Modul admin", "Modul http", "Metadaten f\u00fcr Module", "Modul mqtt", "Module websocket", "Netzwerk", "asyncio Unterst\u00fctzung in Plugins Neu", "Metadaten f\u00fcr Plugins", "Class MqttPlugin", "Plugin Typen", "Plugin", "Class SmartDevicePlugin", "Class SmartPlugin", "Dokumentation des Plugins", "Plugins Update", "Python Environment Update", "Python Version Installieren Neu", "Support Skripte f\u00fcr SmartHomeNG", "Virtuelle Python Environments Update", "Referenz Update", "Ablauf des Starts von SmartHomeNG", "Feiertage", "Feiertage, Daten und Zeiten", "Kommandozeilen-Optionen", "Astronomie (Sonne und Mond)", "SmartHomeNG (der Core)", "Userfunctions", "Release 1.0 und davor", "Release 1.1 bis 1.5", "Release 1.6 - 11. Mai 2019", "Release 1.6.1 - 10. August 2019", "Release 1.7 - 6. April 2020", "Release 1.7.1 - 14. April 2020", "Release 1.7.2 - 23. Juni 2020", "Release 1.8 - 15. Januar 2021", "Release 1.8.1 - 24. Januar 2021", "Release 1.8.2 - 21. Februar 2021", "Release 1.9 - 28. Dezember 2021", "Release 1.9.1 - 13. Feb 2022", "Release 1.9.2 - 2. Mai 2022", "Release 1.9.3 - 31. Okt 2022", "Release 1.9.4 - 14. M\u00e4rz 2023", "Release 1.9.5 - 31. M\u00e4rz 2023", "Release 1.10 - 29. Jan 2024", "Release 1.10.x - tt. mmm 2024", "Release Notes", "Release 0.1 - April 09th, 2011", "Release 0.2 - June 21st, 2011", "Release 0.3 - August 14th, 2011", "Release 0.4 - October 10th, 2011", "Release 0.5 - July 12th, 2012", "Release 0.6 - June 21th, 2012", "Release 0.7 - September 27th 2012", "Release 0.8 - January 31st, 2013", "Release 0.9 - June 6th 2013", "Release 1.0 - November 14th, 2013", "Release 1.1 - 13. April 2016", "Release 1.2 - 16. Mai 2016", "Release 1.3 - 5. August 2017", "Release 1.4 - 17. Dezember 2017", "Release 1.4.1 - 23. Dezember 2017", "Release 1.4.2 - 2. Januar 2018", "Release 1.5 - 8. Juli 2018", "Release 1.5.1 - 15. Juli 2018", "Tools", "backup_restore.py", "build_requirements.py", "conf_to_yaml_converter.py", "getshngpid", "plugin_metadata_checker.py", "Automatische Generierung", "Vollst\u00e4ndiges Beispiel", "\u00c4nderungen ab v1.8", "Installation von Widgets", "Item Attribute zur Generierung", "Widgets f\u00fcr Plugins", "NGINX als ReverseProxy", "Visualisierung mit smartVISU Update", "Websocket Kommunikation", "Release 1.x - tt. mmm 2020", "Neuerungen im Release v1.11", "Neuerungen der letzten Releases"], "terms": {"seit": [0, 2, 6, 16, 22, 27, 28, 43, 44, 46, 47, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 65, 68, 71, 73, 76, 77, 78, 82, 83, 84, 86, 92, 95, 96, 97, 100, 103, 104, 106, 107, 109, 115, 119, 120, 123, 124, 156, 162, 163, 164, 165, 166, 170, 179, 184, 187, 189, 192, 200, 204, 210, 212, 213, 219, 220, 223, 226, 232, 243, 244, 249, 252, 255, 259, 260, 261, 262, 263, 265, 266, 268, 283, 284, 289, 292, 303, 309, 310, 311, 314, 321, 323, 325, 328, 333, 348, 349, 351, 357, 359, 360, 366, 367, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 562, 567, 573, 576, 577, 578, 580, 585, 586, 591, 597, 599, 601, 602, 604, 606, 607, 608, 609, 610, 613, 616, 625, 630, 632, 634, 638, 641, 671, 674, 675, 680, 683, 684, 685, 686, 687, 690, 693], "smarthomeng": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 21, 22, 24, 29, 30, 31, 33, 34, 37, 38, 39, 41, 42, 43, 44, 45, 46, 48, 50, 51, 53, 54, 55, 56, 57, 64, 65, 66, 67, 68, 76, 79, 80, 81, 82, 84, 88, 90, 91, 93, 95, 96, 97, 98, 100, 102, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 136, 137, 139, 140, 141, 143, 146, 148, 149, 151, 152, 153, 157, 158, 160, 162, 163, 164, 166, 169, 170, 172, 173, 174, 175, 176, 178, 179, 181, 183, 184, 186, 187, 192, 198, 199, 200, 203, 205, 208, 209, 210, 212, 213, 214, 215, 216, 217, 219, 220, 222, 223, 226, 232, 235, 236, 239, 244, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 261, 263, 265, 266, 270, 272, 274, 276, 278, 282, 283, 289, 290, 291, 292, 293, 299, 301, 302, 306, 307, 309, 310, 314, 315, 317, 319, 321, 322, 324, 325, 328, 329, 330, 331, 332, 337, 344, 345, 347, 348, 349, 351, 352, 353, 354, 355, 359, 360, 362, 363, 365, 366, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 555, 556, 557, 558, 561, 562, 564, 566, 567, 568, 569, 570, 572, 573, 575, 576, 577, 579, 582, 583, 584, 585, 586, 587, 590, 591, 592, 593, 594, 595, 596, 597, 598, 601, 602, 603, 604, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 618, 621, 622, 623, 624, 626, 627, 628, 630, 631, 634, 635, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 668, 669, 670, 671, 672, 673, 674, 675, 676, 678, 679, 680, 682, 684, 687, 688, 689, 690, 691, 693], "v1": [0, 1, 3, 12, 30, 44, 45, 50, 53, 54, 55, 56, 57, 66, 68, 71, 78, 79, 83, 85, 89, 91, 97, 100, 102, 103, 108, 109, 111, 113, 114, 122, 124, 133, 152, 154, 157, 158, 163, 170, 173, 176, 179, 180, 184, 192, 210, 213, 218, 219, 220, 222, 223, 232, 248, 249, 251, 252, 255, 261, 275, 291, 293, 309, 348, 355, 356, 357, 360, 366, 370, 388, 391, 410, 413, 419, 424, 425, 448, 479, 493, 545, 548, 550, 552, 554, 558, 562, 566, 567, 568, 570, 573, 575, 576, 577, 579, 591, 594, 598, 603, 612, 613, 615, 618, 624, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 672, 674, 681, 682, 687, 689, 691], "6": [0, 13, 15, 16, 25, 30, 42, 43, 44, 45, 53, 54, 55, 64, 70, 79, 86, 97, 106, 107, 108, 111, 115, 116, 122, 125, 133, 158, 161, 165, 166, 169, 173, 176, 183, 184, 187, 189, 192, 195, 196, 197, 198, 205, 207, 210, 219, 220, 226, 227, 231, 232, 234, 239, 245, 248, 249, 254, 255, 257, 262, 269, 270, 271, 279, 282, 284, 290, 293, 309, 310, 319, 321, 324, 325, 328, 329, 334, 338, 339, 340, 342, 343, 347, 355, 361, 378, 381, 386, 392, 401, 406, 410, 411, 414, 415, 417, 421, 425, 429, 431, 432, 433, 434, 436, 448, 452, 453, 460, 461, 464, 469, 477, 479, 481, 482, 486, 487, 489, 492, 493, 495, 496, 497, 501, 508, 509, 512, 513, 515, 519, 520, 522, 528, 531, 545, 548, 550, 552, 554, 558, 562, 567, 569, 577, 585, 586, 588, 591, 592, 599, 606, 610, 613, 615, 636, 638, 639, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 675, 681, 691], "steht": [0, 1, 4, 42, 52, 56, 67, 68, 70, 83, 87, 92, 97, 98, 106, 121, 123, 164, 169, 187, 200, 203, 215, 219, 224, 232, 262, 285, 293, 295, 314, 322, 325, 329, 331, 360, 461, 492, 528, 530, 545, 547, 548, 550, 552, 554, 558, 561, 595, 596, 599, 636, 638, 641, 679], "graphisch": [0, 47, 82, 83, 93, 109, 111, 113, 118, 119, 120, 121, 122, 385, 426, 427, 545, 554, 577, 612, 671], "verfug": [0, 1, 2, 3, 4, 27, 43, 52, 56, 58, 59, 67, 68, 70, 76, 82, 92, 93, 97, 100, 104, 110, 118, 120, 121, 123, 153, 154, 164, 165, 166, 169, 170, 187, 189, 191, 201, 207, 210, 215, 219, 222, 228, 230, 232, 233, 238, 241, 243, 262, 264, 265, 267, 268, 285, 286, 293, 295, 319, 321, 329, 330, 370, 373, 417, 460, 522, 545, 547, 548, 550, 552, 554, 558, 560, 561, 576, 585, 587, 589, 595, 596, 597, 599, 612, 622, 633, 634, 636, 638, 641, 652, 653, 655, 656, 671, 674, 679, 682, 685], "welch": [0, 1, 2, 3, 4, 8, 9, 13, 16, 22, 27, 37, 40, 41, 42, 43, 45, 48, 52, 53, 57, 58, 62, 64, 67, 69, 71, 76, 83, 86, 90, 92, 94, 97, 98, 101, 103, 104, 105, 106, 108, 109, 111, 112, 115, 116, 117, 120, 121, 122, 123, 154, 155, 162, 168, 169, 170, 184, 187, 192, 196, 197, 200, 212, 213, 215, 219, 226, 230, 232, 255, 262, 268, 276, 282, 289, 291, 293, 302, 304, 314, 320, 321, 325, 326, 328, 329, 330, 331, 332, 337, 338, 354, 370, 371, 373, 375, 376, 382, 384, 391, 396, 397, 401, 405, 407, 409, 415, 417, 419, 420, 421, 422, 426, 427, 428, 451, 452, 454, 469, 475, 489, 496, 506, 508, 523, 532, 534, 545, 548, 550, 552, 556, 557, 562, 563, 566, 567, 572, 573, 574, 575, 576, 577, 585, 589, 591, 592, 594, 595, 599, 600, 603, 609, 612, 614, 615, 618, 619, 621, 622, 630, 632, 634, 636, 641, 670, 674, 679, 682, 686, 687, 688, 689, 690, 693], "vollstand": [0, 4, 22, 43, 50, 53, 56, 62, 64, 83, 92, 93, 106, 108, 109, 169, 170, 187, 200, 212, 213, 215, 224, 225, 230, 265, 284, 289, 291, 293, 295, 310, 314, 321, 325, 326, 337, 351, 354, 373, 382, 511, 561, 563, 573, 576, 582, 584, 594, 601, 602, 603, 604, 608, 609, 612, 632, 641, 644, 647, 648, 671, 674, 678, 681, 682, 684, 692, 693], "ermoglicht": [0, 3, 12, 45, 52, 53, 56, 60, 85, 97, 106, 169, 189, 196, 220, 223, 244, 262, 284, 302, 310, 329, 331, 333, 343, 347, 351, 362, 411, 423, 426, 427, 428, 430, 445, 496, 519, 520, 523, 536, 545, 548, 549, 550, 551, 554, 558, 575, 576, 577, 585, 590, 594, 599, 603, 612, 615, 622, 634, 671, 687, 689, 690], "Das": [0, 1, 2, 3, 4, 8, 12, 13, 14, 15, 20, 22, 24, 25, 27, 36, 37, 40, 42, 47, 48, 50, 51, 52, 53, 56, 58, 59, 62, 64, 68, 71, 74, 78, 79, 82, 83, 85, 86, 87, 90, 92, 95, 97, 98, 100, 102, 103, 105, 106, 107, 111, 112, 115, 116, 120, 122, 123, 124, 155, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 174, 178, 179, 181, 184, 187, 188, 189, 191, 192, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 215, 217, 219, 220, 222, 223, 225, 226, 228, 229, 230, 232, 233, 237, 238, 241, 242, 243, 244, 249, 250, 252, 255, 256, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 277, 283, 284, 285, 286, 287, 289, 291, 293, 295, 302, 304, 306, 307, 309, 310, 311, 313, 314, 316, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 332, 333, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 354, 357, 360, 362, 366, 367, 369, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 561, 562, 563, 566, 567, 568, 569, 570, 571, 573, 574, 575, 576, 577, 579, 583, 585, 587, 588, 589, 590, 591, 592, 596, 599, 603, 610, 612, 621, 622, 627, 629, 630, 634, 636, 638, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675, 677, 678, 681, 682, 683, 686, 687, 688, 689, 690, 693], "folgend": [0, 1, 8, 12, 13, 15, 16, 22, 24, 27, 37, 39, 40, 42, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 66, 67, 69, 70, 71, 73, 76, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 100, 102, 104, 106, 112, 114, 115, 116, 117, 123, 124, 125, 131, 154, 155, 156, 162, 164, 165, 166, 167, 169, 170, 171, 172, 178, 179, 181, 184, 187, 189, 191, 192, 194, 196, 200, 201, 203, 207, 210, 212, 213, 219, 220, 222, 223, 224, 225, 226, 229, 232, 237, 241, 243, 244, 250, 252, 255, 256, 261, 262, 263, 264, 265, 266, 267, 268, 277, 285, 287, 289, 291, 293, 295, 300, 302, 303, 304, 306, 307, 310, 314, 319, 320, 321, 324, 325, 326, 328, 329, 330, 331, 333, 337, 338, 339, 340, 347, 348, 351, 357, 359, 360, 362, 366, 367, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 572, 573, 574, 575, 577, 579, 581, 582, 584, 585, 586, 588, 589, 591, 592, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 608, 609, 610, 611, 612, 614, 617, 618, 619, 620, 622, 623, 624, 625, 628, 629, 630, 632, 633, 634, 635, 637, 638, 639, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 678, 681, 682, 683, 684, 687, 688, 689, 693], "aufruf": [0, 5, 24, 27, 42, 46, 52, 58, 59, 64, 71, 76, 83, 85, 100, 103, 120, 124, 125, 160, 243, 244, 263, 272, 283, 292, 323, 325, 330, 331, 347, 351, 377, 382, 434, 445, 486, 508, 545, 558, 561, 562, 570, 575, 577, 581, 586, 589, 590, 591, 593, 595, 629, 630, 687, 688], "gestartet": [0, 3, 4, 5, 12, 20, 22, 27, 37, 42, 52, 53, 56, 76, 80, 82, 83, 84, 86, 87, 89, 90, 92, 95, 96, 102, 103, 106, 108, 112, 125, 164, 165, 187, 189, 192, 196, 210, 212, 213, 225, 232, 244, 295, 328, 338, 346, 367, 396, 504, 562, 573, 599, 610, 617, 628, 630, 632, 634, 635, 638, 642, 671, 688], "http": [0, 22, 28, 31, 33, 34, 43, 45, 52, 54, 55, 56, 57, 60, 66, 83, 84, 85, 87, 110, 111, 113, 118, 119, 122, 123, 141, 155, 158, 160, 161, 162, 164, 166, 170, 171, 172, 175, 179, 183, 184, 187, 192, 195, 198, 200, 202, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 223, 225, 226, 227, 229, 234, 239, 247, 250, 251, 252, 255, 256, 257, 258, 262, 265, 266, 268, 272, 273, 275, 281, 285, 289, 292, 298, 302, 304, 305, 306, 307, 309, 311, 312, 313, 314, 315, 316, 338, 341, 348, 349, 356, 357, 360, 362, 366, 368, 369, 376, 382, 383, 406, 409, 423, 427, 428, 431, 436, 440, 458, 459, 472, 507, 525, 528, 545, 550, 552, 583, 606, 611, 612, 615, 617, 622, 624, 641, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 671, 674, 675, 688], "ip": [0, 14, 27, 43, 44, 45, 53, 58, 62, 69, 71, 78, 82, 83, 85, 86, 87, 88, 90, 103, 111, 119, 120, 121, 122, 141, 152, 155, 157, 158, 160, 161, 162, 166, 167, 169, 170, 173, 175, 176, 178, 180, 181, 191, 198, 201, 202, 205, 207, 211, 222, 223, 225, 227, 231, 234, 235, 236, 247, 256, 257, 258, 259, 264, 267, 270, 276, 278, 281, 282, 283, 290, 292, 299, 300, 301, 304, 310, 314, 315, 331, 356, 357, 360, 362, 363, 365, 368, 374, 377, 380, 381, 382, 383, 384, 387, 388, 393, 405, 406, 409, 413, 415, 417, 418, 419, 420, 428, 429, 432, 433, 434, 437, 438, 440, 442, 449, 450, 451, 452, 453, 458, 459, 461, 469, 470, 475, 477, 480, 481, 482, 488, 494, 495, 496, 498, 499, 500, 501, 503, 504, 505, 507, 514, 531, 535, 545, 550, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 617, 643, 646, 649, 650, 655, 674, 684, 688, 690], "Ihres": [0, 164], "serv": [0, 1, 4, 9, 14, 44, 71, 82, 85, 87, 88, 110, 127, 141, 157, 161, 163, 181, 217, 218, 219, 220, 221, 225, 227, 229, 238, 240, 244, 248, 256, 258, 259, 261, 274, 278, 292, 302, 315, 318, 319, 338, 356, 357, 358, 362, 368, 423, 425, 428, 444, 477, 507, 512, 514, 525, 527, 545, 550, 612, 613, 641, 646, 648, 649, 650, 653, 655, 689], "8383": [0, 44, 45, 83, 103, 120, 157, 158, 179, 184, 187, 192, 200, 210, 212, 213, 220, 252, 255, 265, 266, 268, 289, 302, 311, 314, 348, 349, 357, 360, 366, 613, 615, 617], "admin": [0, 2, 4, 5, 27, 42, 43, 44, 45, 52, 53, 55, 56, 66, 71, 86, 87, 92, 97, 98, 102, 103, 104, 108, 110, 117, 118, 120, 121, 125, 136, 157, 158, 170, 179, 187, 192, 200, 204, 210, 212, 213, 226, 232, 247, 249, 255, 265, 266, 285, 289, 300, 302, 309, 311, 314, 328, 338, 349, 360, 380, 391, 398, 417, 419, 420, 426, 427, 445, 449, 510, 562, 563, 567, 569, 574, 577, 590, 591, 592, 600, 601, 602, 603, 604, 607, 608, 609, 610, 611, 613, 615, 617, 618, 624, 632, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 677, 680, 693], "uber": [0, 1, 2, 3, 4, 5, 8, 13, 20, 25, 27, 44, 47, 48, 52, 56, 58, 60, 62, 65, 67, 68, 71, 76, 79, 82, 83, 85, 86, 87, 89, 90, 92, 94, 96, 98, 101, 102, 103, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 131, 153, 154, 155, 160, 163, 164, 165, 169, 170, 171, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 215, 219, 220, 224, 226, 229, 230, 232, 233, 238, 242, 243, 244, 249, 252, 255, 259, 261, 262, 263, 264, 265, 266, 267, 268, 277, 279, 283, 285, 289, 291, 292, 293, 300, 302, 304, 306, 307, 310, 311, 314, 316, 319, 321, 323, 325, 326, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 347, 348, 349, 351, 357, 359, 360, 362, 363, 366, 367, 369, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 552, 558, 561, 562, 563, 567, 572, 573, 574, 575, 577, 578, 583, 585, 587, 591, 592, 594, 596, 597, 599, 600, 612, 613, 614, 616, 617, 619, 622, 632, 634, 636, 638, 641, 671, 672, 674, 682, 688, 689, 690, 692, 693], "systemkonfiguration": [0, 93, 95, 104, 207, 633], "eingestellt": [0, 2, 13, 50, 56, 85, 162, 167, 169, 170, 196, 210, 219, 233, 244, 289, 330, 338, 351, 375, 434, 479, 508, 641, 674, 682], "werd": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 16, 18, 22, 24, 25, 27, 28, 31, 32, 33, 34, 37, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 131, 153, 155, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 214, 215, 217, 219, 220, 222, 223, 224, 225, 226, 229, 230, 232, 233, 238, 241, 243, 244, 246, 249, 250, 252, 255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 277, 279, 282, 283, 284, 285, 287, 289, 291, 292, 293, 295, 300, 302, 304, 306, 307, 308, 309, 310, 311, 313, 314, 316, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 336, 337, 338, 339, 340, 343, 345, 346, 347, 348, 349, 351, 354, 357, 359, 360, 362, 363, 366, 367, 369, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 551, 561, 562, 563, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 628, 629, 630, 631, 632, 633, 634, 635, 638, 641, 642, 643, 644, 645, 646, 650, 652, 653, 654, 655, 656, 671, 672, 673, 674, 678, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693], "dass": [0, 1, 2, 4, 8, 12, 13, 24, 25, 27, 28, 36, 37, 42, 43, 46, 47, 50, 51, 52, 53, 58, 60, 61, 62, 67, 71, 76, 78, 79, 80, 82, 83, 84, 86, 95, 97, 98, 103, 105, 106, 107, 111, 112, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 155, 164, 169, 178, 187, 189, 203, 210, 212, 213, 215, 219, 223, 226, 229, 256, 260, 262, 263, 272, 276, 283, 285, 289, 293, 302, 304, 310, 313, 314, 325, 326, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 360, 362, 369, 373, 374, 375, 376, 381, 382, 384, 385, 386, 387, 388, 389, 391, 392, 393, 395, 396, 397, 399, 400, 402, 403, 406, 407, 408, 409, 411, 413, 414, 416, 417, 418, 420, 422, 423, 424, 425, 426, 428, 429, 433, 435, 436, 437, 438, 441, 442, 443, 447, 448, 449, 450, 451, 454, 455, 456, 458, 459, 460, 461, 463, 464, 465, 467, 469, 470, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 490, 491, 492, 493, 494, 495, 497, 500, 501, 503, 505, 506, 507, 508, 509, 510, 513, 514, 515, 516, 517, 518, 521, 522, 523, 524, 525, 526, 527, 529, 532, 534, 537, 538, 545, 547, 548, 550, 551, 552, 554, 558, 561, 562, 563, 566, 567, 570, 571, 572, 573, 574, 576, 577, 579, 588, 589, 591, 592, 593, 594, 595, 596, 600, 601, 602, 603, 604, 606, 608, 609, 610, 622, 628, 630, 632, 638, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675, 682, 685, 686, 688, 689, 693], "automat": [0, 1, 12, 28, 43, 44, 48, 50, 51, 52, 53, 56, 60, 62, 68, 76, 78, 79, 82, 83, 85, 87, 89, 90, 92, 102, 113, 119, 122, 155, 162, 165, 169, 170, 188, 189, 191, 192, 196, 201, 212, 213, 215, 219, 220, 222, 237, 238, 243, 249, 255, 262, 264, 267, 283, 295, 304, 306, 307, 314, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 338, 339, 340, 347, 354, 359, 367, 370, 373, 376, 381, 400, 401, 403, 408, 412, 423, 435, 440, 441, 443, 464, 466, 467, 486, 504, 507, 508, 519, 533, 534, 608, 612, 613, 625, 641, 655, 671, 674, 684, 685, 688, 689, 693], "verweist": [0, 53, 103, 572, 610], "fall": [0, 1, 3, 4, 5, 8, 12, 22, 24, 27, 28, 31, 32, 37, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 58, 62, 64, 67, 68, 71, 76, 79, 82, 83, 84, 85, 86, 87, 92, 93, 96, 97, 98, 101, 102, 103, 104, 106, 109, 111, 112, 113, 115, 116, 117, 119, 120, 121, 155, 164, 168, 170, 187, 196, 200, 210, 219, 223, 225, 226, 238, 244, 259, 260, 261, 262, 265, 272, 283, 289, 292, 293, 295, 302, 304, 314, 316, 321, 322, 323, 325, 326, 328, 329, 330, 331, 332, 337, 354, 359, 360, 362, 371, 373, 374, 375, 382, 386, 387, 388, 391, 392, 393, 394, 395, 396, 398, 399, 402, 403, 406, 407, 409, 411, 413, 414, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 429, 433, 436, 437, 438, 440, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 468, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 519, 520, 522, 523, 524, 525, 529, 532, 534, 538, 545, 547, 548, 550, 551, 552, 554, 558, 561, 563, 566, 568, 570, 572, 573, 575, 577, 587, 588, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 612, 613, 615, 617, 625, 630, 632, 634, 635, 638, 641, 642, 653, 671, 672, 673, 674, 678, 681, 682, 684, 687, 693], "konfiguration": [0, 1, 3, 10, 42, 43, 52, 53, 54, 55, 56, 61, 71, 81, 82, 84, 86, 87, 90, 92, 97, 104, 105, 107, 108, 109, 110, 113, 114, 117, 123, 153, 154, 207, 283, 292, 304, 320, 321, 326, 327, 329, 330, 331, 545, 548, 550, 552, 554, 558, 566, 578, 579, 580, 583, 585, 586, 587, 590, 594, 597, 601, 602, 603, 604, 607, 608, 609, 610, 611, 612, 614, 619, 622, 625, 628, 635, 638, 641, 669, 671, 673, 674, 677, 679, 693], "fur": [0, 1, 2, 3, 4, 7, 8, 10, 14, 16, 19, 20, 22, 25, 27, 31, 33, 34, 37, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 64, 67, 68, 70, 72, 73, 74, 79, 80, 81, 84, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 97, 100, 101, 102, 103, 104, 106, 107, 109, 110, 111, 112, 113, 115, 117, 119, 120, 121, 122, 123, 124, 125, 131, 153, 155, 159, 163, 164, 165, 166, 167, 168, 169, 171, 172, 178, 179, 181, 184, 191, 194, 196, 197, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 224, 225, 226, 228, 229, 230, 232, 237, 238, 241, 243, 244, 249, 250, 252, 255, 256, 260, 261, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 278, 279, 282, 283, 285, 287, 289, 291, 295, 302, 304, 306, 307, 309, 311, 313, 314, 316, 319, 321, 322, 323, 327, 329, 330, 331, 332, 333, 337, 338, 339, 340, 345, 347, 348, 349, 351, 352, 359, 360, 362, 366, 369, 370, 371, 373, 374, 375, 377, 379, 380, 381, 382, 383, 385, 386, 387, 388, 391, 392, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 406, 407, 408, 409, 410, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 431, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 448, 449, 450, 451, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 528, 529, 530, 531, 532, 533, 534, 536, 537, 538, 561, 563, 564, 565, 566, 567, 568, 569, 570, 572, 573, 574, 575, 576, 577, 579, 584, 585, 587, 589, 591, 592, 593, 594, 595, 596, 597, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 617, 621, 622, 625, 626, 627, 628, 630, 632, 634, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 670, 671, 672, 673, 674, 675, 678, 679, 682, 683, 684, 686, 689, 690, 691], "modul": [0, 1, 2, 4, 14, 31, 33, 34, 40, 50, 52, 54, 55, 56, 57, 58, 60, 66, 82, 85, 102, 103, 106, 107, 113, 115, 116, 123, 127, 132, 136, 138, 139, 143, 151, 155, 162, 166, 172, 173, 176, 177, 178, 186, 192, 200, 204, 205, 209, 214, 222, 223, 227, 234, 240, 250, 251, 257, 261, 269, 277, 278, 280, 281, 284, 285, 291, 302, 306, 307, 337, 360, 367, 368, 369, 370, 371, 381, 388, 396, 407, 412, 454, 479, 489, 508, 511, 533, 537, 545, 548, 550, 552, 573, 581, 582, 583, 585, 587, 589, 595, 599, 601, 602, 604, 607, 609, 617, 624, 634, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 674, 675, 678, 684, 688, 689, 690, 691], "user": [0, 1, 2, 12, 37, 40, 44, 45, 47, 53, 54, 55, 58, 60, 71, 78, 83, 84, 88, 89, 90, 92, 98, 103, 111, 120, 121, 134, 137, 141, 164, 168, 170, 176, 182, 186, 192, 198, 200, 202, 205, 209, 211, 216, 218, 219, 220, 227, 234, 239, 245, 247, 249, 253, 254, 255, 257, 260, 266, 273, 274, 278, 294, 296, 297, 298, 301, 304, 306, 307, 315, 335, 338, 344, 346, 352, 353, 355, 356, 357, 362, 364, 366, 368, 375, 376, 409, 411, 418, 423, 425, 447, 462, 477, 492, 512, 530, 586, 610, 612, 613, 615, 616, 630, 638, 641, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 660, 665, 666, 668, 670, 675, 691], "passwort": [0, 1, 5, 8, 44, 45, 47, 82, 120, 162, 164, 215, 218, 220, 232, 244, 255, 338, 375, 380, 382, 383, 390, 391, 399, 406, 411, 417, 421, 424, 425, 429, 434, 436, 444, 445, 447, 451, 466, 477, 478, 479, 481, 482, 492, 518, 526, 534, 613, 615], "kombination": [0, 16, 46, 58, 192, 203, 224, 256, 262, 316, 330, 347, 568], "konfiguriert": [0, 2, 3, 4, 8, 20, 22, 27, 42, 43, 45, 47, 52, 53, 56, 58, 60, 69, 71, 82, 83, 84, 85, 86, 92, 93, 95, 96, 97, 98, 103, 104, 106, 107, 108, 109, 110, 111, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 153, 154, 155, 162, 165, 168, 169, 170, 171, 181, 184, 187, 188, 189, 196, 197, 200, 203, 212, 213, 220, 223, 226, 229, 232, 233, 237, 243, 261, 262, 263, 265, 268, 276, 277, 285, 287, 289, 291, 292, 293, 295, 304, 310, 313, 314, 320, 325, 337, 346, 347, 351, 360, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 550, 551, 563, 566, 574, 575, 577, 583, 585, 590, 592, 593, 594, 595, 597, 599, 600, 601, 602, 604, 607, 608, 609, 610, 612, 614, 615, 617, 619, 622, 632, 633, 634, 641, 671, 674, 682, 688, 689, 690, 693], "wurd": [0, 1, 4, 8, 20, 24, 27, 33, 34, 37, 42, 43, 48, 50, 52, 53, 57, 58, 60, 61, 62, 69, 71, 73, 77, 79, 80, 82, 83, 89, 90, 92, 95, 96, 97, 100, 102, 103, 106, 108, 111, 112, 116, 117, 155, 162, 164, 165, 168, 169, 170, 184, 187, 189, 191, 192, 196, 197, 200, 201, 203, 210, 212, 213, 214, 215, 219, 222, 223, 226, 232, 233, 237, 243, 249, 250, 256, 259, 260, 261, 262, 263, 267, 268, 272, 276, 277, 283, 284, 287, 289, 291, 292, 293, 295, 304, 306, 307, 309, 313, 314, 316, 321, 322, 324, 325, 326, 328, 330, 331, 332, 333, 338, 339, 340, 343, 347, 359, 360, 363, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 556, 557, 561, 562, 563, 566, 567, 569, 571, 572, 573, 575, 576, 577, 588, 589, 591, 592, 593, 594, 595, 596, 599, 600, 603, 608, 625, 628, 632, 634, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 654, 655, 656, 671, 672, 674, 675, 682, 683, 686, 687, 688, 689, 691, 693], "benotigt": [0, 1, 8, 12, 13, 27, 31, 32, 33, 34, 37, 43, 46, 52, 53, 54, 55, 68, 73, 79, 80, 81, 82, 83, 85, 87, 90, 92, 97, 98, 115, 118, 122, 162, 166, 169, 170, 171, 172, 178, 179, 184, 187, 192, 194, 200, 207, 214, 215, 230, 250, 261, 262, 265, 268, 271, 272, 276, 277, 279, 289, 291, 300, 306, 307, 310, 314, 323, 326, 329, 331, 332, 336, 337, 338, 346, 351, 359, 360, 362, 363, 369, 370, 371, 374, 375, 381, 382, 383, 386, 387, 388, 391, 392, 393, 394, 395, 396, 399, 402, 403, 405, 406, 407, 409, 413, 414, 416, 417, 418, 419, 420, 423, 424, 425, 426, 429, 431, 433, 436, 437, 438, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 468, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 496, 497, 500, 503, 505, 506, 507, 508, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 527, 529, 532, 533, 534, 538, 545, 550, 584, 621, 622, 625, 627, 630, 632, 638, 671, 678, 684], "zuzugreif": [0, 52, 100, 262, 419, 420, 560, 563, 566, 591, 693], "anson": [0, 12, 20, 52, 57, 62, 82, 162, 169, 170, 179, 184, 192, 210, 219, 232, 252, 255, 261, 309, 330, 339, 340, 343, 348, 357, 360, 366, 381, 423, 519, 528, 601], "direkt": [0, 4, 16, 42, 43, 47, 62, 67, 80, 82, 84, 85, 92, 96, 97, 101, 103, 106, 112, 120, 124, 155, 162, 164, 169, 170, 172, 179, 184, 187, 189, 191, 192, 196, 200, 201, 203, 204, 210, 212, 213, 220, 229, 252, 255, 259, 262, 264, 265, 266, 267, 268, 285, 289, 295, 302, 304, 311, 314, 323, 325, 326, 327, 330, 332, 337, 338, 347, 348, 349, 351, 357, 360, 366, 371, 376, 412, 434, 453, 508, 550, 551, 562, 566, 573, 583, 586, 591, 622, 641, 685, 688, 689], "ubersichtsseit": [0, 8, 120], "systemeigenschaft": [0, 671, 680, 693], "angezeigt": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 43, 44, 51, 53, 56, 60, 62, 88, 90, 93, 97, 115, 119, 120, 121, 123, 162, 163, 164, 165, 170, 178, 179, 184, 187, 192, 200, 203, 210, 212, 213, 219, 220, 229, 232, 237, 244, 246, 252, 255, 261, 263, 265, 266, 268, 272, 284, 289, 295, 302, 314, 320, 321, 338, 339, 340, 347, 348, 349, 357, 359, 360, 362, 363, 366, 375, 381, 406, 434, 446, 463, 469, 496, 508, 523, 527, 563, 566, 577, 580, 585, 597, 601, 602, 603, 604, 608, 609, 613, 628, 632, 641, 671, 673, 674, 680, 682, 683, 686, 693], "Wenn": [0, 2, 3, 4, 5, 8, 12, 13, 20, 25, 27, 28, 31, 33, 34, 37, 42, 43, 45, 47, 48, 50, 51, 52, 53, 54, 58, 60, 62, 68, 71, 79, 82, 83, 84, 85, 86, 87, 89, 90, 92, 93, 95, 96, 97, 100, 102, 103, 105, 106, 111, 112, 115, 116, 117, 120, 121, 123, 124, 125, 154, 162, 164, 165, 166, 167, 169, 181, 184, 187, 200, 203, 210, 212, 213, 214, 219, 222, 229, 230, 232, 233, 241, 244, 250, 255, 256, 261, 262, 263, 268, 272, 283, 289, 293, 302, 306, 307, 313, 316, 321, 325, 326, 328, 331, 332, 333, 337, 338, 339, 340, 347, 349, 351, 360, 362, 363, 369, 370, 373, 376, 381, 382, 391, 396, 400, 401, 407, 408, 409, 412, 423, 426, 427, 428, 434, 435, 441, 449, 452, 453, 454, 457, 461, 462, 463, 464, 467, 471, 472, 479, 485, 486, 487, 490, 496, 497, 508, 513, 523, 524, 527, 537, 561, 563, 566, 568, 570, 572, 573, 574, 575, 576, 577, 579, 584, 589, 591, 592, 593, 595, 596, 597, 599, 600, 603, 608, 609, 610, 612, 615, 621, 622, 628, 629, 630, 634, 638, 641, 682, 685, 686, 689, 690, 692], "anmeld": [0, 5, 8, 82, 83, 84, 120, 164, 170, 215, 292, 359, 382, 383, 444, 445, 674], "notwend": [0, 1, 27, 47, 52, 54, 55, 56, 58, 62, 76, 79, 82, 89, 102, 106, 111, 113, 115, 116, 154, 162, 164, 165, 167, 169, 184, 189, 192, 194, 213, 233, 244, 262, 268, 289, 326, 329, 351, 371, 381, 382, 383, 406, 436, 561, 566, 569, 575, 577, 586, 589, 592, 593, 596, 601, 612, 622, 625, 635, 682, 683, 688, 693], "session": [0, 55, 71, 180, 181, 218, 219, 220, 227, 650, 652], "beschrankt": [0, 43, 53, 351, 601, 602, 604, 607, 608, 609], "Ein": [0, 8, 13, 17, 23, 28, 43, 48, 50, 51, 52, 53, 54, 55, 56, 67, 70, 79, 83, 84, 89, 90, 92, 98, 100, 103, 106, 112, 115, 123, 159, 164, 165, 169, 178, 187, 192, 197, 200, 204, 207, 210, 212, 213, 214, 215, 224, 229, 232, 238, 241, 250, 256, 262, 263, 265, 272, 276, 283, 284, 289, 291, 293, 306, 307, 314, 320, 325, 326, 329, 330, 331, 332, 333, 337, 338, 339, 340, 343, 345, 347, 360, 370, 373, 380, 396, 397, 405, 412, 419, 420, 433, 434, 458, 478, 512, 515, 545, 548, 549, 550, 551, 552, 553, 554, 558, 559, 561, 563, 573, 575, 577, 579, 593, 594, 595, 596, 614, 618, 619, 621, 625, 629, 635, 642, 649, 682, 683, 688, 693], "beend": [0, 27, 42, 45, 46, 53, 83, 86, 92, 102, 155, 187, 233, 283, 304, 324, 331, 380, 381, 396, 588, 610, 615, 635], "brows": [0, 5, 8, 22, 28, 37, 44, 52, 56, 60, 62, 83, 85, 90, 92, 103, 122, 155, 157, 164, 187, 225, 273, 292, 304, 312, 313, 315, 352, 355, 356, 357, 359, 376, 496, 524, 527, 545, 558, 612, 613, 644, 646, 651, 652, 653, 670, 688, 689, 690], "meldet": [0, 103], "anwend": [0, 5, 12, 14, 37, 46, 48, 76, 78, 80, 83, 98, 101, 103, 106, 115, 120, 121, 172, 212, 213, 256, 272, 325, 326, 351, 495, 498, 499, 522, 545, 547, 548, 550, 552, 554, 558, 579, 597, 638, 641, 652, 653, 654, 655, 656, 671, 672, 674, 675], "ab": [0, 1, 2, 3, 12, 14, 54, 56, 70, 71, 77, 79, 83, 84, 86, 88, 97, 98, 100, 102, 103, 104, 106, 108, 109, 111, 114, 115, 125, 155, 164, 165, 166, 167, 169, 170, 184, 189, 192, 220, 225, 230, 261, 262, 295, 302, 304, 306, 307, 314, 319, 324, 328, 329, 338, 343, 347, 363, 379, 380, 381, 412, 453, 460, 502, 504, 562, 566, 567, 568, 570, 575, 577, 591, 594, 595, 598, 599, 612, 618, 632, 638, 641, 649, 671, 672, 674, 675, 682, 687, 688, 689, 693], "hierzu": [0, 4, 25, 42, 58, 85, 96, 97, 98, 104, 116, 131, 162, 184, 191, 200, 201, 212, 213, 255, 260, 264, 265, 267, 268, 279, 289, 295, 302, 314, 323, 324, 331, 337, 354, 533, 566, 622, 633, 641, 687], "abmeld": [0, 8, 83], "button": [0, 1, 2, 3, 4, 5, 8, 22, 42, 54, 55, 56, 58, 62, 71, 83, 85, 95, 96, 98, 170, 185, 187, 189, 200, 211, 212, 213, 226, 227, 244, 253, 254, 255, 281, 282, 283, 292, 293, 294, 301, 302, 337, 359, 395, 420, 495, 545, 550, 641, 643, 645, 646, 649, 651, 653, 655, 656, 665, 682], "navigation": [0, 4, 48, 51, 52, 65, 76, 223, 226, 292, 352, 354, 373, 496, 523, 545, 547, 548, 550, 552, 554, 558, 597, 625, 645, 646, 650, 655, 683, 686, 689], "genutzt": [0, 1, 4, 5, 8, 13, 16, 27, 31, 33, 34, 43, 45, 46, 48, 51, 52, 53, 54, 56, 58, 60, 67, 68, 69, 71, 74, 79, 82, 83, 84, 86, 89, 90, 92, 96, 97, 100, 103, 104, 105, 106, 108, 109, 111, 112, 116, 117, 118, 120, 121, 122, 131, 155, 162, 163, 164, 166, 169, 170, 179, 184, 187, 188, 189, 192, 196, 203, 210, 212, 214, 219, 220, 225, 232, 233, 238, 243, 244, 250, 252, 255, 256, 259, 261, 262, 263, 272, 289, 291, 293, 295, 302, 304, 306, 307, 319, 323, 325, 328, 329, 330, 331, 333, 337, 338, 347, 348, 351, 357, 360, 362, 366, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 562, 563, 565, 567, 569, 573, 575, 576, 580, 581, 583, 585, 586, 589, 590, 591, 592, 595, 596, 597, 598, 601, 602, 605, 609, 611, 612, 614, 615, 619, 625, 632, 641, 643, 644, 645, 646, 674, 679, 682, 689, 690, 691, 693], "Eine": [0, 2, 3, 6, 16, 28, 37, 40, 42, 45, 46, 47, 48, 52, 54, 55, 56, 58, 68, 69, 71, 77, 79, 80, 83, 84, 85, 87, 92, 97, 98, 103, 109, 115, 117, 122, 155, 162, 163, 165, 169, 171, 184, 187, 192, 194, 197, 200, 203, 215, 219, 220, 224, 230, 233, 241, 243, 250, 261, 262, 265, 268, 276, 289, 293, 304, 313, 314, 325, 326, 328, 329, 330, 331, 337, 338, 339, 340, 359, 360, 381, 425, 434, 447, 471, 507, 534, 561, 562, 568, 575, 576, 577, 579, 584, 589, 590, 591, 592, 594, 595, 596, 597, 598, 600, 614, 615, 619, 622, 635, 682, 688, 689, 692, 693], "erfolgt": [0, 6, 13, 15, 24, 28, 32, 37, 46, 50, 52, 53, 55, 60, 69, 71, 76, 82, 83, 85, 87, 90, 97, 98, 103, 106, 112, 115, 116, 123, 124, 162, 170, 179, 189, 192, 194, 200, 212, 213, 219, 232, 243, 263, 265, 266, 272, 285, 289, 293, 314, 326, 328, 332, 338, 339, 340, 349, 370, 412, 496, 511, 512, 522, 537, 545, 548, 556, 557, 562, 567, 570, 573, 575, 577, 588, 589, 591, 598, 602, 603, 625, 638, 641, 671, 682, 687, 688, 689], "gespeichert": [0, 2, 5, 15, 27, 37, 42, 45, 47, 48, 52, 53, 56, 58, 76, 77, 90, 97, 103, 106, 124, 164, 165, 178, 187, 203, 212, 213, 219, 224, 226, 232, 261, 262, 263, 289, 295, 314, 326, 330, 332, 338, 347, 349, 381, 396, 422, 423, 424, 425, 427, 428, 436, 504, 560, 579, 596, 610, 614, 615, 619, 630, 632, 672, 673], "tok": [0, 8, 119, 154, 208, 222, 223, 254, 255, 257, 296, 338, 349, 362, 367, 428, 458, 521, 612, 642, 646, 652, 653, 655, 674], "ablauft": [0, 37, 58], "Die": [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 15, 16, 20, 24, 25, 27, 28, 31, 32, 33, 34, 36, 37, 39, 40, 42, 43, 44, 45, 48, 49, 50, 51, 53, 56, 58, 59, 60, 63, 66, 67, 68, 69, 70, 71, 73, 77, 78, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 131, 153, 155, 156, 159, 162, 163, 164, 165, 167, 168, 169, 170, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 214, 215, 220, 222, 223, 224, 225, 228, 229, 230, 232, 233, 241, 242, 243, 244, 246, 250, 252, 255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 271, 272, 276, 279, 283, 284, 285, 286, 287, 289, 292, 293, 295, 300, 302, 303, 304, 306, 307, 309, 310, 311, 313, 314, 319, 321, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 343, 347, 348, 349, 351, 354, 357, 359, 360, 362, 366, 367, 370, 371, 373, 376, 379, 380, 381, 382, 391, 396, 406, 409, 412, 413, 431, 432, 434, 446, 447, 457, 458, 460, 462, 463, 469, 471, 481, 482, 487, 496, 504, 506, 508, 511, 519, 524, 527, 531, 533, 534, 536, 537, 538, 545, 548, 554, 555, 556, 557, 560, 561, 562, 563, 565, 566, 567, 568, 569, 573, 574, 575, 576, 577, 579, 582, 583, 584, 585, 586, 588, 590, 591, 592, 595, 596, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 628, 629, 630, 632, 633, 634, 635, 636, 638, 639, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 678, 682, 683, 685, 686, 687, 688, 689, 690, 691, 692, 693], "lebensdau": 0, "tab": [0, 1, 2, 3, 4, 7, 8, 52, 54, 55, 56, 58, 60, 85, 96, 103, 106, 164, 170, 178, 179, 184, 187, 189, 192, 200, 204, 210, 212, 213, 220, 232, 244, 252, 254, 255, 265, 266, 268, 289, 302, 314, 337, 348, 357, 363, 366, 625, 635, 643, 645, 646, 649, 650, 651, 653, 655, 656, 680], "konfigurierbar": [0, 60, 95, 115, 116, 189, 262, 310, 351, 585, 641], "Auf": [1, 2, 3, 4, 6, 8, 16, 27, 44, 54, 55, 56, 58, 69, 73, 83, 105, 106, 115, 116, 120, 122, 162, 163, 164, 169, 170, 184, 187, 200, 210, 212, 213, 217, 229, 232, 260, 261, 268, 289, 299, 310, 323, 328, 329, 336, 339, 340, 351, 359, 396, 472, 477, 490, 495, 563, 567, 573, 576, 590, 591, 597, 598, 613, 616, 622, 628, 690], "temporar": [1, 261], "sprach": [1, 43, 47, 53, 56, 82, 93, 106, 159, 169, 215, 262, 316, 373, 394, 462, 468, 505, 516, 532, 545, 558, 601, 602, 604, 606, 607, 608, 609, 610], "umgeschaltet": [1, 381, 395], "ausserd": [1, 2, 4, 53, 56, 58, 60, 82, 83, 100, 103, 106, 112, 121, 123, 164, 166, 169, 179, 184, 187, 192, 200, 207, 210, 212, 213, 217, 220, 229, 230, 243, 252, 255, 265, 266, 268, 289, 293, 302, 311, 314, 324, 326, 328, 329, 330, 331, 332, 333, 347, 348, 349, 357, 360, 362, 366, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 573, 583, 587, 602, 604, 646, 655, 687, 688], "moglich": [1, 5, 15, 22, 25, 27, 36, 42, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 62, 67, 71, 74, 76, 78, 79, 80, 83, 84, 85, 92, 97, 106, 110, 112, 115, 116, 118, 120, 122, 123, 124, 125, 155, 159, 162, 164, 167, 169, 170, 172, 179, 184, 187, 188, 189, 196, 204, 210, 215, 229, 232, 243, 244, 255, 260, 261, 262, 263, 268, 271, 272, 276, 285, 287, 302, 304, 310, 314, 319, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 337, 338, 339, 340, 347, 351, 354, 360, 370, 375, 376, 378, 381, 382, 383, 384, 388, 390, 391, 393, 394, 395, 397, 398, 400, 402, 405, 406, 407, 408, 409, 412, 415, 416, 419, 420, 422, 423, 425, 433, 434, 436, 439, 442, 443, 448, 449, 450, 452, 453, 454, 456, 458, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 477, 479, 480, 482, 483, 484, 485, 487, 489, 490, 491, 492, 493, 494, 496, 497, 498, 499, 500, 501, 502, 504, 506, 508, 510, 511, 512, 516, 518, 519, 521, 523, 524, 526, 527, 530, 533, 534, 535, 536, 562, 563, 566, 568, 570, 573, 575, 579, 584, 585, 586, 590, 592, 594, 595, 596, 599, 603, 613, 616, 621, 622, 626, 630, 638, 641, 642, 671, 672, 674, 681, 682, 687, 689, 690, 693], "neu": [1, 3, 4, 5, 8, 12, 22, 43, 47, 52, 53, 54, 55, 58, 62, 67, 69, 79, 82, 83, 84, 85, 86, 87, 92, 94, 95, 96, 97, 98, 100, 102, 103, 111, 112, 113, 116, 123, 124, 125, 153, 156, 168, 169, 170, 181, 186, 187, 189, 200, 207, 210, 213, 215, 219, 220, 225, 232, 233, 244, 249, 253, 262, 263, 265, 271, 285, 289, 292, 293, 295, 301, 302, 303, 308, 309, 313, 314, 324, 326, 328, 329, 330, 332, 333, 337, 338, 339, 340, 346, 349, 351, 360, 362, 364, 370, 379, 380, 381, 382, 400, 408, 419, 420, 422, 435, 441, 449, 453, 462, 464, 467, 488, 495, 500, 504, 506, 508, 512, 519, 520, 522, 533, 545, 548, 550, 561, 562, 564, 567, 572, 573, 575, 576, 577, 585, 586, 589, 590, 591, 596, 606, 610, 612, 616, 621, 622, 626, 627, 635, 638, 643, 644, 645, 646, 647, 648, 649, 650, 651, 682, 684, 687, 688, 689, 691, 693], "start": [1, 8, 24, 27, 40, 42, 43, 44, 45, 46, 52, 53, 54, 55, 58, 63, 66, 69, 76, 79, 80, 82, 84, 85, 86, 87, 92, 96, 97, 103, 104, 106, 107, 108, 113, 115, 116, 120, 123, 133, 134, 136, 140, 141, 142, 144, 145, 147, 155, 157, 158, 164, 165, 168, 169, 178, 183, 187, 189, 200, 203, 205, 208, 211, 215, 217, 218, 219, 225, 227, 232, 235, 236, 244, 254, 255, 261, 262, 263, 275, 276, 278, 281, 282, 284, 287, 288, 289, 294, 295, 302, 304, 305, 306, 307, 314, 316, 325, 328, 338, 341, 347, 351, 352, 353, 356, 357, 362, 363, 367, 380, 381, 384, 396, 399, 400, 401, 408, 421, 422, 423, 428, 434, 435, 441, 454, 456, 464, 467, 482, 485, 507, 508, 512, 519, 533, 537, 561, 566, 569, 573, 577, 580, 588, 590, 592, 595, 596, 606, 610, 612, 613, 615, 616, 618, 620, 624, 627, 630, 635, 637, 638, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 663, 667, 670, 673, 675, 682, 687, 688, 689], "password": [1, 8, 44, 45, 47, 82, 83, 84, 88, 103, 120, 121, 141, 150, 152, 170, 176, 180, 198, 214, 218, 227, 234, 241, 248, 254, 266, 278, 282, 283, 292, 297, 346, 368, 599, 613, 615, 646, 649], "hash": [1, 8, 120, 152, 180, 211, 368, 391], "erzeug": [1, 42, 53, 113, 115, 120, 155, 187, 263, 304, 351, 388, 396, 426, 496, 545, 554, 575, 629, 635, 677, 683, 685, 688], "z": [1, 8, 13, 16, 24, 25, 28, 43, 45, 48, 50, 52, 53, 56, 58, 62, 67, 71, 76, 80, 82, 83, 85, 86, 87, 88, 92, 97, 98, 100, 103, 107, 112, 113, 115, 116, 117, 120, 122, 123, 124, 126, 148, 161, 162, 168, 169, 178, 179, 184, 187, 192, 197, 200, 203, 210, 212, 213, 215, 217, 219, 223, 226, 232, 241, 243, 244, 255, 259, 261, 262, 263, 268, 272, 276, 277, 283, 289, 290, 292, 293, 295, 299, 300, 302, 306, 307, 314, 315, 316, 319, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 337, 339, 340, 343, 347, 349, 351, 354, 359, 360, 362, 366, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 561, 562, 563, 566, 567, 568, 569, 572, 573, 574, 575, 577, 579, 584, 585, 591, 592, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 615, 622, 628, 630, 632, 634, 636, 638, 641, 646, 671, 674, 675, 682, 688], "b": [1, 8, 12, 13, 14, 16, 24, 25, 28, 43, 45, 47, 48, 50, 52, 53, 56, 58, 62, 67, 71, 73, 74, 76, 80, 82, 83, 85, 86, 87, 88, 97, 98, 100, 103, 104, 112, 113, 115, 116, 117, 120, 122, 123, 124, 126, 162, 168, 169, 177, 179, 184, 187, 193, 194, 197, 199, 200, 203, 210, 212, 213, 215, 217, 219, 223, 226, 232, 241, 243, 244, 247, 248, 254, 255, 259, 261, 263, 268, 272, 276, 277, 278, 283, 285, 289, 292, 293, 295, 299, 300, 302, 306, 307, 314, 316, 319, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 337, 338, 339, 340, 343, 347, 349, 351, 354, 359, 360, 362, 366, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 561, 562, 563, 566, 567, 568, 569, 572, 573, 574, 575, 577, 579, 585, 591, 592, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 615, 622, 628, 630, 632, 634, 636, 638, 641, 643, 671, 674, 675, 677, 682, 688], "cli": [1, 18, 48, 67, 83, 103, 111, 117, 169, 238, 328, 331, 441, 507, 545, 554, 585, 592, 600, 646, 649, 653, 659, 660, 664, 665, 666, 670, 671, 672, 673, 681], "plugin": [1, 2, 6, 8, 10, 12, 13, 16, 18, 27, 30, 31, 32, 39, 40, 44, 45, 47, 48, 50, 54, 55, 56, 57, 58, 60, 63, 66, 68, 69, 74, 78, 79, 93, 98, 100, 102, 104, 105, 106, 107, 109, 110, 112, 113, 114, 117, 118, 120, 121, 126, 127, 128, 130, 131, 132, 133, 134, 136, 137, 139, 140, 141, 145, 149, 151, 155, 156, 158, 163, 165, 172, 174, 178, 179, 184, 196, 199, 203, 204, 207, 209, 210, 216, 217, 220, 226, 233, 237, 242, 246, 252, 266, 268, 279, 284, 286, 291, 292, 299, 302, 303, 304, 311, 316, 318, 319, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 336, 345, 346, 347, 348, 349, 350, 354, 357, 364, 366, 367, 371, 547, 560, 562, 563, 564, 567, 572, 573, 577, 585, 586, 587, 591, 592, 600, 606, 607, 611, 612, 613, 615, 616, 617, 620, 623, 624, 630, 658, 659, 660, 661, 662, 663, 664, 678, 681, 682, 684, 689, 690, 692], "weiterhin": [1, 5, 47, 52, 53, 62, 98, 103, 106, 120, 124, 162, 200, 207, 219, 263, 285, 289, 291, 293, 306, 307, 314, 327, 338, 351, 562, 587, 589, 599, 632, 633, 634, 641, 652, 653, 654, 655, 656, 671, 682, 688, 689], "status": [1, 13, 53, 55, 56, 71, 79, 84, 86, 89, 90, 112, 124, 130, 141, 155, 164, 166, 169, 170, 173, 177, 178, 179, 186, 207, 211, 212, 213, 215, 218, 219, 227, 234, 243, 244, 248, 257, 258, 259, 262, 263, 284, 289, 290, 291, 294, 295, 297, 300, 304, 305, 306, 307, 314, 315, 323, 324, 325, 326, 329, 330, 332, 333, 337, 338, 341, 347, 349, 351, 356, 357, 367, 370, 376, 382, 406, 416, 419, 420, 421, 422, 436, 449, 453, 460, 481, 482, 487, 488, 492, 497, 498, 499, 504, 508, 519, 537, 545, 547, 548, 550, 552, 554, 558, 567, 574, 585, 591, 610, 612, 632, 641, 643, 646, 648, 649, 652, 654, 655, 656, 681, 682], "angeseh": [1, 58, 289], "soweit": [1, 28, 48, 51, 52, 53, 54, 55, 71, 77, 260, 291, 293, 328], "selb": [1, 13, 27, 43, 45, 52, 53, 54, 55, 58, 67, 79, 83, 92, 103, 106, 109, 115, 121, 123, 155, 163, 164, 171, 189, 191, 201, 212, 213, 219, 220, 238, 243, 260, 264, 267, 291, 293, 304, 314, 322, 324, 329, 331, 332, 333, 359, 367, 369, 370, 418, 434, 486, 519, 532, 548, 549, 561, 571, 572, 573, 576, 585, 589, 594, 595, 599, 601, 602, 603, 604, 607, 608, 609, 615, 622, 625, 634, 671, 682, 685, 686, 688, 689, 693], "rechn": [1, 13, 27, 28, 45, 71, 79, 82, 83, 84, 88, 90, 92, 121, 165, 203, 255, 259, 338, 367, 615, 617, 688], "lauf": [1, 42, 67, 68, 71, 76, 79, 83, 89, 165, 187, 210, 226, 261, 270, 271, 338, 360, 496, 524, 550, 551, 568, 588, 589, 594, 595, 596, 630, 632, 671, 672, 673, 693], "konn": [1, 2, 3, 4, 5, 6, 8, 9, 16, 18, 24, 25, 27, 31, 32, 33, 34, 39, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 64, 65, 67, 68, 71, 76, 79, 80, 82, 83, 85, 86, 88, 90, 92, 93, 94, 95, 96, 97, 98, 100, 103, 104, 106, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 131, 153, 162, 163, 164, 165, 166, 168, 169, 170, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 197, 200, 201, 203, 207, 210, 212, 213, 214, 215, 217, 219, 220, 222, 226, 229, 230, 238, 241, 243, 244, 249, 250, 252, 255, 256, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 279, 284, 285, 287, 289, 293, 302, 304, 306, 307, 314, 316, 319, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 343, 345, 346, 347, 348, 351, 354, 357, 359, 360, 366, 367, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 560, 561, 562, 563, 565, 566, 567, 568, 569, 570, 573, 574, 575, 576, 577, 579, 581, 583, 585, 586, 587, 588, 589, 591, 592, 593, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 611, 614, 617, 618, 619, 622, 625, 630, 631, 632, 633, 634, 638, 641, 642, 643, 644, 645, 646, 652, 671, 674, 682, 685, 686, 687, 688, 691, 692, 693], "funktion": [1, 5, 16, 42, 43, 47, 54, 55, 56, 61, 71, 86, 96, 103, 106, 113, 116, 117, 120, 125, 131, 155, 162, 165, 187, 189, 191, 201, 212, 213, 219, 220, 233, 238, 244, 255, 264, 267, 284, 289, 295, 304, 320, 321, 323, 325, 326, 328, 329, 332, 337, 339, 340, 347, 348, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 554, 555, 558, 563, 564, 565, 566, 567, 570, 576, 577, 581, 587, 588, 590, 591, 592, 594, 595, 598, 599, 600, 601, 602, 604, 606, 607, 608, 610, 618, 619, 622, 625, 632, 634, 636, 638, 641, 642, 643, 677, 688, 689, 693], "ausgelost": [1, 3, 42, 52, 62, 89, 112, 117, 155, 189, 219, 241, 304, 321, 325, 328, 331, 338, 351, 362, 425, 508, 567, 572, 573, 575, 576, 588, 591, 592, 594, 600, 632], "cor": [1, 8, 10, 43, 45, 47, 50, 57, 73, 78, 79, 83, 84, 92, 96, 107, 108, 110, 115, 116, 118, 119, 126, 132, 134, 136, 137, 140, 143, 149, 151, 155, 162, 219, 278, 304, 356, 357, 554, 555, 580, 585, 611, 612, 615, 632, 642, 667, 678, 681, 689, 693], "Diese": [1, 2, 10, 14, 18, 25, 27, 28, 31, 32, 37, 43, 46, 48, 50, 51, 52, 53, 54, 55, 56, 58, 60, 62, 67, 68, 72, 73, 74, 76, 78, 79, 82, 83, 85, 91, 92, 97, 106, 108, 109, 111, 112, 113, 116, 117, 118, 123, 124, 125, 131, 155, 162, 166, 169, 170, 172, 178, 179, 184, 187, 189, 191, 192, 194, 200, 201, 210, 212, 213, 215, 219, 222, 223, 230, 232, 238, 252, 255, 262, 263, 264, 265, 267, 268, 277, 279, 285, 287, 289, 291, 293, 295, 302, 304, 313, 314, 316, 323, 325, 326, 328, 329, 330, 331, 332, 336, 338, 347, 348, 351, 354, 357, 359, 360, 362, 366, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 554, 555, 560, 563, 566, 573, 574, 575, 577, 580, 583, 586, 591, 592, 594, 596, 597, 599, 600, 601, 602, 603, 604, 607, 608, 609, 625, 629, 632, 634, 638, 641, 646, 652, 653, 655, 656, 680, 682, 685, 687, 688, 689, 691, 693], "setzt": [1, 12, 16, 25, 60, 79, 83, 122, 164, 167, 170, 213, 224, 241, 262, 314, 325, 326, 329, 332, 347, 360, 382, 406, 434, 453, 479, 486, 517, 527, 562, 567, 568, 569, 573, 577, 585, 591, 592, 594, 599, 635], "voraus": [1, 16, 79, 689], "lauft": [1, 8, 12, 27, 45, 46, 52, 67, 68, 80, 84, 86, 89, 90, 92, 102, 121, 122, 155, 168, 172, 187, 207, 302, 304, 370, 405, 406, 472, 477, 545, 550, 568, 580, 615, 617, 632, 641, 649, 671, 672, 674, 675, 682, 688, 693], "backup": [1, 27, 90, 92, 102, 113, 136, 195, 585, 635, 643, 648, 649, 655, 656, 677], "herunterlad": [1, 82, 92, 222, 223, 260, 440, 688], "konfigurationsdat": [1, 102, 187, 419, 420], "zip": [1, 22, 92, 102, 172, 648], "archiv": [1, 22, 92, 102, 219, 231, 368, 433, 627], "enthalt": [1, 16, 27, 38, 43, 47, 48, 50, 51, 52, 53, 68, 73, 81, 83, 84, 86, 97, 102, 103, 104, 105, 106, 109, 111, 112, 125, 163, 164, 167, 169, 170, 187, 189, 200, 213, 219, 220, 223, 224, 229, 232, 241, 261, 262, 263, 265, 289, 293, 295, 302, 304, 306, 307, 310, 314, 316, 320, 326, 328, 329, 330, 332, 336, 338, 351, 359, 374, 375, 377, 382, 386, 387, 388, 391, 392, 393, 395, 396, 399, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 429, 433, 434, 436, 437, 438, 442, 443, 445, 448, 450, 451, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 528, 529, 532, 534, 538, 545, 546, 547, 548, 550, 552, 554, 556, 557, 558, 561, 566, 567, 574, 575, 576, 577, 589, 591, 593, 594, 595, 601, 602, 603, 604, 607, 608, 609, 630, 632, 633, 635, 638, 641, 642, 682, 686, 687, 692, 693], "konfigurationsdatei": [1, 2, 4, 6, 8, 27, 42, 52, 53, 69, 83, 84, 85, 87, 92, 94, 96, 97, 100, 101, 102, 103, 105, 111, 112, 114, 117, 120, 123, 124, 153, 165, 169, 212, 213, 230, 316, 325, 371, 432, 440, 505, 561, 566, 567, 577, 578, 579, 584, 590, 591, 592, 593, 594, 597, 600, 601, 602, 603, 632, 671, 677, 679, 682], "etc": [1, 2, 5, 8, 13, 22, 27, 40, 42, 43, 44, 45, 53, 54, 55, 58, 66, 69, 71, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 96, 97, 98, 100, 102, 104, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 123, 126, 130, 133, 137, 143, 145, 148, 153, 160, 164, 165, 166, 167, 168, 169, 170, 172, 181, 183, 184, 188, 189, 191, 192, 193, 194, 195, 196, 197, 200, 201, 212, 213, 217, 219, 220, 223, 227, 229, 230, 232, 233, 237, 238, 243, 244, 251, 252, 261, 262, 263, 264, 267, 268, 271, 272, 276, 278, 285, 301, 304, 306, 307, 309, 315, 318, 319, 322, 323, 324, 325, 326, 328, 329, 330, 332, 333, 335, 337, 346, 347, 352, 355, 356, 357, 360, 361, 365, 368, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 554, 566, 572, 573, 575, 577, 580, 583, 584, 585, 590, 592, 593, 594, 596, 597, 599, 600, 601, 602, 604, 607, 608, 609, 612, 613, 614, 615, 616, 619, 624, 630, 632, 634, 635, 636, 638, 641, 642, 643, 645, 646, 647, 649, 650, 651, 652, 653, 655, 669, 670, 671, 673, 674, 677, 679, 682, 684, 690, 693], "verzeichnis": [1, 22, 39, 42, 43, 44, 47, 48, 50, 52, 53, 59, 60, 64, 80, 82, 83, 85, 90, 92, 97, 98, 102, 108, 111, 113, 114, 117, 120, 122, 123, 125, 153, 162, 172, 178, 192, 203, 282, 283, 284, 285, 302, 322, 338, 354, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 556, 557, 579, 590, 592, 600, 601, 602, 603, 608, 610, 613, 614, 616, 619, 628, 629, 630, 635, 638, 671, 674, 676, 677, 678, 687, 688, 690, 693], "logging": [1, 22, 40, 44, 52, 66, 71, 102, 103, 106, 113, 126, 136, 138, 141, 186, 188, 195, 200, 216, 218, 227, 232, 243, 248, 253, 254, 255, 263, 273, 293, 306, 307, 312, 317, 318, 331, 368, 463, 575, 577, 613, 618, 624, 635, 641, 642, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 669, 670, 672, 674, 675], "logic": [1, 40, 42, 45, 52, 54, 55, 66, 71, 102, 106, 109, 112, 117, 133, 139, 144, 147, 153, 168, 180, 181, 193, 198, 205, 206, 219, 227, 260, 263, 269, 278, 326, 335, 338, 344, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 572, 589, 590, 592, 595, 596, 612, 615, 624, 643, 645, 646, 649, 650, 651, 652, 653, 655, 660, 664, 665, 666, 667, 670, 671], "smarthom": [1, 4, 8, 13, 27, 30, 37, 39, 44, 45, 47, 52, 53, 54, 55, 66, 68, 69, 71, 76, 80, 85, 87, 88, 89, 90, 102, 106, 107, 108, 111, 115, 116, 120, 124, 125, 126, 127, 129, 132, 133, 134, 136, 137, 140, 141, 143, 144, 145, 146, 147, 148, 150, 154, 157, 158, 160, 162, 164, 169, 170, 171, 179, 182, 184, 185, 186, 187, 192, 193, 194, 195, 196, 198, 199, 200, 202, 205, 206, 210, 212, 213, 214, 215, 218, 219, 220, 221, 222, 230, 234, 239, 241, 245, 248, 252, 253, 255, 257, 260, 261, 265, 266, 268, 269, 273, 278, 283, 288, 289, 293, 294, 298, 301, 302, 306, 307, 311, 314, 315, 322, 335, 338, 344, 348, 349, 352, 353, 354, 355, 356, 357, 359, 360, 364, 365, 366, 382, 383, 432, 527, 545, 550, 565, 583, 585, 591, 599, 610, 612, 613, 615, 621, 624, 630, 635, 636, 639, 641, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 664, 665, 667, 668, 669, 674, 677, 678, 679, 680, 681, 682, 691], "struct": [1, 2, 25, 40, 52, 102, 103, 106, 126, 134, 171, 173, 176, 178, 184, 189, 190, 200, 219, 220, 233, 244, 262, 268, 277, 280, 295, 314, 318, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 347, 351, 359, 362, 367, 370, 371, 462, 479, 508, 533, 566, 577, 635, 641, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 693], "all": [1, 2, 4, 5, 12, 13, 16, 20, 22, 24, 25, 27, 40, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 63, 64, 66, 68, 71, 79, 80, 82, 83, 85, 86, 87, 88, 89, 90, 92, 95, 97, 98, 100, 103, 106, 107, 111, 115, 116, 120, 122, 123, 125, 126, 130, 133, 134, 136, 137, 139, 140, 141, 144, 146, 148, 149, 152, 157, 158, 162, 163, 164, 165, 166, 168, 169, 170, 171, 175, 178, 180, 181, 184, 186, 187, 188, 189, 190, 191, 192, 195, 196, 198, 200, 201, 202, 203, 205, 206, 210, 211, 214, 215, 217, 218, 219, 220, 221, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236, 238, 240, 241, 244, 245, 247, 248, 249, 250, 251, 255, 256, 257, 259, 260, 261, 262, 263, 264, 267, 268, 272, 274, 275, 278, 282, 285, 286, 288, 289, 290, 291, 293, 294, 295, 301, 302, 304, 305, 306, 307, 309, 310, 312, 314, 315, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 338, 339, 340, 344, 345, 346, 347, 349, 351, 353, 355, 356, 357, 359, 360, 361, 363, 365, 368, 369, 370, 373, 374, 375, 379, 381, 382, 386, 387, 388, 391, 392, 393, 395, 396, 397, 399, 400, 402, 403, 406, 407, 408, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 428, 429, 433, 434, 435, 436, 437, 438, 441, 442, 443, 446, 448, 450, 451, 453, 454, 455, 456, 457, 458, 459, 460, 461, 464, 467, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 483, 486, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 500, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 515, 516, 517, 522, 523, 524, 525, 528, 529, 530, 532, 534, 536, 537, 538, 550, 561, 562, 563, 565, 567, 569, 570, 572, 573, 583, 585, 586, 591, 592, 593, 595, 596, 599, 601, 602, 603, 604, 607, 608, 609, 612, 613, 614, 615, 617, 618, 619, 620, 621, 623, 624, 632, 634, 635, 638, 641, 642, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 666, 667, 670, 671, 674, 675, 678, 681, 682, 686, 687, 690], "datei": [1, 2, 13, 14, 22, 24, 27, 31, 33, 34, 37, 42, 43, 44, 47, 48, 51, 53, 56, 59, 67, 68, 69, 71, 76, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 93, 94, 97, 98, 102, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 125, 154, 162, 164, 165, 169, 170, 172, 178, 181, 187, 188, 189, 191, 192, 194, 195, 201, 203, 219, 220, 222, 223, 229, 230, 232, 243, 244, 249, 250, 261, 263, 264, 267, 279, 284, 285, 313, 314, 321, 322, 323, 324, 329, 333, 338, 351, 360, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 556, 557, 558, 579, 583, 585, 588, 590, 592, 593, 596, 597, 599, 600, 601, 602, 603, 604, 605, 608, 609, 610, 612, 613, 614, 616, 619, 621, 622, 625, 626, 628, 630, 632, 635, 636, 638, 641, 642, 671, 674, 677, 678, 682, 685, 687, 688, 690, 693], "item": [1, 15, 26, 31, 32, 42, 44, 45, 50, 54, 55, 58, 60, 61, 63, 66, 67, 69, 71, 83, 85, 93, 100, 102, 107, 108, 112, 113, 114, 116, 117, 119, 123, 124, 125, 126, 128, 130, 137, 139, 146, 147, 149, 153, 157, 163, 178, 179, 180, 181, 191, 192, 201, 204, 206, 210, 217, 220, 223, 226, 228, 233, 238, 242, 246, 252, 255, 264, 266, 267, 271, 273, 283, 286, 287, 299, 302, 311, 316, 318, 320, 321, 322, 326, 327, 329, 330, 332, 333, 336, 346, 347, 348, 349, 354, 366, 367, 545, 550, 552, 554, 560, 568, 569, 570, 571, 572, 575, 577, 578, 579, 583, 587, 589, 590, 592, 594, 596, 597, 599, 600, 601, 612, 613, 615, 619, 620, 621, 622, 623, 624, 625, 634, 635, 641, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 669, 670, 671, 672, 673, 674, 677, 679, 681, 682, 683, 687, 689, 690, 691, 693], "scen": [1, 39, 43, 45, 53, 102, 103, 124, 160, 162, 205, 211, 212, 213, 281, 419, 420, 577, 579, 595, 601, 602, 604, 607, 608, 609, 612, 615, 635, 646, 649, 666, 673, 677], "python": [1, 3, 8, 30, 31, 33, 34, 37, 39, 40, 42, 43, 44, 45, 46, 48, 52, 53, 54, 55, 56, 68, 76, 80, 89, 90, 92, 100, 103, 104, 106, 107, 108, 109, 113, 115, 116, 120, 121, 122, 125, 126, 130, 133, 136, 137, 138, 139, 143, 145, 151, 153, 154, 157, 158, 162, 164, 169, 171, 172, 173, 175, 176, 185, 186, 187, 192, 193, 194, 210, 215, 217, 219, 222, 223, 227, 232, 235, 236, 249, 251, 253, 263, 265, 270, 271, 275, 277, 282, 284, 287, 297, 299, 300, 308, 310, 314, 315, 325, 334, 335, 338, 339, 340, 341, 342, 343, 347, 359, 360, 361, 367, 370, 376, 381, 387, 389, 398, 400, 401, 408, 410, 412, 413, 417, 431, 435, 437, 438, 441, 452, 453, 463, 464, 467, 487, 494, 496, 504, 508, 512, 513, 515, 522, 531, 533, 537, 538, 545, 548, 550, 554, 558, 563, 573, 575, 576, 577, 579, 581, 582, 584, 585, 586, 587, 589, 590, 593, 594, 595, 606, 610, 612, 613, 615, 616, 618, 629, 632, 633, 638, 667, 670, 676, 678, 692, 693], "cod": [1, 22, 31, 33, 34, 36, 42, 43, 44, 46, 48, 53, 54, 55, 56, 58, 60, 62, 64, 66, 68, 73, 74, 76, 85, 92, 103, 106, 117, 130, 137, 139, 141, 148, 151, 157, 166, 168, 169, 172, 182, 195, 208, 216, 217, 227, 229, 247, 250, 254, 255, 261, 262, 263, 272, 274, 275, 278, 290, 294, 297, 298, 305, 306, 307, 326, 332, 334, 335, 341, 344, 351, 356, 357, 361, 365, 371, 401, 477, 479, 497, 498, 499, 501, 532, 545, 548, 563, 586, 588, 590, 591, 592, 595, 600, 606, 610, 612, 613, 614, 616, 619, 621, 622, 623, 624, 627, 630, 632, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 667, 670, 673], "logik": [1, 2, 4, 12, 31, 32, 43, 45, 52, 53, 54, 55, 78, 83, 98, 100, 103, 104, 105, 106, 108, 112, 121, 125, 131, 162, 168, 170, 172, 181, 184, 187, 194, 197, 203, 217, 223, 256, 261, 268, 272, 276, 284, 302, 304, 313, 314, 316, 326, 332, 338, 339, 340, 348, 351, 359, 363, 545, 554, 558, 560, 562, 563, 565, 567, 569, 570, 571, 572, 573, 577, 586, 588, 591, 594, 597, 598, 599, 600, 604, 609, 615, 619, 625, 634, 635, 638, 641, 643, 671, 673, 674, 677, 690, 693], "logics": [1, 4, 12, 40, 42, 45, 71, 83, 92, 103, 107, 108, 115, 117, 133, 144, 153, 180, 205, 206, 218, 221, 232, 243, 261, 269, 288, 296, 304, 315, 356, 357, 360, 361, 560, 562, 588, 590, 591, 592, 593, 595, 596, 600, 612, 615, 635, 643, 645, 646, 649, 650, 651, 654, 655, 656, 660, 663, 664, 666, 670, 671, 691], "7": [1, 12, 15, 16, 20, 43, 44, 45, 53, 54, 57, 71, 77, 79, 83, 84, 86, 88, 92, 97, 102, 104, 107, 115, 116, 148, 152, 154, 157, 162, 165, 175, 179, 189, 195, 196, 197, 198, 207, 219, 226, 231, 232, 235, 239, 248, 249, 253, 254, 255, 257, 262, 263, 275, 279, 284, 287, 289, 301, 305, 306, 307, 308, 309, 314, 328, 329, 334, 347, 354, 355, 356, 357, 361, 370, 382, 387, 390, 394, 400, 408, 416, 417, 433, 434, 435, 441, 454, 461, 467, 478, 487, 530, 545, 548, 550, 558, 566, 573, 583, 585, 595, 599, 601, 602, 603, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 633, 634, 636, 638, 639, 641, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 678, 681, 682, 689, 691], "zertifikat": [1, 44, 82, 102, 120, 122, 359, 382, 406, 460, 524, 613, 616, 690], "key": [1, 43, 44, 50, 53, 60, 66, 71, 102, 104, 106, 110, 112, 120, 122, 124, 126, 127, 133, 136, 137, 139, 148, 176, 179, 181, 200, 210, 215, 219, 222, 227, 237, 248, 249, 256, 262, 263, 272, 273, 274, 290, 311, 335, 336, 337, 344, 346, 347, 361, 365, 366, 390, 397, 421, 422, 423, 430, 434, 466, 472, 510, 511, 516, 521, 524, 529, 532, 545, 558, 563, 575, 601, 602, 604, 607, 608, 609, 613, 616, 624, 632, 643, 646, 647, 649, 650, 651, 655, 684, 688, 690], "cer": [1, 44, 102, 120, 122, 613, 616, 643, 649, 684, 690], "tls": [1, 45, 83, 102, 161, 241, 615, 688], "https": [1, 28, 44, 47, 48, 52, 53, 54, 55, 69, 73, 76, 83, 84, 85, 102, 120, 122, 141, 152, 160, 161, 162, 170, 171, 174, 175, 176, 182, 186, 192, 198, 200, 206, 208, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 225, 226, 229, 234, 235, 236, 239, 245, 247, 253, 254, 260, 262, 269, 273, 274, 275, 276, 278, 280, 282, 283, 284, 296, 298, 308, 309, 312, 313, 315, 325, 334, 335, 336, 337, 338, 344, 346, 349, 352, 353, 355, 356, 357, 359, 364, 365, 368, 371, 376, 382, 388, 394, 405, 406, 416, 423, 424, 425, 430, 431, 460, 462, 468, 472, 479, 510, 511, 516, 518, 520, 530, 533, 545, 550, 558, 599, 610, 613, 616, 617, 641, 646, 647, 649, 651, 669, 674, 675, 688], "gesichert": [1, 8, 27, 52, 90, 92, 96, 102, 409, 585], "heruntergelad": [1, 92, 187, 219, 642], "tragt": [1, 43, 48, 97, 112, 262, 585, 599, 614, 619, 630, 634], "nam": [1, 2, 3, 7, 9, 12, 13, 22, 24, 27, 28, 40, 42, 43, 44, 45, 47, 48, 50, 53, 54, 55, 56, 58, 60, 62, 64, 66, 68, 69, 71, 82, 83, 85, 88, 90, 93, 95, 96, 97, 98, 100, 102, 103, 104, 105, 106, 107, 111, 112, 113, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 129, 130, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 154, 155, 157, 158, 160, 164, 165, 166, 168, 169, 171, 180, 181, 184, 185, 187, 189, 192, 195, 196, 200, 202, 203, 207, 211, 212, 213, 215, 216, 218, 221, 222, 223, 227, 229, 230, 231, 234, 235, 237, 239, 243, 245, 247, 248, 249, 250, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 268, 274, 275, 277, 279, 281, 282, 284, 285, 287, 288, 289, 290, 293, 294, 296, 297, 298, 299, 300, 301, 302, 304, 305, 308, 309, 310, 311, 312, 314, 315, 316, 317, 319, 323, 324, 326, 327, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 346, 351, 352, 353, 354, 355, 356, 357, 358, 360, 361, 362, 365, 369, 370, 371, 373, 376, 378, 381, 383, 391, 399, 400, 407, 408, 409, 413, 415, 417, 419, 420, 421, 422, 427, 428, 435, 440, 441, 444, 448, 449, 453, 455, 456, 458, 459, 460, 462, 464, 465, 467, 469, 471, 482, 485, 496, 498, 499, 504, 506, 507, 508, 510, 511, 518, 520, 523, 537, 538, 545, 547, 548, 550, 552, 554, 558, 561, 563, 566, 567, 573, 574, 575, 577, 578, 579, 580, 583, 584, 585, 591, 592, 593, 594, 595, 596, 597, 599, 601, 602, 603, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 619, 622, 623, 624, 625, 628, 629, 630, 632, 633, 634, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 667, 670, 671, 674, 677, 681, 682, 683, 686, 687, 688, 690, 691], "shng_config_backup_": 1, "jahr": [1, 16, 56, 92, 96, 104, 116, 187, 189, 226, 287, 397, 585, 599, 634, 643, 644, 645, 691], "monat": [1, 16, 104, 116, 189, 207, 325, 334, 397, 569, 585, 592, 599, 634], "tag": [1, 4, 16, 47, 54, 55, 56, 58, 60, 96, 104, 116, 164, 178, 184, 187, 189, 219, 222, 223, 226, 260, 262, 263, 268, 287, 294, 295, 324, 325, 328, 329, 334, 347, 349, 371, 389, 396, 397, 423, 508, 514, 526, 564, 569, 585, 592, 599, 634, 641, 647], "stund": [1, 8, 16, 42, 119, 131, 155, 165, 184, 187, 189, 226, 262, 263, 268, 283, 287, 293, 304, 325, 329, 331, 436, 502, 508, 568, 569, 585, 592, 599, 612, 634, 688], "minut": [1, 8, 12, 16, 19, 40, 42, 82, 87, 103, 142, 148, 152, 165, 176, 186, 192, 219, 220, 260, 261, 262, 287, 288, 294, 295, 317, 326, 328, 329, 332, 334, 347, 365, 370, 416, 423, 479, 486, 519, 530, 532, 562, 568, 569, 570, 585, 592, 599, 634, 636, 646, 651, 654, 688], "link": [1, 2, 4, 5, 6, 56, 57, 60, 65, 95, 96, 98, 160, 165, 170, 200, 211, 212, 213, 223, 226, 251, 260, 261, 292, 296, 306, 307, 314, 338, 359, 373, 378, 462, 496, 523, 545, 547, 548, 550, 552, 554, 558, 644, 646, 649, 653, 654, 655, 689], "neb": [1, 5, 8, 52, 58, 93, 169, 184, 189, 212, 213, 268, 310, 324, 325, 329, 346, 351, 599, 611, 622, 636, 671, 674], "datum": [1, 56, 71, 83, 102, 104, 115, 116, 165, 167, 192, 232, 263, 295, 306, 307, 338, 401, 411, 434, 453, 502, 520, 573, 575, 585, 599, 632, 634], "uhrzeit": [1, 13, 20, 28, 71, 83, 96, 115, 165, 184, 188, 192, 263, 268, 295, 306, 307, 347, 434, 519, 575, 585, 599, 632, 634], "letzt": [1, 4, 8, 12, 43, 53, 58, 76, 79, 83, 85, 92, 96, 104, 116, 155, 164, 165, 167, 170, 187, 189, 191, 192, 200, 201, 215, 219, 220, 229, 237, 261, 262, 263, 264, 267, 287, 289, 291, 293, 295, 304, 314, 325, 326, 327, 328, 330, 331, 332, 337, 338, 339, 340, 346, 347, 370, 422, 453, 479, 484, 562, 563, 567, 573, 575, 589, 591, 594, 599, 601, 602, 604, 607, 608, 609, 634, 641, 642, 671], "backups": [1, 102, 643], "restor": [1, 90, 102, 288, 643, 648, 655, 677], "wiederherstell": [1, 27, 92, 486, 677], "archivdatei": 1, "ausgewahlt": [1, 2, 4, 6, 51, 52, 73, 82, 95, 200, 261, 262, 302, 314, 338, 349, 351, 354, 396, 400, 408, 435, 441, 449, 464, 467, 536, 682], "hochgelad": [1, 232, 434], "Im": [1, 8, 12, 13, 15, 16, 22, 27, 39, 46, 47, 52, 53, 56, 58, 60, 61, 62, 71, 73, 82, 83, 85, 88, 89, 96, 97, 98, 103, 104, 105, 106, 112, 116, 123, 125, 154, 162, 164, 168, 170, 178, 179, 184, 187, 192, 200, 203, 207, 210, 212, 213, 219, 220, 223, 224, 229, 232, 244, 252, 255, 256, 260, 262, 265, 266, 268, 283, 289, 292, 293, 295, 300, 302, 310, 316, 321, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 339, 340, 346, 347, 348, 351, 357, 359, 360, 363, 366, 367, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 562, 566, 567, 569, 573, 576, 587, 591, 592, 594, 597, 598, 603, 605, 612, 618, 622, 625, 628, 630, 632, 635, 637, 638, 641, 671, 676, 681, 682, 683, 685, 688, 692], "anschluss": [1, 27, 79, 220, 261, 351, 367, 400, 408, 449, 464, 467, 590, 688], "wiederhergestellt": [1, 102, 165, 289, 314, 359], "Als": [1, 27, 45, 67, 77, 86, 94, 106, 115, 125, 162, 164, 170, 184, 200, 215, 219, 226, 268, 304, 321, 328, 331, 366, 381, 507, 567, 574, 591, 593, 615, 628, 632, 638, 688], "vorsichtsmassnahm": 1, "beginn": [1, 2, 13, 16, 43, 53, 58, 60, 97, 100, 103, 104, 106, 114, 116, 123, 167, 169, 189, 262, 331, 347, 352, 365, 379, 398, 479, 506, 508, 527, 561, 563, 566, 596, 599, 602, 603, 608, 619, 634, 636, 671, 674, 686, 687], "aktuell": [1, 2, 4, 8, 12, 13, 19, 22, 37, 42, 47, 50, 56, 60, 62, 68, 69, 73, 78, 79, 82, 83, 85, 90, 92, 95, 97, 106, 111, 121, 124, 154, 155, 162, 164, 165, 166, 169, 170, 171, 181, 184, 187, 188, 189, 191, 192, 200, 201, 203, 207, 213, 215, 217, 219, 220, 229, 238, 255, 256, 260, 261, 262, 263, 264, 265, 267, 268, 271, 272, 276, 287, 289, 292, 295, 300, 302, 304, 310, 314, 319, 320, 321, 323, 324, 325, 326, 328, 330, 331, 332, 333, 337, 338, 346, 347, 349, 351, 363, 369, 370, 378, 379, 382, 397, 411, 413, 431, 434, 436, 449, 453, 456, 479, 484, 494, 507, 508, 513, 514, 516, 520, 526, 536, 538, 545, 547, 548, 550, 552, 554, 558, 562, 566, 567, 573, 574, 575, 576, 577, 580, 585, 588, 591, 594, 599, 612, 629, 630, 632, 634, 636, 638, 641, 642, 652, 653, 654, 656, 671, 674, 682, 688, 689, 690, 692, 693], "vorgenomm": [1, 2, 28, 82, 83, 84, 92, 104, 106, 162, 170, 189, 192, 212, 213, 220, 265, 289, 300, 328, 332, 347, 595, 682, 687, 690], "Dieses": [1, 37, 48, 52, 53, 56, 58, 69, 71, 82, 83, 92, 93, 96, 100, 102, 106, 109, 119, 121, 122, 168, 169, 170, 172, 179, 181, 187, 192, 194, 196, 197, 204, 215, 222, 223, 228, 230, 232, 243, 256, 259, 262, 263, 284, 287, 289, 291, 295, 300, 311, 313, 314, 323, 328, 331, 333, 337, 343, 346, 347, 351, 354, 362, 366, 367, 369, 371, 374, 376, 381, 382, 383, 384, 385, 387, 389, 394, 397, 399, 400, 405, 408, 411, 412, 416, 420, 421, 422, 423, 424, 426, 428, 434, 435, 437, 438, 441, 445, 446, 447, 449, 457, 458, 460, 463, 464, 465, 467, 474, 475, 478, 480, 482, 483, 484, 485, 488, 489, 490, 491, 494, 495, 496, 497, 501, 503, 505, 506, 513, 514, 515, 518, 519, 521, 523, 524, 526, 527, 532, 533, 536, 537, 538, 545, 550, 558, 561, 571, 580, 585, 594, 599, 603, 612, 613, 615, 616, 628, 630, 632, 635, 636, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 677, 678, 680, 681, 682, 686, 687, 693], "verbleibt": [1, 59, 321, 328], "notfall": [1, 362], "gewunscht": [1, 2, 4, 8, 45, 52, 58, 60, 83, 84, 92, 95, 98, 102, 106, 116, 123, 124, 169, 203, 212, 213, 217, 261, 289, 314, 333, 347, 417, 449, 454, 516, 517, 519, 584, 585, 615, 625, 628, 674, 682], "enthielt": 1, "var": [1, 27, 40, 42, 50, 54, 55, 58, 62, 63, 66, 71, 83, 85, 86, 88, 89, 90, 92, 102, 103, 107, 111, 115, 116, 148, 151, 152, 161, 178, 188, 202, 203, 216, 217, 219, 232, 235, 236, 263, 273, 274, 288, 294, 312, 313, 322, 325, 326, 328, 330, 331, 332, 338, 359, 360, 397, 410, 423, 434, 463, 485, 496, 508, 527, 567, 583, 585, 588, 591, 620, 624, 630, 641, 642, 646, 649, 651, 655, 684, 688], "abgelegt": [1, 8, 31, 33, 34, 40, 42, 51, 52, 54, 60, 76, 83, 85, 97, 102, 103, 106, 108, 109, 125, 153, 155, 169, 203, 214, 223, 226, 243, 250, 302, 304, 306, 307, 369, 401, 410, 419, 420, 508, 589, 590, 596, 625, 629, 638, 671, 676, 682, 687, 690, 693], "dateinam": [1, 3, 42, 92, 97, 102, 112, 114, 117, 124, 178, 203, 219, 263, 338, 381, 396, 397, 423, 424, 425, 506, 512, 567, 585, 591, 592, 594, 600, 635, 672, 687], "shng_config_backup_before_restore_": 1, "In": [1, 2, 4, 8, 10, 12, 13, 15, 24, 27, 31, 32, 42, 45, 46, 47, 51, 53, 54, 55, 58, 62, 66, 67, 68, 71, 73, 76, 80, 83, 84, 87, 88, 92, 94, 96, 97, 98, 103, 104, 106, 111, 112, 114, 115, 116, 117, 124, 125, 130, 131, 136, 162, 164, 168, 170, 178, 181, 184, 188, 189, 191, 192, 193, 194, 198, 200, 201, 205, 208, 210, 211, 219, 223, 229, 230, 238, 240, 243, 248, 249, 254, 258, 261, 262, 263, 264, 267, 268, 278, 280, 288, 289, 290, 292, 293, 294, 298, 302, 305, 313, 314, 315, 316, 321, 323, 325, 326, 327, 328, 329, 330, 331, 332, 335, 337, 338, 339, 340, 342, 347, 349, 352, 354, 362, 368, 371, 395, 401, 428, 470, 504, 508, 561, 564, 566, 575, 576, 577, 582, 583, 585, 586, 587, 588, 589, 591, 592, 595, 597, 603, 609, 615, 618, 623, 624, 625, 627, 630, 632, 638, 641, 642, 655, 671, 673, 682, 686, 687, 688, 693], "zeil": [1, 3, 4, 5, 42, 44, 47, 58, 62, 71, 83, 86, 87, 88, 95, 105, 106, 112, 115, 116, 162, 163, 169, 170, 179, 184, 187, 192, 200, 204, 210, 212, 213, 219, 220, 229, 232, 249, 252, 255, 265, 266, 268, 289, 295, 302, 306, 307, 309, 311, 314, 321, 326, 347, 348, 349, 351, 357, 360, 366, 376, 400, 401, 408, 410, 441, 464, 467, 490, 496, 523, 583, 588, 589, 613, 622, 682, 686, 688], "divers": [1, 24, 25, 56, 58, 78, 82, 106, 178, 181, 189, 215, 219, 321, 326, 327, 519, 598, 651, 654, 674, 683], "optional": [1, 31, 32, 43, 44, 45, 48, 52, 53, 54, 55, 58, 62, 63, 64, 66, 81, 103, 112, 117, 119, 120, 121, 122, 123, 126, 133, 136, 141, 144, 147, 152, 162, 168, 170, 182, 185, 186, 187, 189, 198, 199, 200, 202, 203, 205, 206, 211, 212, 213, 227, 230, 243, 249, 258, 262, 265, 269, 270, 273, 274, 278, 282, 283, 293, 294, 299, 300, 304, 311, 314, 315, 317, 323, 324, 326, 330, 332, 333, 344, 351, 356, 357, 363, 379, 380, 382, 383, 392, 394, 396, 398, 406, 413, 417, 421, 422, 423, 428, 434, 440, 445, 448, 458, 460, 462, 468, 471, 472, 479, 490, 492, 495, 497, 502, 504, 510, 516, 518, 528, 530, 531, 534, 563, 565, 568, 570, 574, 577, 588, 591, 592, 595, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 613, 615, 619, 620, 622, 624, 625, 629, 636, 641, 648, 649, 652, 655, 671, 673, 677, 681, 682, 687, 693], "abhang": [1, 50, 56, 58, 62, 68, 79, 80, 83, 92, 97, 162, 169, 170, 189, 210, 222, 223, 230, 262, 295, 299, 313, 325, 326, 328, 331, 333, 347, 362, 371, 381, 508, 519, 565, 571, 573, 577, 591, 630, 674], "eingesetzt": [1, 67, 79, 86, 106, 191, 201, 223, 264, 267, 322, 325, 326, 328, 330, 333, 381, 576, 585, 641, 643, 644, 645, 646, 685, 691], "wert": [1, 2, 5, 8, 15, 16, 20, 21, 27, 42, 43, 45, 50, 52, 53, 54, 55, 56, 58, 62, 71, 76, 92, 93, 96, 98, 100, 108, 111, 112, 113, 115, 119, 120, 121, 123, 124, 155, 162, 164, 165, 166, 167, 168, 169, 181, 187, 188, 191, 196, 197, 200, 204, 207, 213, 215, 219, 223, 224, 229, 230, 232, 237, 241, 243, 244, 256, 261, 262, 263, 264, 265, 267, 270, 271, 272, 285, 287, 289, 291, 293, 295, 300, 304, 306, 307, 310, 313, 314, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 336, 337, 338, 339, 340, 346, 347, 351, 360, 362, 363, 367, 371, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 388, 390, 391, 393, 394, 395, 396, 397, 398, 400, 401, 402, 403, 405, 406, 407, 408, 409, 412, 415, 416, 419, 420, 422, 423, 425, 426, 427, 428, 431, 433, 434, 435, 436, 439, 441, 442, 443, 446, 448, 449, 450, 452, 453, 454, 456, 458, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 504, 506, 507, 508, 510, 511, 512, 513, 516, 518, 519, 521, 522, 523, 524, 525, 526, 527, 528, 530, 532, 533, 534, 535, 537, 545, 550, 554, 561, 562, 564, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 589, 592, 594, 595, 596, 597, 599, 601, 602, 604, 607, 608, 609, 610, 615, 622, 632, 634, 636, 641, 671, 672, 673, 674, 682, 686, 688, 690, 693], "speich": [1, 56, 76, 88, 111, 155, 162, 164, 187, 203, 220, 223, 226, 230, 244, 260, 261, 304, 426, 427, 428, 434, 446, 463, 526, 545, 554, 573, 577, 580, 641, 688], "bzw": [1, 2, 3, 5, 8, 43, 53, 58, 62, 67, 69, 71, 76, 77, 78, 79, 80, 81, 82, 83, 90, 92, 96, 97, 98, 100, 102, 103, 106, 107, 111, 115, 116, 123, 124, 162, 163, 168, 169, 184, 187, 191, 192, 197, 200, 201, 210, 212, 213, 219, 223, 232, 233, 244, 252, 261, 262, 263, 264, 267, 268, 276, 285, 293, 314, 325, 326, 329, 331, 332, 333, 338, 339, 340, 347, 351, 357, 359, 363, 366, 367, 371, 373, 375, 377, 381, 398, 412, 417, 451, 460, 470, 479, 496, 502, 508, 545, 547, 548, 550, 552, 554, 558, 562, 563, 567, 573, 575, 577, 591, 597, 599, 601, 602, 604, 607, 608, 609, 610, 612, 614, 619, 621, 626, 627, 632, 634, 641, 671, 678, 679, 687, 693], "verwendet": [1, 4, 12, 27, 28, 39, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 62, 71, 79, 80, 83, 84, 85, 86, 87, 90, 92, 93, 97, 100, 102, 103, 106, 109, 114, 115, 117, 119, 120, 121, 122, 123, 162, 165, 166, 167, 168, 169, 170, 171, 184, 187, 188, 189, 191, 192, 194, 197, 200, 201, 212, 213, 214, 215, 219, 222, 223, 226, 229, 230, 241, 243, 249, 260, 261, 262, 263, 264, 267, 268, 276, 287, 289, 306, 307, 313, 314, 316, 319, 321, 325, 330, 331, 332, 333, 337, 339, 340, 343, 345, 351, 359, 369, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 562, 565, 566, 568, 570, 573, 574, 575, 576, 577, 579, 584, 585, 591, 592, 593, 595, 596, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 612, 615, 622, 632, 634, 641, 671, 673, 674, 677, 682, 687, 688, 690], "erzeugt": [1, 4, 9, 12, 33, 34, 37, 42, 83, 90, 105, 112, 115, 116, 122, 123, 125, 162, 163, 168, 187, 189, 197, 200, 214, 215, 229, 230, 232, 249, 250, 259, 261, 262, 263, 276, 277, 306, 307, 309, 314, 339, 340, 343, 351, 359, 360, 363, 369, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 569, 583, 585, 588, 592, 593, 629, 632, 635, 638, 675, 677, 682, 686], "ausdruck": [1, 2, 13, 16, 50, 62, 76, 83, 92, 100, 102, 105, 112, 115, 116, 124, 162, 169, 194, 260, 263, 323, 326, 328, 329, 330, 331, 332, 333, 359, 508, 512, 527, 562, 563, 565, 567, 568, 569, 570, 574, 576, 577, 583, 586, 591, 592, 596, 599, 632, 634, 671, 693], "richtig": [1, 13, 19, 27, 37, 60, 69, 80, 83, 92, 96, 100, 103, 104, 123, 169, 219, 328, 496, 533, 573, 641, 678, 681], "gepruft": [1, 12, 52, 64, 71, 86, 92, 164, 260, 263, 310, 321, 325, 330, 331, 338, 339, 340, 363, 423, 508, 595, 632, 671, 678, 689], "evaluier": [1, 323, 324, 325, 326, 328, 329, 330, 332, 333, 508, 519, 577], "findet": [1, 3, 31, 32, 46, 47, 52, 53, 54, 55, 68, 73, 83, 92, 94, 95, 96, 103, 109, 188, 200, 203, 219, 243, 255, 261, 263, 266, 283, 284, 295, 302, 306, 307, 313, 324, 326, 328, 371, 566, 573, 574, 577, 579, 603, 625, 638, 653, 689, 690], "kontext": [1, 164, 232, 256, 380, 410, 545, 554, 592, 630], "statt": [1, 25, 53, 62, 82, 83, 92, 94, 95, 96, 100, 104, 106, 111, 116, 120, 123, 169, 213, 219, 222, 262, 270, 271, 272, 289, 295, 302, 324, 326, 328, 330, 396, 498, 561, 563, 566, 573, 574, 577, 596, 603, 635, 638, 671, 672, 689, 690], "zugegriff": [1, 52, 58, 83, 85, 105, 212, 213, 225, 289, 330, 449, 563, 567, 573, 576, 587, 589, 590, 591, 592, 595, 596, 598, 632], "Es": [1, 2, 4, 8, 13, 24, 25, 47, 48, 51, 52, 53, 54, 55, 56, 58, 59, 60, 67, 68, 71, 74, 79, 81, 82, 83, 85, 86, 90, 91, 92, 96, 97, 100, 102, 103, 104, 106, 107, 109, 111, 112, 115, 116, 117, 120, 121, 122, 123, 125, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 178, 179, 184, 187, 188, 189, 191, 192, 200, 201, 203, 210, 212, 213, 214, 219, 220, 222, 223, 226, 229, 232, 237, 241, 244, 250, 252, 255, 256, 260, 261, 262, 263, 264, 265, 267, 268, 272, 276, 284, 289, 291, 293, 295, 302, 306, 307, 313, 314, 316, 321, 322, 323, 324, 325, 326, 328, 329, 331, 332, 333, 336, 338, 339, 340, 347, 348, 351, 354, 357, 360, 363, 366, 367, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 560, 561, 563, 565, 566, 568, 569, 570, 571, 575, 576, 577, 581, 585, 586, 590, 591, 592, 593, 594, 595, 596, 597, 599, 600, 617, 618, 621, 626, 628, 629, 630, 632, 638, 641, 642, 643, 645, 646, 649, 650, 655, 671, 672, 673, 674, 675, 682, 683, 687, 688, 689, 691, 693], "relativ": [1, 13, 25, 40, 92, 112, 124, 133, 150, 170, 184, 192, 203, 229, 262, 268, 287, 323, 326, 328, 329, 330, 331, 333, 352, 410, 419, 420, 434, 453, 462, 475, 496, 504, 519, 523, 564, 566, 567, 568, 570, 573, 574, 575, 576, 591, 599, 643, 645, 646, 647, 650, 651, 652, 653, 655, 670, 671, 672, 693], "referenz": [1, 12, 31, 33, 34, 36, 42, 52, 53, 54, 68, 73, 74, 78, 79, 82, 83, 92, 97, 103, 112, 115, 117, 124, 125, 153, 187, 250, 328, 330, 406, 496, 523, 564, 566, 567, 573, 574, 576, 586, 591, 603, 622, 652, 653, 655, 656, 693], "anzugeb": [1, 43, 53, 58, 62, 67, 111, 115, 125, 162, 169, 189, 196, 200, 232, 238, 243, 260, 261, 263, 272, 285, 289, 325, 328, 381, 403, 432, 507, 561, 563, 566, 583, 599, 601, 602, 604, 607, 608, 609, 636, 638, 683, 688], "Damit": [1, 13, 22, 27, 42, 52, 53, 58, 62, 69, 80, 82, 83, 86, 90, 109, 116, 123, 153, 165, 168, 189, 196, 203, 204, 212, 213, 226, 232, 233, 272, 293, 302, 304, 309, 310, 326, 332, 339, 340, 351, 412, 496, 523, 561, 563, 566, 568, 573, 589, 590, 593, 603, 638, 641, 682, 688], "aufgelost": [1, 53, 97, 330, 333, 508, 561, 603], "separat": [1, 37, 107, 160, 169, 183, 232, 247, 289, 314, 323, 332, 342, 343, 347, 351, 434, 463, 508, 519, 545, 554, 630, 648, 649, 653, 655, 669, 674, 688], "feld": [1, 3, 43, 53, 58, 62, 93, 94, 96, 104, 164, 222, 224, 226, 272, 292, 337, 396, 409, 423, 427, 471, 563, 601, 602, 604, 607, 608, 609, 633, 671], "pfad": [1, 2, 52, 103, 106, 112, 117, 119, 123, 124, 162, 167, 187, 188, 189, 215, 219, 222, 223, 229, 230, 261, 262, 314, 323, 326, 331, 333, 338, 360, 376, 388, 389, 392, 396, 398, 400, 408, 409, 423, 424, 425, 431, 434, 435, 439, 441, 453, 464, 467, 472, 477, 485, 488, 490, 506, 513, 515, 521, 527, 537, 561, 562, 563, 565, 567, 573, 574, 575, 576, 577, 579, 591, 592, 594, 600, 612, 630, 635, 641, 671, 672], "angegeb": [1, 3, 4, 8, 14, 37, 43, 44, 45, 50, 52, 53, 55, 56, 58, 79, 80, 82, 85, 87, 92, 96, 97, 100, 103, 104, 111, 112, 116, 117, 119, 120, 121, 122, 123, 124, 162, 164, 165, 168, 169, 170, 171, 179, 181, 184, 187, 188, 189, 191, 192, 194, 200, 201, 203, 210, 212, 213, 217, 219, 222, 226, 230, 232, 241, 243, 252, 255, 262, 263, 264, 265, 267, 268, 271, 272, 287, 289, 293, 310, 314, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 338, 347, 348, 349, 351, 357, 360, 362, 366, 376, 381, 382, 396, 398, 400, 408, 414, 416, 417, 419, 420, 423, 424, 426, 427, 432, 434, 435, 441, 446, 448, 453, 454, 462, 463, 464, 467, 471, 472, 476, 477, 480, 492, 496, 497, 498, 499, 502, 506, 507, 508, 520, 522, 523, 524, 530, 531, 532, 561, 562, 563, 565, 566, 568, 569, 570, 573, 574, 575, 576, 577, 578, 579, 585, 588, 589, 591, 592, 593, 594, 595, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 613, 615, 616, 630, 632, 634, 641, 671, 673, 682, 686, 690], "ergebnis": [1, 15, 24, 37, 58, 62, 92, 96, 115, 131, 165, 192, 203, 219, 229, 238, 262, 306, 307, 326, 329, 332, 351, 379, 382, 391, 396, 406, 436, 457, 462, 469, 496, 504, 510, 524, 527, 534, 565, 573, 574, 575, 576, 583, 591, 594, 596, 599, 634, 636, 674, 681, 683], "expandiert": [1, 567, 591], "absolut": [1, 25, 40, 79, 103, 112, 124, 133, 150, 170, 189, 229, 273, 276, 323, 331, 508, 561, 568, 570, 573, 574, 575, 599, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "dadurch": [1, 5, 24, 42, 67, 80, 87, 95, 110, 116, 118, 123, 124, 223, 226, 262, 289, 295, 314, 325, 326, 333, 338, 359, 381, 508, 550, 551, 561, 563, 569, 570, 575, 576, 577, 579, 585, 588, 590, 592, 593, 595, 597, 638, 674, 685], "resultier": [1, 164], "datentyp": [1, 43, 53, 93, 98, 103, 207, 212, 213, 261, 262, 285, 289, 310, 325, 330, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 575, 579, 595, 601, 602, 604, 607, 608, 609, 621, 622, 671, 674], "resultat": [1, 323, 370, 376], "textausschnitt": 1, "format": [1, 12, 14, 16, 18, 30, 40, 44, 45, 47, 48, 51, 52, 53, 54, 55, 58, 83, 92, 100, 102, 104, 105, 107, 113, 115, 116, 123, 126, 130, 135, 136, 137, 141, 146, 148, 149, 152, 154, 157, 158, 160, 161, 162, 165, 184, 186, 187, 188, 189, 198, 205, 217, 219, 227, 232, 234, 235, 236, 248, 260, 261, 262, 263, 268, 279, 285, 288, 290, 312, 313, 314, 325, 326, 328, 329, 330, 332, 338, 339, 340, 351, 356, 357, 361, 365, 369, 375, 397, 398, 425, 434, 436, 453, 461, 470, 479, 483, 512, 566, 568, 570, 573, 575, 584, 585, 586, 589, 595, 599, 603, 612, 613, 615, 621, 622, 623, 625, 626, 633, 634, 641, 645, 646, 651, 653, 670, 671, 674, 679, 688], "eingegeb": [1, 2, 3, 71, 83, 93, 96, 119, 162, 168, 170, 292, 363, 391, 528, 574, 612, 629, 630, 688], "uberpruft": [1, 47, 84, 92, 164, 232, 324, 376, 628], "interpret": [1, 40, 68, 83, 89, 90, 107, 115, 116, 125, 164, 314, 319, 638], "interpretiert": [1, 106, 191, 232, 261, 264, 267, 310, 381, 446, 463, 561, 577, 579, 595], "aufbereitet": [1, 338, 584], "Der": [1, 2, 3, 4, 5, 8, 13, 27, 28, 37, 42, 43, 45, 46, 47, 48, 50, 51, 53, 56, 58, 60, 62, 64, 69, 71, 73, 79, 82, 83, 84, 85, 86, 89, 90, 92, 96, 97, 98, 102, 103, 105, 106, 107, 111, 112, 114, 115, 117, 120, 122, 123, 124, 155, 156, 163, 164, 165, 167, 168, 169, 170, 178, 184, 187, 188, 189, 191, 192, 194, 196, 200, 201, 203, 219, 222, 223, 229, 232, 238, 243, 244, 249, 255, 256, 261, 262, 263, 264, 265, 267, 268, 272, 284, 285, 287, 289, 291, 292, 295, 303, 304, 306, 307, 310, 314, 316, 319, 321, 325, 326, 328, 329, 330, 332, 333, 337, 338, 346, 347, 349, 351, 359, 360, 362, 369, 370, 380, 381, 382, 392, 396, 397, 400, 405, 408, 412, 419, 420, 423, 434, 435, 440, 441, 446, 450, 453, 458, 460, 461, 463, 464, 467, 471, 473, 496, 504, 507, 508, 512, 522, 523, 538, 545, 547, 548, 550, 552, 554, 558, 562, 563, 566, 567, 568, 570, 573, 574, 575, 576, 577, 581, 584, 585, 586, 589, 591, 592, 594, 596, 597, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 614, 615, 619, 622, 628, 629, 630, 632, 634, 636, 638, 641, 646, 671, 673, 674, 682, 686, 687, 688, 690, 693], "dient": [1, 36, 62, 72, 74, 78, 106, 112, 115, 131, 174, 189, 192, 217, 219, 250, 271, 289, 302, 328, 329, 330, 338, 339, 340, 490, 528, 574, 577, 629, 632, 682, 688], "snippet": [1, 203, 247, 314, 504, 670, 688], "alt": [1, 12, 27, 43, 52, 53, 54, 55, 67, 71, 73, 79, 81, 86, 89, 100, 102, 105, 123, 124, 162, 165, 170, 187, 189, 198, 212, 213, 223, 233, 243, 253, 255, 256, 263, 271, 289, 292, 293, 295, 302, 313, 314, 321, 322, 325, 326, 328, 330, 332, 339, 340, 370, 380, 396, 398, 434, 495, 506, 508, 514, 519, 545, 550, 562, 567, 568, 570, 573, 575, 576, 577, 585, 586, 589, 591, 606, 610, 625, 630, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 679, 687, 691], "vorlieg": [1, 189, 229, 232, 262, 326, 373], "konverti": [1, 106, 351, 622], "Dazu": [1, 2, 4, 9, 12, 13, 22, 53, 58, 62, 68, 71, 76, 82, 83, 86, 87, 89, 90, 92, 97, 98, 106, 112, 115, 116, 117, 123, 131, 170, 179, 184, 187, 189, 192, 200, 204, 210, 212, 213, 215, 220, 225, 226, 232, 249, 252, 255, 262, 263, 265, 266, 268, 271, 285, 289, 302, 309, 311, 314, 338, 348, 349, 351, 354, 357, 359, 360, 366, 397, 561, 566, 570, 578, 589, 592, 593, 599, 602, 622, 632, 634, 638, 682, 688, 690], "directory": [1, 40, 44, 45, 48, 54, 55, 66, 88, 113, 125, 126, 134, 137, 146, 151, 157, 158, 161, 176, 216, 221, 227, 269, 278, 315, 352, 353, 524, 612, 613, 615, 624, 638, 646, 648, 649, 651, 654, 655, 656, 664, 677, 679, 688], "vorhand": [1, 5, 12, 22, 53, 60, 62, 63, 66, 79, 82, 83, 90, 92, 93, 106, 111, 112, 113, 115, 154, 170, 178, 184, 187, 191, 201, 215, 219, 232, 256, 259, 260, 261, 262, 264, 267, 268, 276, 295, 302, 306, 307, 314, 326, 328, 351, 354, 362, 363, 370, 371, 396, 434, 489, 511, 533, 545, 547, 548, 550, 552, 554, 558, 562, 567, 569, 573, 585, 591, 592, 612, 620, 623, 624, 641, 642, 674, 682, 687, 688, 689], "denen": [1, 53, 71, 92, 93, 95, 97, 103, 104, 106, 112, 116, 117, 124, 170, 187, 189, 260, 289, 316, 327, 332, 339, 340, 370, 381, 398, 400, 441, 464, 467, 486, 504, 512, 545, 547, 548, 550, 552, 554, 558, 565, 591, 592, 600, 602, 612, 630, 632, 633, 682], "gibt": [1, 4, 8, 12, 20, 22, 24, 25, 37, 43, 46, 47, 51, 52, 53, 58, 64, 67, 68, 71, 74, 78, 79, 80, 82, 85, 86, 92, 93, 94, 97, 98, 103, 106, 109, 111, 115, 116, 123, 124, 131, 156, 159, 162, 164, 165, 166, 167, 168, 170, 172, 187, 189, 191, 192, 200, 201, 204, 215, 219, 228, 232, 241, 244, 256, 261, 262, 263, 264, 267, 272, 276, 289, 303, 310, 313, 314, 316, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 338, 339, 340, 347, 349, 351, 359, 360, 362, 363, 366, 373, 377, 379, 381, 382, 394, 411, 416, 423, 443, 450, 453, 455, 456, 458, 460, 462, 463, 468, 479, 480, 485, 495, 497, 505, 508, 510, 513, 520, 522, 530, 534, 556, 560, 563, 566, 568, 569, 570, 573, 574, 581, 584, 586, 591, 592, 594, 595, 596, 599, 601, 602, 603, 604, 607, 608, 609, 621, 622, 626, 629, 630, 634, 636, 638, 641, 642, 643, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675, 680, 682, 683, 687, 688, 689, 691, 693], "jedoch": [1, 25, 27, 42, 43, 53, 67, 77, 79, 82, 83, 96, 97, 106, 109, 112, 123, 215, 232, 261, 271, 289, 293, 326, 328, 329, 332, 359, 369, 508, 561, 562, 568, 570, 573, 574, 576, 585, 586, 588, 589, 590, 593, 596, 601, 602, 604, 607, 608, 609, 621, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 675, 682, 683, 691], "attribut": [1, 2, 12, 13, 20, 24, 25, 42, 43, 44, 45, 52, 54, 55, 58, 60, 62, 66, 67, 92, 98, 102, 104, 105, 113, 114, 115, 117, 123, 125, 126, 132, 133, 134, 136, 137, 139, 142, 149, 153, 155, 162, 165, 168, 169, 171, 183, 184, 186, 187, 188, 192, 193, 194, 195, 197, 200, 202, 203, 205, 207, 210, 215, 216, 217, 222, 223, 227, 229, 232, 233, 234, 239, 243, 248, 249, 261, 263, 268, 271, 272, 273, 274, 280, 281, 285, 290, 291, 294, 295, 297, 302, 304, 305, 306, 307, 310, 314, 317, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 339, 340, 341, 349, 351, 352, 353, 355, 356, 357, 360, 363, 365, 368, 370, 371, 562, 563, 564, 565, 567, 568, 569, 570, 571, 574, 578, 579, 584, 585, 587, 591, 592, 594, 596, 597, 599, 600, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 619, 622, 623, 624, 625, 632, 634, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 664, 665, 666, 667, 669, 670, 671, 672, 673, 674, 681, 682, 683, 687, 690, 693], "gesetzt": [1, 8, 12, 43, 45, 50, 52, 53, 56, 58, 60, 83, 88, 97, 98, 106, 112, 116, 117, 119, 120, 121, 122, 123, 124, 162, 167, 168, 169, 170, 171, 178, 189, 203, 207, 217, 219, 222, 232, 233, 237, 244, 252, 256, 261, 263, 289, 293, 295, 302, 304, 314, 316, 319, 322, 323, 326, 328, 329, 330, 331, 332, 338, 339, 340, 347, 351, 360, 379, 381, 382, 391, 393, 396, 398, 409, 412, 423, 428, 434, 441, 450, 453, 454, 457, 461, 463, 471, 472, 479, 485, 486, 487, 490, 495, 496, 504, 506, 507, 508, 513, 516, 519, 522, 523, 524, 537, 562, 563, 567, 568, 569, 570, 571, 572, 573, 574, 577, 579, 591, 592, 593, 599, 600, 601, 602, 604, 607, 608, 609, 610, 615, 632, 634, 641, 671, 674, 688, 690], "geloscht": [1, 2, 3, 5, 6, 8, 22, 27, 56, 58, 92, 93, 115, 169, 184, 187, 219, 241, 263, 268, 295, 314, 326, 332, 333, 359, 396, 453, 508, 585, 630], "entwed": [1, 42, 51, 92, 106, 122, 124, 169, 171, 203, 262, 306, 307, 314, 325, 328, 330, 333, 338, 347, 376, 401, 423, 453, 458, 479, 490, 537, 682], "einzeln": [1, 4, 20, 50, 52, 53, 58, 62, 68, 71, 78, 81, 83, 85, 92, 93, 95, 106, 107, 112, 115, 116, 123, 154, 162, 163, 167, 169, 191, 192, 200, 201, 210, 219, 228, 229, 232, 233, 260, 264, 265, 267, 287, 289, 314, 320, 321, 325, 326, 329, 331, 333, 351, 354, 360, 371, 379, 457, 496, 531, 548, 549, 550, 551, 563, 569, 576, 577, 589, 592, 593, 612, 622, 631, 632, 638, 641, 652, 653, 654, 655, 656, 674, 675, 681, 693], "losch": [1, 5, 31, 32, 51, 52, 54, 55, 164, 187, 203, 241, 255, 293, 330, 389, 396, 508, 519, 563, 594, 625, 627, 652, 671, 674], "jeweil": [1, 3, 5, 10, 13, 43, 47, 50, 52, 53, 57, 58, 60, 62, 77, 80, 83, 92, 93, 97, 103, 106, 111, 112, 116, 117, 120, 123, 162, 163, 164, 170, 188, 192, 200, 215, 244, 250, 260, 262, 263, 265, 272, 276, 285, 289, 291, 311, 324, 325, 326, 327, 331, 332, 337, 339, 340, 351, 360, 371, 373, 382, 383, 412, 416, 423, 458, 479, 515, 518, 545, 546, 563, 566, 569, 573, 574, 575, 577, 579, 585, 587, 592, 593, 596, 597, 599, 600, 605, 614, 618, 619, 621, 622, 625, 626, 632, 634, 641, 652, 653, 654, 655, 656, 671, 675, 682, 683, 685, 688, 692], "loschend": [1, 396], "hilf": [1, 12, 13, 18, 27, 37, 40, 47, 51, 56, 71, 78, 97, 98, 113, 115, 163, 170, 172, 178, 181, 184, 187, 192, 194, 210, 212, 213, 220, 229, 237, 252, 262, 265, 268, 289, 302, 306, 307, 319, 348, 349, 357, 360, 366, 574, 583, 585, 629, 671], "checkbox": [1, 58, 653], "markiert": [1, 58, 314, 599, 634, 652, 653, 654, 655, 656], "anschliess": [1, 12, 14, 22, 27, 42, 58, 82, 83, 84, 85, 90, 92, 94, 102, 116, 187, 203, 212, 213, 226, 255, 292, 293, 302, 328, 354, 360, 382, 573, 574, 576, 585, 589, 591, 597, 625, 628, 632, 678, 682], "version": [1, 8, 14, 22, 30, 37, 43, 44, 45, 46, 48, 50, 51, 52, 53, 54, 55, 56, 64, 66, 68, 70, 73, 76, 78, 81, 83, 84, 85, 88, 89, 90, 103, 104, 106, 107, 113, 115, 116, 121, 122, 123, 125, 130, 133, 135, 139, 141, 152, 154, 155, 157, 158, 163, 165, 168, 170, 171, 177, 179, 184, 187, 189, 192, 198, 205, 207, 208, 210, 211, 219, 220, 223, 225, 227, 232, 239, 245, 249, 252, 255, 260, 261, 265, 270, 273, 274, 275, 278, 279, 285, 292, 293, 298, 299, 301, 302, 304, 308, 309, 310, 314, 329, 333, 334, 341, 347, 348, 351, 353, 354, 355, 356, 357, 360, 366, 368, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 555, 558, 566, 576, 580, 585, 586, 589, 595, 606, 610, 612, 613, 615, 616, 624, 625, 627, 629, 630, 635, 638, 642, 663, 667, 669, 670, 678, 679, 681, 682, 687, 689, 693], "1": [1, 8, 12, 14, 15, 16, 18, 20, 25, 43, 44, 45, 48, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 64, 69, 70, 71, 73, 77, 78, 79, 80, 83, 84, 85, 86, 87, 98, 100, 103, 104, 106, 107, 110, 111, 112, 113, 115, 116, 117, 120, 121, 123, 125, 126, 127, 130, 131, 133, 136, 141, 147, 148, 149, 150, 152, 155, 157, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 178, 179, 180, 183, 186, 187, 189, 192, 193, 194, 195, 196, 197, 199, 200, 203, 205, 207, 210, 211, 216, 217, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 237, 239, 249, 253, 255, 256, 257, 258, 259, 260, 263, 265, 266, 267, 269, 271, 274, 275, 276, 277, 279, 282, 283, 284, 288, 289, 290, 292, 293, 294, 295, 297, 298, 301, 304, 305, 306, 307, 308, 309, 312, 313, 317, 319, 320, 321, 322, 323, 324, 325, 326, 327, 329, 330, 331, 332, 333, 334, 336, 337, 338, 339, 340, 341, 346, 347, 352, 355, 356, 357, 358, 359, 360, 361, 363, 367, 368, 370, 374, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 552, 554, 558, 561, 562, 563, 566, 567, 568, 569, 570, 573, 575, 576, 579, 585, 589, 591, 592, 594, 595, 596, 597, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 617, 622, 623, 625, 629, 633, 634, 638, 657, 662, 663, 665, 666, 681, 682, 683, 686, 688, 689], "9": [1, 15, 16, 18, 54, 55, 57, 64, 66, 71, 79, 83, 90, 92, 97, 100, 107, 113, 114, 115, 116, 123, 125, 155, 156, 160, 162, 167, 169, 170, 189, 192, 195, 196, 198, 215, 219, 220, 221, 227, 229, 231, 232, 248, 249, 251, 254, 255, 262, 288, 289, 290, 303, 304, 305, 306, 307, 310, 334, 338, 344, 347, 349, 354, 355, 356, 357, 358, 375, 377, 380, 384, 389, 391, 396, 398, 400, 407, 408, 410, 413, 423, 428, 433, 434, 435, 441, 449, 457, 458, 461, 462, 464, 467, 468, 476, 489, 496, 505, 510, 511, 518, 521, 524, 538, 545, 548, 550, 552, 554, 558, 562, 567, 573, 575, 577, 591, 598, 616, 624, 638, 639, 643, 646, 648, 655, 656, 657, 670, 671, 674, 682, 688, 689], "implementiert": [1, 13, 15, 43, 45, 48, 52, 53, 56, 58, 59, 62, 63, 66, 79, 86, 100, 103, 106, 117, 120, 121, 124, 125, 131, 155, 162, 178, 184, 187, 204, 210, 212, 213, 244, 268, 270, 271, 289, 293, 302, 304, 306, 307, 321, 328, 331, 370, 439, 453, 487, 526, 545, 550, 552, 553, 558, 559, 560, 563, 566, 567, 573, 591, 592, 600, 606, 609, 610, 612, 613, 615, 616, 618, 620, 621, 623, 624, 638, 641, 671, 674, 689], "benutzerdefiniert": [1, 42, 83, 96, 103, 107, 115, 125, 172, 230, 263, 599, 633, 634, 635, 638], "schreib": [1, 58, 62, 65, 67, 82, 83, 86, 106, 109, 116, 125, 169, 188, 226, 229, 232, 243, 249, 263, 270, 271, 322, 351, 371, 380, 381, 396, 397, 407, 463, 496, 500, 512, 522, 524, 545, 550, 562, 564, 566, 575, 577, 583, 622, 638, 673, 678], "statement": [1, 15, 55, 125, 130, 131, 133, 353, 410, 545, 554, 572, 598, 638, 643, 645, 649, 655, 693], "sowi": [1, 3, 7, 10, 11, 13, 26, 28, 42, 43, 53, 58, 60, 83, 116, 125, 155, 162, 163, 166, 170, 172, 184, 187, 188, 189, 191, 192, 215, 219, 220, 229, 244, 246, 260, 261, 264, 267, 268, 276, 291, 293, 304, 319, 320, 325, 328, 333, 337, 343, 360, 381, 431, 566, 587, 590, 599, 601, 602, 608, 622, 636, 638, 641, 651, 652, 653, 654, 656, 674, 683, 687, 693], "verwend": [1, 25, 27, 43, 45, 50, 52, 53, 62, 67, 68, 76, 79, 80, 82, 86, 92, 100, 103, 104, 106, 107, 112, 115, 123, 124, 125, 162, 164, 167, 169, 179, 181, 187, 188, 192, 215, 219, 222, 229, 230, 241, 244, 262, 271, 287, 293, 313, 314, 321, 328, 330, 338, 347, 359, 369, 396, 398, 423, 429, 430, 434, 449, 458, 475, 506, 527, 532, 545, 554, 558, 561, 566, 569, 577, 586, 590, 592, 596, 599, 601, 602, 603, 604, 607, 608, 609, 615, 617, 618, 634, 636, 677, 678, 679, 682, 686, 687, 692, 693], "erstell": [1, 3, 8, 27, 45, 48, 53, 56, 67, 71, 72, 74, 77, 78, 79, 82, 92, 98, 102, 103, 106, 109, 117, 120, 125, 153, 162, 169, 170, 172, 184, 187, 188, 189, 194, 215, 229, 241, 243, 256, 262, 268, 289, 329, 338, 354, 363, 373, 412, 519, 556, 557, 566, 586, 587, 589, 590, 592, 609, 613, 615, 618, 627, 671, 682, 687, 692], "bearbeit": [1, 2, 6, 47, 77, 638, 688], "Dieser": [1, 4, 12, 27, 38, 45, 51, 52, 53, 54, 55, 83, 85, 96, 106, 115, 116, 117, 120, 122, 123, 155, 156, 162, 165, 189, 244, 262, 293, 303, 304, 328, 329, 330, 338, 347, 351, 377, 381, 412, 416, 419, 420, 426, 427, 431, 448, 486, 492, 496, 530, 532, 545, 546, 556, 557, 563, 566, 573, 584, 585, 592, 593, 600, 603, 609, 610, 615, 625, 638, 688, 690], "unt": [1, 2, 3, 4, 5, 6, 9, 12, 13, 16, 20, 22, 25, 27, 31, 32, 42, 43, 44, 45, 52, 53, 54, 55, 58, 62, 67, 68, 69, 70, 71, 73, 82, 83, 84, 85, 92, 93, 96, 97, 98, 100, 103, 106, 107, 109, 111, 114, 115, 117, 120, 122, 124, 153, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 217, 219, 220, 222, 223, 224, 228, 229, 230, 232, 233, 237, 238, 241, 242, 243, 244, 246, 252, 255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 277, 279, 284, 285, 286, 287, 289, 291, 292, 293, 295, 300, 302, 306, 307, 309, 311, 313, 314, 316, 319, 321, 322, 323, 324, 325, 326, 328, 329, 331, 332, 333, 336, 337, 338, 339, 340, 346, 347, 348, 349, 351, 354, 357, 359, 360, 362, 366, 367, 369, 371, 381, 394, 409, 420, 427, 440, 441, 446, 454, 459, 460, 462, 463, 468, 479, 496, 508, 510, 512, 523, 528, 536, 545, 548, 550, 558, 562, 563, 567, 569, 573, 575, 576, 577, 580, 582, 584, 585, 590, 591, 592, 594, 596, 597, 599, 601, 602, 604, 606, 607, 608, 609, 610, 613, 615, 616, 618, 625, 628, 630, 632, 634, 635, 636, 638, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675, 682, 684, 686, 688, 689, 692, 693], "eigenschaft": [2, 52, 98, 106, 162, 171, 178, 192, 207, 306, 307, 498, 499, 521], "eingeles": [2, 4, 53, 82, 92, 97, 105, 106, 112, 121, 124, 178, 293, 295, 333, 409, 434, 603, 632, 682], "stehend": [2, 58, 82, 97, 222, 223, 326, 332, 587], "itemstruktur": [2, 97, 328, 577], "Hier": [2, 3, 6, 11, 12, 14, 21, 23, 26, 31, 32, 33, 34, 41, 42, 47, 52, 53, 54, 55, 56, 62, 71, 74, 79, 80, 85, 103, 106, 107, 115, 116, 163, 164, 168, 169, 170, 189, 200, 214, 219, 225, 226, 230, 232, 244, 246, 262, 277, 284, 306, 307, 320, 325, 328, 329, 331, 347, 369, 381, 412, 471, 531, 566, 569, 573, 577, 586, 592, 595, 596, 610, 617, 622, 625, 631, 682, 692, 693], "gelad": [2, 3, 42, 43, 52, 53, 62, 80, 95, 97, 115, 118, 119, 120, 123, 125, 162, 163, 164, 169, 170, 179, 184, 187, 191, 192, 201, 210, 212, 213, 219, 230, 232, 252, 255, 264, 265, 267, 289, 291, 302, 304, 314, 328, 329, 337, 348, 354, 357, 360, 366, 371, 432, 566, 573, 577, 585, 588, 590, 595, 596, 601, 602, 603, 604, 607, 608, 609, 638, 641, 671, 674, 689], "zeigt": [2, 5, 8, 12, 50, 54, 55, 56, 58, 71, 83, 90, 97, 155, 165, 169, 171, 178, 181, 187, 189, 200, 203, 212, 213, 232, 250, 261, 262, 283, 285, 289, 291, 295, 304, 314, 328, 330, 331, 333, 337, 338, 409, 569, 574, 592, 638, 682, 683, 686], "wahrend": [2, 42, 52, 82, 83, 100, 102, 103, 115, 116, 164, 187, 219, 243, 289, 326, 330, 332, 376, 398, 453, 508, 532, 566, 568, 571, 573, 576, 585, 589, 590, 594, 596, 630, 638, 641], "laufzeit": [2, 4, 56, 83, 97, 100, 103, 125, 165, 170, 181, 210, 232, 252, 324, 326, 328, 329, 333, 453, 484, 508, 561, 566, 575, 580, 590, 594, 596, 599, 634, 638, 671, 688, 689], "\u00c4nderungen": [2, 4, 5, 12, 46, 47, 52, 82, 83, 85, 86, 92, 96, 98, 116, 155, 162, 178, 212, 213, 233, 260, 304, 308, 309, 326, 328, 331, 332, 337, 351, 370, 396, 412, 434, 463, 500, 507, 592, 594, 641, 671, 672, 675, 682, 687, 692, 693], "definition": [2, 6, 13, 43, 44, 45, 52, 54, 55, 62, 66, 85, 92, 94, 96, 104, 111, 123, 124, 125, 126, 134, 139, 144, 146, 148, 163, 170, 189, 192, 212, 213, 219, 229, 232, 233, 262, 265, 289, 302, 304, 314, 325, 326, 329, 330, 331, 342, 343, 351, 354, 355, 356, 357, 365, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 566, 572, 573, 574, 576, 577, 579, 580, 589, 599, 601, 602, 608, 609, 613, 614, 615, 616, 619, 622, 624, 626, 633, 634, 638, 641, 643, 644, 645, 646, 648, 649, 653, 655, 671, 672, 674, 681, 683, 687, 693], "neustart": [2, 5, 71, 82, 83, 86, 89, 90, 92, 95, 96, 115, 187, 200, 212, 213, 232, 265, 289, 326, 332, 349, 360, 381, 458, 463, 484, 487, 508, 519, 585, 589, 591, 594, 596, 632, 641, 651, 671], "sichtbar": [2, 8, 53, 80, 219, 260, 295, 302, 479, 566, 603], "voll": [2, 8, 20, 119, 326, 379, 481, 490, 502, 573, 585, 612], "verkurzt": [2, 328], "screenshot": [2, 4, 32, 52, 55, 90, 96, 625, 655, 685], "oben": [2, 5, 47, 50, 52, 53, 58, 60, 62, 71, 79, 82, 83, 84, 85, 92, 95, 98, 100, 108, 116, 155, 162, 163, 164, 167, 168, 169, 178, 179, 184, 192, 197, 200, 210, 212, 213, 220, 223, 226, 230, 232, 237, 252, 255, 261, 262, 265, 268, 276, 289, 302, 304, 313, 314, 320, 325, 326, 328, 329, 331, 333, 337, 338, 347, 348, 357, 360, 366, 434, 496, 508, 523, 561, 562, 563, 565, 585, 591, 593, 603, 622, 632, 641, 688], "anzeig": [2, 6, 7, 44, 56, 58, 60, 62, 92, 93, 112, 119, 187, 192, 215, 226, 249, 263, 289, 295, 313, 339, 340, 366, 381, 389, 422, 446, 483, 496, 527, 545, 550, 554, 612, 613, 635, 641, 671, 672, 673, 674, 686], "verhalt": [2, 53, 76, 83, 189, 233, 262, 289, 310, 313, 314, 351, 563, 571, 576, 589, 596, 598, 603, 630, 674], "syst": [2, 4, 30, 36, 44, 45, 52, 53, 54, 55, 68, 71, 78, 79, 80, 83, 84, 86, 89, 90, 96, 128, 154, 157, 158, 162, 165, 168, 173, 175, 176, 178, 183, 186, 187, 211, 225, 227, 232, 240, 248, 256, 258, 261, 262, 276, 278, 281, 290, 297, 359, 373, 385, 386, 391, 393, 396, 397, 398, 410, 426, 427, 428, 446, 463, 477, 485, 486, 487, 488, 490, 496, 506, 508, 513, 515, 519, 523, 524, 545, 564, 585, 598, 610, 612, 613, 615, 617, 628, 629, 630, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 663, 667, 669, 680, 691], "Dort": [2, 12, 31, 32, 52, 54, 55, 62, 68, 82, 85, 170, 225, 284, 347, 369, 371, 579, 585, 590, 625, 671, 682, 688], "wieviel": [2, 3, 339, 340, 423, 463, 585, 599, 636], "zeich": [2, 3, 98, 100, 106, 116, 119, 169, 241, 339, 340, 434, 494, 533, 561, 612], "such": [2, 54, 55, 56, 103, 107, 108, 115, 119, 138, 162, 164, 200, 212, 213, 230, 255, 258, 285, 290, 292, 301, 306, 307, 314, 329, 335, 453, 565, 591, 597, 612, 628, 635, 643, 655], "recht": [2, 3, 5, 27, 46, 47, 54, 55, 56, 71, 79, 82, 83, 90, 95, 96, 162, 163, 178, 179, 184, 187, 192, 200, 203, 210, 212, 213, 219, 220, 226, 229, 232, 237, 244, 252, 261, 262, 265, 268, 289, 302, 314, 320, 338, 347, 348, 357, 360, 366, 378, 496, 523, 583, 686], "information": [2, 3, 5, 8, 16, 25, 28, 31, 32, 38, 44, 45, 46, 47, 48, 51, 52, 54, 55, 56, 58, 60, 65, 66, 67, 70, 71, 72, 74, 76, 77, 78, 81, 82, 83, 84, 96, 100, 103, 107, 111, 112, 114, 115, 116, 117, 121, 123, 125, 131, 133, 136, 137, 142, 148, 153, 155, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 174, 176, 178, 179, 180, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 198, 199, 200, 201, 204, 205, 208, 210, 212, 213, 215, 216, 217, 219, 220, 221, 222, 223, 227, 228, 229, 230, 232, 233, 237, 238, 240, 241, 242, 243, 244, 245, 246, 250, 252, 253, 255, 257, 260, 261, 263, 264, 265, 266, 267, 268, 271, 276, 277, 284, 286, 287, 289, 295, 298, 300, 304, 305, 306, 307, 311, 313, 314, 316, 319, 321, 322, 324, 329, 330, 331, 335, 336, 338, 339, 340, 344, 346, 347, 348, 349, 351, 353, 356, 359, 360, 362, 365, 366, 367, 369, 370, 371, 373, 374, 375, 381, 382, 386, 387, 388, 391, 392, 393, 395, 396, 399, 401, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 429, 433, 436, 437, 438, 440, 442, 443, 448, 450, 451, 453, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 484, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 529, 532, 534, 538, 545, 550, 558, 564, 574, 578, 580, 582, 583, 584, 593, 594, 612, 613, 615, 617, 622, 624, 625, 627, 637, 638, 641, 645, 646, 648, 651, 653, 655, 659, 666, 669, 670, 671, 672, 675, 680, 681, 682, 688, 689, 693], "liv": [2, 82, 161, 274, 455, 479, 527, 651, 688, 693], "angepasst": [2, 22, 25, 44, 56, 58, 60, 83, 85, 86, 87, 88, 92, 95, 103, 116, 189, 192, 219, 263, 270, 271, 285, 293, 306, 307, 328, 331, 351, 354, 369, 371, 453, 508, 563, 575, 584, 593, 613, 622], "uberwacht": [2, 310, 382, 574, 592], "deren": [2, 14, 43, 52, 53, 58, 77, 83, 92, 97, 111, 165, 166, 169, 170, 187, 189, 215, 232, 244, 261, 263, 265, 331, 336, 338, 351, 360, 382, 446, 463, 526, 565, 577, 580, 587, 591, 594, 601, 602, 604, 607, 608, 609], "verander": [2, 42, 117, 213, 260, 265, 573, 575, 577, 590, 592, 600, 642, 651, 685, 693], "gemonitored": 2, "vorh": [2, 71, 102, 103, 131, 155, 187, 200, 304, 316, 562, 572, 573, 574, 598, 629, 635, 671, 688], "tree": [2, 45, 53, 57, 71, 97, 119, 126, 132, 133, 134, 174, 187, 251, 294, 365, 577, 603, 612, 615, 646, 649, 655, 667, 674, 686], "uberwach": [2, 164, 244, 310, 574, 577, 641, 693], "detail": [2, 4, 42, 44, 53, 54, 55, 58, 59, 71, 76, 83, 86, 96, 105, 107, 108, 109, 110, 112, 115, 116, 117, 123, 125, 153, 157, 169, 170, 180, 181, 186, 187, 188, 210, 239, 243, 260, 263, 285, 293, 305, 312, 313, 314, 315, 322, 323, 324, 331, 333, 335, 338, 345, 351, 355, 365, 382, 489, 509, 510, 566, 573, 583, 592, 594, 600, 609, 613, 622, 629, 631, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 674, 675, 682, 691, 693], "aktiviert": [2, 3, 5, 20, 28, 56, 58, 68, 82, 83, 89, 90, 96, 98, 120, 162, 170, 200, 207, 212, 213, 219, 222, 262, 265, 289, 292, 302, 314, 323, 325, 328, 329, 331, 333, 346, 347, 376, 381, 382, 416, 419, 434, 449, 450, 453, 456, 463, 479, 486, 504, 508, 519, 534, 576, 594, 617, 629, 630, 671, 682, 689, 690], "deaktiviert": [2, 3, 5, 58, 68, 95, 120, 165, 200, 289, 295, 314, 329, 331, 347, 379, 382, 444, 449, 456, 479, 492, 508, 594, 641, 674], "entwickl": [2, 36, 37, 39, 47, 48, 49, 53, 60, 64, 78, 79, 82, 92, 110, 117, 119, 121, 153, 169, 213, 219, 287, 302, 337, 369, 373, 385, 388, 545, 550, 554, 573, 581, 592, 594, 610, 612, 614, 619, 630, 641, 646, 671, 672, 674, 685, 687, 689], "eval": [2, 11, 13, 16, 25, 66, 76, 100, 103, 104, 105, 106, 112, 115, 124, 125, 131, 133, 162, 183, 184, 189, 198, 200, 218, 223, 239, 247, 258, 259, 262, 263, 268, 282, 289, 298, 308, 309, 323, 326, 328, 329, 330, 331, 332, 333, 338, 339, 340, 343, 347, 351, 359, 360, 508, 527, 562, 563, 564, 567, 568, 570, 572, 574, 577, 591, 599, 618, 624, 632, 634, 638, 641, 642, 643, 644, 645, 646, 648, 649, 650, 653, 655, 664, 670, 671, 693], "function": [2, 40, 45, 53, 54, 55, 56, 58, 60, 62, 63, 66, 102, 107, 115, 125, 126, 129, 132, 133, 134, 136, 137, 138, 139, 141, 143, 146, 147, 148, 149, 150, 152, 155, 160, 169, 170, 173, 180, 183, 199, 202, 205, 211, 218, 227, 248, 254, 287, 288, 304, 305, 315, 323, 326, 328, 330, 356, 357, 370, 586, 595, 597, 598, 609, 615, 620, 623, 624, 638, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 669, 670, 688], "hilfreich": [2, 12, 22, 37, 58, 81, 82, 84, 90, 93, 116, 295, 359, 379, 381, 561, 566, 571, 574, 630, 676, 692], "vollig": [2, 325, 585], "unterschied": [2, 4, 36, 46, 50, 52, 53, 58, 68, 69, 78, 80, 82, 89, 92, 97, 100, 104, 115, 124, 162, 189, 192, 200, 219, 224, 226, 261, 316, 326, 330, 331, 332, 360, 397, 519, 561, 566, 573, 576, 586, 602, 603, 618, 630, 674, 675], "stell": [2, 25, 43, 47, 48, 50, 53, 60, 62, 67, 83, 97, 106, 110, 115, 116, 117, 118, 120, 162, 163, 189, 219, 224, 255, 260, 293, 329, 330, 332, 508, 536, 563, 566, 578, 592, 603, 612, 622, 632, 671, 674, 682, 687, 689], "definiert": [2, 3, 4, 6, 8, 12, 13, 24, 40, 42, 43, 44, 45, 50, 52, 53, 56, 58, 60, 62, 76, 83, 85, 96, 105, 106, 107, 112, 115, 116, 117, 123, 124, 125, 155, 163, 164, 165, 169, 178, 184, 187, 188, 189, 192, 200, 210, 212, 213, 215, 219, 223, 229, 232, 244, 261, 262, 268, 272, 287, 289, 304, 306, 307, 314, 316, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 347, 351, 360, 370, 371, 381, 397, 398, 412, 423, 441, 446, 450, 454, 463, 471, 496, 501, 504, 508, 515, 519, 522, 523, 532, 538, 561, 562, 566, 567, 570, 573, 574, 577, 579, 584, 585, 587, 589, 591, 592, 593, 594, 595, 598, 600, 601, 602, 603, 604, 607, 608, 609, 610, 613, 615, 622, 632, 633, 638, 641, 642, 671, 672, 682, 683, 686, 687, 690], "ubersicht": [2, 4, 5, 68, 82, 92, 94, 97, 98, 103, 106, 111, 112, 115, 116, 163, 166, 170, 184, 187, 192, 200, 210, 212, 213, 220, 224, 232, 252, 261, 265, 268, 289, 302, 310, 348, 351, 357, 360, 366, 371, 561, 584, 671, 682, 692, 693], "tabell": [2, 15, 44, 50, 54, 55, 60, 62, 76, 79, 162, 178, 187, 191, 230, 232, 262, 264, 267, 400, 408, 435, 441, 450, 464, 467, 567, 591, 597, 613, 693], "dargestellt": [2, 3, 8, 13, 62, 93, 117, 162, 163, 170, 178, 179, 184, 187, 192, 210, 212, 213, 219, 220, 226, 229, 232, 250, 252, 262, 265, 268, 289, 302, 336, 338, 348, 357, 360, 366, 592, 600, 622], "bearbeitet": [2, 6, 82, 83, 86, 93, 189, 527], "angelegt": [2, 6, 27, 37, 58, 71, 84, 85, 89, 92, 94, 97, 98, 112, 114, 116, 117, 124, 169, 184, 238, 244, 249, 261, 268, 271, 289, 293, 295, 302, 314, 323, 327, 328, 329, 330, 331, 338, 347, 354, 396, 508, 519, 521, 585, 592, 593, 628, 641, 682, 683, 688], "dialog": [2, 5, 6, 83, 95, 96, 226, 314, 352, 355, 686], "gestutzt": [2, 6], "analog": [2, 6, 52, 53, 58, 95, 103, 107, 112, 115, 116, 121, 124, 125, 170, 239, 263, 293, 308, 309, 332, 351, 353, 412, 563, 567, 576, 591, 596, 599, 601, 603, 634, 636, 638, 641, 649, 653, 671], "kommend": [2, 6, 103, 184, 230, 262, 268, 302, 354, 577, 641, 643, 644, 645, 652, 653, 654, 655, 656, 677, 691], "releas": [2, 6, 13, 22, 46, 47, 54, 55, 64, 78, 84, 92, 100, 106, 113, 130, 162, 179, 186, 190, 225, 248, 257, 280, 282, 283, 297, 302, 330, 333, 354, 355, 561, 567, 589, 591, 635, 677, 682, 688, 689], "hinzu": [2, 3, 5, 6, 46, 47, 52, 112, 172, 328, 585], "komm": [2, 6, 55, 58, 83, 97, 112, 115, 116, 162, 169, 261, 325, 328, 401, 596, 688], "wiederhol": [2, 47, 97, 104, 347, 508], "einfach": [2, 5, 12, 13, 22, 25, 27, 43, 50, 52, 53, 56, 59, 62, 67, 71, 80, 82, 83, 84, 85, 91, 95, 97, 98, 100, 103, 106, 107, 109, 112, 115, 116, 121, 122, 124, 131, 164, 166, 169, 172, 184, 189, 192, 203, 207, 210, 212, 213, 219, 226, 229, 241, 262, 265, 268, 279, 285, 289, 293, 319, 321, 323, 326, 328, 330, 331, 339, 340, 347, 351, 360, 367, 370, 371, 474, 483, 508, 545, 548, 566, 576, 590, 591, 595, 599, 601, 602, 604, 607, 608, 609, 622, 629, 630, 634, 638, 671, 688, 692, 693], "verwalt": [2, 52, 90, 219, 339, 340, 359, 630, 692], "individuell": [2, 45, 60, 95, 97, 314, 322, 326, 412, 471, 508, 519, 552, 553, 615, 641], "installation": [2, 8, 22, 37, 39, 40, 42, 45, 52, 69, 71, 73, 76, 79, 90, 91, 92, 93, 94, 103, 113, 121, 153, 164, 192, 193, 194, 261, 279, 308, 309, 334, 352, 353, 368, 369, 371, 580, 590, 615, 627, 629, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 672, 674, 675, 678, 684, 687, 688, 689, 691, 692, 693], "yaml": [2, 4, 5, 8, 13, 22, 24, 40, 42, 43, 44, 45, 48, 50, 51, 53, 54, 55, 60, 66, 67, 69, 71, 85, 86, 87, 92, 96, 97, 98, 100, 102, 109, 115, 116, 117, 118, 123, 124, 126, 135, 136, 137, 138, 143, 145, 148, 149, 151, 153, 162, 163, 170, 172, 181, 185, 189, 196, 203, 205, 206, 212, 213, 216, 217, 220, 227, 233, 237, 252, 255, 262, 266, 271, 285, 304, 318, 319, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 342, 346, 347, 349, 353, 356, 357, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 556, 557, 561, 566, 569, 572, 575, 576, 577, 578, 579, 583, 584, 585, 590, 592, 593, 594, 596, 597, 599, 601, 602, 603, 604, 605, 607, 608, 609, 612, 613, 614, 615, 616, 619, 622, 624, 625, 632, 634, 635, 636, 638, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 656, 669, 670, 671, 674, 679, 682, 684, 690], "daran": [2, 28, 68, 261, 300], "erkenn": [2, 5, 28, 71, 316, 321, 331, 622, 674], "beginnt": [2, 52, 67, 82, 106, 111, 230, 262, 265, 295, 453, 508, 511, 568, 612, 625], "punkt": [2, 25, 48, 58, 71, 81, 83, 85, 116, 165, 219, 224, 333, 422, 479, 561, 693], "getrennt": [2, 53, 106, 112, 155, 169, 170, 230, 304, 314, 325, 331, 333, 381, 432, 488, 504, 569, 573, 577, 592, 599, 610, 634], "eigent": [2, 37, 42, 48, 52, 67, 82, 106, 115, 116, 333, 360, 575, 579, 586, 590, 683, 687], "anschliesst": 2, "eig": [2, 22, 25, 46, 47, 54, 55, 57, 58, 59, 60, 62, 67, 68, 73, 77, 83, 90, 97, 103, 106, 107, 112, 114, 115, 116, 164, 166, 170, 172, 192, 219, 229, 241, 244, 314, 316, 322, 324, 328, 329, 330, 338, 347, 370, 373, 381, 382, 401, 434, 490, 504, 508, 516, 545, 550, 551, 558, 563, 575, 577, 579, 589, 593, 596, 622, 642, 671, 682, 688, 693], "reih": [3, 5, 8, 12, 31, 33, 34, 40, 42, 46, 52, 54, 57, 64, 67, 97, 106, 201, 213, 214, 250, 291, 306, 307, 321, 324, 369, 526, 545, 550, 572, 575, 577, 583, 590, 595, 597, 599, 601, 612, 622, 630, 634, 643, 644, 645, 646, 672, 673, 681, 682, 691, 693], "getriggert": [3, 12, 42, 153, 162, 168, 243, 263, 304, 316, 325, 381, 508, 562, 567, 572, 573, 577, 588, 590, 591, 593, 594, 595, 619, 641], "entlad": [3, 42, 590, 641, 671], "inclusiv": [3, 27, 106, 682], "alphabet": [3, 105], "sortiert": [3, 58, 93], "Nicht": [3, 167, 262, 373, 414, 488, 489, 511], "end": [3, 5, 12, 37, 42, 59, 60, 66, 71, 73, 79, 82, 83, 85, 92, 106, 116, 126, 133, 155, 165, 169, 170, 184, 189, 203, 213, 219, 227, 230, 260, 262, 268, 282, 287, 288, 289, 294, 304, 316, 318, 319, 321, 325, 326, 327, 328, 329, 330, 339, 340, 341, 347, 356, 357, 365, 381, 396, 507, 508, 561, 562, 563, 567, 585, 588, 591, 599, 624, 636, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 688, 691], "steh": [3, 25, 27, 31, 54, 56, 59, 60, 62, 67, 74, 76, 82, 83, 92, 93, 97, 100, 104, 112, 115, 116, 117, 123, 124, 162, 166, 169, 170, 189, 207, 210, 215, 233, 282, 285, 319, 326, 329, 330, 331, 332, 339, 340, 507, 508, 560, 570, 573, 576, 589, 592, 596, 599, 600, 633, 636, 641, 652, 653, 655, 656, 682, 685], "zwei": [3, 8, 12, 25, 43, 46, 47, 48, 53, 56, 58, 68, 71, 76, 79, 83, 88, 96, 97, 98, 103, 109, 111, 116, 121, 124, 162, 169, 171, 187, 192, 200, 230, 250, 255, 260, 263, 276, 283, 289, 293, 309, 310, 311, 314, 322, 323, 326, 328, 329, 331, 332, 333, 337, 338, 339, 340, 347, 351, 376, 381, 382, 383, 394, 401, 406, 424, 425, 442, 447, 449, 453, 460, 461, 462, 468, 475, 479, 480, 483, 485, 495, 498, 499, 501, 503, 510, 518, 519, 532, 545, 550, 566, 575, 577, 585, 595, 599, 601, 602, 603, 604, 607, 608, 609, 614, 629, 632, 636, 638, 671, 682, 683, 687], "auslos": [3, 71, 189, 223, 241, 243, 263, 321, 325, 326, 331, 332, 347, 508, 568, 570, 592, 594, 642], "aktion": [3, 52, 56, 62, 112, 124, 241, 244, 295, 316, 320, 321, 323, 325, 327, 328, 330, 331, 333, 338, 375, 386, 456, 458, 475, 508, 511, 562, 572, 573, 642], "oberhalb": [3, 55, 60, 165, 566, 575, 577], "2": [3, 12, 14, 20, 21, 43, 44, 45, 53, 54, 55, 56, 57, 58, 60, 61, 62, 71, 79, 83, 84, 85, 86, 92, 97, 103, 104, 106, 111, 112, 113, 116, 122, 130, 138, 141, 150, 154, 156, 157, 160, 161, 162, 163, 165, 166, 167, 169, 170, 173, 178, 179, 184, 186, 187, 189, 192, 193, 194, 195, 196, 198, 199, 200, 203, 205, 206, 207, 210, 211, 215, 216, 217, 223, 225, 227, 229, 231, 232, 239, 240, 245, 247, 248, 249, 252, 255, 257, 260, 262, 263, 270, 272, 273, 274, 279, 280, 281, 282, 283, 284, 288, 289, 290, 291, 293, 298, 299, 300, 303, 305, 306, 307, 308, 309, 310, 312, 313, 315, 320, 322, 323, 325, 326, 329, 331, 332, 333, 334, 335, 336, 337, 338, 341, 344, 347, 348, 352, 355, 356, 357, 359, 360, 361, 363, 366, 370, 371, 376, 381, 382, 396, 401, 406, 407, 414, 419, 429, 431, 433, 434, 436, 440, 442, 451, 453, 454, 458, 460, 461, 462, 471, 476, 477, 478, 479, 487, 489, 496, 498, 499, 503, 507, 508, 519, 523, 545, 548, 550, 552, 554, 558, 561, 562, 563, 566, 569, 574, 575, 585, 592, 595, 597, 598, 599, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 622, 629, 633, 634, 638, 639, 640, 641, 644, 646, 647, 649, 650, 652, 653, 654, 655, 656, 657, 663, 665, 666, 667, 670, 671, 672, 675, 682, 683, 686, 687], "systemlog": [3, 76], "eingeseh": [3, 97, 166, 169, 219], "10": [3, 12, 15, 16, 42, 52, 54, 55, 56, 66, 68, 71, 76, 77, 78, 79, 83, 86, 87, 88, 89, 91, 97, 103, 113, 115, 116, 125, 133, 141, 147, 155, 160, 163, 165, 167, 169, 173, 183, 185, 186, 189, 193, 194, 195, 196, 199, 200, 202, 207, 210, 211, 220, 227, 229, 233, 235, 237, 239, 240, 243, 247, 248, 249, 254, 255, 257, 261, 262, 263, 270, 271, 274, 278, 283, 288, 290, 292, 297, 304, 305, 306, 307, 308, 309, 314, 319, 322, 323, 325, 326, 328, 329, 330, 332, 334, 335, 338, 346, 351, 355, 356, 357, 360, 363, 365, 370, 381, 382, 397, 398, 407, 412, 413, 418, 420, 423, 434, 435, 440, 443, 450, 451, 452, 457, 461, 465, 486, 488, 492, 493, 496, 502, 507, 508, 511, 512, 524, 532, 537, 545, 550, 562, 566, 567, 568, 569, 570, 574, 575, 585, 588, 591, 592, 599, 622, 624, 628, 630, 636, 638, 648, 649, 651, 652, 653, 654, 657, 665, 671, 682, 683, 688], "ansicht": [3, 56, 189, 219], "gruppiert": [3, 117, 592, 600, 686, 693], "mindest": [3, 43, 47, 48, 52, 53, 62, 71, 79, 93, 103, 117, 168, 200, 207, 224, 260, 261, 262, 270, 271, 293, 295, 299, 314, 325, 326, 328, 332, 338, 369, 379, 498, 499, 592, 600], "zugeordnet": [3, 106, 117, 123, 166, 169, 170, 226, 232, 263, 306, 307, 325, 327, 460, 490, 528, 536, 556, 557, 592, 600, 693], "andert": [3, 12, 13, 42, 52, 93, 103, 108, 188, 260, 326, 328, 332, 338, 512, 561, 562, 567, 570, 572, 573, 576, 577, 591, 689], "flach": [3, 219, 292, 367, 599, 636], "aufklappbar": [3, 6], "and": [3, 13, 15, 16, 22, 25, 27, 28, 40, 42, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 64, 66, 67, 68, 69, 71, 79, 80, 82, 83, 85, 86, 87, 91, 92, 96, 103, 104, 106, 107, 109, 112, 113, 115, 116, 117, 120, 123, 124, 126, 127, 128, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 155, 156, 157, 158, 160, 161, 162, 164, 169, 173, 175, 176, 178, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 208, 213, 214, 215, 216, 217, 218, 219, 221, 224, 225, 227, 230, 231, 232, 234, 235, 236, 239, 240, 241, 243, 245, 247, 248, 249, 251, 253, 254, 256, 257, 258, 259, 260, 261, 263, 264, 267, 268, 269, 273, 274, 275, 281, 282, 283, 288, 289, 290, 293, 294, 296, 301, 303, 304, 305, 306, 307, 308, 309, 312, 314, 315, 317, 318, 324, 325, 326, 327, 328, 329, 330, 331, 332, 334, 339, 340, 341, 342, 344, 345, 352, 353, 355, 356, 357, 358, 359, 360, 361, 365, 367, 368, 370, 376, 381, 395, 396, 397, 413, 426, 427, 434, 457, 470, 487, 496, 498, 499, 507, 508, 512, 513, 523, 531, 534, 536, 545, 552, 554, 555, 561, 562, 563, 564, 565, 567, 571, 572, 573, 575, 576, 577, 579, 580, 585, 586, 591, 592, 593, 594, 595, 596, 597, 598, 603, 610, 612, 613, 615, 616, 617, 618, 619, 623, 624, 625, 632, 633, 635, 638, 641, 642, 643, 644, 645, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 668, 669, 670, 671, 675, 677, 678, 681, 682, 686, 687, 688, 691, 693], "konfiguri": [3, 20, 27, 82, 92, 94, 111, 116, 119, 188, 200, 255, 289, 293, 306, 307, 314, 329, 423, 457, 566, 627, 671, 682, 684, 693], "ausfuhr": [3, 10, 25, 31, 32, 33, 34, 42, 47, 52, 54, 55, 58, 62, 68, 82, 83, 92, 97, 103, 111, 117, 162, 163, 168, 170, 189, 200, 203, 212, 213, 214, 222, 223, 255, 282, 326, 327, 330, 331, 332, 347, 369, 398, 410, 452, 512, 519, 545, 554, 565, 573, 588, 591, 592, 593, 594, 600, 625, 628, 635, 688], "steu": [3, 8, 42, 54, 55, 67, 103, 153, 166, 174, 196, 215, 276, 282, 283, 349, 425, 452, 495, 508, 512, 533, 536, 545, 550, 558, 587, 590, 619], "klick": [3, 8, 22, 47, 56, 76, 93, 94, 95, 164, 187, 200, 203, 212, 213, 226, 258, 259, 291, 292, 320, 321, 337, 347, 373, 527, 585, 638, 671], "entsprech": [3, 4, 12, 13, 27, 28, 31, 33, 34, 42, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 60, 62, 76, 77, 79, 81, 83, 84, 85, 89, 90, 92, 97, 98, 103, 104, 112, 113, 115, 116, 121, 123, 124, 154, 162, 164, 165, 168, 169, 170, 171, 178, 179, 184, 187, 188, 189, 192, 194, 196, 200, 203, 204, 207, 210, 212, 213, 217, 219, 220, 226, 229, 232, 233, 237, 243, 249, 250, 252, 255, 256, 261, 262, 263, 265, 266, 268, 271, 285, 287, 289, 293, 295, 302, 306, 307, 309, 311, 313, 314, 316, 324, 325, 326, 327, 328, 329, 330, 331, 332, 336, 337, 338, 347, 348, 349, 351, 357, 360, 363, 366, 371, 373, 403, 423, 434, 440, 462, 471, 511, 519, 527, 561, 562, 563, 566, 569, 573, 583, 584, 585, 588, 591, 592, 593, 594, 599, 612, 622, 625, 628, 630, 632, 633, 634, 638, 641, 672, 682, 687, 688], "erfass": [3, 224, 434, 577], "aktivi": [3, 5, 22, 45, 58, 68, 95, 98, 119, 121, 122, 162, 164, 203, 204, 207, 255, 259, 263, 285, 289, 300, 325, 327, 347, 369, 381, 412, 419, 420, 441, 449, 508, 519, 536, 566, 612, 615, 616, 629, 693], "deaktivi": [3, 45, 58, 121, 122, 323, 328, 347, 449, 457, 519, 615, 616, 630], "lad": [3, 24, 42, 43, 52, 53, 56, 58, 97, 111, 115, 123, 162, 164, 203, 219, 230, 314, 329, 381, 475, 566, 567, 590, 591, 606, 610, 628, 635, 638, 641, 671, 672, 674, 682], "hinzugekomm": [3, 64, 97, 291, 314, 337, 618, 682, 693], "verschied": [3, 36, 43, 53, 56, 58, 68, 74, 78, 79, 85, 92, 97, 98, 106, 116, 159, 162, 166, 169, 172, 187, 188, 189, 192, 200, 223, 243, 255, 262, 270, 271, 279, 287, 289, 293, 302, 306, 307, 316, 326, 328, 329, 330, 331, 333, 397, 401, 450, 476, 536, 545, 550, 560, 569, 573, 592, 596, 601, 602, 603, 604, 606, 607, 608, 609, 610, 630, 686], "trigg": [3, 18, 20, 42, 54, 55, 60, 66, 71, 127, 133, 137, 146, 147, 160, 162, 173, 180, 185, 192, 199, 205, 220, 227, 232, 241, 243, 248, 254, 256, 257, 262, 263, 288, 294, 295, 302, 304, 315, 321, 326, 329, 332, 338, 352, 356, 357, 360, 368, 393, 395, 458, 483, 484, 522, 567, 569, 570, 571, 572, 573, 576, 590, 591, 592, 595, 623, 624, 632, 641, 643, 646, 648, 649, 650, 651, 652, 655, 660, 663, 666, 670, 674, 686], "zuordnung": [3, 15, 62, 124, 169, 241, 306, 307, 314, 339, 340, 412, 446, 463, 621, 622, 687, 693], "mehr": [3, 12, 16, 27, 43, 45, 52, 53, 56, 62, 67, 70, 71, 76, 79, 80, 83, 86, 92, 94, 95, 103, 105, 106, 111, 114, 115, 116, 117, 121, 123, 125, 163, 166, 169, 170, 178, 181, 184, 187, 188, 189, 192, 194, 200, 203, 212, 213, 219, 222, 224, 229, 230, 241, 243, 249, 250, 256, 260, 261, 262, 263, 268, 270, 271, 287, 289, 293, 299, 300, 308, 309, 314, 319, 322, 323, 324, 325, 326, 328, 330, 332, 333, 339, 340, 349, 351, 354, 366, 367, 370, 373, 381, 382, 396, 397, 400, 408, 412, 418, 419, 420, 422, 432, 434, 435, 441, 459, 460, 461, 464, 467, 486, 490, 491, 495, 506, 508, 512, 545, 548, 549, 550, 551, 558, 561, 562, 563, 566, 573, 575, 576, 583, 585, 589, 591, 592, 595, 596, 597, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 615, 621, 622, 630, 634, 638, 641, 642, 646, 649, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675, 686, 687, 688, 690, 693], "gekomm": 3, "eintrag": [3, 4, 8, 20, 22, 24, 25, 42, 43, 48, 50, 51, 52, 53, 58, 60, 69, 71, 83, 86, 89, 92, 97, 98, 103, 106, 107, 111, 116, 117, 120, 123, 155, 162, 163, 167, 168, 169, 181, 184, 187, 188, 189, 200, 203, 217, 219, 232, 243, 244, 256, 262, 263, 268, 271, 293, 295, 304, 306, 307, 314, 321, 322, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 347, 349, 351, 373, 377, 380, 381, 382, 396, 398, 434, 446, 453, 463, 506, 519, 521, 545, 547, 548, 550, 552, 554, 558, 561, 563, 575, 583, 585, 592, 594, 595, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 625, 626, 632, 641, 642, 682, 686, 688], "sollen": [3, 25, 37, 43, 45, 52, 53, 58, 62, 67, 70, 71, 79, 81, 83, 84, 90, 95, 98, 103, 105, 106, 112, 115, 116, 120, 121, 123, 124, 170, 178, 187, 188, 200, 207, 223, 226, 230, 243, 249, 250, 261, 263, 304, 308, 309, 325, 326, 328, 329, 331, 332, 339, 340, 347, 351, 375, 379, 381, 382, 394, 396, 398, 405, 416, 422, 423, 427, 428, 450, 457, 460, 462, 468, 484, 508, 510, 511, 513, 516, 528, 532, 534, 561, 562, 584, 589, 593, 595, 596, 601, 602, 603, 604, 607, 608, 609, 615, 630, 641, 682, 692], "trenn": [3, 68, 568, 570], "sekund": [3, 13, 15, 16, 42, 52, 58, 119, 131, 162, 165, 169, 170, 178, 188, 192, 207, 219, 233, 282, 283, 285, 299, 300, 306, 307, 308, 309, 314, 323, 325, 326, 328, 331, 332, 337, 347, 351, 376, 378, 379, 381, 382, 383, 386, 388, 392, 393, 394, 396, 398, 400, 401, 406, 407, 408, 414, 415, 416, 419, 420, 423, 431, 434, 435, 437, 438, 441, 448, 449, 452, 453, 459, 460, 461, 464, 467, 468, 475, 476, 477, 478, 479, 481, 482, 485, 486, 492, 493, 494, 495, 498, 499, 501, 503, 504, 508, 509, 511, 512, 514, 515, 516, 518, 520, 522, 527, 530, 532, 537, 562, 567, 568, 569, 570, 574, 575, 585, 591, 592, 599, 634], "vorschlag": [3, 57, 200, 586], "autovervollstand": 3, "eingab": [3, 119, 255, 338, 498, 499, 574, 577], "erst": [3, 4, 5, 8, 12, 13, 15, 42, 46, 48, 50, 51, 52, 53, 58, 60, 67, 69, 71, 77, 79, 80, 82, 83, 85, 86, 92, 94, 96, 97, 102, 116, 121, 163, 164, 165, 167, 169, 179, 184, 189, 192, 200, 210, 212, 213, 215, 220, 230, 232, 252, 255, 256, 261, 262, 263, 265, 266, 268, 282, 289, 292, 293, 295, 302, 306, 307, 310, 313, 316, 321, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 339, 340, 348, 349, 351, 359, 362, 366, 378, 379, 382, 398, 399, 434, 495, 508, 545, 550, 563, 567, 572, 573, 576, 583, 585, 591, 592, 595, 596, 599, 601, 603, 610, 618, 625, 628, 629, 634, 636, 638, 641, 682, 687, 688, 689], "3": [3, 12, 14, 15, 16, 18, 20, 30, 43, 44, 46, 48, 52, 53, 54, 55, 56, 57, 58, 64, 66, 71, 78, 80, 82, 83, 86, 90, 92, 100, 103, 104, 106, 107, 111, 112, 113, 115, 117, 119, 121, 122, 125, 137, 138, 141, 147, 152, 154, 157, 160, 163, 165, 167, 169, 170, 172, 175, 178, 179, 187, 189, 191, 192, 195, 196, 198, 199, 200, 201, 202, 205, 207, 210, 211, 212, 216, 219, 227, 229, 230, 231, 232, 238, 239, 247, 249, 251, 254, 255, 257, 260, 261, 262, 263, 264, 265, 266, 267, 270, 279, 281, 282, 283, 284, 285, 288, 289, 293, 294, 299, 300, 305, 306, 307, 308, 309, 310, 312, 313, 320, 325, 328, 329, 331, 332, 334, 336, 337, 338, 339, 340, 341, 342, 343, 352, 355, 356, 357, 358, 359, 360, 361, 363, 365, 374, 381, 382, 387, 388, 389, 393, 396, 398, 400, 401, 406, 408, 410, 412, 413, 414, 417, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 448, 450, 451, 452, 453, 459, 460, 461, 462, 464, 467, 471, 477, 479, 487, 489, 494, 496, 504, 507, 508, 511, 512, 513, 515, 522, 523, 524, 525, 526, 531, 534, 536, 537, 538, 545, 548, 550, 554, 558, 561, 563, 566, 569, 573, 575, 577, 585, 586, 592, 594, 595, 598, 600, 603, 606, 610, 612, 613, 616, 622, 624, 628, 629, 630, 633, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 657, 662, 665, 667, 675, 678, 682, 686, 687, 691, 693], "Mit": [3, 4, 12, 25, 27, 46, 52, 64, 82, 83, 85, 86, 87, 97, 103, 106, 108, 112, 116, 155, 156, 162, 166, 169, 178, 189, 192, 194, 203, 212, 213, 223, 229, 230, 232, 256, 260, 262, 263, 265, 272, 289, 292, 293, 302, 303, 304, 306, 307, 310, 314, 319, 326, 331, 332, 338, 349, 351, 354, 360, 382, 406, 416, 434, 508, 530, 532, 563, 565, 573, 574, 577, 583, 584, 585, 591, 596, 630, 643, 644, 645, 646, 650, 671, 686, 688, 689, 690, 691, 692], "pfeiltast": 3, "navigiert": [3, 4], "ent": [3, 44, 54, 55, 71, 88, 113, 122, 180, 199, 218, 282, 283, 297, 315, 323, 325, 326, 328, 329, 330, 331, 333, 361, 365, 613, 616, 655], "auswahl": [3, 5, 22, 82, 85, 94, 95, 96, 169, 226, 229, 272, 338, 369, 378, 452, 472, 536, 682], "hinzugefugt": [3, 5, 43, 53, 56, 58, 60, 62, 95, 97, 106, 115, 123, 162, 169, 184, 215, 238, 249, 262, 268, 295, 325, 326, 332, 351, 359, 423, 561, 563, 603, 608, 610, 641, 642, 650, 671, 672, 673, 674, 675, 683], "bedarf": [3, 31, 32, 52, 54, 55, 58, 62, 96, 109, 115, 118, 120, 168, 238, 255, 262, 263, 271, 306, 307, 328, 329, 330, 331, 332, 370, 381, 423, 563, 593, 622, 625, 630], "logeintrag": [4, 42, 58, 71, 83, 115, 116, 170, 243, 263, 293, 306, 307, 322, 382, 396, 446, 463, 545, 554, 575, 577, 583, 588, 593, 641, 682], "anzuzeig": [4, 54, 55, 56, 59, 60, 62, 85, 116, 156, 187, 289, 303, 339, 340, 347, 396, 406, 496, 513, 523, 545, 554, 585, 612, 641, 683], "drop": [4, 93, 130, 187, 226, 288, 486], "down": [4, 45, 52, 54, 55, 66, 93, 198, 200, 202, 226, 231, 248, 412, 433, 615, 624, 643, 646, 662], "daneb": [4, 682], "zeitrahm": [4, 287, 423], "vergang": [4, 215, 262, 398, 599, 634], "timedrotatingfilehandl": [4, 107, 115, 116, 136, 232, 322, 585], "aktualisi": [4, 58, 62, 68, 76, 92, 346, 373, 381, 396, 453, 569, 573, 592, 630], "angefordert": [4, 28, 52, 58, 155, 162, 302, 304, 351, 354, 515, 532, 682], "zweit": [4, 8, 13, 15, 37, 42, 50, 58, 71, 83, 97, 121, 162, 163, 164, 184, 187, 192, 210, 212, 213, 220, 230, 232, 244, 250, 252, 255, 261, 263, 265, 268, 289, 302, 310, 316, 325, 326, 328, 330, 331, 347, 348, 351, 363, 366, 398, 434, 496, 523, 572, 576, 595, 599, 629, 636, 682, 686, 689], "gefiltert": [4, 170, 382], "freitextfilt": 4, "filt": [4, 15, 31, 33, 34, 44, 52, 54, 56, 60, 66, 107, 138, 170, 183, 195, 229, 232, 241, 250, 263, 274, 322, 365, 382, 414, 533, 613, 624, 643, 646, 652, 653, 655, 671], "cas": [4, 15, 42, 43, 45, 52, 53, 54, 55, 66, 123, 130, 136, 140, 148, 152, 160, 165, 173, 183, 186, 195, 208, 211, 218, 245, 248, 262, 274, 278, 290, 294, 301, 305, 344, 355, 368, 601, 602, 604, 607, 608, 609, 615, 623, 624, 625, 643, 645, 646, 649, 650, 651, 652, 654, 655, 670], "sensitiv": [4, 42, 43, 53, 123, 160, 294, 359, 601, 602, 604, 607, 608, 609, 625], "zusatz": [4, 22, 36, 42, 43, 50, 52, 58, 60, 62, 63, 66, 71, 78, 79, 82, 84, 86, 91, 92, 97, 103, 104, 106, 109, 110, 115, 153, 155, 170, 171, 172, 178, 179, 188, 200, 212, 213, 215, 219, 220, 222, 223, 250, 256, 261, 271, 282, 285, 289, 293, 304, 306, 307, 314, 321, 322, 324, 328, 329, 338, 351, 363, 369, 370, 371, 373, 396, 401, 423, 427, 428, 453, 463, 485, 528, 534, 545, 548, 550, 552, 554, 558, 563, 566, 569, 575, 576, 577, 584, 585, 589, 590, 592, 593, 594, 617, 620, 622, 623, 624, 641, 642, 671, 674, 689, 693], "level": [4, 45, 53, 71, 76, 83, 100, 106, 107, 112, 113, 116, 123, 126, 133, 134, 136, 142, 155, 160, 169, 170, 178, 179, 180, 183, 189, 195, 200, 212, 213, 227, 232, 243, 247, 248, 254, 255, 257, 262, 263, 270, 271, 293, 304, 314, 318, 320, 322, 329, 336, 352, 355, 356, 357, 368, 382, 439, 446, 454, 463, 561, 566, 575, 577, 583, 585, 588, 593, 603, 615, 618, 638, 642, 643, 645, 646, 648, 649, 651, 652, 653, 654, 655, 663, 683, 686], "ganz": [4, 62, 79, 82, 92, 97, 102, 106, 115, 162, 169, 192, 203, 233, 260, 282, 306, 307, 321, 328, 333, 339, 340, 401, 599, 622, 630, 636, 637, 681, 688, 693], "sond": [4, 5, 15, 52, 62, 67, 79, 87, 97, 98, 102, 103, 110, 115, 164, 169, 192, 212, 213, 223, 238, 260, 263, 314, 321, 326, 328, 329, 330, 332, 333, 401, 453, 508, 554, 555, 566, 571, 573, 585, 593, 595, 596, 597, 599, 622, 634, 649, 672, 682, 686, 688], "stuck": 4, "chunk": [4, 141, 612, 655], "standardmass": [4, 12, 44, 53, 58, 62, 64, 68, 79, 82, 83, 84, 85, 93, 115, 116, 119, 120, 123, 184, 194, 222, 230, 256, 263, 268, 272, 289, 292, 314, 320, 325, 326, 329, 351, 457, 496, 508, 523, 563, 566, 568, 570, 580, 584, 585, 594, 613, 622, 630, 682, 690], "1000": [4, 58, 71, 119, 164, 189, 218, 219, 221, 234, 249, 262, 277, 278, 279, 298, 337, 344, 396, 440, 476, 477, 545, 548, 612, 648, 653, 688], "lang": [4, 43, 47, 52, 53, 58, 92, 93, 131, 169, 192, 203, 213, 219, 226, 230, 261, 314, 328, 329, 362, 370, 381, 419, 420, 453, 504, 513, 522, 533, 601, 602, 604, 607, 608, 609, 635, 671, 673, 675], "traceback": [4, 42, 44, 45, 136, 157, 158, 613, 615], "hierbei": [4, 8, 25, 42, 56, 80, 85, 97, 98, 106, 112, 116, 162, 184, 187, 191, 201, 255, 259, 264, 267, 268, 289, 314, 319, 322, 333, 360, 490, 507, 566, 576, 589, 599, 636, 682], "zusamm": [4, 69, 113, 223, 287, 325, 332, 573, 576, 586, 622, 678, 682, 686], "gezahlt": 4, "gewahlt": [4, 12, 22, 42, 48, 50, 52, 58, 61, 62, 73, 82, 85, 86, 95, 100, 106, 123, 131, 187, 189, 192, 194, 203, 212, 213, 219, 262, 272, 289, 326, 347, 395, 419, 420, 465, 479, 487, 506, 508, 563, 622, 682, 690, 693], "weit": [4, 5, 8, 16, 25, 32, 43, 48, 50, 52, 53, 54, 55, 56, 57, 60, 62, 68, 71, 80, 81, 82, 84, 85, 87, 91, 92, 97, 98, 100, 104, 105, 106, 107, 109, 112, 114, 115, 116, 117, 120, 123, 125, 131, 153, 162, 164, 169, 174, 178, 179, 184, 192, 200, 203, 207, 210, 212, 213, 215, 217, 223, 232, 233, 238, 244, 262, 263, 265, 268, 271, 279, 285, 289, 295, 306, 307, 311, 314, 319, 323, 328, 329, 330, 331, 333, 334, 337, 338, 345, 351, 354, 359, 362, 363, 370, 371, 373, 419, 427, 428, 440, 532, 534, 561, 564, 565, 566, 570, 573, 574, 575, 576, 578, 584, 585, 587, 589, 591, 592, 593, 594, 596, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 614, 619, 625, 628, 630, 636, 638, 641, 642, 671, 674, 682, 685, 686, 688, 693], "zuruck": [4, 47, 52, 67, 90, 156, 162, 164, 165, 170, 187, 189, 219, 228, 262, 263, 289, 303, 304, 314, 325, 326, 328, 332, 338, 351, 376, 377, 382, 394, 396, 398, 400, 411, 416, 441, 455, 460, 464, 467, 468, 479, 486, 510, 520, 522, 530, 562, 563, 565, 567, 574, 591, 599, 634, 636, 641, 671, 674], "gesprung": 4, "je": [4, 25, 42, 48, 53, 67, 82, 83, 115, 123, 131, 187, 189, 192, 204, 207, 212, 213, 219, 226, 230, 250, 261, 263, 306, 307, 326, 328, 330, 331, 333, 334, 369, 373, 412, 423, 495, 508, 550, 551, 569, 585, 592, 610, 632, 641], "moment": [4, 57, 126, 134, 142, 162, 173, 202, 248, 281, 423, 572, 612, 652, 655], "dau": [4, 8, 12, 56, 58, 170, 187, 203, 207, 210, 224, 261, 319, 328, 329, 330, 351, 370, 381, 415, 417, 453, 504, 508, 562, 568, 570, 571, 574, 577, 628], "hintergrund": [4, 58, 79, 83, 289, 632, 635, 641], "gesamt": [4, 58, 62, 82, 97, 103, 105, 106, 154, 165, 172, 189, 325, 326, 331, 332, 337, 347, 354, 360, 436, 443, 453, 526, 561, 563, 575, 577, 586, 612, 621, 674, 682, 683], "geles": [4, 13, 27, 58, 98, 100, 103, 106, 119, 155, 192, 212, 213, 219, 265, 304, 310, 328, 351, 381, 396, 400, 405, 408, 428, 434, 435, 441, 452, 464, 467, 470, 485, 489, 497, 507, 522, 537, 596, 612], "halb": [4, 8, 52, 83, 92, 103, 326], "vier": [4, 8, 96, 167, 169, 191, 201, 264, 267, 289, 324, 325, 327, 362, 458, 585], "verteilt": [4, 94, 97, 103, 114, 370], "verandert": [4, 13, 24, 52, 60, 96, 112, 125, 162, 189, 219, 262, 316, 326, 332, 347, 349, 351, 360, 396, 490, 562, 563, 567, 571, 573, 575, 576, 577, 580, 591, 596, 638], "ohn": [4, 5, 22, 24, 27, 28, 42, 46, 50, 54, 55, 58, 71, 76, 77, 79, 80, 82, 83, 84, 95, 97, 103, 106, 111, 115, 116, 118, 120, 121, 122, 123, 124, 162, 164, 187, 189, 192, 196, 203, 212, 213, 215, 225, 230, 232, 244, 249, 256, 260, 261, 262, 263, 265, 283, 289, 293, 314, 321, 326, 328, 332, 337, 338, 351, 359, 363, 370, 376, 381, 445, 494, 496, 506, 508, 523, 527, 552, 553, 561, 562, 565, 569, 571, 572, 573, 574, 575, 576, 585, 589, 590, 591, 592, 598, 599, 610, 630, 634, 642, 671, 674, 685, 688, 693], "spalt": [4, 8, 31, 33, 34, 52, 54, 58, 60, 93, 170, 179, 184, 187, 192, 200, 204, 210, 212, 213, 220, 224, 232, 249, 250, 252, 255, 265, 266, 268, 289, 302, 309, 311, 314, 320, 337, 348, 349, 357, 360, 366, 396, 545, 547, 548, 550, 552, 554, 558, 597], "logfil": [4, 43, 53, 92, 102, 107, 115, 116, 138, 196, 200, 232, 255, 328, 397, 407, 456, 458, 463, 519, 545, 554, 595, 604, 608, 612, 653, 670, 674], "s": [4, 12, 14, 15, 27, 40, 44, 45, 47, 52, 53, 54, 55, 66, 67, 71, 82, 88, 92, 96, 103, 104, 107, 111, 115, 116, 130, 131, 133, 134, 137, 139, 141, 142, 147, 148, 149, 151, 157, 158, 159, 160, 164, 169, 170, 173, 176, 177, 180, 186, 188, 192, 195, 196, 199, 200, 205, 210, 211, 217, 219, 232, 235, 245, 248, 249, 253, 254, 255, 257, 262, 263, 273, 274, 278, 279, 281, 282, 283, 284, 288, 292, 293, 305, 309, 315, 328, 334, 337, 338, 351, 352, 353, 369, 370, 378, 400, 407, 408, 462, 464, 467, 489, 535, 545, 550, 568, 570, 584, 585, 595, 599, 609, 612, 613, 615, 618, 624, 633, 634, 635, 641, 645, 646, 649, 650, 651, 653, 655, 670, 672, 674, 682], "verzweigt": 4, "Aus": [4, 79, 100, 103, 106, 112, 162, 165, 170, 172, 192, 241, 263, 283, 314, 323, 334, 338, 349, 370, 382, 434, 449, 470, 488, 518, 563, 573, 595, 672, 674, 688], "geht": [4, 13, 71, 85, 92, 103, 115, 276, 347, 576, 596, 688], "hervor": 4, "handl": [4, 62, 63, 66, 107, 116, 133, 136, 141, 160, 188, 200, 232, 243, 245, 263, 288, 322, 352, 353, 356, 357, 368, 407, 583, 593, 612, 616, 620, 623, 624, 638, 641, 646, 649, 652, 655, 665], "geschrieb": [4, 8, 13, 27, 43, 52, 53, 89, 98, 100, 103, 115, 116, 123, 124, 162, 165, 167, 187, 188, 189, 223, 232, 243, 255, 261, 263, 270, 271, 289, 293, 295, 313, 319, 322, 326, 328, 332, 338, 347, 351, 396, 397, 400, 408, 415, 427, 428, 434, 435, 441, 446, 458, 462, 463, 464, 467, 485, 489, 490, 495, 497, 506, 507, 508, 519, 527, 532, 537, 567, 571, 573, 575, 584, 585, 591, 593, 594, 597, 601, 602, 603, 604, 608, 609, 621, 632, 638, 674, 689, 690], "sieh": [4, 12, 31, 33, 34, 52, 54, 58, 67, 68, 71, 76, 79, 85, 87, 97, 115, 162, 163, 164, 167, 168, 170, 171, 178, 188, 189, 192, 197, 200, 219, 238, 244, 249, 250, 255, 260, 261, 262, 263, 276, 314, 319, 323, 325, 326, 329, 330, 331, 337, 338, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 558, 567, 573, 577, 589, 591, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 672, 674, 675, 688, 691, 692, 693], "abschnitt": [4, 8, 10, 12, 22, 31, 32, 36, 42, 43, 47, 50, 52, 53, 54, 55, 59, 61, 65, 78, 79, 83, 87, 89, 93, 94, 96, 97, 98, 103, 104, 106, 109, 110, 111, 115, 116, 117, 121, 123, 125, 164, 168, 178, 223, 232, 263, 292, 302, 316, 324, 496, 545, 546, 556, 557, 564, 566, 573, 579, 582, 583, 585, 586, 587, 592, 593, 594, 596, 597, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 619, 621, 625, 626, 627, 629, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 689, 691, 693], "seh": [4, 89, 90, 97, 106, 115, 116, 164, 166, 169, 170, 187, 210, 232, 244, 276, 289, 295, 320, 324, 328, 371, 416, 683], "warning": [4, 42, 52, 66, 71, 72, 76, 83, 89, 92, 107, 115, 116, 119, 125, 126, 127, 136, 140, 143, 148, 149, 155, 179, 183, 203, 211, 243, 248, 256, 262, 263, 269, 273, 274, 293, 296, 304, 322, 356, 357, 434, 463, 469, 491, 575, 584, 585, 588, 589, 593, 595, 612, 624, 638, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 681], "hoh": [4, 12, 44, 54, 55, 76, 79, 86, 88, 115, 116, 169, 170, 191, 201, 219, 220, 224, 260, 261, 267, 314, 323, 326, 328, 329, 330, 331, 332, 378, 391, 410, 453, 460, 488, 506, 514, 545, 554, 561, 599, 613, 636, 638, 682], "schreibt": [4, 83, 103, 116, 170, 187, 196, 223, 263, 295, 338, 394, 463, 468, 490], "abweich": [4, 12, 82, 170, 219, 263, 272, 328, 330, 331, 486, 487, 508, 566, 595], "davon": [4, 52, 62, 71, 83, 92, 106, 162, 184, 268, 306, 307, 325, 327, 330, 382, 508, 561, 622], "a_testlogic2": 4, "infos": [4, 44, 103, 164, 169, 207, 300, 338, 359, 412, 455, 460, 516, 545, 548, 550, 552, 554, 558, 593, 613, 646, 649], "loggt": [4, 116, 210, 434, 588], "standardhandl": [4, 115], "a_testlogic3": 4, "auss": [4, 5, 25, 68, 83, 100, 106, 114, 116, 120, 123, 169, 189, 287, 293, 328, 338, 339, 340, 454, 490, 562, 563, 566, 584, 585, 599, 622, 630, 634, 651, 652, 653, 654, 656, 682, 688], "loglevel": [4, 83, 116, 189, 200, 232, 243, 256, 263, 293, 320, 322, 337, 434, 451, 463, 508, 575, 577, 584, 593, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655], "sorgt": [4, 51, 52, 60, 83, 162, 263, 289, 330, 360, 381, 508, 562, 567, 570, 571, 573, 591, 592, 625, 641], "dafur": [4, 13, 42, 51, 58, 60, 62, 71, 76, 82, 83, 86, 92, 106, 112, 212, 213, 232, 237, 263, 285, 289, 330, 336, 338, 360, 381, 461, 504, 508, 562, 567, 571, 573, 588, 589, 591, 593, 621, 641], "gleich": [4, 12, 42, 52, 68, 82, 83, 84, 103, 112, 131, 162, 169, 172, 187, 189, 192, 212, 213, 230, 243, 256, 262, 265, 289, 293, 324, 325, 326, 328, 329, 330, 332, 333, 339, 340, 363, 401, 407, 504, 513, 519, 566, 571, 573, 576, 583, 585, 589, 596, 597, 632, 641, 642, 687, 688], "standard": [4, 36, 39, 44, 45, 46, 54, 55, 58, 60, 63, 66, 78, 82, 83, 84, 103, 106, 111, 113, 115, 119, 120, 121, 122, 129, 136, 147, 148, 157, 158, 186, 187, 195, 212, 213, 222, 226, 227, 234, 248, 256, 262, 263, 265, 272, 314, 320, 323, 328, 342, 359, 360, 363, 365, 368, 370, 375, 381, 396, 397, 400, 408, 416, 434, 435, 441, 446, 448, 450, 463, 464, 467, 479, 485, 486, 487, 492, 495, 508, 515, 527, 530, 532, 537, 545, 554, 564, 566, 573, 576, 585, 589, 598, 613, 615, 617, 620, 622, 624, 630, 641, 643, 644, 646, 647, 652, 653, 655, 656, 674, 682, 688, 693], "editiert": 4, "wirksam": [4, 27, 82, 83, 86, 96, 116], "icon": [5, 21, 85, 164, 170, 179, 184, 187, 192, 200, 204, 206, 210, 212, 213, 219, 220, 228, 229, 232, 249, 252, 253, 255, 262, 265, 266, 268, 284, 289, 294, 302, 309, 311, 314, 320, 348, 349, 352, 357, 359, 360, 361, 365, 366, 641, 644, 649, 651, 652, 653, 655, 682, 683, 686, 687], "web": [5, 44, 45, 48, 50, 52, 53, 54, 55, 58, 60, 66, 78, 82, 110, 120, 160, 161, 163, 175, 176, 195, 198, 203, 208, 227, 257, 292, 309, 329, 352, 355, 373, 374, 375, 376, 388, 394, 396, 411, 416, 417, 423, 425, 430, 431, 444, 445, 455, 460, 462, 468, 471, 472, 473, 479, 491, 502, 503, 505, 507, 510, 512, 516, 520, 527, 528, 529, 530, 532, 537, 545, 550, 610, 612, 613, 615, 616, 624, 625, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 669, 671, 672, 674, 691], "interfac": [5, 8, 14, 40, 44, 45, 48, 50, 52, 53, 54, 55, 58, 60, 66, 70, 71, 78, 85, 86, 87, 92, 93, 96, 98, 108, 110, 111, 113, 117, 118, 119, 120, 121, 122, 151, 152, 154, 163, 168, 175, 180, 193, 194, 195, 196, 198, 208, 225, 227, 247, 254, 257, 260, 292, 300, 305, 309, 319, 328, 329, 335, 344, 352, 355, 373, 376, 377, 378, 380, 381, 382, 383, 387, 388, 389, 391, 392, 393, 396, 399, 400, 403, 405, 406, 408, 409, 412, 413, 414, 415, 416, 417, 421, 422, 424, 426, 427, 429, 432, 433, 434, 435, 436, 437, 438, 439, 441, 442, 443, 448, 449, 456, 458, 459, 460, 464, 467, 469, 470, 478, 479, 480, 481, 482, 484, 488, 492, 493, 494, 495, 497, 500, 503, 509, 514, 517, 518, 522, 525, 526, 528, 533, 535, 536, 545, 548, 554, 558, 560, 562, 567, 569, 591, 592, 598, 600, 610, 611, 612, 613, 615, 616, 617, 623, 624, 625, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 665, 666, 671, 686, 691], "dokumentation": [5, 10, 14, 27, 31, 32, 33, 34, 38, 41, 43, 48, 50, 53, 56, 64, 74, 84, 85, 96, 97, 103, 109, 110, 115, 121, 123, 153, 159, 162, 163, 168, 179, 187, 196, 197, 214, 215, 228, 232, 249, 250, 256, 259, 261, 270, 271, 276, 277, 284, 291, 306, 307, 309, 311, 314, 319, 323, 325, 326, 337, 339, 340, 343, 359, 360, 363, 369, 373, 458, 461, 507, 545, 547, 548, 550, 552, 554, 558, 563, 577, 579, 584, 601, 602, 604, 606, 607, 608, 609, 610, 611, 614, 619, 621, 626, 684, 685, 687, 688, 693], "aufgeruf": [5, 15, 37, 44, 46, 50, 51, 52, 54, 55, 64, 83, 90, 92, 102, 103, 113, 120, 125, 131, 162, 170, 179, 184, 187, 192, 200, 204, 210, 212, 213, 219, 220, 232, 241, 243, 249, 252, 255, 261, 265, 266, 268, 272, 283, 289, 302, 309, 311, 313, 314, 328, 338, 348, 349, 351, 357, 360, 366, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 591, 595, 599, 613, 629, 630, 632, 634, 638, 681, 687, 693], "weitergeh": [5, 48, 84, 106, 114, 229, 291, 681, 689], "support": [5, 45, 50, 53, 54, 55, 61, 66, 79, 98, 104, 110, 130, 134, 135, 151, 160, 169, 173, 175, 179, 183, 186, 205, 209, 211, 218, 219, 223, 227, 230, 235, 236, 239, 247, 254, 258, 270, 271, 273, 275, 278, 280, 281, 293, 301, 344, 345, 355, 356, 357, 368, 414, 587, 595, 610, 615, 616, 618, 624, 627, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 665, 666, 667, 670, 671, 672, 692], "thread": [5, 8, 12, 40, 44, 45, 52, 53, 55, 58, 66, 71, 83, 98, 103, 113, 116, 120, 136, 140, 141, 142, 143, 144, 145, 147, 155, 160, 169, 180, 181, 182, 198, 218, 227, 234, 239, 243, 245, 249, 253, 257, 260, 293, 298, 301, 304, 335, 344, 356, 357, 364, 365, 414, 446, 463, 512, 580, 610, 612, 613, 615, 616, 618, 624, 641, 643, 644, 645, 646, 647, 650, 651, 652, 653, 655, 656, 660, 663, 671], "forum": [5, 12, 53, 54, 55, 71, 78, 92, 98, 164, 169, 170, 182, 186, 198, 205, 218, 227, 234, 239, 245, 253, 257, 260, 278, 280, 293, 298, 301, 315, 335, 341, 344, 352, 353, 355, 356, 357, 364, 365, 414, 610, 643, 644, 645, 647, 649, 651, 666, 691], "relevant": [5, 31, 33, 34, 52, 54, 58, 60, 63, 106, 115, 116, 169, 184, 191, 192, 201, 246, 250, 264, 267, 268, 322, 323, 324, 325, 328, 339, 340, 347, 381, 519, 620, 623, 643, 688], "blog": [5, 17, 45, 98, 344, 347, 615, 643, 646, 649, 674], "artikel": [5, 46, 68, 98, 305, 434], "webinterfac": [5, 27, 31, 33, 34, 43, 44, 48, 50, 53, 59, 61, 66, 74, 79, 120, 123, 151, 164, 165, 166, 169, 171, 181, 189, 198, 199, 204, 214, 215, 222, 223, 229, 231, 232, 237, 247, 250, 254, 260, 262, 276, 277, 285, 287, 291, 306, 307, 312, 313, 314, 320, 337, 338, 339, 340, 343, 347, 351, 359, 362, 367, 369, 416, 422, 441, 508, 601, 602, 604, 606, 607, 608, 609, 613, 617, 624, 641, 642, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 674], "art": [5, 53, 62, 67, 71, 77, 92, 97, 165, 167, 198, 229, 232, 255, 260, 261, 318, 325, 328, 349, 360, 370, 376, 379, 400, 406, 408, 435, 436, 441, 464, 467, 479, 485, 573, 585, 586, 601, 603, 683, 686], "authentifizier": [5, 45, 84, 120, 154, 266, 349, 362, 380, 458, 512, 612, 615], "nutz": [5, 12, 13, 39, 45, 46, 48, 53, 54, 56, 58, 60, 62, 63, 67, 68, 74, 76, 79, 83, 84, 97, 98, 107, 111, 115, 122, 125, 162, 167, 169, 170, 179, 184, 187, 188, 191, 192, 201, 210, 212, 213, 223, 229, 232, 243, 249, 252, 256, 260, 261, 262, 263, 264, 265, 267, 268, 271, 272, 279, 289, 292, 295, 314, 319, 324, 326, 327, 329, 330, 331, 347, 354, 357, 360, 363, 366, 370, 381, 401, 403, 440, 444, 445, 462, 495, 496, 498, 499, 507, 508, 514, 519, 533, 545, 548, 550, 563, 565, 573, 576, 585, 591, 595, 610, 615, 618, 620, 621, 622, 629, 638, 641, 642, 652, 653, 654, 656, 671, 674, 679, 682, 692], "deshalb": [5, 22, 43, 71, 77, 83, 97, 106, 169, 262, 292, 302, 314, 373, 596, 597, 693], "erscheint": [5, 47, 83, 192, 226, 232, 272, 337, 593, 674, 686], "beim": [5, 13, 20, 22, 24, 42, 43, 45, 46, 47, 52, 53, 56, 58, 64, 71, 74, 76, 82, 83, 85, 89, 90, 92, 95, 97, 100, 102, 103, 106, 108, 113, 115, 116, 120, 121, 123, 125, 160, 162, 169, 171, 178, 187, 188, 189, 212, 213, 219, 232, 241, 243, 244, 249, 261, 262, 263, 265, 272, 289, 292, 295, 302, 306, 307, 314, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 347, 351, 360, 371, 373, 375, 378, 381, 382, 384, 396, 400, 401, 403, 407, 408, 423, 428, 434, 435, 441, 453, 454, 464, 466, 467, 485, 486, 504, 507, 508, 512, 519, 521, 530, 533, 537, 561, 562, 563, 566, 567, 572, 573, 574, 576, 577, 585, 589, 591, 594, 595, 596, 598, 599, 601, 603, 606, 610, 615, 632, 635, 636, 638, 641, 642, 672, 673, 674, 681, 682, 687, 688, 689], "basic": [5, 8, 44, 76, 130, 157, 160, 161, 166, 173, 178, 195, 211, 227, 235, 236, 247, 253, 254, 255, 257, 278, 284, 288, 294, 347, 351, 352, 355, 359, 370, 429, 561, 598, 613, 646, 666, 669, 674, 682, 683, 686, 688], "auth": [5, 8, 44, 76, 141, 222, 257, 612, 613, 646, 648, 650, 655, 674, 688], "anmeldedialog": 5, "usernam": [5, 8, 44, 45, 82, 84, 141, 150, 157, 158, 198, 212, 213, 218, 227, 241, 248, 292, 419, 420, 599, 612, 613, 615, 688], "erfolg": [5, 46, 48, 51, 52, 53, 54, 55, 71, 82, 83, 85, 87, 92, 102, 103, 106, 115, 220, 293, 325, 326, 330, 339, 340, 351, 401, 561, 568, 574, 575, 576, 577, 579, 583, 589, 593, 596, 598, 599, 609, 612, 613, 615, 632, 636, 687], "installiert": [5, 8, 22, 27, 37, 44, 67, 68, 71, 73, 76, 79, 82, 83, 84, 85, 86, 87, 90, 92, 95, 98, 103, 111, 120, 154, 165, 168, 207, 223, 225, 249, 250, 255, 261, 265, 287, 306, 307, 309, 314, 338, 370, 477, 533, 580, 612, 613, 616, 617, 628, 629, 630, 632, 641, 674, 685, 687, 688, 693], "instanz": [5, 52, 53, 67, 71, 83, 95, 97, 100, 102, 111, 123, 154, 166, 187, 189, 192, 210, 223, 224, 229, 249, 250, 252, 262, 263, 299, 300, 308, 309, 339, 340, 357, 362, 366, 373, 396, 399, 401, 424, 425, 512, 528, 548, 549, 550, 551, 565, 589, 591, 597, 603, 610, 612, 622, 641, 680], "besteh": [5, 22, 36, 42, 47, 48, 51, 52, 53, 54, 55, 56, 76, 81, 92, 93, 94, 97, 103, 106, 119, 168, 197, 224, 276, 314, 325, 331, 371, 424, 425, 590, 595, 612, 671, 687, 693], "geandert": [5, 8, 27, 52, 56, 83, 92, 97, 103, 111, 113, 118, 119, 120, 121, 122, 167, 169, 170, 181, 189, 219, 233, 237, 244, 260, 263, 276, 295, 325, 326, 328, 329, 330, 331, 333, 338, 351, 360, 370, 371, 380, 381, 384, 434, 450, 453, 486, 490, 508, 512, 514, 517, 562, 567, 572, 591, 632, 651, 674, 693], "entfern": [5, 71, 77, 82, 181, 326, 332, 453, 561, 562, 625], "kurzfrist": [5, 366], "betrieb": [5, 27, 68, 71, 79, 83, 85, 86, 107, 165, 168, 169, 192, 200, 219, 261, 262, 326, 332, 351, 371, 443, 449, 460, 508, 622], "genomm": [5, 103, 330, 369, 434], "schalt": [5, 20, 58, 98, 163, 165, 170, 178, 200, 262, 277, 278, 293, 314, 316, 328, 329, 333, 337, 338, 369, 407, 434, 476, 477, 519, 545, 548, 671, 683], "disabled": [5, 42, 53, 82, 115, 137, 181, 217, 227, 292, 304, 356, 357, 610, 623, 632, 643, 645, 646, 647, 652, 653, 654, 655], "spat": [5, 27, 52, 58, 83, 85, 105, 106, 122, 169, 292, 295, 328, 329, 333, 347, 496, 524, 566, 577, 599, 630, 634, 671, 687, 693], "wied": [5, 8, 12, 27, 52, 67, 79, 86, 89, 90, 92, 106, 162, 187, 192, 220, 232, 261, 289, 293, 314, 324, 325, 326, 328, 329, 330, 331, 332, 338, 351, 487, 490, 572, 577, 589, 594, 599, 621, 635, 636, 642, 671, 673, 674], "erneut": [5, 37, 42, 46, 82, 83, 105, 107, 115, 169, 292, 302, 325, 326, 328, 329, 330, 332, 338, 351, 359, 384, 400, 435, 440, 441, 464, 467, 504, 507, 519, 568, 572, 577, 588, 593, 632, 641, 671, 682], "durchfuhr": [5, 83, 92, 330, 400, 435, 441, 464, 467], "m\u00fcssen": [5, 13, 25, 27, 37, 39, 42, 43, 47, 50, 52, 53, 58, 60, 62, 67, 69, 73, 82, 83, 84, 86, 92, 93, 96, 97, 98, 104, 106, 109, 112, 116, 122, 124, 125, 153, 164, 165, 167, 168, 171, 172, 187, 189, 192, 197, 200, 210, 215, 219, 220, 225, 226, 230, 232, 241, 250, 256, 262, 276, 285, 287, 292, 295, 302, 306, 307, 309, 313, 314, 321, 323, 325, 326, 328, 329, 337, 354, 359, 360, 362, 370, 371, 379, 424, 425, 461, 483, 496, 504, 523, 554, 555, 566, 569, 573, 575, 587, 589, 590, 591, 592, 596, 598, 601, 602, 604, 606, 607, 608, 609, 610, 621, 622, 625, 628, 638, 641, 671, 682, 683, 686, 690], "schiebeschalt": [5, 95], "jed": [5, 7, 8, 12, 13, 16, 36, 37, 42, 43, 44, 47, 50, 52, 53, 58, 60, 62, 68, 73, 76, 77, 80, 83, 84, 90, 92, 93, 95, 96, 98, 101, 103, 104, 105, 106, 107, 108, 111, 112, 115, 116, 120, 123, 124, 155, 164, 166, 168, 169, 178, 187, 189, 192, 207, 219, 223, 224, 226, 229, 243, 249, 256, 259, 261, 262, 263, 287, 289, 295, 304, 310, 314, 321, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 339, 340, 347, 349, 351, 359, 371, 381, 392, 396, 405, 423, 434, 446, 453, 457, 463, 487, 489, 490, 495, 496, 506, 508, 511, 523, 561, 562, 566, 567, 569, 570, 572, 575, 576, 577, 579, 585, 589, 591, 592, 593, 595, 599, 601, 602, 604, 606, 607, 608, 609, 610, 613, 621, 622, 632, 634, 683, 687, 688, 693], "Durch": [5, 24, 58, 62, 82, 95, 103, 115, 162, 163, 164, 169, 187, 210, 262, 263, 295, 325, 328, 330, 347, 351, 381, 400, 408, 435, 441, 446, 464, 467, 508, 527, 545, 554, 569, 585, 592, 621, 622, 626, 642, 671, 672], "anklick": [5, 82, 162, 163, 170, 179, 184, 187, 192, 200, 203, 204, 210, 212, 213, 220, 232, 249, 252, 255, 265, 266, 268, 289, 302, 309, 311, 314, 348, 349, 357, 360, 366, 682], "anzupass": [5, 58, 83, 262, 333, 416, 448, 492, 530, 532, 561, 575], "\u00c4nderung": [5, 82, 155, 162, 168, 187, 223, 237, 261, 263, 272, 293, 304, 309, 314, 325, 326, 328, 331, 332, 338, 346, 360, 375, 380, 393, 396, 400, 408, 435, 441, 453, 464, 467, 522, 525, 527, 545, 550, 562, 563, 567, 574, 591, 592, 596, 671], "aktiv": [5, 8, 44, 45, 56, 60, 73, 83, 95, 120, 122, 170, 189, 212, 213, 238, 244, 289, 306, 307, 309, 314, 320, 321, 322, 324, 325, 327, 328, 330, 331, 333, 334, 336, 347, 351, 370, 382, 396, 400, 416, 441, 456, 464, 467, 508, 519, 572, 575, 594, 613, 615, 616, 629, 630, 641, 671, 672, 674, 675, 682, 693], "default": [5, 40, 43, 44, 45, 47, 52, 53, 54, 55, 57, 58, 60, 66, 83, 85, 86, 87, 89, 90, 103, 104, 107, 111, 113, 115, 120, 123, 124, 129, 130, 133, 134, 139, 141, 142, 147, 148, 149, 152, 155, 157, 158, 160, 162, 170, 176, 180, 181, 182, 183, 186, 188, 189, 193, 195, 198, 199, 203, 205, 206, 211, 217, 219, 221, 227, 234, 239, 241, 247, 248, 249, 258, 262, 269, 273, 274, 278, 288, 290, 296, 297, 304, 305, 308, 309, 315, 317, 322, 325, 327, 329, 330, 334, 338, 339, 340, 344, 352, 355, 356, 357, 365, 368, 375, 382, 383, 392, 394, 397, 399, 401, 406, 411, 413, 417, 425, 428, 439, 450, 458, 460, 462, 468, 479, 481, 482, 485, 486, 492, 493, 495, 503, 504, 505, 516, 518, 520, 528, 563, 599, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 623, 624, 630, 632, 634, 635, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 663, 674, 677, 682, 688, 693], "grau": [5, 321, 347], "Um": [5, 13, 22, 27, 31, 33, 34, 42, 50, 52, 53, 54, 56, 58, 60, 61, 62, 67, 69, 71, 79, 82, 83, 84, 85, 86, 89, 90, 92, 93, 97, 98, 100, 103, 104, 108, 111, 112, 113, 116, 120, 123, 162, 164, 167, 169, 170, 184, 187, 189, 192, 200, 203, 212, 213, 214, 223, 229, 233, 244, 250, 256, 259, 262, 263, 268, 285, 287, 289, 292, 293, 295, 313, 314, 322, 323, 325, 326, 327, 329, 331, 332, 337, 338, 347, 369, 381, 391, 485, 490, 508, 561, 563, 566, 574, 575, 576, 577, 583, 585, 589, 591, 595, 596, 597, 599, 603, 618, 629, 630, 632, 634, 636, 638, 681, 683, 687, 688, 692], "standardwert": [5, 43, 53, 55, 93, 120, 121, 122, 188, 263, 289, 314, 322, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 391, 392, 393, 394, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 456, 457, 458, 459, 460, 461, 462, 463, 464, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 522, 523, 524, 525, 526, 527, 528, 530, 532, 533, 534, 536, 537, 538, 599, 601, 602, 604, 607, 608, 609, 634], "zuruckzukehr": 5, "feldinhalt": 5, "x": [5, 15, 24, 58, 71, 79, 82, 86, 92, 93, 103, 126, 133, 148, 161, 173, 175, 176, 178, 207, 210, 219, 223, 229, 234, 237, 239, 262, 271, 278, 308, 309, 312, 313, 315, 321, 328, 330, 339, 340, 351, 360, 386, 398, 462, 481, 482, 503, 507, 563, 573, 646, 648, 649, 651, 652, 653, 654, 655, 657, 667, 688], "endgult": [5, 329], "form": [6, 43, 53, 58, 62, 83, 100, 102, 115, 132, 148, 233, 262, 263, 292, 323, 325, 347, 351, 353, 368, 411, 434, 476, 477, 520, 571, 576, 577, 596, 599, 601, 602, 604, 606, 607, 608, 609, 610, 634, 677, 682], "4": [7, 12, 13, 14, 15, 16, 25, 42, 43, 44, 46, 50, 53, 54, 55, 56, 57, 58, 60, 64, 66, 71, 80, 82, 83, 93, 103, 106, 107, 109, 111, 115, 116, 123, 124, 125, 141, 154, 155, 157, 160, 162, 163, 170, 172, 179, 180, 184, 185, 187, 189, 192, 193, 194, 195, 196, 198, 200, 205, 207, 210, 211, 216, 227, 229, 231, 232, 235, 239, 245, 247, 249, 251, 252, 254, 255, 257, 262, 270, 271, 279, 282, 283, 284, 285, 288, 289, 291, 293, 294, 299, 304, 308, 309, 310, 314, 325, 328, 331, 334, 337, 341, 348, 355, 356, 357, 360, 361, 363, 366, 370, 375, 381, 385, 391, 401, 402, 406, 412, 413, 414, 418, 419, 420, 424, 430, 431, 433, 434, 444, 445, 446, 451, 460, 461, 462, 463, 468, 477, 479, 480, 487, 491, 498, 499, 503, 506, 511, 514, 519, 523, 524, 529, 533, 538, 545, 548, 550, 552, 554, 558, 561, 562, 566, 569, 576, 577, 592, 599, 606, 610, 612, 613, 624, 636, 638, 639, 640, 641, 643, 644, 645, 646, 648, 649, 650, 651, 654, 655, 656, 657, 670, 675, 683, 691], "unterteilt": [7, 373, 682], "wobei": [7, 14, 48, 58, 71, 78, 92, 115, 116, 121, 155, 162, 169, 171, 187, 189, 191, 201, 238, 255, 262, 264, 267, 304, 325, 326, 328, 330, 507, 563, 575, 576, 595, 599, 636], "n\u00e4chste": [7, 58, 82, 181, 262, 282, 295, 333, 347, 453, 513], "ausfuhrungszeitpunkt": [7, 320, 326, 332], "einstell": [7, 8, 56, 79, 82, 85, 93, 95, 96, 103, 107, 116, 162, 163, 165, 167, 169, 188, 192, 196, 212, 213, 219, 255, 262, 265, 285, 292, 302, 306, 307, 326, 328, 329, 331, 333, 359, 363, 369, 399, 412, 449, 450, 457, 487, 488, 519, 520, 641, 671, 672, 673, 674, 675, 682, 686, 688, 690], "ausfuhrungszyklus": 7, "crontab": [7, 12, 13, 16, 42, 52, 74, 103, 108, 113, 117, 137, 147, 192, 261, 289, 328, 347, 360, 361, 401, 573, 577, 594, 600, 632, 643, 644, 645, 646, 649, 650, 655, 660, 666, 672], "resourc": [8, 212, 213, 260, 419, 420, 460, 545, 558, 612, 645, 646, 655, 693], "load": [8, 55, 88, 126, 132, 134, 135, 136, 137, 140, 143, 144, 146, 149, 151, 226, 335, 580, 642, 652, 653, 654, 655, 671, 672], "anzahl": [8, 9, 43, 44, 46, 53, 54, 55, 58, 60, 62, 71, 90, 104, 105, 106, 112, 116, 119, 120, 123, 165, 168, 169, 170, 179, 187, 189, 203, 207, 233, 243, 262, 285, 293, 295, 314, 319, 320, 324, 339, 340, 347, 349, 351, 359, 380, 381, 382, 396, 398, 400, 407, 408, 410, 412, 422, 435, 440, 441, 446, 453, 461, 464, 467, 483, 502, 507, 508, 512, 515, 519, 568, 570, 580, 599, 601, 602, 604, 607, 608, 609, 612, 613, 634, 641, 671, 682], "speicherbeleg": 8, "plattennutz": 8, "drei": [8, 15, 25, 45, 52, 61, 69, 96, 103, 112, 115, 116, 162, 163, 169, 212, 256, 289, 325, 329, 337, 359, 360, 375, 561, 569, 574, 575, 592, 599, 615, 619, 636, 641, 682, 686, 688], "bereit": [8, 13, 22, 24, 31, 32, 37, 47, 48, 52, 53, 54, 55, 56, 58, 67, 71, 79, 82, 83, 85, 90, 95, 97, 100, 103, 105, 106, 115, 116, 167, 178, 184, 187, 189, 191, 215, 219, 224, 259, 264, 267, 268, 283, 284, 287, 291, 293, 295, 321, 322, 324, 325, 327, 328, 329, 330, 331, 332, 333, 338, 360, 366, 381, 462, 496, 523, 528, 565, 573, 576, 591, 593, 594, 595, 596, 603, 610, 612, 621, 622, 625, 626, 628, 629, 630, 652, 653, 654, 655, 656, 674], "konfigurationsseit": [8, 69, 93, 94, 291, 337, 585, 682], "smartvisu": [8, 79, 80, 83, 88, 91, 92, 98, 106, 111, 117, 122, 164, 178, 187, 211, 215, 220, 221, 223, 235, 236, 243, 247, 250, 254, 262, 263, 270, 271, 283, 284, 289, 295, 315, 329, 344, 345, 351, 354, 355, 356, 357, 365, 366, 389, 394, 425, 446, 463, 468, 506, 508, 519, 523, 524, 532, 545, 554, 567, 580, 585, 591, 592, 600, 617, 641, 643, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 665, 666, 667, 669, 670, 671, 681, 682, 684, 686, 690, 693], "bekannt": [8, 28, 52, 83, 88, 106, 187, 192, 212, 213, 214, 215, 255, 283, 293, 313, 314, 323, 325, 330, 338, 351, 522, 589, 601, 671, 674], "versionsstand": 8, "packag": [8, 37, 43, 46, 48, 54, 55, 66, 71, 76, 83, 89, 90, 92, 107, 115, 121, 165, 190, 210, 245, 253, 265, 278, 294, 300, 301, 310, 334, 413, 431, 538, 573, 576, 598, 618, 624, 629, 630, 632, 641, 643, 645, 646, 648, 650, 651, 652, 655, 675, 692, 693], "dabei": [8, 13, 20, 27, 42, 46, 50, 58, 60, 62, 69, 71, 80, 82, 83, 86, 87, 92, 97, 103, 105, 106, 111, 112, 114, 115, 116, 121, 122, 123, 124, 166, 169, 170, 171, 187, 189, 192, 200, 210, 215, 229, 237, 243, 259, 263, 285, 291, 293, 306, 307, 319, 321, 324, 325, 326, 328, 329, 330, 331, 332, 337, 338, 339, 340, 347, 351, 354, 359, 360, 371, 406, 454, 490, 508, 519, 536, 552, 553, 569, 571, 573, 575, 576, 577, 583, 585, 592, 593, 621, 622, 628, 638, 674, 683, 686, 688], "block": [8, 25, 31, 33, 34, 52, 54, 55, 56, 58, 60, 62, 63, 66, 76, 92, 106, 119, 166, 169, 172, 189, 200, 250, 253, 294, 314, 352, 356, 357, 496, 523, 563, 566, 612, 618, 620, 624, 643, 646, 649, 650, 655, 656, 673, 682, 683, 686, 688], "gezeigt": [8, 15, 54, 55, 71, 106, 120, 123, 171, 219, 325, 328, 336, 337, 359, 381], "Zu": [8, 24, 32, 52, 55, 58, 92, 93, 97, 112, 116, 124, 168, 187, 189, 197, 200, 215, 224, 261, 276, 289, 330, 332, 337, 339, 340, 379, 381, 402, 411, 429, 434, 457, 458, 489, 511, 520, 522, 527, 537, 570, 573, 576, 589, 625, 693], "versionsumm": 8, "minimal": [8, 43, 53, 67, 79, 83, 90, 161, 165, 170, 179, 184, 189, 192, 207, 210, 211, 232, 233, 249, 252, 255, 262, 263, 289, 326, 348, 353, 357, 360, 366, 384, 476, 477, 487, 585, 601, 602, 604, 606, 607, 608, 609, 610, 612, 622, 655, 682, 687], "gefolgt": [8, 98, 106, 125, 219, 381, 382, 566, 568, 570, 638, 674], "hak": [8, 46, 71, 85, 181, 292], "nutzend": [8, 121, 226, 402, 508, 534], "unterstutzt": [8, 43, 45, 52, 53, 54, 55, 64, 67, 68, 83, 84, 85, 92, 96, 97, 100, 103, 104, 106, 112, 121, 122, 124, 155, 164, 169, 170, 179, 187, 191, 194, 196, 200, 201, 204, 212, 213, 220, 229, 230, 238, 244, 256, 260, 262, 264, 267, 287, 291, 295, 302, 304, 311, 337, 345, 347, 349, 354, 359, 360, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 552, 561, 562, 563, 566, 569, 575, 577, 586, 592, 601, 602, 604, 606, 607, 608, 609, 610, 615, 618, 619, 621, 625, 673, 679, 682, 686, 689, 692], "verfugbar": [8, 12, 52, 54, 55, 59, 79, 106, 111, 155, 164, 170, 178, 187, 189, 192, 233, 304, 314, 337, 338, 346, 351, 371, 373, 416, 434, 460, 508, 517, 527, 528, 567, 573, 591, 596], "maximal": [8, 43, 44, 53, 56, 67, 120, 165, 187, 189, 219, 224, 262, 295, 314, 322, 325, 329, 330, 384, 396, 403, 410, 446, 487, 498, 499, 519, 532, 545, 548, 550, 558, 601, 602, 604, 606, 607, 608, 609, 610, 613], "grun": [8, 12, 22, 162, 163, 200, 244, 263, 321, 347], "dritt": [8, 28, 42, 58, 62, 77, 119, 164, 210, 212, 213, 220, 232, 244, 265, 302, 316, 563], "stern": [8, 97, 169, 382, 569, 573, 592], "asterix": [8, 97, 649, 655], "viert": [8, 42, 212, 213, 220, 232, 592], "org": [8, 54, 55, 68, 82, 84, 106, 119, 161, 170, 187, 192, 200, 222, 223, 229, 253, 258, 262, 297, 325, 359, 368, 440, 459, 462, 520, 545, 550, 598, 628, 641, 646, 648], "bezog": [8, 192, 516, 569, 592], "versionsnumm": [8, 43, 48, 53, 123, 165, 453, 606, 610, 641, 671], "angzeigt": [8, 219], "entspricht": [8, 12, 16, 52, 53, 64, 97, 104, 117, 162, 215, 272, 287, 314, 328, 338, 351, 371, 397, 471, 495, 502, 563, 569, 592, 594, 595, 600, 625, 633, 641], "darauf": [8, 25, 28, 46, 58, 71, 79, 106, 115, 123, 169, 187, 189, 229, 285, 302, 326, 332, 333, 338, 461, 483, 490, 561, 577, 579, 593, 630, 678], "hinzuweis": [8, 115, 671], "aktualisiert": [8, 56, 58, 62, 68, 71, 73, 76, 92, 103, 159, 164, 168, 169, 170, 178, 189, 203, 207, 220, 237, 262, 291, 314, 326, 330, 347, 351, 373, 381, 396, 412, 416, 423, 446, 453, 457, 460, 463, 514, 519, 530, 532, 563, 569, 573, 576, 577, 592, 641, 671, 674, 678], "klein": [8, 58, 86, 98, 103, 116, 160, 162, 164, 219, 220, 230, 249, 260, 314, 325, 328, 330, 332, 527, 532, 632, 638, 641, 674, 682], "maximalversion": 8, "rot": [8, 12, 14, 162, 163, 200, 232, 261, 263, 292, 321, 347], "komponent": [8, 31, 33, 34, 52, 54, 56, 71, 81, 87, 115, 214, 250, 260, 277, 306, 307, 369, 417, 545, 548, 621, 626, 641], "administrationsoberflach": [8, 83, 93, 97, 109], "handelt": [8, 71, 92, 97, 187, 224, 237, 259, 291, 314, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 590, 621], "anmeldeinformation": 8, "sowohl": [8, 58, 60, 61, 62, 78, 102, 106, 112, 115, 116, 122, 169, 203, 233, 256, 302, 306, 307, 322, 325, 326, 327, 328, 330, 331, 347, 351, 423, 590, 595, 622, 671], "jwt": [8, 76, 154, 612], "NICHT": [8, 43, 53, 83, 85, 92, 116, 293, 329, 347, 608, 690], "klartext": [8, 44, 45, 120, 613, 615, 632], "vergess": [8, 71, 82, 86, 164, 293, 572, 629], "dah": [8, 16, 43, 53, 58, 71, 83, 84, 92, 98, 155, 187, 192, 194, 213, 229, 263, 271, 289, 304, 306, 307, 314, 321, 325, 326, 328, 329, 330, 332, 333, 362, 366, 376, 382, 384, 385, 387, 389, 395, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 490, 491, 501, 503, 505, 508, 513, 514, 515, 518, 521, 526, 527, 537, 538, 554, 555, 589, 608, 682, 688], "gemacht": [8, 20, 37, 52, 88, 92, 323, 325, 338, 589, 674, 688, 693], "paramet": [8, 15, 31, 32, 40, 42, 44, 45, 48, 52, 54, 55, 56, 60, 62, 63, 66, 80, 86, 93, 95, 96, 107, 111, 115, 117, 119, 120, 121, 122, 123, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 155, 162, 165, 166, 168, 169, 170, 173, 175, 176, 178, 179, 181, 183, 184, 186, 188, 189, 191, 192, 194, 195, 196, 197, 199, 200, 201, 205, 210, 212, 213, 215, 216, 220, 223, 226, 227, 230, 232, 233, 234, 238, 240, 242, 243, 246, 247, 252, 261, 263, 264, 265, 267, 268, 270, 271, 272, 276, 277, 278, 279, 283, 284, 287, 289, 290, 291, 293, 296, 298, 300, 302, 304, 306, 307, 310, 313, 314, 316, 318, 331, 332, 336, 338, 341, 347, 348, 351, 352, 355, 356, 357, 360, 365, 366, 369, 561, 564, 569, 583, 585, 588, 589, 590, 594, 595, 597, 598, 599, 600, 601, 602, 605, 607, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 623, 624, 625, 626, 629, 632, 634, 636, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 670, 671, 673, 674, 681, 684, 690, 693], "gultigkeitsdau": [8, 119], "gesteuert": [8, 12, 13, 67, 112, 124, 162, 200, 212, 213, 230, 244, 265, 289, 328, 347, 421, 422, 508, 515, 583, 690], "beendig": [8, 42, 588, 596], "erhal": 8, "bleibt": [8, 12, 13, 42, 97, 116, 123, 219, 224, 314, 325, 327, 328, 330, 333, 463, 490, 508, 573, 576, 585, 588, 632, 671], "verfallt": 8, "ablauf": [8, 73, 91, 153, 220, 233, 331, 508, 562, 568, 570, 573, 587, 637], "login_experiation": 8, "legt": [8, 42, 52, 106, 121, 154, 243, 326, 332, 360, 375, 391, 393, 400, 405, 408, 417, 426, 427, 434, 435, 441, 446, 464, 467, 486, 497, 506, 527, 573, 574, 577, 579, 585, 595, 612, 683, 686, 687], "ausgestellt": 8, "fest": [8, 42, 43, 52, 53, 62, 71, 76, 82, 103, 104, 110, 112, 121, 243, 306, 307, 326, 332, 339, 340, 347, 375, 391, 393, 400, 405, 408, 417, 426, 427, 434, 435, 441, 446, 464, 467, 486, 487, 497, 504, 506, 527, 573, 574, 577, 579, 585, 595, 601, 602, 604, 607, 608, 609, 682, 683, 686], "kurz": [8, 14, 27, 83, 92, 106, 125, 170, 192, 219, 220, 224, 225, 363, 412, 419, 420, 619, 638], "gultig": [8, 43, 53, 62, 96, 106, 164, 187, 214, 215, 220, 232, 306, 307, 313, 314, 333, 339, 340, 347, 349, 351, 377, 455, 488, 522, 589, 596, 601, 602, 604, 607, 608, 609, 610, 671, 686, 688, 690], "0": [8, 12, 13, 14, 15, 16, 18, 19, 20, 25, 30, 42, 43, 44, 45, 52, 53, 54, 55, 56, 57, 58, 60, 66, 69, 71, 73, 78, 83, 84, 85, 86, 87, 88, 92, 98, 100, 103, 106, 107, 111, 112, 115, 116, 120, 121, 123, 124, 125, 126, 129, 131, 133, 136, 141, 142, 148, 152, 154, 155, 157, 158, 160, 164, 165, 166, 167, 170, 171, 179, 180, 185, 187, 189, 191, 192, 193, 194, 195, 196, 198, 199, 200, 202, 203, 205, 207, 210, 211, 213, 217, 218, 221, 222, 223, 225, 227, 229, 231, 233, 234, 235, 236, 237, 238, 239, 240, 245, 249, 250, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 270, 271, 272, 275, 276, 279, 281, 282, 284, 285, 287, 288, 289, 290, 291, 292, 293, 294, 295, 301, 304, 305, 306, 307, 308, 309, 314, 317, 319, 322, 325, 327, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 347, 355, 356, 357, 358, 360, 361, 365, 367, 368, 370, 374, 375, 377, 378, 379, 380, 381, 389, 390, 391, 395, 396, 398, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 412, 414, 417, 418, 419, 420, 426, 427, 428, 429, 431, 432, 433, 434, 435, 436, 440, 441, 442, 444, 445, 450, 451, 452, 453, 454, 456, 457, 458, 459, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 476, 477, 478, 479, 480, 481, 482, 487, 488, 489, 496, 498, 499, 501, 502, 504, 505, 507, 508, 513, 514, 515, 517, 518, 521, 522, 524, 525, 526, 527, 532, 534, 537, 538, 545, 548, 550, 552, 554, 558, 563, 566, 568, 569, 570, 573, 575, 576, 577, 579, 580, 585, 592, 595, 599, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 622, 624, 629, 634, 636, 638, 641, 642, 643, 644, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 674, 675, 681, 684, 687, 690], "5": [8, 12, 13, 15, 16, 18, 20, 25, 30, 42, 44, 48, 54, 55, 57, 58, 79, 80, 82, 83, 84, 86, 89, 90, 98, 103, 104, 106, 113, 115, 116, 117, 119, 120, 126, 130, 141, 152, 155, 160, 162, 163, 165, 166, 167, 169, 170, 171, 179, 182, 183, 185, 187, 189, 191, 195, 196, 197, 198, 201, 205, 207, 210, 211, 216, 218, 219, 221, 227, 229, 231, 232, 234, 235, 237, 238, 239, 247, 249, 251, 254, 255, 256, 257, 258, 260, 263, 264, 267, 270, 271, 278, 279, 282, 284, 289, 290, 293, 298, 299, 300, 304, 306, 307, 308, 309, 310, 323, 325, 326, 328, 329, 331, 332, 334, 338, 341, 346, 347, 351, 352, 355, 356, 357, 358, 361, 370, 375, 376, 378, 379, 381, 382, 386, 392, 395, 397, 398, 399, 400, 403, 405, 406, 407, 408, 410, 414, 416, 418, 419, 433, 434, 435, 436, 441, 442, 447, 450, 455, 459, 460, 461, 462, 464, 467, 468, 472, 473, 475, 476, 477, 483, 485, 487, 489, 490, 496, 500, 504, 516, 517, 522, 530, 532, 545, 548, 550, 552, 554, 558, 562, 566, 568, 569, 573, 574, 575, 577, 589, 592, 594, 595, 597, 600, 612, 613, 630, 633, 638, 639, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 657, 683, 686, 688, 691], "bedeutet": [8, 12, 13, 50, 79, 83, 86, 92, 95, 115, 122, 164, 169, 189, 230, 314, 316, 396, 397, 463, 527, 573, 574, 589, 595, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675], "30": [8, 14, 16, 42, 76, 84, 86, 90, 103, 113, 115, 141, 160, 165, 168, 185, 188, 189, 198, 199, 211, 218, 219, 226, 227, 229, 230, 233, 260, 262, 276, 289, 306, 307, 326, 328, 330, 332, 334, 338, 341, 347, 370, 381, 400, 408, 424, 425, 431, 435, 441, 464, 467, 482, 509, 514, 599, 622, 636, 638, 646, 655, 688], "login_autorenew": [8, 119, 612], "nutzung": [8, 28, 40, 44, 45, 48, 52, 53, 54, 71, 76, 77, 82, 83, 97, 103, 106, 112, 120, 121, 124, 154, 168, 170, 171, 184, 187, 197, 215, 220, 223, 232, 250, 255, 261, 262, 268, 271, 276, 337, 338, 371, 385, 391, 420, 522, 534, 545, 548, 554, 564, 565, 566, 567, 576, 580, 583, 586, 587, 589, 590, 591, 612, 613, 615, 618, 621, 641, 671, 674, 682, 688], "administration": [8, 44, 70, 83, 93, 111, 113, 118, 119, 120, 121, 122, 151, 154, 157, 189, 368, 612, 613, 641, 649, 650, 651, 652, 656], "verlangert": [8, 504, 688], "true": [8, 12, 13, 16, 18, 20, 25, 43, 44, 45, 47, 52, 53, 54, 55, 56, 58, 62, 63, 66, 83, 84, 88, 92, 102, 103, 106, 107, 110, 111, 112, 113, 115, 116, 117, 119, 120, 121, 122, 126, 129, 134, 136, 137, 138, 139, 141, 142, 147, 148, 152, 154, 155, 157, 158, 160, 162, 164, 166, 168, 169, 170, 178, 179, 180, 181, 183, 188, 191, 198, 200, 201, 203, 205, 206, 211, 219, 221, 222, 227, 228, 230, 231, 233, 238, 243, 248, 249, 250, 252, 257, 259, 260, 261, 262, 263, 264, 266, 267, 272, 275, 279, 281, 282, 288, 289, 290, 293, 294, 295, 297, 298, 301, 304, 306, 307, 308, 309, 314, 322, 325, 326, 327, 328, 329, 330, 331, 332, 334, 337, 338, 339, 340, 343, 344, 347, 351, 352, 355, 356, 357, 359, 360, 369, 370, 381, 382, 391, 396, 398, 400, 401, 406, 407, 408, 412, 413, 420, 427, 428, 434, 435, 441, 444, 445, 449, 454, 457, 458, 460, 461, 463, 464, 467, 471, 478, 479, 481, 485, 486, 487, 489, 495, 496, 498, 499, 503, 504, 506, 508, 511, 512, 515, 519, 522, 523, 524, 528, 534, 537, 538, 570, 572, 573, 574, 575, 577, 579, 580, 583, 585, 592, 595, 597, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 612, 613, 615, 616, 618, 620, 622, 623, 624, 632, 634, 636, 641, 643, 653, 662, 669, 674, 682, 684, 686, 690], "erneuert": [8, 260, 263, 688], "festgelegt": [8, 13, 42, 52, 53, 54, 55, 58, 82, 83, 103, 106, 112, 115, 116, 121, 124, 165, 170, 212, 213, 226, 230, 249, 256, 260, 263, 289, 310, 314, 325, 326, 327, 328, 330, 331, 332, 347, 351, 412, 419, 420, 423, 434, 485, 487, 497, 508, 519, 575, 577, 584, 593, 599, 603, 622, 634, 682, 686, 690], "protokoll": [8, 45, 48, 53, 54, 78, 84, 121, 122, 155, 162, 163, 169, 170, 171, 188, 192, 200, 220, 232, 256, 304, 306, 307, 310, 333, 351, 369, 373, 376, 458, 470, 496, 497, 498, 499, 522, 524, 545, 548, 550, 554, 595, 610, 613, 615, 616, 617, 621, 626, 641, 671, 682, 689, 690], "laufend": [9, 53, 71, 89, 102, 154, 165, 169, 189, 299, 300, 326, 332, 370, 371, 440, 507, 508, 597, 612, 632, 674, 680], "id": [9, 18, 20, 31, 33, 34, 47, 50, 52, 54, 55, 56, 58, 60, 61, 62, 71, 83, 133, 137, 148, 151, 155, 164, 170, 187, 188, 192, 195, 196, 198, 199, 200, 202, 206, 208, 211, 212, 213, 214, 215, 219, 220, 222, 229, 230, 235, 244, 250, 256, 260, 261, 262, 263, 273, 274, 285, 288, 289, 291, 292, 293, 304, 312, 313, 314, 315, 319, 325, 326, 328, 330, 333, 337, 338, 356, 357, 359, 362, 365, 376, 380, 382, 390, 399, 403, 407, 409, 416, 419, 420, 421, 422, 430, 433, 447, 453, 456, 460, 466, 472, 486, 487, 489, 504, 507, 508, 512, 518, 521, 530, 562, 563, 565, 575, 577, 591, 594, 599, 612, 616, 634, 641, 643, 646, 647, 648, 649, 650, 653, 655, 656, 664], "Einige": [9, 68, 79, 82, 86, 111, 118, 169, 207, 293, 314, 328, 345, 373, 381, 567, 591], "speziell": [9, 31, 32, 33, 34, 42, 52, 53, 54, 55, 79, 83, 85, 98, 168, 169, 192, 222, 223, 241, 256, 291, 295, 306, 307, 331, 363, 381, 382, 588, 610, 621, 622, 625, 642, 682, 688], "zusammengefasst": [9, 328, 632], "typs": [9, 52, 60, 124, 155, 200, 212, 213, 304, 495, 496, 523, 579, 686], "gehor": [9, 83, 95, 97, 106, 124, 131, 224, 332, 566, 575, 622], "typ": [9, 12, 13, 16, 18, 20, 24, 25, 43, 44, 45, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 66, 71, 83, 89, 90, 93, 97, 98, 103, 106, 112, 113, 115, 121, 123, 126, 127, 133, 134, 137, 139, 142, 147, 148, 149, 152, 155, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 175, 177, 178, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 205, 207, 211, 212, 213, 217, 218, 219, 221, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 281, 282, 283, 284, 285, 287, 288, 289, 290, 293, 294, 295, 296, 297, 298, 299, 300, 301, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 317, 323, 326, 328, 329, 330, 331, 332, 333, 334, 337, 338, 339, 340, 343, 344, 346, 347, 349, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 365, 368, 369, 370, 371, 381, 382, 393, 394, 395, 396, 397, 413, 419, 420, 434, 452, 458, 461, 468, 471, 486, 488, 489, 490, 491, 496, 511, 514, 519, 534, 545, 546, 563, 566, 567, 568, 570, 573, 574, 575, 577, 591, 595, 597, 598, 599, 601, 602, 603, 604, 607, 608, 609, 610, 612, 613, 615, 616, 620, 623, 624, 626, 629, 630, 634, 638, 641, 643, 644, 645, 646, 648, 649, 652, 655, 663, 664, 665, 667, 669, 670, 672, 674, 682, 683, 686, 688, 693], "cp": [9, 37, 47, 85, 225, 239, 309, 688], "httpserv": 9, "cherrypy": [9, 44, 45, 58, 60, 62, 107, 115, 120, 157, 158, 172, 360, 583, 612, 613, 615, 645, 646, 655, 671], "idl": [9, 147, 254, 255], "beschrieb": [10, 12, 16, 22, 27, 31, 32, 33, 34, 40, 43, 47, 52, 53, 54, 55, 58, 61, 62, 63, 66, 81, 82, 83, 84, 85, 91, 92, 94, 103, 104, 106, 112, 115, 116, 117, 120, 123, 124, 154, 155, 163, 164, 165, 166, 168, 169, 170, 179, 181, 184, 187, 189, 191, 192, 194, 197, 200, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 224, 225, 228, 230, 232, 233, 238, 241, 242, 243, 244, 246, 252, 255, 261, 262, 263, 264, 265, 266, 267, 268, 276, 277, 279, 284, 285, 286, 287, 289, 293, 295, 300, 302, 304, 306, 307, 311, 313, 316, 321, 326, 328, 329, 330, 336, 338, 347, 348, 349, 351, 354, 357, 359, 360, 366, 369, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 560, 562, 563, 565, 566, 567, 572, 573, 576, 577, 581, 585, 587, 591, 592, 593, 594, 596, 597, 599, 605, 611, 612, 614, 618, 619, 620, 623, 624, 625, 626, 628, 629, 632, 634, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 682, 687, 688, 691], "bezieh": [10, 73, 79, 97, 262, 279, 323, 334, 561, 573, 639, 686], "gegebenenfall": [10, 58, 92], "find": [10, 11, 12, 14, 17, 21, 23, 25, 26, 31, 33, 34, 36, 40, 42, 52, 54, 55, 56, 57, 58, 59, 60, 67, 68, 69, 78, 83, 84, 86, 92, 97, 98, 100, 103, 105, 106, 107, 108, 111, 112, 114, 115, 117, 121, 123, 125, 133, 134, 153, 162, 164, 166, 167, 172, 174, 183, 187, 188, 192, 196, 200, 205, 212, 214, 217, 218, 219, 225, 228, 229, 230, 237, 243, 244, 245, 250, 254, 255, 256, 257, 263, 279, 288, 291, 293, 294, 295, 297, 300, 305, 306, 307, 315, 316, 319, 320, 322, 323, 324, 328, 329, 331, 333, 334, 337, 338, 345, 346, 347, 351, 352, 359, 361, 362, 365, 367, 369, 373, 381, 384, 440, 461, 564, 573, 578, 580, 582, 592, 597, 616, 623, 627, 646, 649, 655, 667, 689, 692, 693], "beispiel": [11, 12, 14, 22, 24, 25, 26, 28, 36, 47, 50, 51, 53, 54, 55, 56, 58, 59, 60, 61, 62, 67, 74, 79, 83, 84, 92, 96, 103, 108, 111, 112, 115, 116, 118, 123, 125, 155, 167, 168, 169, 171, 187, 196, 207, 230, 237, 260, 262, 277, 283, 293, 299, 304, 313, 316, 320, 321, 322, 324, 330, 331, 333, 337, 344, 349, 362, 406, 423, 434, 445, 449, 462, 496, 507, 524, 563, 564, 565, 566, 567, 569, 571, 573, 575, 576, 577, 585, 588, 589, 590, 592, 594, 596, 597, 599, 601, 603, 618, 622, 625, 628, 629, 630, 634, 636, 638, 641, 643, 671, 674, 681, 682, 687], "tipps": [11, 23, 26, 47, 580, 643], "trick": [11, 23, 26, 580, 643], "eval_trigg": [11, 13, 16, 24, 25, 103, 106, 183, 198, 218, 247, 258, 259, 262, 282, 289, 298, 325, 328, 329, 331, 339, 340, 343, 360, 564, 567, 572, 577, 591, 638, 646, 664, 667], "updat": [11, 54, 66, 70, 71, 79, 81, 82, 83, 86, 87, 103, 111, 123, 130, 133, 137, 155, 167, 170, 176, 177, 180, 181, 183, 186, 189, 198, 203, 206, 210, 211, 219, 221, 234, 235, 236, 237, 250, 261, 262, 270, 278, 285, 291, 302, 304, 315, 318, 329, 335, 347, 351, 354, 356, 357, 359, 365, 370, 377, 381, 399, 416, 418, 437, 438, 448, 452, 453, 457, 479, 481, 482, 483, 484, 492, 494, 507, 509, 512, 530, 532, 562, 563, 564, 567, 571, 572, 573, 574, 576, 580, 591, 612, 623, 624, 664, 670, 671, 674, 685, 688, 693], "Wird": [12, 24, 53, 58, 96, 103, 104, 112, 121, 124, 168, 169, 170, 189, 192, 237, 243, 256, 262, 295, 302, 314, 319, 322, 325, 326, 329, 330, 332, 333, 338, 347, 382, 383, 396, 406, 441, 446, 461, 463, 479, 480, 485, 487, 504, 507, 508, 511, 528, 573, 585, 589, 610, 629, 682, 690], "zugewies": [12, 52, 56, 98, 112, 124, 165, 178, 192, 217, 226, 229, 232, 261, 262, 263, 306, 307, 310, 314, 326, 327, 330, 332, 337, 338, 351, 400, 401, 408, 431, 435, 441, 464, 467, 562, 567, 568, 569, 573, 575, 576, 589, 591, 592, 596, 641, 682], "valu": [12, 13, 18, 20, 40, 45, 54, 55, 58, 60, 62, 63, 66, 69, 71, 83, 103, 107, 112, 113, 115, 124, 126, 127, 129, 130, 133, 134, 136, 137, 139, 146, 147, 148, 149, 152, 155, 160, 162, 164, 169, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 192, 195, 199, 200, 202, 205, 206, 210, 211, 219, 221, 222, 223, 227, 229, 232, 234, 235, 236, 239, 240, 241, 245, 247, 248, 254, 255, 256, 257, 260, 262, 263, 268, 278, 280, 288, 290, 294, 295, 298, 304, 305, 306, 307, 308, 309, 310, 312, 314, 315, 317, 325, 326, 328, 329, 330, 332, 333, 334, 335, 338, 341, 347, 349, 352, 355, 356, 357, 359, 360, 361, 368, 370, 377, 395, 397, 401, 413, 427, 428, 453, 460, 478, 497, 498, 499, 501, 527, 538, 562, 563, 567, 569, 573, 575, 576, 577, 579, 589, 591, 592, 594, 595, 596, 615, 620, 622, 623, 624, 632, 641, 642, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 660, 663, 666, 667, 669, 670, 671, 673, 674, 681], "zwischengespeichert": [12, 189, 261, 289, 573, 577, 641], "Ist": [12, 13, 53, 56, 106, 115, 119, 162, 169, 170, 189, 200, 232, 262, 289, 295, 314, 325, 326, 330, 332, 333, 338, 347, 376, 378, 382, 484, 486, 487, 504, 508, 512, 519, 573, 585, 610, 612, 622, 641, 674], "ausgefuhrt": [12, 42, 52, 58, 62, 71, 82, 83, 103, 108, 109, 110, 117, 118, 153, 162, 163, 187, 189, 192, 200, 203, 219, 314, 320, 321, 324, 326, 327, 330, 332, 333, 338, 347, 386, 393, 398, 416, 452, 508, 522, 562, 571, 573, 576, 588, 590, 592, 594, 596, 600, 632], "bevor": [12, 13, 52, 53, 58, 67, 83, 85, 89, 92, 164, 165, 210, 226, 233, 292, 293, 314, 327, 330, 338, 508, 513, 585, 596, 603], "final": [12, 83, 107, 115, 116, 125, 638, 645], "nachbearbeit": 12, "mach": [12, 47, 56, 60, 76, 85, 86, 92, 97, 162, 187, 238, 278, 295, 316, 321, 326, 331, 528], "bspw": [12, 14, 82, 189, 348, 360, 382, 394, 406, 468, 495, 511, 516, 568, 671, 674, 688], "viele": [12, 36, 44, 78, 92, 103, 107, 120, 123, 169, 178, 229, 261, 287, 289, 324, 347, 367, 379, 395, 585, 613, 641], "nachkommastell": [12, 43, 53, 119, 396, 599, 601, 602, 604, 607, 608, 609, 622, 634, 641], "gerundet": 12, "num": [12, 13, 16, 18, 20, 24, 25, 43, 45, 53, 56, 97, 98, 106, 112, 141, 160, 162, 165, 168, 169, 170, 175, 179, 182, 183, 185, 186, 187, 188, 189, 192, 193, 194, 195, 196, 197, 198, 200, 202, 205, 207, 211, 212, 213, 218, 221, 227, 229, 232, 233, 234, 235, 237, 239, 240, 243, 245, 247, 248, 249, 250, 254, 255, 257, 258, 259, 260, 261, 262, 263, 266, 276, 279, 281, 282, 284, 285, 287, 288, 290, 293, 294, 295, 297, 298, 299, 300, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 317, 323, 326, 328, 329, 330, 332, 334, 335, 337, 338, 339, 340, 343, 344, 347, 351, 352, 355, 356, 357, 358, 359, 361, 362, 365, 369, 370, 371, 376, 378, 379, 389, 393, 396, 398, 399, 400, 401, 408, 418, 419, 420, 422, 434, 435, 437, 438, 441, 452, 453, 461, 462, 464, 467, 468, 476, 477, 478, 479, 481, 484, 487, 488, 490, 500, 502, 504, 506, 508, 509, 511, 512, 515, 517, 522, 566, 568, 570, 573, 574, 575, 577, 579, 580, 595, 601, 602, 604, 607, 608, 609, 612, 615, 622, 638, 642, 648, 652, 655, 683, 686], "round": [12, 19, 141, 189, 218, 262, 263, 298, 344, 485, 545, 554, 655, 665], "databas": [12, 16, 53, 56, 58, 67, 83, 111, 113, 130, 133, 155, 162, 170, 178, 189, 203, 219, 221, 238, 261, 279, 285, 289, 304, 312, 313, 317, 319, 328, 331, 351, 356, 357, 398, 427, 485, 545, 554, 610, 632, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 666, 667, 670, 671, 674, 688, 691], "realisiert": [12, 87, 162, 259], "taglich": [12, 189, 289, 369, 370, 508, 569, 585, 592], "01": [12, 14, 42, 86, 116, 155, 164, 169, 176, 185, 187, 192, 203, 207, 230, 232, 249, 261, 294, 295, 304, 337, 356, 357, 360, 401, 588, 671, 688], "uhr": [12, 52, 71, 83, 116, 262, 289, 306, 307, 328, 347, 376, 569, 585, 592, 599, 634], "ermittelt": [12, 15, 58, 92, 162, 170, 178, 189, 262, 293, 324, 325, 330, 332, 347, 373, 382, 453, 504, 508, 516], "sh": [12, 13, 15, 16, 18, 19, 20, 25, 37, 40, 52, 53, 54, 55, 66, 82, 104, 106, 112, 129, 132, 136, 137, 139, 143, 147, 148, 162, 164, 167, 168, 170, 183, 193, 194, 198, 199, 200, 203, 210, 211, 217, 218, 219, 228, 232, 243, 247, 248, 249, 253, 256, 258, 259, 260, 261, 262, 263, 269, 272, 278, 282, 287, 288, 289, 296, 298, 309, 314, 325, 326, 328, 330, 332, 333, 335, 338, 339, 340, 343, 344, 347, 351, 355, 359, 361, 368, 391, 406, 423, 434, 445, 496, 506, 520, 524, 545, 558, 561, 562, 563, 565, 567, 568, 570, 573, 574, 575, 576, 579, 580, 589, 590, 591, 597, 609, 624, 632, 638, 641, 643, 645, 646, 649, 650, 651, 653, 655, 659, 660, 662, 664, 665, 666, 667, 671], "db": [12, 16, 27, 39, 49, 83, 92, 102, 111, 113, 187, 189, 203, 210, 287, 294, 335, 398, 453, 581, 641, 645, 646, 649, 651, 652, 653, 655, 670], "min": [12, 15, 54, 55, 56, 57, 58, 62, 88, 155, 170, 186, 187, 189, 200, 207, 251, 262, 274, 287, 304, 317, 325, 328, 329, 330, 333, 338, 344, 356, 357, 361, 398, 487, 506, 573, 632, 642, 646, 652, 653, 671], "24h": [12, 189, 262, 526], "invertiert": [12, 13, 331, 412, 450, 583], "Man": [12, 13, 110, 118, 219, 262, 638, 682], "bedient": [12, 13, 259], "zwischenspeich": [12, 219, 261, 381, 423, 577], "bool": [12, 13, 20, 24, 25, 40, 43, 44, 45, 52, 53, 63, 66, 97, 98, 106, 121, 126, 129, 133, 134, 137, 138, 139, 141, 144, 148, 149, 152, 160, 162, 164, 168, 169, 170, 179, 183, 185, 186, 187, 189, 197, 198, 200, 205, 207, 211, 212, 213, 217, 218, 227, 230, 231, 232, 233, 239, 247, 248, 249, 250, 253, 254, 255, 258, 259, 261, 262, 263, 266, 270, 271, 272, 275, 276, 277, 278, 281, 282, 283, 284, 285, 288, 289, 290, 293, 294, 295, 297, 298, 301, 304, 308, 309, 312, 313, 314, 317, 326, 328, 329, 330, 331, 332, 335, 337, 338, 339, 340, 343, 347, 351, 352, 355, 356, 357, 359, 360, 363, 369, 370, 375, 378, 381, 382, 384, 389, 391, 393, 395, 396, 398, 399, 400, 401, 403, 406, 407, 408, 411, 412, 413, 416, 417, 419, 420, 423, 427, 428, 429, 434, 435, 440, 441, 444, 445, 447, 449, 453, 454, 456, 457, 458, 460, 463, 464, 467, 471, 472, 478, 479, 481, 484, 485, 486, 487, 488, 489, 490, 495, 496, 498, 499, 502, 503, 504, 507, 508, 511, 512, 516, 517, 519, 520, 522, 523, 524, 527, 528, 534, 537, 538, 566, 567, 573, 574, 577, 579, 591, 595, 601, 602, 603, 604, 607, 608, 609, 612, 613, 615, 616, 618, 620, 622, 623, 624, 641, 645, 683, 686], "not": [12, 13, 16, 30, 40, 44, 45, 50, 52, 53, 54, 55, 56, 58, 60, 62, 63, 66, 72, 83, 84, 88, 92, 103, 107, 113, 115, 116, 126, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 160, 162, 164, 169, 176, 183, 185, 186, 190, 195, 198, 200, 202, 203, 205, 208, 211, 217, 218, 221, 227, 231, 232, 234, 239, 240, 247, 248, 253, 256, 257, 260, 274, 278, 281, 288, 290, 294, 301, 305, 311, 318, 322, 334, 335, 338, 344, 352, 353, 356, 357, 365, 370, 372, 395, 512, 589, 590, 591, 595, 596, 610, 612, 613, 615, 616, 618, 620, 623, 624, 639, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 665, 668, 670, 675, 691, 692, 693], "input": [12, 55, 56, 62, 133, 162, 169, 205, 227, 234, 235, 239, 247, 261, 308, 309, 338, 369, 370, 535, 656, 664], "schlusseln": 12, "rfreceived": 12, "rfkey": 12, "gesucht": [12, 50, 93, 111, 232, 328, 329, 333, 347, 504], "received_key4": 12, "dict": [12, 20, 24, 43, 44, 45, 53, 55, 58, 66, 104, 112, 124, 126, 127, 130, 131, 133, 134, 136, 137, 139, 141, 143, 145, 148, 149, 150, 151, 157, 158, 170, 189, 198, 211, 212, 213, 260, 282, 293, 304, 315, 337, 344, 347, 351, 356, 357, 376, 382, 397, 398, 400, 406, 408, 411, 419, 420, 423, 427, 428, 435, 441, 455, 460, 464, 467, 471, 510, 511, 512, 516, 519, 564, 575, 577, 579, 594, 595, 599, 601, 602, 604, 607, 608, 609, 613, 615, 622, 624, 633, 634, 641, 644, 646, 649, 650, 651, 652, 653, 655, 656, 665, 671, 672, 678, 693], "cach": [12, 18, 20, 85, 86, 92, 102, 103, 133, 136, 162, 169, 189, 200, 211, 218, 232, 233, 243, 247, 253, 259, 260, 261, 262, 263, 282, 288, 308, 309, 312, 313, 317, 328, 331, 335, 338, 347, 351, 360, 362, 508, 519, 575, 577, 585, 632, 641, 645, 646, 649, 652, 653, 655, 688], "yes": [12, 18, 20, 25, 71, 82, 88, 106, 152, 162, 169, 170, 173, 176, 183, 186, 189, 192, 198, 200, 202, 211, 218, 227, 235, 239, 241, 247, 253, 256, 258, 260, 262, 263, 276, 282, 285, 287, 288, 294, 295, 297, 312, 313, 317, 325, 328, 332, 338, 339, 340, 360, 362, 396, 409, 428, 457, 485, 506, 508, 524, 577, 684, 688], "if": [12, 15, 16, 18, 20, 25, 40, 43, 44, 45, 52, 53, 54, 55, 56, 58, 60, 62, 63, 66, 71, 83, 107, 110, 112, 113, 115, 126, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 151, 152, 160, 162, 164, 169, 170, 179, 180, 181, 183, 185, 186, 195, 198, 200, 203, 205, 211, 212, 213, 216, 217, 218, 219, 221, 222, 223, 227, 228, 231, 234, 240, 244, 247, 248, 251, 253, 254, 257, 258, 259, 262, 263, 273, 274, 278, 280, 282, 288, 289, 290, 294, 296, 297, 298, 301, 305, 309, 312, 314, 315, 317, 328, 334, 338, 344, 352, 353, 355, 356, 357, 359, 361, 365, 368, 370, 395, 413, 562, 567, 573, 575, 576, 579, 580, 588, 589, 590, 591, 595, 596, 606, 610, 612, 613, 615, 616, 618, 620, 623, 624, 632, 638, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 662, 665, 667, 670, 688], "int": [12, 13, 19, 40, 42, 43, 44, 45, 53, 126, 129, 131, 133, 134, 136, 141, 145, 148, 152, 154, 169, 170, 189, 192, 198, 200, 205, 207, 222, 223, 232, 253, 270, 271, 278, 288, 293, 322, 326, 330, 332, 333, 359, 369, 374, 375, 377, 379, 380, 381, 382, 383, 386, 388, 390, 391, 392, 393, 394, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 412, 413, 414, 415, 416, 417, 418, 419, 423, 424, 425, 426, 427, 428, 429, 431, 433, 434, 435, 436, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 467, 468, 469, 470, 471, 475, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 492, 493, 494, 495, 497, 498, 499, 501, 502, 503, 504, 505, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 519, 520, 522, 524, 526, 527, 530, 532, 533, 537, 562, 575, 579, 588, 597, 599, 601, 602, 603, 604, 607, 608, 609, 612, 613, 615, 616, 622, 634, 642, 644, 645, 646, 648, 655], "els": [12, 15, 16, 18, 20, 25, 52, 54, 55, 56, 58, 60, 107, 112, 115, 133, 138, 141, 162, 164, 169, 217, 218, 258, 259, 262, 263, 282, 288, 289, 298, 328, 338, 359, 361, 368, 562, 567, 573, 575, 576, 591, 595, 612, 638], "non": [12, 15, 30, 40, 43, 44, 45, 52, 53, 54, 55, 56, 58, 60, 62, 63, 66, 83, 86, 103, 104, 111, 123, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 162, 166, 169, 187, 189, 195, 202, 211, 221, 227, 228, 234, 262, 263, 272, 274, 288, 294, 305, 306, 307, 317, 330, 338, 347, 351, 352, 359, 360, 368, 391, 399, 412, 419, 420, 426, 429, 433, 454, 462, 463, 506, 522, 545, 548, 550, 558, 562, 563, 567, 573, 575, 576, 589, 591, 595, 596, 599, 601, 602, 603, 604, 608, 609, 612, 613, 615, 616, 618, 620, 621, 623, 624, 634, 643, 644, 646, 649, 650, 651, 652, 653, 654, 655, 688], "unteritem": [12, 265, 293, 322], "formatiert": [12, 54, 55, 62, 83, 169, 196, 229, 351, 360, 370], "gebildet": [12, 260, 323, 401], "Dies": [12, 24, 28, 31, 33, 34, 52, 53, 54, 58, 60, 80, 82, 85, 92, 97, 106, 115, 116, 162, 164, 167, 169, 188, 189, 203, 230, 243, 260, 262, 282, 283, 284, 313, 314, 321, 322, 323, 324, 325, 326, 329, 330, 331, 332, 333, 339, 340, 347, 349, 351, 359, 370, 381, 434, 504, 508, 548, 549, 550, 551, 575, 688], "u": [12, 14, 28, 37, 51, 58, 67, 71, 77, 86, 88, 92, 115, 116, 170, 210, 229, 253, 256, 288, 314, 351, 370, 536, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "a": [12, 13, 15, 24, 40, 43, 44, 45, 51, 52, 54, 55, 58, 63, 64, 66, 68, 71, 74, 76, 82, 83, 88, 97, 100, 103, 104, 107, 113, 115, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 160, 161, 164, 165, 166, 168, 169, 170, 171, 173, 175, 176, 177, 180, 182, 183, 185, 186, 190, 193, 195, 198, 199, 200, 202, 205, 208, 210, 211, 216, 217, 218, 221, 227, 231, 232, 234, 235, 239, 240, 243, 247, 248, 251, 253, 254, 255, 257, 258, 260, 262, 263, 273, 274, 275, 277, 278, 280, 281, 282, 288, 290, 294, 296, 298, 301, 305, 306, 307, 311, 312, 314, 315, 317, 318, 325, 331, 334, 335, 338, 339, 340, 341, 344, 345, 351, 352, 355, 356, 357, 358, 361, 365, 368, 370, 372, 381, 395, 407, 412, 461, 476, 477, 536, 545, 548, 550, 552, 562, 573, 595, 598, 606, 612, 613, 615, 616, 618, 620, 623, 624, 633, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 659, 660, 663, 665, 666, 667, 668, 670, 677, 681, 686, 688], "farbsteuer": 12, "hsb": [12, 162, 337], "str": [12, 16, 24, 40, 43, 44, 45, 53, 54, 55, 60, 66, 97, 123, 126, 129, 131, 133, 134, 136, 137, 139, 140, 141, 143, 144, 145, 148, 149, 152, 165, 169, 170, 171, 175, 184, 186, 187, 188, 189, 192, 198, 200, 202, 203, 205, 211, 212, 213, 217, 218, 227, 231, 234, 240, 243, 244, 245, 248, 249, 250, 253, 254, 255, 256, 258, 259, 262, 263, 266, 268, 272, 276, 282, 284, 285, 290, 293, 294, 297, 298, 301, 311, 326, 328, 329, 332, 333, 335, 337, 338, 339, 340, 344, 351, 359, 361, 362, 365, 369, 370, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 567, 575, 577, 579, 580, 586, 591, 595, 599, 601, 602, 603, 604, 607, 608, 609, 612, 613, 615, 616, 618, 622, 623, 624, 634, 641, 645, 648, 649, 650, 655, 672], "f": [12, 37, 40, 54, 55, 58, 76, 131, 152, 169, 182, 222, 223, 229, 243, 254, 260, 263, 293, 309, 328, 338, 339, 340, 360, 573, 586, 635, 646, 648, 649, 650, 655, 667], "hue": [12, 56, 67, 76, 78, 112, 170, 212, 213, 247, 266, 337, 353, 371, 382, 419, 420, 450, 545, 548, 566, 646, 648, 649, 667], "sat": [12, 112, 205, 211, 212, 213, 337, 406, 419, 545, 550, 569, 592, 648, 669], "bright": 12, "visu_acl": [12, 13, 18, 20, 25, 52, 71, 98, 117, 162, 164, 165, 169, 170, 175, 179, 189, 195, 196, 198, 200, 202, 218, 230, 231, 247, 253, 254, 262, 266, 277, 279, 282, 283, 284, 285, 288, 294, 295, 300, 301, 304, 308, 309, 311, 328, 331, 335, 338, 339, 340, 347, 351, 356, 357, 360, 361, 362, 592, 600, 646, 667, 671, 686], "rw": [12, 13, 18, 20, 25, 52, 71, 83, 98, 111, 162, 164, 169, 170, 175, 179, 186, 195, 196, 198, 200, 202, 218, 230, 231, 247, 253, 254, 262, 266, 277, 282, 283, 284, 285, 288, 294, 295, 301, 308, 309, 315, 328, 331, 347, 351, 352, 355, 360, 361, 396, 496, 524, 645, 684, 686, 690], "rgb": [12, 162, 163, 169, 199, 200, 375, 381, 407, 434, 450, 651, 654, 655], "r": [12, 14, 27, 28, 37, 47, 68, 83, 92, 103, 107, 115, 125, 162, 169, 191, 198, 201, 214, 215, 219, 238, 247, 255, 264, 267, 328, 337, 338, 381, 400, 408, 419, 420, 441, 464, 467, 487, 567, 591, 630, 635, 638, 641, 646, 652, 674, 677, 678], "g": [12, 40, 45, 54, 55, 66, 82, 85, 130, 133, 136, 139, 148, 150, 152, 160, 168, 173, 176, 180, 183, 186, 195, 198, 200, 202, 205, 211, 227, 234, 239, 245, 247, 248, 253, 260, 262, 278, 288, 290, 294, 295, 296, 297, 301, 305, 317, 335, 341, 355, 368, 615, 618, 623, 624, 642, 644, 646, 648, 649, 650, 651, 652, 653, 655, 656, 666, 667, 670], "blau": [12, 56, 200, 292], "heizung_status": 12, "heizungsstatus": 12, "ausgeschaltet": [12, 20, 52, 58, 98, 233, 314, 363, 381, 407, 450, 517, 574, 682], "heizung": [12, 160, 289, 338, 349, 351, 403, 405, 409, 443, 522, 545, 550, 585, 622, 682], "startet": [12, 27, 45, 52, 71, 79, 83, 86, 92, 102, 119, 120, 154, 164, 170, 189, 225, 261, 314, 330, 359, 381, 382, 416, 479, 481, 483, 484, 488, 612, 615, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 671, 672, 674, 691], "heizung_status_string": 12, "windbearing": 12, "windricht": [12, 262, 365], "grad": [12, 131, 162, 163, 164, 170, 189, 326, 328, 330, 334, 347, 502, 569, 573, 580, 592, 599, 636, 638], "erhalt": [12, 24, 47, 52, 56, 58, 60, 62, 71, 79, 93, 96, 97, 104, 115, 116, 123, 154, 155, 162, 164, 165, 167, 169, 170, 187, 189, 196, 203, 219, 229, 244, 255, 262, 270, 271, 293, 304, 314, 323, 330, 349, 351, 369, 379, 381, 382, 400, 408, 435, 441, 453, 463, 464, 467, 508, 512, 561, 563, 572, 573, 574, 576, 577, 585, 591, 595, 612, 632, 638, 641, 671, 682], "himmelsricht": [12, 131, 328, 638], "umwandl": [12, 131, 165, 249, 443], "ds_matchstring": [12, 97, 184, 268], "currently": [12, 97, 137, 146, 152, 173, 183, 198, 199, 205, 208, 211, 231, 234, 240, 245, 253, 254, 280, 288, 301, 305, 312, 344, 368, 394, 468, 643, 649, 655], "windbearing_compass_string": 12, "n": [12, 44, 45, 71, 88, 104, 141, 152, 165, 168, 173, 188, 248, 257, 262, 267, 277, 278, 338, 360, 397, 400, 408, 434, 464, 467, 476, 477, 545, 548, 550, 552, 558, 566, 613, 615, 616, 642, 648, 653, 667, 679], "no": [12, 14, 18, 30, 43, 44, 45, 53, 54, 55, 58, 63, 66, 71, 82, 83, 86, 88, 106, 111, 113, 126, 130, 132, 136, 137, 139, 141, 143, 147, 148, 149, 152, 154, 155, 157, 158, 160, 165, 176, 177, 179, 182, 183, 185, 186, 189, 198, 202, 205, 208, 211, 216, 217, 218, 227, 231, 234, 235, 240, 248, 253, 256, 257, 262, 263, 273, 294, 301, 304, 305, 312, 315, 317, 325, 334, 338, 344, 355, 356, 357, 360, 361, 365, 368, 395, 409, 429, 457, 506, 524, 595, 606, 610, 612, 613, 615, 618, 620, 623, 624, 643, 644, 645, 646, 647, 649, 650, 652, 653, 654, 655, 663, 688], "o": [12, 13, 52, 69, 76, 82, 85, 104, 149, 203, 210, 227, 248, 261, 278, 331, 337, 384, 400, 408, 412, 419, 420, 461, 464, 467, 487, 567, 573, 591, 641, 646, 652, 653, 670, 671, 688], "SO": [12, 104], "sw": [12, 155, 210, 282, 304, 356, 357, 651, 674], "w": [12, 104, 152, 161, 169, 170, 186, 195, 210, 235, 236, 247, 255, 256, 287, 305, 306, 307, 315, 317, 337, 349, 419, 420, 487, 567, 585, 591, 622, 641, 646, 653, 667, 688], "nw": [12, 104, 111, 360, 520, 545, 558, 643], "22": [12, 76, 79, 104, 155, 168, 185, 197, 199, 203, 219, 262, 270, 271, 274, 289, 304, 328, 334, 338, 347, 356, 357, 360, 585, 633, 649, 650, 656], "45": [12, 20, 42, 71, 83, 86, 103, 148, 187, 250, 293, 301, 337, 347, 599, 622, 636, 641], "aktuelleregeneration": 12, "regenerationsschritt": 12, "text": [12, 15, 43, 44, 45, 51, 52, 53, 54, 55, 57, 61, 62, 63, 66, 74, 83, 84, 89, 90, 103, 131, 141, 148, 151, 156, 161, 169, 170, 187, 198, 202, 211, 219, 227, 228, 231, 248, 251, 253, 263, 272, 274, 282, 289, 294, 303, 314, 315, 316, 330, 338, 339, 340, 346, 347, 353, 361, 378, 381, 406, 433, 443, 445, 456, 460, 462, 463, 469, 471, 479, 513, 534, 545, 554, 566, 575, 577, 601, 602, 604, 606, 607, 608, 609, 610, 613, 615, 620, 621, 622, 624, 625, 626, 630, 632, 641, 643, 645, 646, 648, 649, 654, 655, 682, 688], "initial_valu": [12, 53, 162, 262, 263, 266, 276, 285, 326, 328, 329, 339, 340, 360, 568, 570, 574, 575, 577, 603, 632, 651, 671], "regeneration": 12, "soletank": 12, "full": [12, 56, 58, 59, 61, 62, 66, 113, 141, 160, 164, 170, 175, 182, 195, 219, 227, 262, 273, 284, 294, 309, 365, 612, 624, 641, 646, 649, 655, 671, 688], "besalz": 12, "verdrang": 12, "ruckspul": 12, "auswasch": 12, "korrespondier": 12, "passend": [12, 92, 98, 103, 115, 184, 192, 212, 213, 226, 262, 268, 314, 321, 326, 330, 332, 362, 400, 440, 441, 464, 467, 573, 595, 642], "fals": [12, 13, 16, 18, 20, 25, 30, 40, 44, 45, 52, 53, 54, 55, 58, 62, 63, 66, 84, 106, 107, 111, 112, 113, 115, 116, 117, 119, 120, 121, 122, 123, 126, 127, 129, 133, 134, 136, 137, 138, 139, 141, 142, 147, 148, 149, 152, 154, 155, 157, 158, 160, 162, 164, 166, 168, 169, 170, 180, 186, 187, 191, 196, 198, 200, 201, 205, 206, 211, 217, 218, 219, 227, 238, 241, 253, 254, 261, 262, 263, 264, 266, 267, 272, 276, 279, 282, 283, 284, 288, 289, 293, 294, 297, 298, 304, 306, 307, 314, 319, 322, 325, 326, 327, 328, 329, 330, 331, 332, 334, 337, 338, 343, 344, 347, 351, 352, 356, 357, 359, 360, 370, 375, 381, 382, 384, 389, 391, 396, 398, 400, 401, 403, 406, 407, 408, 411, 412, 413, 416, 417, 427, 429, 440, 449, 457, 458, 464, 467, 479, 481, 485, 496, 498, 499, 504, 506, 507, 508, 511, 515, 516, 517, 523, 524, 538, 572, 573, 574, 576, 577, 579, 583, 585, 589, 592, 595, 599, 600, 610, 612, 613, 615, 616, 618, 620, 621, 622, 623, 624, 634, 643, 646, 651, 655, 662, 666, 669, 684, 690, 693], "stellgr_rueckmeld": 12, "knx_dpt": [12, 13, 18, 20, 25, 52, 58, 60, 61, 98, 106, 160, 162, 164, 185, 189, 197, 200, 211, 231, 232, 239, 247, 262, 275, 278, 288, 289, 290, 294, 295, 301, 314, 323, 331, 338, 339, 340, 352, 355, 358, 360, 566, 683, 686], "001": [12, 162, 165, 339, 340, 434, 641], "knx_cach": [12, 18, 20, 25, 162, 189, 211, 232, 262, 289, 294, 295, 323, 339, 340, 566, 641, 653, 665, 666], "68": [12, 254, 255, 282, 573], "stellgr_rueckmeldung_bool": 12, "Bei": [12, 14, 25, 27, 44, 45, 46, 53, 56, 58, 60, 67, 71, 76, 77, 79, 83, 85, 87, 89, 90, 92, 94, 95, 97, 98, 100, 106, 115, 116, 120, 123, 124, 162, 165, 168, 170, 181, 189, 194, 219, 224, 230, 238, 243, 244, 260, 263, 272, 289, 292, 299, 314, 321, 323, 325, 326, 329, 330, 331, 332, 333, 338, 347, 354, 378, 398, 400, 410, 427, 432, 435, 441, 454, 464, 467, 508, 511, 533, 545, 547, 548, 550, 552, 554, 558, 563, 565, 566, 573, 574, 576, 577, 583, 586, 589, 591, 596, 613, 615, 628, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 678, 687, 688, 691, 693], "sollzustand": 12, "folgea": 12, "folgeb": 12, "folgec": 12, "folged": 12, "lost": [12, 18, 53, 97, 141, 278, 288, 326, 351, 434, 572, 573, 592, 603, 653, 655], "folgeitem": 12, "ubergibt": [12, 316, 351], "beding": [12, 42, 169, 187, 320, 321, 323, 326, 328, 329, 330, 331, 332, 333, 381, 508, 512, 573, 576, 599, 634, 642, 671], "konkret": [12, 28, 58, 77, 169, 191, 201, 267, 328, 329, 330, 508, 622], "neuberechn": [12, 189, 573, 577], "angestoss": [12, 351, 573], "ubergeb": [12, 43, 52, 53, 58, 62, 80, 86, 106, 123, 162, 165, 170, 229, 255, 289, 314, 326, 332, 351, 382, 394, 468, 522, 563, 586, 589, 592, 595, 596, 599, 601, 602, 604, 607, 608, 609, 634, 638, 671], "ergibt": [12, 24, 98, 229, 262, 306, 307, 323, 325, 333, 494, 566, 622, 689], "hilfsit": [12, 13], "berechnet": [12, 16, 189, 196, 200, 219, 306, 307, 325, 326, 347, 362, 443, 453, 462, 498, 499, 506, 561, 569, 570, 573, 576, 577, 592, 599], "laufzeit_autotim": 12, "enddatetime_autotim": 12, "zwisch": [12, 24, 36, 50, 52, 60, 76, 78, 79, 82, 83, 85, 86, 100, 103, 106, 112, 116, 117, 131, 162, 164, 165, 169, 179, 187, 189, 192, 194, 200, 215, 232, 262, 266, 279, 289, 302, 314, 323, 325, 326, 328, 329, 331, 332, 347, 349, 351, 370, 378, 381, 382, 383, 394, 400, 401, 406, 407, 408, 415, 418, 423, 424, 425, 435, 440, 441, 442, 447, 449, 450, 453, 460, 461, 462, 464, 467, 468, 471, 475, 476, 477, 479, 480, 483, 485, 487, 492, 498, 499, 501, 503, 507, 510, 518, 519, 527, 566, 568, 569, 570, 584, 585, 592, 596, 599, 600, 622, 634, 671, 672, 674, 682, 689, 690], "iso": [12, 82, 148, 300, 599, 634], "errechnet": [12, 306, 307, 326, 347, 519, 573], "abwes": [12, 36, 78], "strptim": [12, 52, 330], "y": [12, 24, 52, 54, 56, 71, 83, 86, 87, 107, 115, 116, 133, 148, 152, 155, 161, 164, 186, 229, 232, 262, 263, 287, 304, 315, 317, 328, 329, 330, 338, 339, 340, 356, 357, 360, 462, 563, 584, 585, 646, 679], "m": [12, 15, 16, 37, 52, 54, 55, 56, 61, 64, 68, 71, 83, 107, 113, 115, 116, 131, 148, 152, 164, 181, 186, 192, 195, 196, 232, 239, 240, 249, 253, 262, 263, 275, 287, 288, 301, 308, 309, 317, 326, 332, 337, 338, 352, 353, 355, 356, 357, 400, 408, 462, 464, 467, 568, 569, 570, 584, 585, 592, 599, 634, 651], "dt": [12, 66, 136, 137, 142, 147, 148, 150, 229, 262, 351, 623, 624, 634, 641, 653, 667], "h": [12, 16, 54, 71, 98, 103, 107, 115, 116, 131, 136, 148, 152, 162, 164, 165, 170, 181, 186, 192, 200, 210, 232, 253, 259, 260, 261, 262, 263, 287, 288, 293, 314, 317, 338, 349, 351, 371, 460, 461, 545, 558, 568, 569, 584, 585, 592, 599, 622, 634, 649, 677], "now": [12, 16, 19, 40, 56, 66, 137, 148, 152, 155, 160, 187, 203, 206, 217, 219, 234, 235, 236, 240, 243, 248, 253, 254, 257, 263, 278, 287, 288, 304, 318, 338, 344, 355, 356, 357, 361, 370, 411, 446, 463, 516, 520, 573, 575, 599, 624, 634, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 663, 664, 669, 670, 688], "total_second": 12, "standby": [12, 162, 198, 231, 248, 289, 294, 295, 338, 370, 400, 406, 408, 433, 434, 441, 464, 467, 487, 536, 655, 674, 682], "hierfur": [12, 82, 189, 289, 326, 330, 331, 574], "shtim": [12, 40, 66, 83, 151, 253, 263, 338, 560, 573, 599, 624, 634, 641, 643, 645, 646, 648, 649, 651, 652, 653, 655, 674], "time_sinc": [12, 148, 599, 634], "ruckgab": [12, 40, 44, 45, 63, 66, 126, 129, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 314, 360, 516, 612, 613, 615, 616, 618, 620, 623, 624], "einheit": [12, 192, 262, 306, 307, 351, 394, 401, 409, 436, 452, 462, 468, 470, 479, 508, 517], "Zur": [12, 43, 53, 71, 76, 82, 83, 90, 100, 106, 117, 153, 169, 170, 212, 215, 262, 283, 291, 293, 314, 330, 337, 351, 399, 587, 590, 592, 595, 601, 602, 603, 604, 606, 607, 608, 609, 610, 671], "bitt": [12, 14, 27, 33, 34, 43, 47, 48, 52, 53, 71, 73, 77, 78, 82, 83, 85, 86, 89, 92, 96, 100, 106, 109, 110, 123, 164, 168, 169, 178, 181, 197, 214, 215, 222, 232, 249, 250, 259, 261, 276, 277, 283, 284, 285, 291, 300, 302, 306, 307, 309, 314, 337, 338, 339, 340, 343, 347, 359, 360, 362, 363, 369, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 558, 562, 601, 602, 603, 604, 608, 609, 628, 630, 635, 641, 644, 647, 648, 652, 653, 654, 655, 656, 671, 672, 674, 675, 677, 678, 684], "feiertag": [12, 83, 107, 115, 125, 282, 573, 632, 637, 638], "dat": [12, 28, 45, 52, 53, 54, 55, 56, 59, 60, 62, 76, 83, 85, 86, 92, 96, 97, 98, 102, 103, 104, 106, 111, 123, 130, 131, 136, 142, 148, 155, 162, 164, 165, 167, 170, 178, 181, 184, 188, 189, 192, 203, 217, 218, 219, 220, 224, 226, 229, 230, 232, 244, 256, 261, 263, 268, 289, 295, 302, 304, 306, 307, 311, 313, 337, 338, 348, 356, 357, 360, 361, 362, 365, 368, 370, 382, 389, 392, 394, 396, 397, 401, 405, 416, 423, 426, 434, 436, 446, 457, 460, 462, 463, 468, 470, 479, 484, 485, 490, 497, 504, 511, 514, 525, 530, 532, 545, 550, 552, 554, 558, 573, 575, 579, 580, 596, 597, 598, 604, 612, 615, 622, 641, 643, 644, 645, 653, 655, 660, 663, 685, 688, 693], "nachschau": 12, "importiert": [12, 52, 125, 131, 187, 589, 598, 638], "boost_remaining_a": 12, "__import__": 12, "math": [12, 573, 646, 649, 670], "ceil": [12, 573], "ventilation": [12, 183, 206], "boost": [12, 170, 288, 486], "boost_duration": [12, 207, 415], "60": [12, 16, 19, 52, 55, 86, 87, 178, 183, 189, 192, 200, 206, 211, 218, 232, 243, 249, 253, 258, 262, 263, 288, 297, 308, 309, 314, 323, 325, 328, 344, 346, 367, 370, 377, 396, 398, 399, 401, 407, 414, 415, 417, 418, 443, 459, 475, 478, 479, 486, 487, 492, 498, 499, 508, 510, 512, 517, 518, 573, 574, 585, 592, 622, 638], "knx": [12, 14, 16, 18, 43, 50, 52, 53, 54, 55, 67, 78, 86, 91, 98, 103, 107, 111, 112, 115, 116, 123, 124, 152, 160, 162, 164, 169, 170, 182, 186, 198, 205, 211, 218, 223, 227, 234, 239, 245, 247, 253, 257, 260, 261, 278, 288, 289, 290, 294, 295, 298, 301, 315, 323, 326, 328, 329, 330, 331, 335, 339, 340, 344, 352, 353, 355, 356, 357, 360, 364, 513, 545, 548, 554, 566, 567, 572, 573, 579, 580, 591, 594, 597, 601, 602, 604, 607, 608, 609, 610, 617, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 659, 661, 663, 665, 666, 667, 670, 671, 674, 681, 691], "tor": [12, 338], "vorn": [12, 83, 103], "aufzu": 12, "runt": [12, 162, 187, 200], "10m": [12, 562, 569, 592, 688], "bewasserungskreis": 12, "lamp": [12, 52, 71, 98, 160, 162, 170, 316, 360], "schaltet": [12, 162, 165, 170, 314, 337, 347, 382, 401, 406, 453, 460], "rundbeet": 12, "visu": [12, 18, 40, 69, 71, 78, 98, 103, 137, 155, 162, 164, 169, 178, 202, 219, 220, 239, 288, 289, 294, 302, 304, 312, 313, 314, 320, 328, 329, 331, 339, 340, 347, 352, 354, 355, 359, 381, 400, 408, 435, 441, 446, 464, 467, 485, 496, 524, 527, 545, 554, 646, 649, 652, 653, 654, 655, 662, 663, 664, 665, 666, 667, 669, 670, 671, 674, 683, 685, 686, 690], "zyklisch": [12, 189, 314, 351, 382, 439, 592, 674], "restdau": 12, "eben": [12, 58, 67, 97, 98, 100, 106, 112, 116, 181, 229, 238, 323, 325, 326, 329, 332, 333, 370, 561, 566, 589, 622], "abzieht": 12, "Da": [12, 13, 27, 68, 69, 79, 83, 85, 90, 92, 103, 106, 110, 111, 115, 116, 118, 162, 192, 212, 213, 232, 261, 262, 265, 289, 322, 324, 325, 328, 329, 330, 331, 338, 346, 369, 434, 561, 586, 589, 596, 630, 679, 682, 688], "standig": [12, 260, 293, 326, 346, 381, 514], "geschieht": [12, 42, 53, 71, 80, 95, 98, 116, 170, 226, 261, 325, 338, 548, 549, 550, 551, 588, 603, 683], "haufig": [12, 71, 79, 200, 261, 316, 331, 381, 479, 573, 638], "cycl": [12, 19, 42, 55, 66, 87, 103, 117, 137, 141, 147, 148, 183, 188, 192, 198, 206, 211, 217, 218, 219, 229, 234, 235, 236, 241, 245, 249, 258, 260, 262, 270, 281, 282, 283, 284, 285, 298, 299, 300, 308, 309, 310, 312, 313, 323, 328, 330, 332, 346, 360, 361, 362, 401, 573, 577, 594, 600, 622, 624, 632, 642, 645, 646, 648, 649, 650, 652, 655, 666, 670, 693], "10s": 12, "bewaesser": 12, "onoff": [12, 112, 155, 212, 213, 304, 338, 356, 357, 561], "enforce_updat": [12, 13, 18, 20, 25, 160, 162, 164, 169, 170, 179, 198, 200, 205, 211, 227, 230, 231, 247, 248, 250, 253, 257, 262, 266, 275, 276, 279, 281, 282, 288, 290, 294, 295, 301, 314, 328, 329, 332, 338, 339, 340, 351, 360, 369, 370, 495, 567, 570, 571, 573, 576, 577, 591, 641, 653, 674], "rest": [12, 56, 93, 111, 120, 154, 211, 218, 229, 257, 294, 339, 340, 360, 384, 409, 458, 528, 545, 548, 550, 596, 647, 651, 652, 655], "ro": [12, 165, 170, 175, 179, 186, 189, 198, 200, 202, 253, 254, 262, 266, 279, 285, 294, 299, 300, 311, 315, 335, 339, 340, 355, 362, 396, 496, 505, 524, 645, 646, 688, 690], "age": [12, 133, 161, 243, 262, 263, 325, 347, 360, 562, 567, 575, 577, 591, 642, 647, 667, 688], "out": [12, 54, 55, 66, 107, 115, 122, 127, 136, 141, 162, 169, 175, 183, 195, 205, 218, 227, 235, 236, 247, 248, 257, 274, 278, 290, 294, 297, 305, 312, 313, 345, 355, 365, 368, 623, 624, 646, 650, 651, 653, 655, 670, 688], "on_chang": [12, 13, 162, 169, 189, 338, 359, 381, 512, 561, 562, 567, 572, 573, 577, 591, 646, 653, 655, 671, 672], "ruckmeld": [12, 58, 82, 162, 169, 203, 232, 237, 331, 381, 599], "prasenzmeld": [12, 13], "anwesenheitsstatus": 12, "send": [12, 14, 28, 47, 52, 62, 66, 71, 86, 124, 127, 141, 155, 160, 162, 167, 169, 170, 178, 181, 199, 200, 210, 211, 218, 227, 230, 231, 232, 237, 247, 248, 255, 256, 257, 269, 272, 273, 274, 277, 281, 290, 293, 296, 301, 304, 305, 315, 323, 337, 338, 356, 357, 358, 359, 365, 368, 381, 390, 400, 401, 406, 407, 408, 417, 433, 434, 435, 441, 457, 464, 466, 467, 469, 471, 476, 477, 504, 507, 511, 512, 521, 525, 545, 550, 552, 618, 623, 624, 641, 642, 645, 646, 647, 648, 649, 653, 654, 655, 663, 666, 667, 671, 674], "imm": [12, 52, 67, 73, 79, 83, 85, 97, 106, 112, 115, 162, 169, 189, 219, 222, 230, 262, 289, 306, 307, 314, 324, 325, 326, 327, 328, 329, 330, 331, 332, 339, 340, 359, 363, 381, 382, 383, 495, 504, 566, 569, 572, 573, 576, 589, 591, 592, 621, 682], "prasenz": [12, 419, 420], "gesendet": [12, 13, 45, 62, 98, 155, 156, 162, 164, 169, 170, 194, 200, 203, 230, 237, 241, 255, 256, 272, 293, 303, 304, 306, 307, 314, 338, 339, 340, 351, 369, 375, 376, 379, 381, 382, 400, 406, 408, 432, 434, 435, 441, 451, 454, 457, 464, 467, 471, 489, 495, 511, 512, 532, 533, 535, 569, 592, 615, 622], "anwes": [12, 328, 490], "nachd": [12, 22, 27, 37, 42, 58, 67, 83, 86, 92, 96, 115, 162, 192, 207, 226, 292, 308, 309, 328, 330, 382, 393, 486, 500, 512, 522, 588, 593, 688], "pm1": 12, "meldung": [12, 83, 92, 103, 213, 219, 220, 256, 282, 338, 434, 473, 517, 527], "pm2": 12, "pm3": 12, "pm4": 12, "pm5": 12, "ermittl": [12, 58, 325, 326, 330, 332], "wertabweich": 12, "luftfeucht": [12, 91, 165, 170, 200, 261, 262, 337, 338], "innerhalb": [12, 42, 50, 62, 71, 85, 92, 96, 103, 106, 112, 115, 187, 189, 224, 262, 295, 313, 314, 321, 325, 328, 329, 332, 338, 347, 363, 412, 431, 453, 508, 569, 576, 583, 588, 589, 590, 592, 595, 596, 598, 599, 632, 634, 641, 693], "wichtig": [12, 13, 27, 40, 47, 52, 58, 62, 67, 69, 71, 73, 76, 83, 86, 87, 92, 103, 106, 107, 115, 116, 123, 169, 178, 192, 213, 224, 238, 261, 289, 302, 321, 323, 325, 326, 328, 329, 381, 563, 572, 573, 591, 671, 693], "steckt": [12, 333], "erstmal": [12, 71, 79, 85, 92, 95, 200, 271, 295, 327, 362, 400, 435, 441, 464, 467, 508, 572, 596, 641], "gemerkt": 12, "on_updat": [12, 200, 359, 512, 561, 562, 567, 572, 573, 577, 591, 646, 653, 671, 672], "ja": [12, 20, 52, 54, 55, 98, 116, 219, 255, 261, 276, 328, 333, 338, 406, 572], "gebraucht": [12, 58, 79, 82, 323, 325], "knx_list": [12, 13, 98, 160, 162, 164, 185, 197, 211, 231, 232, 239, 247, 275, 278, 288, 290, 301, 314, 352, 355, 358, 360, 566, 641, 653, 659, 686], "vor5minut": 12, "5m": [12, 148, 568, 688], "mehrals5prozent": 12, "gross": [12, 27, 46, 48, 60, 71, 82, 90, 97, 100, 106, 110, 116, 118, 119, 162, 170, 187, 189, 192, 203, 210, 219, 222, 223, 229, 235, 256, 263, 289, 293, 295, 325, 328, 331, 332, 351, 396, 485, 496, 498, 499, 508, 523, 532, 580, 612, 621, 626, 630, 632, 638, 671, 672, 682, 692, 693], "prozent": [12, 162, 163, 164, 170, 213, 260, 378, 420, 481, 580, 638], "or": [12, 16, 40, 43, 44, 45, 52, 53, 54, 55, 58, 60, 64, 66, 79, 83, 103, 104, 107, 113, 115, 126, 127, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 151, 152, 157, 158, 160, 162, 164, 165, 168, 169, 173, 175, 176, 180, 183, 185, 186, 193, 195, 198, 199, 200, 202, 205, 206, 211, 217, 218, 221, 227, 231, 240, 245, 247, 248, 251, 253, 254, 255, 257, 258, 260, 262, 273, 274, 278, 280, 281, 288, 290, 294, 296, 301, 304, 305, 312, 315, 326, 328, 329, 330, 334, 335, 338, 339, 340, 341, 342, 344, 352, 353, 355, 356, 357, 359, 361, 365, 368, 370, 395, 405, 413, 453, 457, 562, 573, 579, 595, 601, 602, 604, 607, 608, 609, 610, 612, 613, 615, 616, 618, 623, 624, 632, 641, 643, 644, 645, 646, 649, 650, 652, 653, 655, 670, 674], "zeitlich": [13, 170, 295, 347, 398, 401, 424, 425, 447, 449, 480, 483, 498, 499, 501, 573, 585, 599, 636], "verzoger": [13, 321, 326, 332, 351, 382, 393, 400, 435, 495, 508, 522], "realisi": [13, 97, 321, 568], "eingang": [13, 162, 192, 261, 314, 337, 369, 412, 436, 461, 500, 526], "ereignis": [13, 42, 83, 164, 272, 324, 327, 471, 586, 594, 641, 674], "ausgang": [13, 204, 261, 412, 461, 500, 526], "nimmt": [13, 43, 53, 58, 96, 219, 325, 490, 606, 610, 630], "zeitglied": [13, 574], "numer": [13, 43, 53, 106, 115, 164, 165, 223, 262, 285, 289, 331, 360, 376, 401, 428, 461, 483, 575, 577, 601, 602, 604, 607, 608, 609, 632, 641], "15": [13, 42, 52, 57, 71, 103, 129, 142, 147, 155, 160, 165, 176, 189, 192, 195, 196, 202, 219, 229, 240, 254, 255, 262, 270, 271, 279, 288, 290, 294, 295, 304, 328, 329, 332, 334, 356, 357, 360, 370, 379, 443, 449, 486, 526, 569, 592, 622, 638, 640, 649, 657], "tim": [13, 16, 40, 42, 55, 56, 66, 71, 76, 86, 97, 103, 111, 123, 130, 133, 136, 138, 141, 142, 147, 148, 152, 155, 160, 180, 183, 184, 185, 187, 188, 192, 198, 205, 211, 217, 218, 221, 222, 223, 227, 234, 240, 243, 248, 250, 253, 262, 263, 268, 274, 278, 281, 284, 288, 294, 295, 297, 298, 304, 305, 314, 317, 325, 326, 330, 332, 337, 338, 346, 347, 351, 352, 355, 356, 357, 359, 361, 365, 368, 370, 395, 397, 427, 428, 434, 446, 453, 455, 463, 479, 486, 508, 522, 527, 533, 536, 545, 554, 562, 568, 573, 574, 575, 598, 612, 624, 641, 642, 643, 644, 646, 648, 649, 650, 651, 652, 653, 654, 655, 660, 663, 664, 666, 667, 670, 674, 686, 688], "reed": 13, "kontakt": [13, 25, 170, 337, 382, 472], "fenst": [13, 25, 44, 90, 160, 187, 289, 328, 613], "Wire": [13, 232, 285, 461, 483, 545, 548, 617, 643, 663, 666, 667], "multi": [13, 44, 45, 54, 55, 61, 66, 67, 84, 103, 126, 151, 157, 158, 173, 186, 189, 198, 212, 213, 239, 245, 289, 301, 368, 610, 613, 615, 624, 641, 642, 643, 644, 646, 649, 651, 655, 674], "i": [13, 14, 16, 40, 44, 47, 52, 54, 55, 58, 66, 69, 73, 76, 82, 85, 149, 152, 164, 165, 170, 177, 186, 199, 205, 208, 210, 218, 221, 225, 227, 229, 234, 239, 240, 253, 261, 262, 269, 278, 281, 284, 287, 288, 294, 298, 308, 309, 317, 321, 338, 341, 461, 613, 624, 635, 663, 665, 667, 674], "sensor": [13, 177, 199, 200, 204, 212, 213, 219, 221, 245, 261, 281, 293, 337, 368, 371, 383, 407, 412, 419, 420, 434, 461, 480, 483, 489, 521, 545, 548, 550, 573, 643, 646, 647, 649, 650, 653, 654, 666, 670], "per": [13, 15, 21, 28, 36, 44, 52, 56, 62, 71, 76, 78, 92, 125, 131, 141, 157, 200, 255, 256, 259, 260, 261, 262, 274, 284, 288, 300, 310, 314, 316, 329, 341, 360, 423, 457, 486, 494, 504, 512, 531, 545, 550, 552, 573, 613, 638, 646, 648, 653, 655], "abgefragt": [13, 58, 104, 117, 121, 124, 162, 169, 184, 189, 192, 203, 207, 210, 212, 213, 244, 268, 270, 271, 285, 289, 325, 328, 330, 360, 370, 375, 380, 381, 382, 386, 401, 434, 480, 484, 499, 514, 537, 592, 600, 632, 641, 671], "bus": [13, 66, 67, 69, 78, 86, 87, 98, 111, 162, 164, 167, 175, 177, 202, 261, 294, 330, 409, 434, 461, 483, 617, 624, 642, 646, 655, 659, 663], "leid": [13, 92, 412, 583, 688], "vertauscht": [13, 71, 272, 412, 471], "umgekehrt": [13, 169, 263, 325], "geschloss": [13, 45, 52, 162, 330, 615], "geoffnet": [13, 52, 92, 95, 162, 187, 207, 289, 527, 585, 617], "hinzufug": [13, 59, 82, 111, 162, 319, 326, 332, 594, 688], "ow": [13, 87, 104, 261], "esszimmerlink": 13, "ow_addr": [13, 92, 232, 261, 288], "3a": [13, 261], "cbf713000000": 13, "ow_sensor": [13, 232, 261, 288, 648], "ib": [13, 261, 461], "knx_send": [13, 18, 20, 52, 54, 55, 98, 106, 160, 162, 164, 185, 197, 200, 232, 247, 262, 275, 278, 288, 289, 290, 294, 295, 339, 340, 352, 355, 360, 566, 567, 591, 659, 683, 686], "82": [13, 192], "knx_reply": [13, 197, 232, 275, 288, 339, 340], "lautsprech": [13, 169, 276, 314, 381, 504, 545, 548], "gpio": [13, 278, 285, 476, 545, 550, 641, 643, 645, 646, 649, 650, 653, 655, 670], "raspberry": [13, 14, 92, 204, 239, 277, 278, 286, 310, 412, 483, 484, 545, 548, 550, 641, 643, 646, 688], "geschaltet": [13, 69, 200, 347, 376, 423, 450, 519], "kommt": [13, 24, 54, 55, 67, 85, 103, 116, 117, 123, 243, 260, 263, 328, 338, 381, 400, 441, 451, 464, 467, 472, 585, 592, 600, 641, 674, 688], "dess": [13, 36, 78, 163, 170, 184, 187, 192, 210, 212, 213, 215, 220, 237, 252, 261, 262, 265, 268, 289, 302, 322, 330, 331, 333, 348, 357, 360, 366, 371, 396, 416, 450, 512, 562, 573, 575, 578, 595, 622, 641, 674], "verfalscht": 13, "adressier": [13, 25, 333, 379, 449, 496, 561, 576], "elternelement": 13, "zufug": 13, "gaestezimmer_lautsprech": 13, "gpio_ausgab": 13, "gpio_out": 13, "38": [13, 155, 192, 199, 304, 347, 356, 357, 365, 381], "nachtobjekt": 13, "ansteuer": [13, 48, 53, 69, 163, 168, 213, 265, 271, 373, 374, 375, 379, 380, 382, 384, 414, 417, 433, 442, 465, 475, 500, 545, 548, 550, 558, 610, 617, 618, 642, 692], "led": [13, 204, 219, 247, 283, 292, 295, 305, 314, 338, 412, 651], "ahnlich": [13, 71, 74, 80, 83, 84, 86, 106, 162, 163, 192, 313, 326, 328, 332, 360, 434, 592, 681], "burg": [13, 599, 636], "dammer": [13, 325], "morg": [13, 76, 116, 262, 311, 329, 347, 361, 502, 545, 548, 550, 552, 554, 558], "abend": [13, 325, 326, 331, 585], "danach": [13, 52, 68, 80, 83, 86, 92, 102, 114, 169, 282, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 572, 573, 632, 674, 688], "sonn": [13, 113, 218, 321, 325, 326, 328, 330, 332, 569, 592, 638], "schon": [13, 50, 56, 62, 76, 82, 92, 106, 162, 272, 314, 328, 359, 561, 572, 671, 672], "unterhalb": [13, 52, 54, 55, 56, 60, 62, 76, 123, 165, 203, 324, 325, 327, 370, 410, 496, 523, 575, 614, 619, 635, 682, 686, 688], "horizont": [13, 325, 569, 592, 599, 636], "befindet": [13, 42, 50, 52, 83, 93, 103, 111, 169, 282, 314, 321, 333, 369, 407], "himmel": 13, "dennoch": [13, 83, 116, 331, 381, 527], "leicht": [13, 15, 24, 79, 106, 115, 192, 261, 262, 326, 360, 512, 566, 687], "erhellt": 13, "beid": [13, 24, 37, 43, 47, 58, 83, 85, 86, 106, 116, 122, 155, 169, 170, 187, 188, 189, 272, 276, 304, 314, 325, 328, 330, 331, 332, 347, 349, 432, 573, 574, 576, 577, 599, 634, 638, 683], "uberlass": [13, 58], "schliesslich": [13, 58, 71, 116, 325, 328, 367, 688], "eindeut": [13, 58, 62, 95, 123, 187, 189, 200, 314, 325, 496, 504, 523, 632, 686], "natur": [13, 36, 57, 62, 80, 82, 85, 86, 87, 92, 97, 116, 138, 192, 210, 289, 316, 319, 328, 339, 340, 561, 595], "geo": [13, 262], "koordinat": [13, 83, 113, 219, 262, 462], "zeitzon": [13, 52, 103, 155, 304, 423, 584, 599, 634, 674], "hinterlegt": [13, 27, 43, 53, 56, 58, 84, 96, 104, 111, 123, 162, 169, 170, 184, 191, 201, 215, 217, 230, 237, 264, 267, 268, 282, 322, 325, 326, 330, 362, 381, 497, 533, 575, 608, 632, 633, 642, 674, 687], "bringt": [13, 68, 97, 115, 171, 583, 585, 629], "env": [13, 15, 16, 18, 19, 20, 42, 52, 54, 55, 68, 125, 136, 155, 162, 219, 261, 304, 338, 356, 357, 360, 361, 560, 580, 581, 585, 588, 590, 591, 595, 638, 641, 643, 645, 646, 647, 649, 655, 667, 669, 693], "location": [13, 104, 142, 161, 218, 219, 230, 254, 255, 335, 360, 368, 580, 633, 638, 646, 649, 653, 655, 669, 688], "day": [13, 16, 56, 96, 104, 107, 115, 148, 186, 188, 189, 217, 219, 262, 263, 287, 294, 295, 317, 324, 341, 344, 365, 397, 398, 462, 463, 569, 580, 585, 592, 633, 643, 646, 652, 655], "night": [13, 262, 288, 297, 317, 365, 487, 580], "zugreif": [13, 28, 88, 98, 178, 338, 374, 375, 386, 387, 388, 391, 392, 393, 395, 396, 399, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 428, 429, 433, 436, 437, 438, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 529, 532, 534, 538, 563, 589, 597, 688], "103": [13, 166, 198, 312, 313], "104": [13, 279, 312, 313], "erweitert": [13, 36, 48, 57, 58, 62, 71, 78, 82, 98, 110, 121, 123, 159, 162, 212, 213, 219, 229, 262, 270, 271, 289, 321, 333, 338, 354, 371, 508, 545, 547, 548, 550, 552, 554, 558, 564, 568, 569, 570, 573, 577, 592, 621, 626, 641, 651, 671, 672, 673, 674, 675, 682, 689, 693], "konnt": [13, 52, 67, 76, 85, 87, 97, 106, 115, 116, 123, 170, 192, 194, 196, 200, 203, 215, 229, 233, 262, 270, 271, 284, 293, 320, 324, 325, 326, 328, 330, 331, 333, 359, 360, 381, 434, 508, 566, 573, 585, 652, 653, 654, 656, 674, 688], "Weg": [13, 92, 106, 262, 339, 340, 586, 593, 688], "bevorzug": [13, 79, 589], "sun": [13, 19, 86, 142, 218, 262, 569, 592, 649, 650, 659, 660], "ris": [13, 19, 142, 660, 665], "beleuchtungssteuer": 13, "w\u00e4re": [13, 58, 62, 67, 87, 97, 98, 100, 115, 116, 164, 219, 325, 326, 329, 333, 339, 340, 561, 569, 592, 622, 641], "sinnvoll": [13, 25, 42, 47, 53, 56, 58, 60, 68, 93, 97, 292, 293, 324, 326, 329, 330, 362, 371, 381, 504, 561, 573, 577, 586, 588, 610, 641, 671], "vorzunehm": [13, 85, 103, 123, 192, 271, 292, 306, 307], "flurlichtsteuer": 13, "vielleicht": [13, 71, 80, 82, 86, 92], "1h": [13, 262, 479, 526], "sonnenuntergang": [13, 83, 262, 325, 347, 569, 580, 592, 599, 636], "erreicht": [13, 42, 46, 50, 79, 87, 165, 262, 306, 307, 337, 453, 479, 484, 502, 569, 588, 592, 646, 688], "grenz": [13, 77], "sonnenstand": [13, 19, 96, 324, 325, 326, 328, 332, 347, 519, 564, 569, 592], "init": [13, 16, 42, 46, 54, 55, 71, 83, 84, 103, 107, 108, 115, 116, 125, 133, 141, 155, 162, 169, 178, 186, 189, 261, 278, 279, 287, 289, 304, 318, 328, 329, 331, 347, 351, 356, 357, 360, 361, 381, 396, 428, 485, 506, 569, 592, 632, 638, 643, 644, 645, 646, 648, 650, 651, 652, 653, 654, 655, 660, 667, 674], "sunris": [13, 19, 52, 113, 229, 262, 347, 360, 569, 580, 592, 599, 636, 669, 672], "sunset": [13, 19, 113, 229, 262, 347, 360, 569, 580, 592, 599, 636, 650, 669, 672], "set": [13, 19, 30, 44, 45, 52, 53, 54, 55, 58, 60, 66, 83, 107, 115, 126, 133, 137, 139, 141, 142, 146, 147, 148, 149, 151, 152, 154, 157, 158, 160, 162, 166, 169, 176, 182, 183, 185, 186, 195, 197, 198, 199, 200, 202, 205, 211, 218, 221, 227, 230, 231, 245, 248, 253, 257, 258, 260, 262, 273, 274, 288, 289, 290, 294, 296, 297, 301, 305, 314, 315, 317, 318, 321, 323, 324, 325, 326, 328, 329, 330, 332, 335, 352, 353, 355, 356, 357, 360, 365, 368, 370, 395, 405, 407, 409, 413, 528, 538, 562, 563, 589, 610, 612, 613, 615, 616, 618, 623, 624, 625, 643, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 665, 666, 667, 681, 688], "trigger": [13, 325, 330, 483, 484, 562, 567, 591], "sonnenaufgang": [13, 83, 262, 325, 564, 569, 592, 599, 636], "systemstart": [13, 27, 52, 83, 86, 89, 90, 225], "konfigurationsbeispiel": [14, 32, 52, 55, 250, 309, 310, 625], "list": [14, 18, 24, 40, 43, 44, 45, 47, 52, 55, 56, 58, 60, 63, 66, 71, 83, 86, 92, 93, 95, 98, 103, 106, 112, 113, 116, 117, 120, 121, 124, 130, 132, 133, 134, 136, 137, 139, 140, 141, 144, 146, 147, 148, 149, 152, 154, 155, 157, 158, 160, 161, 162, 164, 165, 167, 169, 170, 173, 175, 177, 180, 183, 185, 186, 187, 189, 192, 195, 200, 203, 210, 211, 212, 213, 217, 221, 226, 227, 230, 231, 232, 243, 247, 248, 251, 256, 257, 258, 259, 260, 261, 263, 265, 266, 272, 276, 281, 285, 289, 290, 293, 294, 297, 301, 302, 304, 305, 306, 307, 314, 315, 316, 325, 326, 328, 329, 330, 331, 332, 333, 335, 337, 338, 347, 351, 355, 356, 357, 360, 365, 368, 373, 376, 377, 379, 381, 382, 388, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 406, 408, 410, 412, 416, 418, 419, 420, 423, 434, 435, 441, 446, 450, 451, 454, 455, 457, 460, 463, 464, 467, 468, 471, 478, 480, 483, 486, 487, 489, 490, 504, 508, 510, 512, 513, 515, 521, 522, 527, 534, 537, 546, 564, 567, 569, 573, 575, 576, 577, 579, 583, 584, 591, 592, 595, 599, 600, 601, 602, 604, 607, 608, 609, 610, 612, 613, 615, 618, 620, 622, 624, 634, 641, 642, 643, 646, 648, 649, 651, 652, 653, 654, 655, 656, 660, 663, 665, 670, 671, 672, 673, 674, 675, 678, 681, 682, 688, 689, 690, 693], "sammlung": [14, 69, 85, 224], "verschieden": [14, 86], "schnittstell": [14, 36, 62, 67, 71, 78, 86, 159, 166, 169, 170, 171, 191, 192, 194, 197, 201, 203, 207, 219, 238, 261, 264, 267, 306, 307, 319, 381, 382, 393, 401, 403, 407, 409, 416, 434, 439, 440, 450, 480, 497, 498, 499, 507, 509, 514, 528, 545, 548, 550, 558, 622, 688], "lief": [14, 58, 85, 96, 155, 165, 170, 187, 189, 192, 219, 229, 232, 261, 304, 360, 398, 401, 532, 545, 548, 599, 634, 641], "Sie": [14, 28, 43, 47, 48, 50, 52, 53, 54, 55, 56, 77, 92, 95, 100, 104, 106, 110, 116, 117, 153, 164, 166, 167, 172, 187, 196, 200, 203, 222, 230, 241, 272, 283, 314, 328, 329, 330, 332, 362, 434, 449, 455, 490, 496, 523, 587, 589, 591, 592, 596, 600, 602, 606, 608, 610, 641, 652, 653, 654, 655, 656], "ersetzt": [14, 22, 25, 44, 48, 52, 53, 58, 60, 97, 162, 164, 233, 256, 262, 263, 272, 319, 321, 330, 423, 471, 507, 513, 519, 545, 550, 563, 566, 603, 613, 674, 689], "git": [14, 73, 83, 85, 92, 171, 211, 218, 221, 269, 278, 672, 688], "repository": [14, 37, 47, 84, 123, 373, 646, 649, 650, 652, 653, 655, 656, 674, 691], "lieferant": 14, "gegliedert": 14, "adress": [14, 25, 27, 28, 43, 44, 45, 53, 69, 82, 85, 92, 119, 120, 121, 122, 166, 167, 170, 178, 180, 196, 207, 232, 238, 241, 244, 247, 249, 256, 261, 270, 282, 283, 292, 293, 299, 300, 310, 314, 315, 328, 329, 331, 337, 351, 363, 374, 377, 378, 379, 381, 382, 383, 384, 386, 387, 388, 389, 395, 405, 406, 409, 413, 415, 417, 418, 419, 420, 428, 429, 432, 433, 434, 436, 437, 438, 441, 442, 444, 445, 448, 450, 451, 452, 456, 457, 458, 461, 466, 469, 470, 472, 475, 478, 480, 482, 488, 492, 494, 495, 496, 500, 501, 504, 505, 507, 509, 514, 516, 518, 522, 524, 526, 531, 533, 534, 535, 537, 566, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 641, 650, 674, 688, 690], "rout": [14, 86, 161, 162, 344, 434, 516, 617, 645, 668, 688], "angeb": [14, 53, 97, 116, 155, 164, 222, 255, 289, 299, 300, 304, 328, 338, 434, 595, 610, 671], "192": [14, 71, 86, 87, 88, 111, 122, 161, 162, 166, 167, 173, 175, 176, 183, 191, 202, 205, 211, 227, 229, 231, 234, 237, 238, 240, 247, 249, 250, 256, 257, 264, 267, 270, 278, 281, 282, 283, 290, 292, 299, 300, 301, 305, 306, 307, 310, 314, 338, 346, 360, 367, 369, 370, 375, 389, 434, 517, 641], "168": [14, 71, 86, 87, 88, 111, 119, 161, 162, 166, 167, 173, 175, 176, 183, 191, 198, 202, 205, 211, 227, 229, 231, 234, 237, 238, 240, 247, 249, 250, 256, 257, 264, 267, 270, 278, 281, 282, 283, 290, 292, 299, 300, 301, 305, 306, 307, 310, 314, 338, 346, 360, 369, 370, 375, 389, 517], "178": [14, 122, 162, 205, 369, 375, 517], "tpuart": [14, 86], "usb": [14, 79, 82, 86, 87, 167, 182, 192, 193, 194, 195, 196, 200, 258, 259, 261, 305, 306, 307, 351, 379, 392, 403, 439, 545, 548, 550], "knxd_opt": [14, 86], "e": [14, 24, 28, 40, 45, 54, 55, 56, 58, 60, 62, 66, 82, 86, 103, 107, 115, 116, 125, 130, 133, 136, 139, 148, 152, 160, 168, 173, 176, 180, 183, 186, 195, 198, 200, 202, 205, 211, 221, 227, 234, 239, 241, 245, 247, 248, 253, 254, 260, 262, 278, 281, 284, 288, 290, 294, 295, 296, 297, 301, 305, 317, 335, 341, 355, 361, 368, 381, 400, 408, 411, 456, 464, 467, 476, 477, 615, 618, 623, 624, 635, 638, 642, 644, 646, 648, 649, 650, 651, 652, 653, 655, 656, 666, 667, 688], "251": [14, 310, 434, 649], "240": [14, 168, 185, 198, 227, 281, 288, 380, 405, 439, 480, 486], "8": [14, 15, 16, 44, 45, 46, 47, 52, 54, 55, 56, 57, 62, 71, 76, 77, 79, 82, 83, 84, 85, 86, 92, 103, 104, 107, 115, 116, 120, 122, 123, 125, 131, 152, 155, 157, 158, 162, 164, 165, 169, 170, 189, 192, 195, 196, 197, 198, 200, 207, 210, 211, 219, 220, 222, 223, 231, 232, 235, 236, 239, 248, 249, 251, 254, 255, 262, 267, 270, 271, 279, 284, 302, 305, 306, 307, 308, 309, 310, 333, 334, 337, 346, 347, 351, 355, 356, 357, 363, 365, 376, 382, 383, 387, 398, 400, 401, 407, 408, 410, 419, 422, 433, 434, 437, 438, 445, 453, 456, 464, 466, 467, 470, 479, 484, 487, 494, 496, 498, 499, 500, 504, 506, 513, 515, 522, 524, 527, 531, 537, 538, 545, 548, 554, 558, 569, 580, 586, 592, 597, 612, 613, 615, 629, 633, 638, 639, 640, 643, 644, 645, 649, 650, 651, 652, 653, 654, 655, 656, 657, 666, 670, 682, 683, 689, 691], "c": [14, 24, 52, 64, 74, 84, 86, 90, 102, 131, 165, 166, 167, 169, 189, 199, 200, 202, 210, 217, 219, 235, 253, 254, 262, 278, 288, 289, 290, 293, 294, 310, 314, 334, 337, 338, 339, 340, 341, 414, 476, 477, 484, 573, 635, 643, 681, 688], "dtrs": 14, "dev": [14, 31, 33, 34, 47, 52, 54, 55, 67, 73, 80, 83, 86, 87, 88, 103, 129, 169, 182, 183, 187, 190, 191, 192, 193, 194, 195, 196, 201, 206, 247, 250, 264, 267, 287, 305, 306, 307, 334, 341, 351, 392, 394, 400, 407, 408, 414, 439, 464, 467, 497, 509, 514, 517, 538, 622, 628, 641, 643, 667, 671, 688], "ttyknx0": 14, "freie": [14, 200, 351, 580, 641], "busadress": 14, "adressbereich": 14, "darstellt": [14, 172, 191, 201, 264, 267, 574, 577], "client": [14, 45, 71, 82, 83, 84, 85, 86, 87, 88, 91, 121, 122, 127, 141, 155, 156, 168, 208, 218, 222, 223, 225, 244, 269, 274, 292, 301, 302, 303, 304, 338, 355, 356, 357, 359, 362, 368, 370, 416, 447, 469, 479, 496, 512, 521, 524, 527, 530, 545, 550, 558, 612, 615, 623, 643, 645, 648, 649, 651, 652, 653, 656, 670], "vergibt": 14, "xxx": [14, 52, 54, 55, 140, 143, 144, 146, 175, 198, 219, 235, 236, 281, 283, 299, 300, 367, 482, 612, 630], "rtc": 14, "onewir": [14, 67, 91, 92, 285, 483, 545, 548, 643, 644, 645, 646, 648, 649, 653, 654, 665], "erweiter": [14, 31, 33, 34, 36, 52, 54, 57, 59, 78, 110, 170, 189, 214, 222, 250, 306, 307, 310, 369, 370, 487, 563, 566, 618, 651, 682, 690], "pi": [14, 92, 200, 204, 239, 277, 286, 310, 315, 412, 477, 483, 484, 545, 548, 550, 641, 643, 646, 673, 688], "scn": 14, "ip000": 14, "ip100": 14, "02": [14, 71, 83, 86, 98, 155, 165, 169, 185, 187, 188, 205, 232, 263, 270, 271, 293, 294, 295, 304, 337, 356, 357, 360, 363, 381, 463, 585], "tmp": [14, 71, 86, 200, 218, 219, 221, 229, 274, 317, 424, 425, 504], "eib": [14, 71, 86, 434], "ipt": [14, 71, 86], "usbr": 14, "eibaddr": [14, 71], "addr": [14, 141, 235, 236, 297], "245": 14, "groupcach": [14, 71], "discovery": [14, 71, 162, 261, 283, 314, 368, 643, 649, 651, 652, 653], "tunnelling": [14, 71], "routing": 14, "layer2": 14, "249": [14, 130], "311": 14, "312": 14, "330": 14, "730": 14, "tunnel": [14, 71, 86], "queuing": [14, 71, 86], "d": [14, 16, 24, 37, 40, 44, 52, 54, 56, 64, 71, 84, 88, 98, 103, 107, 115, 116, 148, 152, 162, 164, 165, 169, 170, 186, 193, 194, 195, 200, 210, 221, 230, 232, 254, 259, 261, 262, 263, 278, 287, 314, 317, 337, 338, 349, 351, 365, 371, 432, 476, 477, 545, 550, 584, 585, 599, 612, 613, 634, 635, 646, 663, 671, 674, 681], "t": [14, 30, 40, 44, 45, 55, 66, 104, 106, 111, 132, 133, 134, 137, 138, 141, 146, 150, 152, 154, 157, 158, 160, 162, 177, 183, 195, 210, 211, 218, 219, 221, 227, 232, 234, 257, 261, 288, 290, 293, 294, 309, 334, 339, 340, 352, 360, 365, 382, 461, 612, 613, 615, 616, 624, 642, 643, 645, 646, 648, 649, 650, 652, 655, 671, 686], "14": [14, 42, 52, 73, 79, 86, 92, 103, 125, 155, 160, 165, 167, 195, 196, 219, 226, 232, 254, 255, 262, 278, 281, 294, 295, 304, 334, 352, 355, 356, 357, 434, 443, 588, 638, 652, 655, 657, 682, 686], "arbeitet": [14, 165, 363, 369, 414, 486, 508, 632], "prozess": [14, 37, 50, 51, 71, 83, 86, 229, 321, 362, 617, 627, 641], "ini": [14, 106, 688], "kommandozeilenparamet": 14, "tool": [14, 22, 39, 44, 49, 53, 64, 68, 69, 73, 79, 82, 83, 86, 90, 92, 103, 106, 113, 135, 157, 219, 259, 287, 360, 370, 560, 581, 613, 629, 630, 641, 643, 644, 645, 649, 664, 665, 667, 675, 677, 679, 680, 681, 688, 692, 693], "umwandeln": [14, 92, 103, 306, 307], "lass": [14, 20, 68, 71, 82, 83, 86, 92, 97, 98, 106, 108, 115, 189, 192, 232, 270, 271, 293, 319, 326, 339, 340, 347, 351, 354, 504, 573, 576, 682, 688], "usr": [14, 27, 37, 42, 52, 54, 55, 68, 71, 83, 84, 86, 88, 89, 90, 92, 103, 108, 113, 125, 162, 164, 185, 192, 199, 205, 219, 225, 230, 239, 261, 273, 278, 283, 294, 309, 315, 334, 338, 359, 361, 432, 477, 527, 588, 590, 591, 595, 612, 628, 629, 630, 638, 677, 678, 679, 688], "lib": [14, 39, 42, 44, 45, 48, 49, 52, 54, 55, 57, 59, 63, 66, 71, 83, 86, 103, 107, 113, 115, 116, 125, 133, 134, 144, 145, 154, 157, 188, 190, 192, 198, 203, 219, 239, 243, 245, 251, 253, 260, 263, 274, 309, 318, 322, 334, 335, 344, 359, 363, 425, 560, 565, 580, 581, 583, 585, 591, 612, 613, 615, 618, 620, 622, 623, 624, 632, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667, 674, 688, 691, 693], "knxd_arg": 14, "error": [14, 30, 42, 44, 45, 54, 55, 58, 64, 66, 71, 72, 76, 83, 92, 107, 115, 116, 127, 136, 138, 141, 142, 148, 149, 154, 155, 157, 158, 161, 173, 195, 202, 203, 208, 210, 211, 227, 243, 250, 254, 255, 256, 262, 263, 266, 269, 284, 288, 293, 294, 304, 310, 315, 334, 356, 357, 360, 368, 434, 453, 463, 466, 469, 479, 501, 521, 533, 575, 588, 593, 612, 613, 615, 618, 623, 624, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 681, 682], "1023": 14, "delay": [14, 86, 130, 136, 183, 205, 301, 326, 332, 623, 645, 653, 655], "731": [14, 652, 655], "732": 14, "740": [14, 155, 304, 356, 357], "wireless": [14, 647, 653], "750": 14, "751": 14, "752": 14, "linemast": 14, "760": 14, "762": 14, "r2": [14, 210], "beaufort": [15, 131, 262, 462], "bft": [15, 131, 462], "zahl": [15, 52, 58, 97, 106, 112, 124, 131, 165, 169, 187, 192, 210, 224, 261, 262, 289, 306, 307, 310, 326, 332, 338, 351, 362, 376, 378, 396, 401, 460, 461, 485, 502, 508, 514, 568, 569, 570, 579, 592, 599, 621, 626, 636, 638], "12": [15, 16, 42, 58, 71, 76, 79, 82, 83, 86, 89, 91, 98, 107, 115, 131, 136, 165, 167, 171, 184, 185, 189, 193, 194, 197, 207, 210, 211, 219, 226, 240, 249, 254, 255, 262, 268, 290, 298, 325, 328, 329, 334, 338, 346, 352, 355, 358, 359, 360, 431, 434, 443, 461, 462, 494, 533, 545, 554, 569, 592, 628, 638, 655, 682, 686, 693], "bestimm": [15, 115, 189, 260, 261, 325, 508, 638], "windgeschwind": [15, 131, 229, 262, 338, 365, 462], "met": [15, 131, 142, 152, 182, 192, 298, 305, 337, 344, 438, 493, 497, 545, 550, 643, 670], "gegeb": [15, 20, 52, 58, 71, 106, 123, 162, 261, 262, 306, 307, 314, 326, 328, 333, 347, 431, 449, 453, 460, 486, 565, 574, 591, 599, 634, 638], "quell": [15, 103, 169, 192, 223, 224, 229, 260, 262, 263, 279, 331, 339, 340, 380, 396, 526, 575, 632, 672], "wikipedia": [15, 106, 189], "diw": 15, "bestimmt": [15, 20, 28, 42, 43, 52, 53, 58, 67, 71, 83, 92, 97, 98, 103, 104, 106, 112, 113, 115, 116, 120, 162, 167, 169, 170, 187, 189, 192, 200, 215, 222, 223, 224, 232, 237, 272, 313, 314, 322, 324, 325, 326, 327, 329, 330, 331, 332, 339, 340, 347, 360, 381, 382, 396, 406, 423, 434, 449, 463, 496, 508, 512, 519, 523, 565, 568, 569, 577, 579, 586, 591, 592, 595, 599, 601, 602, 604, 607, 608, 609, 632, 642, 671], "knx_global": 15, "weath": [15, 19, 45, 53, 97, 184, 218, 219, 229, 262, 268, 285, 361, 365, 425, 468, 610, 615, 646, 653, 665], "wind": [15, 131, 229, 248, 262, 321, 330, 338, 361, 649], "string": [15, 22, 40, 43, 53, 55, 58, 66, 88, 92, 106, 116, 117, 126, 129, 133, 134, 136, 137, 139, 141, 147, 148, 149, 151, 152, 168, 170, 186, 188, 189, 198, 200, 211, 229, 231, 234, 235, 240, 243, 247, 248, 255, 258, 261, 262, 263, 274, 282, 290, 294, 301, 305, 306, 307, 310, 312, 313, 314, 315, 325, 326, 329, 330, 332, 347, 349, 351, 360, 365, 370, 375, 376, 394, 396, 398, 411, 468, 479, 484, 488, 494, 495, 501, 511, 520, 561, 562, 563, 567, 574, 575, 577, 586, 591, 592, 599, 600, 601, 602, 603, 604, 607, 608, 609, 618, 624, 634, 641, 643, 645, 646, 648, 649, 650, 653, 655, 670, 672, 675, 688], "zuruckgeliefert": [15, 58, 170, 330, 360, 382, 394, 423, 462, 468, 641], "implementier": [15, 43, 44, 45, 48, 187, 192, 219, 262, 310, 463, 495, 528, 545, 550, 554, 558, 606, 612, 613, 615, 618, 641, 671, 674], "nutzt": [15, 28, 39, 43, 48, 79, 84, 86, 87, 89, 90, 111, 116, 123, 154, 163, 171, 220, 233, 238, 261, 262, 263, 306, 307, 316, 333, 338, 347, 351, 370, 450, 454, 489, 545, 548, 552, 562, 576, 582, 589, 598, 612, 617, 618, 641, 652, 653, 654, 656, 670, 671], "rein": [15, 53, 78, 169, 187, 196, 285, 325, 373, 391, 412, 461, 483, 576, 610, 642, 675], "elif": [15, 16, 18, 54, 55, 219, 288, 338, 361, 595], "python3": [15, 16, 18, 19, 20, 27, 42, 44, 52, 54, 55, 68, 71, 83, 89, 92, 103, 113, 125, 154, 157, 162, 185, 192, 205, 219, 249, 283, 314, 334, 338, 370, 588, 591, 595, 612, 613, 628, 630, 638, 641, 644, 667, 677, 679, 681], "windstill": 15, "leis": 15, "zug": [15, 67, 566], "bris": 15, "schwach": [15, 165], "massig": 15, "frisch": [15, 82, 85, 115, 688], "13": [15, 42, 57, 71, 79, 83, 84, 86, 113, 115, 136, 155, 169, 195, 196, 211, 229, 254, 255, 261, 262, 270, 271, 274, 278, 281, 304, 325, 334, 339, 340, 356, 357, 381, 434, 545, 548, 550, 588, 640, 651, 655, 656, 657, 682], "stark": [15, 103, 189, 212, 213, 265, 289, 326, 461, 580], "17": [15, 107, 115, 125, 160, 192, 195, 196, 203, 229, 262, 273, 277, 278, 334, 341, 347, 381, 434, 476, 569, 592, 638, 640, 641, 655, 666], "steif": 15, "20": [15, 20, 42, 52, 76, 79, 82, 83, 88, 103, 112, 115, 116, 125, 155, 160, 164, 165, 185, 199, 207, 210, 219, 234, 235, 236, 240, 249, 262, 275, 288, 293, 294, 304, 325, 328, 329, 332, 334, 337, 338, 347, 356, 357, 361, 422, 434, 436, 437, 438, 443, 487, 545, 550, 569, 573, 592, 599, 636, 638, 641], "sturmisch": 15, "24": [15, 16, 42, 79, 88, 116, 160, 165, 189, 192, 226, 262, 270, 271, 279, 287, 325, 328, 360, 370, 434, 494, 569, 586, 588, 592, 638, 649, 657, 688], "sturm": 15, "28": [15, 16, 92, 155, 173, 176, 192, 232, 261, 262, 278, 279, 285, 288, 304, 347, 356, 357, 638, 652, 657], "schwer": 15, "32": [15, 86, 115, 211, 229, 239, 247, 262, 347, 382, 434, 494, 533, 573, 673], "orkanart": 15, "11": [15, 16, 54, 55, 57, 71, 79, 82, 83, 86, 92, 104, 107, 115, 116, 125, 136, 160, 165, 167, 185, 187, 189, 192, 193, 194, 195, 196, 198, 203, 240, 249, 254, 255, 256, 261, 262, 270, 271, 273, 274, 281, 289, 314, 334, 361, 431, 434, 443, 461, 545, 558, 618, 633, 638, 648, 649, 650, 651, 653, 655, 657, 665, 673, 682, 683, 693], "orkan": 15, "filenam": [15, 16, 18, 19, 20, 42, 51, 52, 83, 103, 107, 108, 115, 116, 117, 126, 135, 136, 137, 149, 188, 206, 216, 232, 241, 243, 253, 263, 274, 322, 352, 355, 361, 576, 583, 585, 592, 594, 600, 642, 646, 648, 653, 655, 686], "watch_it": [15, 18, 20, 42, 103, 108, 117, 137, 206, 253, 600, 667], "besteht": [15, 40, 42, 43, 48, 52, 53, 54, 55, 82, 86, 92, 112, 155, 164, 169, 262, 304, 347, 351, 590, 595, 614, 619, 622], "def": [15, 16, 52, 54, 55, 58, 60, 62, 103, 125, 126, 141, 203, 261, 296, 338, 561, 563, 589, 595, 612, 638], "get_beaufort": 15, "speed": [15, 131, 170, 227, 229, 247, 262, 341, 361, 650, 653, 654, 667], "windspeed": [15, 229], "second": [15, 16, 40, 54, 55, 86, 103, 104, 111, 123, 126, 129, 130, 131, 133, 138, 141, 142, 147, 148, 165, 173, 176, 182, 183, 185, 198, 202, 205, 206, 211, 217, 227, 234, 235, 236, 239, 243, 248, 263, 274, 281, 282, 296, 297, 298, 305, 312, 331, 341, 344, 346, 351, 352, 355, 365, 370, 395, 562, 612, 633, 646, 649, 655, 686], "return": [15, 16, 30, 40, 44, 45, 52, 54, 55, 58, 59, 60, 62, 63, 66, 71, 125, 129, 130, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 161, 177, 180, 181, 186, 198, 203, 218, 227, 234, 240, 248, 253, 273, 278, 312, 315, 317, 338, 344, 356, 357, 361, 589, 612, 613, 615, 616, 618, 620, 623, 624, 638, 645, 646, 648, 649, 650, 653, 655, 656, 662, 664, 688], "tupl": [15, 141, 142, 144, 148, 599, 634], "of": [15, 16, 40, 43, 44, 45, 50, 52, 53, 54, 55, 58, 60, 63, 64, 66, 71, 79, 83, 103, 104, 107, 113, 114, 115, 121, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 155, 160, 161, 164, 165, 173, 175, 176, 180, 181, 182, 183, 185, 186, 189, 190, 193, 195, 198, 199, 200, 202, 205, 206, 208, 209, 216, 217, 218, 221, 222, 226, 227, 230, 231, 235, 239, 240, 245, 247, 248, 253, 254, 257, 258, 261, 262, 273, 274, 276, 280, 281, 282, 283, 288, 290, 294, 296, 297, 298, 301, 304, 305, 308, 312, 315, 317, 318, 334, 337, 341, 342, 344, 345, 346, 352, 355, 356, 357, 360, 365, 368, 370, 395, 413, 454, 460, 538, 562, 595, 598, 601, 602, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 623, 624, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 662, 663, 666, 668, 669, 670, 680, 681, 682, 686, 688, 691], "with": [15, 40, 42, 44, 45, 52, 53, 54, 55, 58, 60, 66, 71, 87, 107, 115, 125, 126, 133, 134, 136, 137, 139, 140, 141, 142, 144, 146, 147, 148, 151, 152, 154, 155, 157, 158, 159, 160, 161, 162, 173, 175, 176, 177, 180, 183, 186, 190, 193, 195, 198, 199, 200, 202, 205, 211, 217, 218, 221, 227, 231, 234, 235, 236, 239, 240, 245, 247, 248, 251, 253, 254, 257, 258, 263, 269, 273, 274, 278, 280, 281, 285, 288, 290, 294, 296, 297, 298, 301, 304, 305, 312, 314, 315, 317, 325, 334, 341, 344, 352, 353, 355, 356, 357, 360, 361, 365, 370, 371, 413, 436, 545, 550, 565, 588, 591, 603, 612, 613, 615, 616, 623, 624, 638, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 661, 662, 665, 666, 668, 669, 670, 674, 681, 686, 691], "the": [15, 29, 30, 40, 43, 44, 45, 50, 52, 53, 54, 55, 58, 60, 63, 64, 66, 68, 71, 83, 87, 107, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 173, 175, 176, 177, 180, 182, 183, 185, 186, 190, 193, 195, 198, 199, 200, 202, 205, 206, 208, 209, 211, 217, 218, 221, 227, 230, 231, 234, 239, 240, 243, 245, 247, 248, 253, 255, 257, 258, 260, 261, 262, 263, 269, 273, 274, 275, 276, 278, 280, 281, 282, 288, 290, 292, 294, 295, 296, 297, 298, 301, 303, 304, 305, 308, 311, 312, 315, 317, 318, 334, 335, 337, 338, 341, 342, 344, 345, 351, 352, 355, 358, 361, 364, 365, 368, 370, 372, 395, 413, 418, 538, 562, 573, 575, 590, 598, 601, 602, 606, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 623, 624, 625, 629, 641, 642, 652, 655, 659, 660, 662, 663, 664, 665, 666, 667, 668, 669, 670, 674, 679, 680, 681, 686, 688], "german": [15, 139, 160, 185, 260, 312, 345, 365, 643, 646, 652, 655], "description": [15, 43, 44, 45, 48, 53, 54, 55, 84, 89, 90, 136, 137, 157, 158, 160, 162, 170, 173, 176, 202, 226, 227, 229, 235, 236, 247, 248, 260, 262, 263, 272, 273, 274, 288, 297, 304, 305, 312, 341, 352, 355, 382, 577, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 630, 643, 645, 646, 648, 649, 653, 654, 655, 681], "integ": [15, 106, 112, 141, 147, 148, 152, 186, 187, 189, 193, 194, 240, 247, 281, 288, 293, 306, 307, 314, 333, 347, 360, 453, 462, 479, 494, 574, 575, 577, 585, 646, 648, 652, 655], "mittel": [15, 58, 82, 115, 169, 219, 228, 230, 238, 243, 244, 263, 306, 307, 310, 314, 322, 323, 324, 326, 327, 328, 329, 330, 333, 338, 347, 381, 440, 508, 526, 545, 550, 573, 575, 576, 622, 642, 671, 682, 688], "tabl": [15, 31, 33, 34, 44, 50, 52, 54, 55, 58, 60, 61, 62, 130, 157, 166, 170, 186, 187, 230, 247, 250, 253, 294, 613, 623, 643, 645, 649, 650, 651, 652, 653, 654, 655], "999": [15, 434, 646], "try": [15, 30, 44, 45, 54, 55, 58, 60, 141, 154, 157, 158, 183, 218, 219, 273, 361, 612, 613, 615, 646, 648, 649, 652, 655], "lambda": [15, 60, 126, 163], "except": [15, 30, 44, 45, 58, 154, 157, 158, 190, 219, 361, 612, 613, 615, 646, 655], "valueerror": [15, 645], "zeitbezog": 16, "datenbank": [16, 27, 78, 92, 102, 103, 155, 168, 170, 222, 223, 224, 226, 261, 289, 304, 313, 314, 319, 359, 380, 396, 398, 426, 427, 428, 440, 453, 485, 506, 545, 554, 571, 641, 674, 677, 688], "mitternacht": [16, 116, 295, 347, 569, 585, 592], "usw": [16, 31, 33, 34, 52, 54, 57, 106, 214, 250, 262, 287, 299, 306, 307, 316, 334, 369, 561, 563, 635], "dbstr": 16, "unterit": [16, 314, 330, 561], "datenbankfah": 16, "bereitstellt": [16, 52, 53, 168, 197, 276, 337, 348, 434, 498, 499, 622], "zahlt": [16, 203, 306, 307, 331, 641], "abfrag": [16, 58, 84, 103, 162, 163, 169, 170, 187, 189, 192, 203, 207, 212, 213, 229, 232, 261, 262, 282, 289, 299, 300, 313, 314, 319, 325, 326, 329, 330, 338, 360, 380, 389, 398, 399, 400, 401, 405, 414, 415, 418, 419, 431, 434, 439, 441, 444, 449, 452, 455, 464, 467, 480, 483, 498, 499, 501, 503, 507, 514, 516, 519, 532, 533, 545, 550, 558, 567, 591, 599, 612, 641, 642, 671, 690], "cellar": 16, "utility_room": 16, "water_met": 16, "zeitfen": [16, 189], "lit": [16, 262, 346, 352, 439, 688], "wass": [16, 189, 262, 287, 399], "weis": [16, 28, 56, 62, 97, 131, 184, 229, 232, 260, 261, 268, 324, 328, 568, 570, 585, 586, 591], "verbrauch": [16, 79, 170, 187, 337, 398, 574, 682], "exampl": [16, 30, 42, 44, 45, 47, 52, 54, 55, 58, 84, 103, 107, 112, 113, 115, 126, 130, 141, 154, 157, 158, 160, 162, 164, 173, 176, 186, 199, 217, 221, 240, 241, 249, 253, 279, 281, 301, 308, 312, 315, 344, 353, 356, 357, 359, 394, 445, 468, 593, 612, 613, 615, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 663], "use": [16, 30, 40, 43, 44, 45, 52, 53, 54, 55, 66, 71, 88, 126, 127, 130, 132, 133, 134, 136, 137, 140, 141, 142, 143, 144, 146, 147, 148, 154, 157, 158, 160, 162, 173, 176, 183, 186, 195, 198, 199, 200, 205, 216, 217, 218, 221, 227, 231, 234, 240, 245, 247, 248, 251, 254, 257, 258, 260, 262, 269, 273, 274, 281, 282, 288, 290, 294, 296, 301, 305, 312, 315, 334, 335, 341, 352, 353, 355, 356, 357, 361, 364, 365, 368, 370, 512, 606, 610, 612, 613, 615, 616, 618, 624, 625, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 663, 666, 667, 674, 686, 688], "data": [16, 44, 45, 50, 52, 54, 55, 58, 62, 66, 82, 85, 88, 127, 130, 133, 135, 137, 141, 149, 161, 162, 164, 166, 169, 182, 184, 186, 188, 195, 198, 202, 203, 216, 218, 226, 227, 229, 234, 245, 253, 262, 263, 268, 273, 280, 288, 294, 297, 298, 305, 312, 314, 337, 338, 341, 346, 356, 357, 358, 361, 365, 367, 368, 397, 525, 597, 612, 615, 618, 623, 624, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 655, 669, 670, 681], "for": [16, 18, 20, 40, 42, 43, 44, 45, 50, 52, 53, 54, 55, 58, 60, 61, 62, 63, 64, 66, 68, 71, 83, 103, 104, 107, 110, 113, 115, 126, 127, 128, 130, 132, 133, 134, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 160, 161, 162, 164, 168, 170, 173, 176, 177, 179, 180, 181, 182, 183, 185, 186, 193, 195, 198, 199, 200, 202, 203, 205, 208, 210, 217, 221, 222, 223, 227, 231, 234, 239, 240, 245, 248, 251, 253, 254, 257, 258, 260, 262, 263, 269, 273, 274, 275, 278, 280, 281, 288, 290, 294, 296, 297, 298, 301, 305, 306, 307, 308, 309, 311, 312, 315, 318, 322, 334, 341, 344, 345, 346, 350, 351, 352, 355, 357, 361, 364, 365, 370, 413, 562, 565, 582, 584, 588, 591, 606, 610, 612, 613, 615, 616, 618, 620, 622, 623, 624, 625, 633, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 669, 670, 674, 677, 681, 688, 691], "queri": [16, 130, 315, 318, 501, 545, 552, 643, 645, 655, 656], "consumption_since_midnight": 16, "count": [16, 136, 147, 155, 160, 187, 189, 192, 198, 227, 247, 262, 279, 285, 287, 298, 304, 326, 332, 341, 356, 357, 358, 483, 485, 645, 646, 652, 653, 655, 656, 665, 671], "sinc": [16, 71, 84, 86, 133, 138, 148, 186, 205, 234, 247, 281, 305, 367, 646, 652, 653, 655, 668], "midnight": [16, 107, 115, 116, 136, 142, 232, 294, 322, 583, 585, 655], "mysqldb": [16, 162], "struktur": [16, 26, 45, 50, 52, 62, 92, 93, 98, 103, 106, 112, 114, 162, 164, 187, 192, 212, 213, 229, 233, 262, 265, 289, 313, 328, 339, 340, 508, 561, 566, 577, 578, 587, 599, 605, 615, 619, 622, 632, 634, 638, 641, 682, 686, 689], "sh_now": 16, "debug": [16, 18, 52, 54, 55, 58, 71, 76, 83, 107, 115, 116, 126, 160, 162, 169, 178, 189, 195, 203, 218, 243, 257, 262, 263, 288, 306, 307, 322, 336, 351, 361, 413, 434, 463, 489, 508, 517, 562, 575, 583, 593, 635, 645, 646, 648, 649, 650, 652, 653, 654, 655, 656, 663, 673, 674], "leap_year": 16, "year": [16, 56, 104, 148, 152, 186, 188, 189, 263, 287, 317, 397, 398, 463, 585, 599, 633, 634, 646, 655], "400": [16, 198, 218, 219, 329, 527], "100": [16, 44, 56, 104, 120, 123, 155, 160, 162, 164, 165, 166, 169, 170, 183, 195, 196, 200, 203, 213, 218, 219, 222, 223, 239, 253, 282, 293, 294, 304, 308, 309, 314, 323, 325, 326, 328, 329, 332, 334, 337, 338, 347, 356, 357, 359, 365, 367, 375, 398, 403, 420, 434, 453, 487, 504, 508, 527, 532, 562, 592, 599, 613, 622, 636, 641, 650], "days_of_month": 16, "month": [16, 56, 104, 148, 152, 186, 188, 189, 263, 287, 317, 325, 361, 397, 398, 463, 569, 585, 592, 599, 633, 634, 655], "days": [16, 40, 71, 86, 107, 115, 122, 148, 152, 189, 218, 294, 361, 365, 688], "31": [16, 43, 53, 86, 115, 152, 160, 165, 184, 189, 219, 230, 262, 268, 341, 453, 526, 569, 592, 601, 602, 604, 607, 608, 609, 657], "schaltjahr": 16, "29": [16, 107, 115, 136, 165, 187, 192, 262, 270, 271, 334, 638, 653, 654, 657], "days_of_year": 16, "period_": 16, "datetim": [16, 19, 40, 52, 57, 136, 137, 147, 148, 164, 177, 184, 192, 203, 217, 218, 253, 262, 268, 288, 337, 338, 347, 360, 423, 434, 460, 562, 567, 591, 598, 599, 634, 636, 643, 646, 655, 656, 659, 660, 666], "day_of_year": [16, 148, 599, 634], "print": [16, 88, 166, 178, 203, 222, 223, 253, 294, 310, 347, 355, 646, 655, 682, 686], "running": [16, 30, 40, 44, 45, 55, 66, 71, 83, 84, 86, 107, 115, 116, 125, 129, 133, 139, 141, 157, 158, 206, 240, 248, 258, 278, 294, 315, 355, 356, 357, 358, 512, 612, 613, 615, 618, 624, 638, 643, 644, 645, 646, 650, 651, 652, 653, 654, 655, 669, 680], "remov": [16, 54, 55, 56, 66, 126, 129, 133, 134, 136, 137, 141, 147, 186, 270, 271, 317, 318, 326, 332, 396, 563, 623, 624, 642, 645, 648, 649, 650, 651, 653, 655, 656, 667], "aft": [16, 55, 60, 84, 89, 90, 107, 115, 137, 141, 142, 147, 182, 183, 185, 186, 199, 200, 205, 227, 234, 254, 263, 274, 278, 281, 288, 294, 298, 315, 341, 356, 357, 395, 562, 630, 643, 646, 648, 649, 651, 652, 653, 654, 655, 656, 667, 668], "hour": [16, 19, 40, 131, 148, 152, 183, 184, 186, 188, 218, 234, 260, 262, 263, 268, 269, 287, 288, 317, 351, 356, 357, 361, 370, 479, 585, 612, 655], "isoweekday": [16, 666], "wochentag": [16, 104, 218, 321, 325, 328, 347, 365, 519, 569, 592, 599, 634], "isocalendar": 16, "kalenderwoch": [16, 104, 599, 634], "until": [16, 45, 66, 130, 133, 138, 169, 198, 240, 282, 283, 294, 615, 618, 624, 646, 652], "woch": [16, 104, 119, 187, 189, 287, 527, 585, 599, 634], "week": [16, 71, 86, 148, 152, 186, 189, 287, 317, 398, 599, 634, 645, 646], "52": [16, 83, 113, 155, 304, 356, 357, 517, 655], "3600": [16, 42, 183, 217, 260, 322, 331, 351, 423, 460, 508, 511, 537, 688], "zeitberechn": 16, "logikbeispiel": 17, "thema": 17, "zwangswert": 18, "prioritat": [18, 117, 224, 333, 339, 340, 471, 527, 592, 600], "korrekt": [18, 52, 58, 60, 62, 92, 162, 165, 169, 172, 191, 219, 262, 264, 267, 329, 446, 463, 508, 573, 642], "ausgegeb": [18, 50, 53, 83, 116, 192, 263, 310, 314, 316, 338, 360, 513, 575, 641], "probl": [18, 71, 165, 169, 218, 227, 249, 326, 332, 347, 485, 508, 622, 641, 642, 643, 646, 648, 649, 652, 655, 656], "hilfsitem": 18, "logg": [18, 20, 22, 30, 42, 44, 45, 52, 54, 55, 58, 66, 76, 103, 107, 113, 115, 116, 136, 138, 154, 157, 158, 160, 170, 188, 200, 203, 217, 219, 232, 243, 249, 253, 254, 255, 263, 288, 293, 322, 338, 361, 368, 382, 397, 434, 545, 554, 562, 565, 575, 577, 583, 584, 585, 586, 588, 589, 591, 595, 612, 613, 615, 624, 638, 641, 646, 649, 652, 653, 654, 655, 656, 670, 672], "info": [18, 20, 40, 50, 52, 54, 55, 66, 76, 83, 107, 113, 115, 116, 137, 148, 160, 164, 170, 176, 177, 191, 195, 198, 200, 203, 215, 217, 219, 227, 231, 232, 233, 243, 253, 254, 255, 256, 257, 263, 264, 267, 269, 288, 293, 305, 319, 322, 338, 344, 347, 359, 368, 388, 398, 403, 406, 433, 434, 446, 460, 463, 508, 519, 527, 538, 565, 572, 575, 577, 585, 586, 588, 591, 593, 595, 612, 616, 624, 638, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 669, 681], "source_it": 18, "return_it": [18, 20, 40, 52, 134, 243, 263, 288, 326, 330, 332, 564, 573, 589, 666], "sourc": [18, 20, 36, 40, 45, 52, 54, 55, 57, 66, 68, 84, 87, 103, 126, 133, 137, 147, 162, 173, 219, 221, 222, 223, 224, 227, 232, 241, 243, 248, 251, 256, 262, 263, 278, 279, 288, 290, 294, 295, 304, 315, 325, 328, 331, 338, 356, 357, 370, 381, 384, 394, 468, 478, 490, 563, 573, 575, 577, 589, 594, 595, 615, 623, 624, 627, 629, 630, 641, 643, 646, 649, 650, 655], "priority": [18, 147, 170, 272, 315, 643, 652], "has_zwang": 18, "search_id": [18, 20], "zwangsstell": 18, "child": [18, 20, 40, 55, 71, 134, 170, 180, 181, 200, 219, 227, 244, 262, 277, 304, 323, 347, 356, 357, 504, 561, 562, 566, 653, 655, 674], "return_childr": [18, 20, 133, 562], "Kein": [18, 71, 414, 496, 524], "zwangsstellungsit": 18, "zwangvalu": 18, "licht": [18, 20, 71, 98, 116, 160, 162, 163, 164, 179, 294, 295, 316, 322, 324, 328, 329, 338, 347, 360, 419, 450, 562, 573], "dynam": [19, 51, 82, 85, 169, 262, 323, 325, 329, 333, 339, 340, 508, 567, 575, 591, 671], "darzustell": [19, 169, 260, 262, 508], "berechn": [19, 21, 83, 113, 115, 165, 184, 187, 189, 229, 262, 268, 306, 307, 325, 330, 398, 498, 499, 506, 508, 519, 571, 573, 576, 577], "utcnow": [19, 40, 148, 599, 634], "255": [19, 43, 53, 112, 141, 152, 160, 162, 167, 170, 187, 193, 194, 200, 211, 213, 247, 257, 298, 305, 306, 307, 330, 337, 363, 375, 379, 419, 434, 450, 601, 602, 604, 607, 608, 609, 655], "300": [19, 148, 162, 170, 178, 188, 200, 206, 207, 229, 234, 241, 245, 270, 310, 326, 329, 332, 341, 343, 351, 362, 382, 383, 389, 394, 401, 406, 412, 416, 417, 436, 443, 444, 447, 448, 452, 461, 485, 494, 501, 503, 511, 514, 520, 526, 527, 530], "einbind": [19, 24, 59, 164, 174, 204, 233, 243, 263, 271, 284, 319, 324, 328, 329, 331, 395, 406, 412, 545, 548, 550, 693], "import": [19, 52, 54, 55, 59, 115, 127, 131, 132, 134, 137, 140, 143, 144, 146, 147, 148, 164, 203, 206, 219, 222, 223, 253, 278, 314, 315, 328, 353, 376, 565, 589, 591, 622, 638, 641, 645, 646, 651, 652, 655, 673], "html": [19, 27, 31, 33, 34, 37, 44, 45, 48, 50, 52, 54, 55, 56, 58, 59, 60, 61, 62, 84, 85, 88, 111, 120, 141, 151, 157, 158, 161, 162, 166, 178, 206, 218, 219, 221, 227, 234, 244, 250, 253, 260, 274, 278, 283, 284, 285, 294, 305, 308, 309, 314, 325, 338, 341, 352, 353, 365, 394, 436, 440, 460, 468, 496, 545, 550, 558, 613, 615, 646, 649, 650, 651, 652, 653, 654, 655, 656, 663, 670, 687, 688], "as": [19, 40, 42, 44, 45, 52, 54, 55, 58, 63, 66, 126, 127, 129, 130, 131, 133, 136, 137, 138, 139, 141, 142, 143, 145, 147, 148, 151, 152, 154, 157, 159, 160, 162, 164, 185, 186, 190, 192, 193, 195, 199, 205, 206, 208, 211, 216, 218, 222, 223, 227, 232, 240, 247, 248, 251, 254, 257, 258, 262, 263, 273, 274, 280, 281, 288, 290, 294, 296, 297, 298, 301, 304, 305, 314, 315, 317, 321, 335, 342, 344, 352, 353, 355, 356, 357, 361, 365, 368, 370, 375, 484, 588, 590, 612, 613, 615, 618, 620, 623, 624, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 662, 669, 670, 686, 691], "nacht": [20, 262, 289, 323, 324, 325, 328, 329, 331, 332, 333, 361, 487, 506, 564, 585], "gedimmt": [20, 106, 450], "einzuschalt": [20, 58, 164], "obwohl": [20, 106, 331, 575], "hellig": [20, 106, 162, 200, 323, 325, 328, 329, 330, 337, 419, 420, 450, 574], "eingeschaltet": [20, 71, 86, 112, 164, 314, 363, 369, 378, 381, 453, 574, 591], "pruft": [20, 53, 64, 83, 90, 170, 302, 314, 354, 382, 406, 502, 508, 520, 566, 632, 641, 671], "global": [20, 43, 44, 45, 50, 52, 53, 54, 55, 56, 57, 60, 71, 76, 83, 88, 92, 113, 123, 130, 139, 151, 157, 162, 170, 180, 222, 251, 274, 288, 289, 322, 326, 327, 330, 332, 412, 427, 428, 454, 471, 483, 484, 486, 508, 589, 606, 610, 612, 613, 614, 615, 616, 619, 638, 643, 646, 652, 653, 655, 656, 670, 688], "lokal": [20, 37, 44, 47, 88, 90, 92, 116, 120, 162, 165, 179, 187, 207, 212, 219, 261, 292, 306, 307, 314, 338, 362, 423, 453, 558, 559, 599, 613, 634, 641], "voraussetz": [20, 79, 97, 119, 289, 314, 325, 371, 405, 545, 550, 641, 674, 675], "uberschreibt": [20, 123, 457, 486, 508], "somit": [20, 92, 98, 103, 116, 169, 189, 192, 215, 238, 243, 325, 328, 347, 486, 508, 573, 576, 622], "gemischt": [20, 106, 162], "Nur": [20, 47, 53, 80, 106, 222, 232, 314, 328, 338, 360, 382, 396, 419, 457, 462, 489, 496, 512, 518, 523, 524, 565, 591, 610, 671, 688], "nachdimm_wert": 20, "nachgedimmt": 20, "itemnam": [20, 58, 71, 100, 187, 323, 360, 519, 568, 570], "activ": [20, 44, 45, 56, 66, 84, 86, 137, 141, 168, 170, 200, 205, 227, 235, 236, 254, 255, 258, 259, 294, 322, 328, 329, 347, 382, 449, 508, 521, 533, 613, 615, 616, 618, 624, 643, 646, 651, 652, 655, 666, 673], "has_local": 20, "schau": [20, 47, 83, 89, 92, 414, 455, 479], "steuerit": 20, "xx": [20, 162, 170, 185, 210, 219, 234, 256, 281, 285, 319, 337, 414, 436, 461, 483, 545, 550], "dimm": [20, 98, 106, 160, 162, 163, 179, 185, 194, 199, 200, 210, 211, 247, 328, 329, 330, 337, 352, 371, 390, 407, 419, 434, 566, 655, 683, 686], "conf": [20, 27, 40, 44, 45, 52, 54, 55, 58, 60, 61, 66, 71, 82, 84, 86, 87, 88, 100, 102, 105, 112, 123, 124, 126, 134, 135, 137, 146, 157, 158, 162, 165, 168, 181, 195, 230, 261, 288, 318, 335, 380, 573, 613, 615, 624, 665, 669, 670, 671, 679, 682], "wed": [20, 27, 84, 120, 569, 592, 646], "objekt": [20, 25, 40, 52, 62, 106, 162, 181, 184, 192, 241, 263, 268, 321, 324, 328, 330, 333, 347, 360, 396, 398, 416, 423, 452, 460, 486, 508, 519, 520, 560, 561, 562, 565, 567, 575, 587, 589, 591, 634, 636], "uzsu": [20, 200, 206, 219, 262, 277, 282, 294, 351, 522, 545, 554, 642, 643, 644, 646, 649, 650, 651, 652, 653, 654, 655, 656, 672, 673], "uzsu_it": [20, 282, 347], "test": [20, 25, 42, 44, 45, 53, 54, 55, 58, 62, 66, 68, 69, 97, 103, 116, 126, 137, 139, 141, 148, 151, 162, 163, 164, 169, 186, 203, 217, 219, 227, 245, 254, 255, 256, 273, 274, 278, 281, 297, 315, 323, 324, 325, 326, 338, 347, 351, 359, 367, 370, 376, 416, 545, 548, 550, 552, 554, 558, 585, 588, 595, 610, 612, 613, 615, 622, 623, 624, 630, 638, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 669, 682, 688, 691], "testlichtb": 20, "95": [20, 192, 198, 622], "93": 20, "testlicht": 20, "85": [20, 398, 643], "83": [20, 211], "uszu": [20, 282, 347], "windstark": [21, 262, 462], "steuer": [21, 162, 169, 171, 191, 201, 207, 238, 244, 264, 267, 289, 291, 337, 369, 370, 371, 376, 378, 381, 388, 443, 489, 508, 511, 537, 545, 548, 550, 558, 644], "dyn": [21, 567, 591], "zenith": [21, 325], "darstell": [21, 106, 117, 162, 170, 203, 219, 289, 329, 339, 340, 347, 446, 456, 463, 592, 600, 622, 641, 652, 682], "dpt": [21, 58, 160, 162, 288, 597, 641, 649, 651, 655, 665, 666], "nachdimm": 21, "leucht": [21, 112, 163, 170, 212, 213, 295, 316, 328, 337, 347, 375, 418, 419, 420], "zeitdat": 21, "blink": [21, 292, 343, 515, 545, 554, 649], "wiki": [21, 47, 86, 92, 106, 159, 198, 206, 253, 312, 313, 345, 351, 373, 545, 547, 548, 550, 552, 554, 558, 669], "problem": [22, 47, 71, 83, 100, 106, 115, 138, 162, 170, 198, 262, 301, 318, 321, 331, 347, 351, 352, 361, 495, 566, 641, 642, 643, 644, 645, 646, 647, 652, 653, 655], "auftret": [22, 42, 83, 92, 351, 583, 588], "branch": [22, 37, 73, 92, 103, 149, 354, 646, 652, 653, 668, 693], "github": [22, 37, 52, 54, 55, 68, 73, 76, 83, 85, 86, 171, 172, 174, 175, 182, 206, 208, 211, 212, 214, 215, 218, 221, 247, 262, 269, 275, 276, 278, 279, 282, 283, 284, 293, 298, 314, 337, 352, 353, 355, 356, 357, 359, 367, 511, 533, 646, 647, 649, 650, 652, 653, 669, 674, 688, 693], "notwendigerweis": [22, 693], "stabil": [22, 46, 47, 56, 79, 287, 674, 693], "wechseln": [22, 47, 68, 92, 156, 162, 303, 381, 414, 496, 524, 628, 652, 653, 654, 655, 656], "skript": [22, 27, 42, 73, 83, 85, 89, 90, 92, 108, 109, 115, 153, 170, 187, 189, 192, 203, 222, 223, 314, 410, 587, 590, 593, 594, 627, 630, 676, 677, 678, 680, 688, 693], "kopiert": [22, 25, 27, 37, 42, 60, 83, 85, 113, 162, 172, 178, 203, 219, 302, 330, 333, 346, 354, 496, 523, 566, 682, 687], "namenskonflikt": [22, 97], "entsteht": [22, 41, 97, 262, 631], "_dev": 22, "angehangt": [22, 97, 169, 256, 314, 329, 507, 573, 641], "xyz": [22, 54, 55, 126, 130, 269, 650], "xyz_dev": 22, "folgendermass": [22, 25, 42, 47, 53, 64, 83, 84, 87, 103, 106, 110, 113, 116, 125, 131, 155, 212, 213, 225, 265, 289, 293, 304, 314, 323, 328, 561, 563, 566, 567, 573, 577, 584, 585, 591, 593, 595, 596, 597, 603, 638, 682, 683, 688], "install_plugin_from_develop": [22, 655], "erfolgreich": [22, 42, 50, 71, 83, 92, 154, 164, 192, 330, 360, 381, 573, 588, 599, 612, 628, 688], "endet": [22, 164, 262, 287, 651, 652, 653, 654, 655, 656], "plugin_nam": [22, 52, 83, 86, 87, 98, 103, 111, 123, 134, 144, 160, 162, 164, 166, 167, 169, 172, 173, 175, 176, 180, 181, 182, 183, 185, 186, 188, 191, 192, 193, 194, 195, 196, 198, 201, 202, 205, 206, 207, 208, 214, 215, 217, 218, 219, 221, 222, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 253, 254, 255, 256, 258, 263, 264, 267, 271, 276, 277, 283, 296, 299, 300, 306, 307, 308, 309, 310, 313, 317, 319, 322, 339, 340, 346, 347, 351, 352, 355, 359, 361, 362, 365, 368, 370, 597, 646, 654, 671, 674, 684], "ursprung": [22, 106, 162, 184, 219, 229, 268, 314, 325, 326, 328, 331, 332, 333, 508, 565, 591, 641, 682], "kopi": [22, 26, 47, 58, 59, 77, 83, 92, 107, 113, 115, 116, 164, 169, 219, 226, 244, 282, 314, 396, 472, 561, 566, 628, 682, 685, 687], "alternativ": [22, 47, 54, 55, 58, 62, 79, 82, 83, 86, 87, 92, 112, 122, 167, 169, 189, 192, 200, 226, 232, 233, 314, 315, 323, 328, 329, 330, 332, 347, 354, 366, 369, 375, 398, 445, 485, 497, 561, 567, 568, 570, 573, 591, 638, 643, 645, 677, 682, 688, 693], "vorgeh": [22, 27, 85, 97, 302, 331, 373, 586, 589], "schritt": [22, 28, 60, 62, 81, 92, 98, 255, 266, 328, 349, 515, 688], "durchzufuhr": [22, 91, 92, 255, 266, 381, 671, 688], "www": [22, 27, 45, 54, 55, 69, 82, 83, 84, 85, 88, 111, 113, 141, 161, 176, 183, 187, 192, 200, 202, 208, 209, 211, 215, 219, 234, 235, 236, 247, 253, 254, 260, 262, 273, 275, 281, 283, 285, 298, 312, 313, 334, 344, 359, 365, 371, 409, 436, 439, 440, 460, 472, 496, 545, 550, 558, 599, 615, 641, 651, 652, 653, 654, 655, 656, 674, 675, 684, 688], "com": [22, 45, 47, 52, 54, 55, 73, 76, 83, 84, 85, 152, 161, 162, 164, 171, 172, 174, 175, 176, 179, 182, 192, 200, 206, 208, 211, 212, 214, 215, 217, 218, 219, 221, 222, 225, 229, 234, 235, 236, 241, 247, 254, 262, 269, 272, 273, 275, 276, 278, 282, 283, 284, 296, 298, 301, 305, 315, 334, 338, 344, 352, 353, 355, 356, 357, 358, 359, 361, 365, 366, 368, 376, 388, 416, 424, 425, 430, 436, 445, 472, 497, 516, 529, 530, 532, 545, 550, 558, 599, 615, 645, 646, 647, 649, 669, 688], "entpackt": [22, 172, 628], "entpack": 22, "sollt": [22, 27, 31, 33, 34, 37, 39, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56, 58, 60, 62, 67, 68, 69, 71, 73, 76, 77, 79, 82, 83, 85, 86, 88, 89, 90, 92, 98, 100, 104, 106, 107, 110, 111, 113, 115, 117, 123, 155, 162, 164, 165, 169, 170, 189, 191, 194, 196, 200, 201, 207, 210, 212, 213, 214, 219, 229, 230, 232, 238, 241, 243, 249, 250, 261, 262, 264, 267, 276, 283, 284, 292, 304, 306, 307, 309, 313, 314, 319, 321, 325, 326, 328, 329, 330, 331, 332, 333, 338, 339, 340, 346, 347, 351, 360, 362, 363, 367, 369, 371, 381, 412, 428, 446, 453, 463, 486, 495, 507, 508, 514, 573, 580, 584, 588, 589, 590, 592, 593, 600, 602, 608, 613, 615, 621, 625, 628, 635, 638, 641, 643, 644, 645, 646, 652, 653, 654, 655, 656, 674, 682, 685, 686, 688, 691, 693], "existiert": [22, 27, 58, 82, 83, 85, 103, 107, 111, 113, 159, 192, 314, 328, 338, 508, 545, 547, 548, 550, 552, 554, 558, 563, 573, 589, 596, 678], "zuerst": [22, 27, 37, 42, 52, 58, 73, 82, 85, 92, 97, 102, 116, 212, 213, 226, 244, 283, 292, 323, 328, 332, 338, 367, 381], "seiteneffekt": [22, 71], "bestandteil": [22, 212, 531, 585, 630], "unterordn": [22, 37, 51, 52, 53, 83, 85, 169, 423], "entstand": 22, "Nun": [22, 27, 59, 68, 71, 82, 83, 88, 90, 92, 98, 116, 125, 164, 188, 243, 263, 328, 622, 638, 682, 683, 688], "develop": [23, 36, 37, 47, 53, 54, 55, 78, 107, 113, 115, 125, 141, 154, 162, 163, 172, 208, 211, 215, 218, 265, 292, 320, 337, 344, 357, 359, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 508, 513, 514, 515, 516, 518, 521, 526, 527, 537, 538, 545, 548, 550, 552, 554, 558, 610, 612, 638, 641, 643, 645, 646, 651, 654, 668, 681, 691, 693], "installi": [23, 68, 79, 90, 92, 222, 223, 225, 279, 284, 302, 370, 496, 627, 629, 630, 687, 693], "global_struct": [24, 97], "templat": [24, 31, 33, 34, 44, 48, 52, 53, 56, 58, 59, 60, 61, 62, 107, 114, 115, 126, 134, 151, 184, 212, 213, 235, 236, 250, 254, 265, 268, 318, 320, 328, 330, 333, 352, 353, 367, 496, 508, 523, 577, 578, 590, 603, 613, 625, 641, 642, 646, 648, 650, 651, 655, 665, 674, 687], "gestellt": [24, 58, 62, 120, 162, 169, 191, 201, 238, 264, 267, 295, 325, 329, 330, 333, 338, 370, 381, 417, 460, 508, 545, 558, 585, 612, 641], "referenziert": [24, 25, 39, 48, 49, 56, 97, 111, 115, 116, 117, 169, 181, 217, 263, 323, 325, 326, 333, 506, 508, 561, 592, 690], "erkennbar": [24, 77], "unterscheid": [24, 62, 97, 162, 210, 262, 323, 512, 682, 687], "sub": [24, 43, 45, 53, 126, 133, 212, 213, 227, 284, 289, 379, 595, 601, 602, 603, 604, 607, 608, 609, 615, 641, 645, 646, 655, 693], "deklaration": [24, 58, 178, 326, 329, 333, 508], "gleichwert": 24, "belieb": [24, 42, 46, 62, 74, 79, 85, 97, 98, 102, 105, 106, 112, 116, 162, 167, 169, 192, 229, 263, 321, 323, 324, 325, 326, 329, 332, 333, 347, 351, 395, 400, 408, 435, 441, 464, 467, 508, 522, 531, 579, 622, 693], "verschachtelt": [24, 53, 106, 603], "sub_struct1": 24, "item_in_struct": 24, "child_in_struct": 24, "foo": [24, 40, 43, 53, 103, 126, 160, 169, 170, 171, 189, 191, 192, 201, 212, 213, 218, 222, 263, 264, 267, 269, 328, 329, 331, 360, 380, 396, 398, 406, 416, 426, 427, 434, 445, 457, 460, 471, 479, 488, 491, 504, 508, 512, 519, 520, 522, 563, 577, 579, 580, 601, 602, 604, 607, 608, 609, 645, 646, 663], "sub_struct2": 24, "main_struct1": 24, "main_struct2": 24, "test1": 24, "beacht": [24, 43, 53, 58, 60, 62, 71, 80, 100, 106, 112, 115, 116, 123, 124, 162, 181, 210, 215, 256, 260, 263, 283, 289, 321, 326, 328, 329, 330, 332, 333, 339, 340, 359, 362, 406, 412, 487, 510, 545, 558, 561, 570, 573, 576, 589, 596, 598, 601, 602, 603, 604, 608, 609, 641, 671, 672, 674, 675, 693], "ubergeordnet": [24, 53, 219, 329, 330, 333, 562, 566, 603], "wegen": [24, 162, 165, 641], "regel": [24, 28, 97, 192, 194, 200, 219, 263, 306, 307, 316, 325, 331, 333, 382, 383, 463, 486, 508], "first": [24, 44, 54, 55, 66, 71, 82, 97, 126, 130, 141, 148, 152, 157, 162, 180, 185, 190, 199, 206, 211, 227, 243, 248, 276, 278, 280, 288, 294, 296, 301, 312, 315, 326, 332, 352, 353, 361, 395, 612, 613, 618, 624, 643, 646, 648, 649, 651, 652, 653, 655, 656, 665, 667, 668, 686], "win": [24, 97, 210, 279], "gewinnt": [24, 53, 97, 105, 603], "solch": [24, 53, 77, 83, 85, 86, 92, 98, 102, 123, 165, 169, 232, 293, 321, 323, 325, 545, 547, 548, 550, 552, 554, 558, 596, 603, 643, 644, 645, 646, 682, 691], "Auch": [24, 52, 73, 82, 83, 86, 88, 98, 103, 169, 189, 328, 351, 359, 453, 561, 572, 576, 586], "gilt": [24, 50, 53, 54, 55, 56, 68, 71, 84, 85, 92, 97, 103, 106, 115, 170, 179, 184, 192, 210, 232, 252, 255, 256, 348, 357, 360, 366, 536, 589, 596, 603, 686], "weshalb": [24, 83, 328, 329, 359, 591], "ignoriert": [24, 43, 53, 106, 116, 169, 189, 212, 213, 295, 322, 325, 326, 328, 332, 381, 395, 398, 434, 599, 601, 602, 604, 607, 608, 609, 634, 641], "gleichranging": 24, "merg": [24, 92, 97, 126, 643, 646, 655], "kombiniert": [24, 37, 68, 162, 224, 316, 326, 328, 479, 671], "zumind": [24, 83, 92, 97, 306, 307, 362, 440, 567, 583, 591, 688], "deklariert": [24, 50, 61, 62, 104, 116, 169, 230, 249, 263, 289, 322, 323, 325, 326, 328, 329, 331, 347, 412, 508, 642], "test2": 24, "aufgrund": [24, 79, 82, 85, 92, 165, 170, 189, 322, 325, 333, 545, 547, 548, 550, 552, 554, 558, 575, 577, 621, 628, 671, 672], "gemass": [24, 27, 92, 178, 192, 261, 262, 285, 310, 314, 367], "vorkommt": [24, 123, 189, 256, 398], "ebenfall": [24, 39, 49, 58, 83, 92, 98, 162, 168, 178, 188, 215, 232, 263, 283, 285, 321, 325, 326, 328, 330, 333, 337, 347, 369, 371, 381, 485, 573, 641, 642], "Ob": [24, 71, 261, 642], "spielt": [24, 164, 169, 219, 295, 314, 325, 330, 453, 519], "roll": [24, 169, 219, 325, 330, 331, 519], "trag": [24, 83, 102, 106, 112, 124, 259, 428, 585, 687], "fuhrt": [24, 42, 64, 71, 103, 115, 116, 117, 165, 169, 181, 194, 243, 260, 262, 266, 289, 314, 326, 328, 329, 330, 331, 349, 373, 381, 545, 547, 548, 550, 552, 554, 558, 577, 588, 589, 592, 596, 600, 630, 674], "struct2": [24, 53, 603], "W\u00e4re": 24, "eingebund": [24, 50, 51, 52, 57, 65, 85, 123, 162, 166, 169, 184, 191, 200, 201, 238, 243, 244, 264, 267, 268, 284, 292, 319, 323, 328, 329, 333, 351, 362, 423, 462, 496, 523, 575, 596, 693], "verschmelz": 24, "fehlt": [24, 50, 71, 115, 162, 261], "teil": [25, 37, 38, 41, 46, 50, 52, 64, 93, 96, 97, 100, 106, 112, 114, 116, 154, 169, 170, 189, 191, 201, 219, 263, 264, 267, 279, 293, 314, 321, 323, 325, 328, 330, 331, 345, 357, 360, 382, 398, 401, 423, 472, 554, 555, 565, 591, 612, 630, 681, 682, 688, 690], "baum": [25, 97, 289, 295, 561], "fensterkontakt": [25, 162, 289], "ausgewertet": [25, 189, 351, 569, 572, 573, 592, 632, 682], "hopp": [25, 200], "fenstergriff": [25, 200, 289, 566], "ergeb": [25, 79, 92, 260, 262, 338, 561], "stati": [25, 112, 124, 219, 220, 244, 289, 508, 632, 671, 682], "verschloss": [25, 338], "gekippt": [25, 289], "off": [25, 53, 54, 57, 111, 141, 152, 155, 160, 161, 162, 169, 173, 177, 190, 195, 198, 200, 205, 211, 218, 227, 234, 247, 248, 249, 285, 288, 290, 304, 325, 330, 338, 342, 356, 357, 360, 364, 369, 370, 375, 389, 434, 436, 449, 453, 488, 508, 537, 574, 579, 609, 635, 652, 653, 654, 666, 688], "auswert": [25, 189, 229, 398, 573, 674], "losung": [25, 46, 67, 191, 201, 264, 267], "wenig": [25, 58, 82, 92, 106, 203, 326, 330], "aufwand": [25, 351, 622], "normal": [25, 42, 46, 53, 58, 79, 82, 83, 87, 107, 125, 160, 170, 227, 262, 288, 289, 292, 296, 314, 321, 329, 331, 338, 347, 359, 414, 479, 508, 521, 563, 573, 585, 591, 596, 598, 610, 622, 630, 632, 638, 653, 682], "gelost": 25, "buero": [25, 112, 155, 164, 168, 304, 339, 340, 356, 357, 561, 591, 682], "reed1": 25, "reed2": 25, "anpass": [25, 60, 68, 83, 106, 107, 162, 189, 191, 201, 219, 220, 222, 223, 233, 244, 264, 267, 270, 271, 328, 401, 419, 420, 561, 641, 671, 672, 674, 685, 688], "gewiss": [25, 100, 189, 210, 329, 331, 573], "erfordert": [25, 121, 224, 292, 359], "fehlertracht": 25, "Dann": [25, 53, 62, 67, 69, 73, 82, 88, 92, 102, 106, 116, 120, 123, 162, 244, 293, 314, 338, 566, 573, 589, 596, 599, 634, 685, 688], "geschwist": 25, "acht": [25, 46, 83, 85, 106, 112, 123, 162, 187, 219, 285, 302, 326, 332, 333, 461, 483, 490, 561, 630, 678], "angesproch": [25, 42, 52, 58, 62, 67, 97, 200, 213, 249, 263, 284, 308, 309, 316, 371, 379, 382, 384, 406, 561, 585, 591], "erwartet": [25, 27, 82, 92, 122, 169, 226, 256, 261, 331, 375, 599, 617, 634, 671], "itemreferenz": 25, "liess": 25, "vereinfach": [25, 170, 289, 293, 330, 599, 618, 634], "ind": [25, 46, 56, 58, 98, 102, 106, 116, 169, 187, 207, 212, 213, 217, 226, 233, 262, 263, 265, 289, 326, 332, 333, 351, 495, 496, 523, 545, 550, 566, 589, 595, 622, 638, 674, 677], "detailliert": [25, 56, 61, 83, 103, 115, 166, 167, 169, 172, 178, 188, 189, 196, 217, 229, 237, 243, 244, 263, 319, 322, 346, 347, 362, 367, 381, 545, 547, 548, 550, 552, 554, 558, 671, 674], "bequ": [26, 71, 96, 329], "betriebssyst": [27, 28, 42, 71, 79, 92, 580], "umzuzieh": 27, "beschreib": [27, 31, 32, 39, 43, 46, 47, 48, 54, 55, 68, 81, 83, 89, 92, 93, 101, 103, 104, 106, 115, 117, 125, 131, 162, 168, 172, 189, 192, 207, 212, 213, 224, 225, 226, 228, 262, 272, 289, 291, 293, 313, 324, 334, 337, 338, 352, 359, 373, 545, 547, 548, 550, 552, 554, 558, 560, 561, 562, 567, 573, 575, 577, 579, 591, 592, 597, 598, 600, 601, 602, 604, 606, 607, 608, 609, 610, 614, 619, 621, 625, 630, 635, 638, 641, 674, 681, 686, 690, 693], "work": [27, 37, 40, 44, 45, 46, 66, 113, 126, 136, 137, 138, 143, 144, 147, 152, 157, 158, 170, 186, 190, 193, 211, 218, 221, 227, 231, 234, 235, 247, 262, 278, 280, 297, 312, 315, 341, 352, 353, 355, 356, 357, 365, 436, 545, 550, 613, 615, 624, 632, 641, 643, 645, 646, 648, 651, 653, 655, 660, 665], "progress": [27, 190, 227], "komplettanleit": [27, 68, 81, 82, 92, 103, 302, 630, 643, 645, 651, 674, 693], "debian": [27, 71, 73, 79, 83, 84, 89, 91, 92, 165, 225, 370, 628, 630, 688, 693], "rudimentar": [27, 64, 671], "anleit": [27, 73, 81, 91, 222, 223, 255, 266, 278, 349, 367, 533, 688], "word": [27, 71, 86, 92, 103, 110, 160, 205, 213, 215, 239, 304, 308, 309, 314, 315, 328, 333, 339, 340, 360, 592, 622, 652, 653, 655, 656, 670, 671, 673, 693], "Den": [27, 52, 54, 55, 82, 292, 337, 512, 517, 532, 563, 584, 595, 625, 627], "mqtt": [27, 43, 48, 63, 67, 78, 91, 92, 110, 115, 116, 118, 282, 284, 291, 337, 371, 479, 489, 511, 533, 537, 545, 548, 550, 552, 587, 611, 617, 620, 621, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 691], "brok": [27, 45, 63, 76, 91, 121, 155, 179, 252, 272, 292, 304, 356, 357, 371, 454, 595, 615, 617, 620, 623, 645, 649, 650, 651, 666, 674], "braucht": [27, 79, 82, 85, 98, 106, 282, 283, 314, 363, 589, 638, 688], "ubernomm": [27, 62, 71, 83, 85, 92, 102, 106, 162, 163, 233, 321, 328, 331, 351, 412, 508, 573, 641, 682, 689], "generiert": [27, 51, 52, 76, 109, 178, 212, 213, 226, 255, 316, 349, 373, 466, 496, 504, 521, 523, 621, 625, 626, 682, 686, 688], "daemon": [27, 39, 55, 69, 71, 79, 83, 84, 86, 89, 90, 91, 111, 165, 168, 197, 250, 258, 259, 434, 453, 459, 545, 548, 550, 617, 630, 641, 646, 651, 653, 666], "unterstutz": [27, 31, 33, 34, 39, 45, 46, 53, 56, 68, 78, 79, 86, 106, 121, 122, 124, 131, 164, 165, 170, 187, 204, 210, 212, 213, 219, 255, 261, 265, 266, 279, 284, 287, 289, 291, 292, 293, 302, 349, 351, 362, 363, 373, 377, 393, 396, 401, 412, 434, 450, 453, 458, 461, 471, 485, 492, 496, 509, 523, 534, 538, 545, 548, 550, 552, 553, 554, 555, 558, 561, 563, 595, 610, 615, 616, 626, 632, 641, 671, 672, 674, 675, 682, 684, 689, 692, 693], "smb": [27, 88], "shar": [27, 88, 660, 688], "local": [27, 37, 40, 42, 44, 45, 48, 50, 54, 55, 56, 57, 68, 71, 83, 87, 88, 89, 90, 92, 103, 108, 113, 119, 120, 125, 141, 148, 151, 152, 157, 158, 161, 162, 164, 179, 184, 185, 187, 192, 195, 199, 200, 205, 210, 212, 213, 215, 217, 220, 225, 230, 248, 251, 252, 255, 262, 265, 266, 268, 273, 278, 283, 289, 302, 309, 311, 314, 334, 338, 348, 349, 357, 359, 365, 366, 417, 432, 451, 477, 527, 588, 591, 613, 615, 628, 629, 630, 638, 641, 644, 646, 649, 652, 653, 655, 677, 678, 679, 688], "eingerichtet": [27, 44, 52, 83, 90, 92, 103, 168, 170, 289, 370, 596, 613, 630], "desktop": [27, 47, 82, 162, 527], "system": [27, 78, 79, 80, 82, 86, 90, 91, 92, 103, 110, 118, 155, 174, 175, 176, 178, 183, 223, 227, 248, 261, 298, 304, 328, 350, 386, 393, 419, 420, 434, 443, 545, 548, 550, 580, 617, 621, 622, 626, 632, 643, 646, 651], "gemountet": 27, "eventuell": [27, 68, 92, 115, 162, 210, 222, 223, 329, 562, 567, 591, 641], "sudo": [27, 37, 44, 73, 83, 84, 85, 86, 87, 88, 89, 90, 92, 103, 154, 157, 161, 185, 198, 199, 200, 205, 210, 225, 239, 245, 253, 255, 260, 278, 281, 285, 287, 299, 309, 335, 338, 341, 344, 370, 508, 612, 613, 628, 630, 667, 678, 688], "Am": [27, 71, 82, 97, 219, 316, 642, 682], "best": [27, 67, 82, 86, 106, 162, 218, 219, 247, 290, 361, 630, 652, 665], "anleg": [27, 82, 97, 162, 330, 347, 362, 373, 396, 585, 682, 688, 693], "ort": [27, 82, 98, 113, 131, 365, 394, 462, 468, 479, 532, 671], "verschob": [27, 241, 674], "unterverzeichnis": [27, 32, 48, 52, 55, 73, 85, 92, 102, 103, 111, 123, 508, 614, 619, 625, 630, 678, 687], "owf": [27, 80, 87, 261, 663], "bish": [27, 43, 53, 64, 76, 83, 97, 106, 111, 112, 116, 123, 192, 200, 212, 233, 284, 293, 306, 307, 314, 337, 370, 556, 557, 568, 570, 585, 601, 602, 604, 607, 608, 609, 611, 617, 641, 671, 672, 682, 686, 689, 693], "gui": [27, 42, 43, 52, 53, 55, 66, 71, 82, 97, 101, 102, 103, 104, 117, 120, 125, 210, 212, 213, 226, 265, 289, 300, 302, 419, 420, 479, 537, 563, 574, 577, 585, 590, 592, 600, 601, 602, 603, 604, 607, 608, 609, 610, 614, 617, 618, 619, 624, 632, 641, 643, 645, 646, 649, 674, 677, 680, 693], "smarthmeng": 27, "folg": [27, 47, 56, 82, 86, 89, 97, 106, 115, 165, 184, 217, 244, 268, 283, 323, 331, 332, 351, 480, 545, 547, 548, 550, 552, 554, 558, 563, 583, 586], "py": [27, 39, 42, 43, 47, 48, 50, 53, 54, 55, 58, 60, 61, 62, 64, 69, 83, 87, 89, 103, 106, 108, 113, 124, 125, 126, 127, 129, 132, 134, 135, 141, 146, 150, 151, 162, 170, 178, 182, 183, 186, 189, 191, 192, 195, 198, 199, 201, 205, 206, 207, 218, 219, 221, 229, 234, 238, 239, 241, 243, 245, 248, 257, 260, 261, 263, 264, 267, 269, 278, 282, 283, 294, 298, 301, 314, 334, 335, 338, 344, 351, 352, 355, 356, 357, 359, 364, 365, 481, 482, 505, 522, 562, 588, 591, 595, 610, 614, 619, 621, 622, 623, 630, 635, 638, 639, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 664, 665, 666, 667, 668, 669, 670, 674, 675, 676, 682, 686, 690], "inhalt": [27, 28, 32, 43, 47, 50, 52, 53, 54, 55, 56, 58, 59, 61, 62, 83, 85, 92, 93, 98, 103, 106, 115, 154, 164, 192, 219, 223, 243, 256, 260, 279, 314, 330, 338, 400, 408, 435, 441, 464, 467, 472, 508, 513, 563, 599, 601, 602, 604, 607, 608, 609, 612, 622, 625, 641, 674, 675, 681, 688, 693], "gleichnam": [27, 76, 120, 123], "sqlite3": [27, 83, 111, 113, 186, 187, 223, 396, 646, 653], "mysql": [27, 83, 113, 186, 187, 223, 224, 287, 396, 545, 554, 653], "rat": [27, 83, 235, 291, 337, 643, 644, 647, 648, 655], "zieh": [27, 291, 337, 644, 647, 648, 688], "vorgang": [27, 82, 92, 115, 326, 571, 628, 671], "dauert": [27, 82, 83, 314, 508, 688], "zeit": [27, 52, 58, 79, 82, 83, 92, 96, 102, 103, 104, 116, 155, 164, 165, 167, 170, 181, 184, 187, 188, 189, 192, 200, 215, 220, 232, 233, 243, 261, 262, 263, 268, 293, 299, 300, 304, 306, 307, 308, 309, 314, 324, 325, 329, 330, 331, 338, 347, 359, 377, 382, 383, 394, 396, 401, 405, 406, 412, 419, 420, 421, 434, 442, 453, 460, 462, 468, 476, 477, 479, 485, 486, 492, 493, 500, 503, 508, 510, 512, 518, 519, 532, 562, 573, 575, 580, 596, 628, 636, 672, 674], "gigabyt": 27, "executor_script": [27, 203, 410], "logdatei": [27, 52, 92, 103, 115, 116, 119, 178, 188, 200, 263, 397, 463, 508, 585, 586, 593, 612], "verzeichiss": 27, "plugings_cach": 27, "leer": [27, 43, 53, 56, 58, 59, 60, 62, 82, 169, 187, 200, 255, 289, 292, 304, 314, 328, 329, 330, 331, 376, 382, 399, 411, 485, 489, 512, 519, 520, 561, 606, 610, 683], "verzeichnisinhalt": 27, "wahl": [27, 42, 71, 82, 100, 162, 163, 164, 172, 181, 262, 314, 688], "getestet": [27, 69, 71, 79, 82, 83, 85, 162, 163, 165, 167, 169, 171, 178, 192, 201, 203, 210, 222, 223, 255, 261, 284, 285, 293, 308, 309, 319, 323, 325, 346, 360, 369, 370, 371, 381, 483, 507, 545, 548, 641, 642, 649, 671, 672, 674, 675, 688], "angeschloss": [27, 79, 87, 170, 204, 261, 337, 351, 401, 402, 412, 476, 498, 499, 514, 518, 522], "peripheri": [27, 554, 555, 617, 618, 692], "funktioniert": [27, 58, 67, 71, 79, 82, 83, 92, 100, 106, 111, 124, 156, 162, 164, 169, 171, 181, 187, 291, 302, 303, 332, 337, 339, 340, 343, 359, 363, 369, 371, 391, 436, 485, 496, 524, 545, 550, 554, 562, 566, 573, 641, 642, 688], "pruf": [27, 43, 47, 52, 53, 71, 92, 155, 164, 232, 262, 304, 306, 307, 512, 591, 608, 638, 641, 681], "blick": [27, 52, 73, 80, 83, 111, 166, 169, 229, 321], "plugis": [27, 373], "Sind": [27, 92, 189, 295, 333, 400, 441, 464, 467], "plot": [27, 155, 178, 223, 304, 356, 357, 646, 665, 682, 687], "dns": [27, 44, 69, 85, 121, 613], "erreichbar": [27, 120, 162, 197, 314, 337, 419, 420, 641, 642], "prinzipiell": [27, 83, 92, 97, 115, 116, 167, 261, 324, 330, 331, 591, 688], "kommunikation": [27, 28, 45, 67, 69, 83, 84, 85, 86, 120, 121, 122, 162, 163, 178, 179, 192, 194, 200, 215, 219, 220, 226, 284, 291, 302, 309, 337, 351, 359, 367, 370, 371, 376, 401, 414, 415, 434, 454, 479, 480, 488, 489, 498, 499, 511, 517, 527, 533, 537, 545, 548, 549, 550, 551, 552, 615, 616, 617, 621, 622, 693], "devic": [27, 45, 48, 54, 55, 66, 67, 78, 87, 90, 106, 121, 138, 160, 164, 166, 173, 176, 179, 182, 192, 193, 196, 198, 199, 200, 210, 212, 213, 215, 218, 227, 229, 231, 244, 248, 258, 259, 261, 265, 273, 276, 278, 289, 290, 297, 301, 305, 306, 307, 312, 334, 347, 352, 359, 367, 370, 371, 376, 382, 393, 401, 406, 417, 420, 430, 439, 466, 471, 477, 479, 483, 489, 504, 507, 511, 521, 537, 545, 548, 549, 550, 551, 552, 553, 563, 566, 615, 618, 622, 623, 624, 641, 643, 644, 645, 646, 648, 649, 650, 651, 653, 654, 655, 656, 665, 666, 671, 674, 683, 686, 692, 693], "musst": [27, 44, 51, 71, 92, 97, 111, 115, 270, 271, 328, 563, 585, 595, 613, 616, 687], "rm": [27, 85, 165, 210, 630, 667], "Zum": [27, 51, 52, 53, 56, 84, 89, 92, 95, 102, 107, 124, 155, 162, 164, 226, 304, 324, 326, 329, 462, 572, 622, 628, 630, 693], "abschluss": [27, 52, 82, 83, 92, 187, 212, 213, 226, 349, 573, 576], "betreib": [28, 77, 89, 90, 285], "nehm": [28, 52, 293], "schutz": [28, 306, 307, 688], "Ihrer": [28, 106, 164, 165, 172], "perso": 28, "nlich": 28, "ernst": [28, 115, 189], "Wir": [28, 52], "behandeln": [28, 595], "Ihre": [28, 47, 92, 164, 165, 230, 314, 362, 434], "personenbezog": 28, "vertraulich": 28, "gesetz": [28, 77, 398, 599, 634], "datenschutzvorschrift": 28, "unserer": 28, "websit": [28, 77, 84, 106, 207, 224, 225, 334, 361, 424, 425, 612, 628, 688], "angab": [28, 52, 53, 58, 60, 62, 64, 67, 83, 89, 97, 112, 115, 116, 117, 123, 155, 169, 170, 184, 187, 189, 200, 222, 232, 256, 261, 263, 268, 289, 293, 304, 323, 324, 325, 326, 328, 329, 330, 332, 333, 338, 351, 381, 397, 410, 412, 423, 427, 428, 434, 496, 507, 508, 514, 519, 523, 527, 561, 562, 563, 568, 569, 570, 573, 574, 575, 576, 577, 583, 585, 592, 599, 600, 603, 609, 622, 634, 641, 671, 682, 693], "mo": [28, 77, 347, 585, 646], "glich": [28, 77], "unseren": 28, "beispielsweis": [28, 58, 60, 74, 83, 92, 98, 103, 169, 178, 179, 191, 196, 197, 204, 243, 264, 267, 321, 323, 324, 325, 326, 328, 329, 330, 331, 333, 347, 360, 376, 381, 412, 508, 572, 575, 593], "anschrift": 28, "erhob": [28, 260], "stet": [28, 77], "freiwill": 28, "basis": [28, 47, 48, 52, 68, 85, 103, 120, 189, 196, 215, 219, 247, 263, 271, 274, 316, 325, 368, 434, 456, 485, 518, 621, 653, 674], "ausdru": 28, "cklich": 28, "zustimm": [28, 77], "weitergegeb": [28, 52, 229, 304, 325], "datenu": 28, "bertrag": 28, "internet": [28, 53, 79, 84, 161, 185, 219, 244, 247, 256, 292, 338, 368, 373, 381, 558, 559, 610, 641, 646, 688], "sicherheitslu": 28, "cken": 28, "aufweis": [28, 565, 591], "lu": [28, 96, 104, 195, 196, 269], "ckenlos": 28, "zugriff": [28, 44, 45, 52, 84, 86, 87, 100, 119, 120, 159, 162, 170, 189, 203, 220, 222, 244, 256, 270, 271, 285, 333, 338, 360, 376, 380, 382, 391, 427, 428, 434, 443, 446, 483, 491, 495, 496, 524, 528, 533, 545, 548, 550, 558, 559, 561, 564, 594, 596, 599, 612, 613, 615, 616, 622, 636, 641, 644, 671, 682, 688, 690, 693], "provid": [28, 44, 52, 54, 55, 63, 127, 130, 133, 138, 141, 160, 173, 176, 183, 186, 227, 245, 253, 258, 288, 290, 305, 334, 342, 344, 355, 372, 613, 620, 643, 647, 648, 649, 652, 655, 660], "erhebt": 28, "speichert": [28, 164, 232, 295, 434], "genannt": [28, 116, 187, 212, 213, 219, 314, 326, 332, 688, 693], "Ihr": [28, 47, 165], "bermittelt": [28, 77], "browsertyp": 28, "browserversion": 28, "referr": 28, "url": [28, 44, 45, 47, 53, 54, 55, 83, 85, 90, 120, 141, 150, 155, 157, 158, 161, 164, 170, 176, 198, 215, 218, 219, 222, 223, 225, 228, 260, 262, 272, 275, 296, 304, 312, 313, 314, 315, 316, 318, 338, 346, 359, 360, 362, 370, 375, 388, 407, 409, 416, 423, 441, 453, 504, 507, 512, 518, 521, 528, 530, 610, 612, 613, 615, 641, 646, 647, 648, 649, 653, 654, 655, 666, 670, 674, 688], "hostnam": [28, 43, 44, 45, 53, 85, 88, 122, 141, 152, 157, 158, 165, 170, 198, 240, 276, 278, 282, 283, 312, 313, 377, 380, 382, 383, 393, 406, 417, 426, 427, 428, 433, 434, 440, 442, 451, 453, 461, 469, 470, 475, 477, 488, 535, 536, 599, 601, 602, 604, 607, 608, 609, 613, 615, 643], "serveranfrag": 28, "person": [28, 203, 336, 394, 430, 462, 468, 472, 510, 516], "zuordenbar": 28, "zusammenfu": 28, "hrung": 28, "datenquell": [28, 262, 431, 462], "behalt": [28, 98, 255, 260, 585, 596], "nachtra": 28, "zupru": 28, "fen": 28, "anhaltspunkt": [28, 77], "fu": [28, 671], "rechtswidr": [28, 77], "gru": 28, "nden": [28, 77], "Sicherheit": [28, 241, 249, 688], "anfrag": [28, 58, 164, 189, 230, 256, 375, 461, 510, 525, 617, 622, 688], "seitenbetreib": [28, 77], "sselt": 28, "verbind": [28, 36, 45, 48, 52, 71, 78, 85, 86, 106, 121, 122, 155, 162, 164, 169, 170, 172, 178, 179, 181, 201, 244, 249, 256, 259, 283, 292, 304, 308, 309, 316, 349, 351, 362, 370, 380, 381, 391, 393, 400, 405, 408, 423, 424, 425, 435, 440, 441, 447, 457, 464, 467, 480, 500, 507, 512, 517, 534, 595, 615, 621, 626, 641, 642, 688], "adresszeil": 28, "wechselt": [28, 42, 58, 219, 233, 314, 333, 572, 574], "schloss": [28, 458], "symbol": [28, 227, 284, 294, 315, 316, 375, 682], "browserzeil": 28, "ko": [28, 77, 451], "nnen": [28, 77], "bermitteln": 28, "mitgeles": 28, "rahm": [28, 36, 48, 51, 52, 53, 54, 55, 244, 260, 371, 612, 613, 615, 621], "impressumspflicht": 28, "vero": 28, "ffentlicht": 28, "kontaktdat": 28, "bersend": 28, "werbung": 28, "informationsmateriali": 28, "hiermit": [28, 162, 690], "widersproch": 28, "rechtlich": [28, 260], "unverlangt": 28, "zusend": 28, "werbeinformation": 28, "etwa": [28, 71, 83, 86, 104, 107, 210, 224, 229, 291, 337, 367, 682], "spam": [28, 641], "can": [29, 30, 40, 44, 45, 52, 54, 55, 58, 63, 66, 72, 107, 115, 130, 132, 133, 136, 137, 140, 141, 142, 143, 147, 148, 152, 154, 157, 158, 160, 161, 162, 164, 173, 175, 176, 180, 183, 185, 186, 190, 193, 195, 198, 199, 202, 205, 206, 208, 211, 218, 221, 227, 231, 234, 235, 236, 239, 240, 245, 248, 251, 253, 254, 257, 258, 260, 262, 273, 274, 278, 280, 281, 288, 290, 294, 297, 298, 305, 311, 312, 315, 318, 325, 334, 335, 342, 344, 345, 351, 352, 353, 355, 356, 357, 358, 361, 365, 368, 370, 395, 409, 612, 613, 615, 618, 620, 623, 624, 643, 645, 646, 649, 650, 652, 655, 670], "be": [29, 30, 40, 44, 45, 52, 53, 54, 55, 58, 60, 63, 66, 84, 87, 96, 104, 107, 110, 113, 115, 126, 130, 132, 133, 134, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 160, 164, 165, 168, 173, 176, 180, 183, 185, 186, 190, 193, 195, 198, 199, 202, 205, 206, 208, 209, 211, 216, 217, 218, 221, 227, 231, 234, 239, 240, 245, 247, 248, 254, 257, 258, 260, 261, 262, 269, 273, 274, 278, 280, 281, 283, 288, 290, 294, 296, 297, 298, 301, 305, 308, 311, 312, 315, 317, 325, 334, 335, 341, 344, 345, 352, 353, 355, 356, 357, 358, 361, 364, 365, 368, 370, 395, 413, 520, 545, 558, 610, 612, 613, 615, 616, 618, 620, 623, 624, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 667, 669, 670, 681], "found": [29, 44, 45, 52, 54, 55, 66, 84, 116, 127, 133, 152, 195, 206, 217, 221, 239, 278, 282, 294, 312, 322, 345, 360, 361, 615, 623, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 691], "documentation": [29, 36, 44, 53, 54, 55, 64, 139, 157, 159, 173, 176, 190, 195, 206, 209, 211, 216, 218, 227, 251, 257, 280, 281, 318, 334, 342, 344, 350, 516, 545, 558, 610, 613, 652, 653, 654, 655, 656], "this": [30, 40, 43, 44, 45, 52, 53, 54, 55, 56, 58, 63, 66, 83, 87, 107, 115, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 156, 157, 158, 160, 170, 173, 175, 176, 177, 180, 182, 183, 185, 186, 190, 193, 195, 198, 202, 205, 208, 209, 211, 218, 221, 227, 231, 234, 235, 236, 239, 240, 243, 245, 247, 248, 251, 253, 254, 257, 258, 260, 262, 263, 273, 274, 275, 278, 280, 281, 282, 288, 290, 294, 296, 298, 301, 303, 305, 312, 315, 317, 334, 335, 342, 344, 352, 353, 355, 356, 357, 361, 365, 368, 370, 395, 512, 575, 595, 606, 610, 612, 613, 615, 616, 618, 620, 623, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 654, 655, 665, 667, 668, 677, 686, 691], "allows": [30, 44, 45, 55, 66, 107, 115, 142, 157, 158, 160, 180, 182, 198, 208, 294, 298, 301, 317, 342, 352, 365, 613, 615, 624, 643, 646, 647, 653], "to": [30, 36, 40, 43, 44, 45, 52, 53, 54, 55, 58, 60, 63, 64, 66, 68, 71, 83, 86, 88, 103, 107, 110, 111, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 159, 160, 161, 162, 164, 168, 173, 175, 176, 179, 180, 182, 183, 186, 190, 193, 195, 198, 199, 200, 202, 205, 206, 208, 209, 211, 216, 217, 218, 221, 225, 226, 227, 229, 230, 231, 234, 235, 239, 240, 245, 247, 248, 251, 253, 255, 256, 257, 258, 260, 261, 262, 263, 269, 274, 275, 276, 278, 280, 281, 282, 283, 288, 290, 292, 294, 296, 297, 298, 301, 305, 308, 309, 312, 314, 315, 317, 318, 323, 325, 326, 328, 329, 330, 334, 335, 337, 341, 342, 344, 345, 350, 352, 355, 358, 360, 361, 364, 365, 368, 370, 375, 395, 413, 453, 512, 527, 538, 562, 595, 606, 610, 612, 613, 615, 616, 618, 620, 623, 624, 625, 629, 641, 642, 643, 644, 645, 646, 647, 648, 649, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 668, 669, 674, 675, 677, 679, 681, 686, 691], "do": [30, 44, 45, 52, 54, 55, 66, 88, 136, 137, 142, 152, 154, 157, 158, 161, 186, 199, 206, 211, 221, 254, 260, 273, 278, 281, 290, 294, 352, 365, 612, 613, 615, 623, 624, 644, 646, 648, 649, 651, 653, 655, 667], "something": [30, 186, 218, 227, 247, 352, 612], "described": [30, 44, 45, 66, 107, 115, 136, 157, 158, 160, 186, 199, 227, 260, 296, 312, 335, 341, 353, 613, 615, 618, 623, 624, 645, 646], "below": [30, 44, 45, 52, 54, 55, 66, 107, 113, 115, 157, 158, 182, 186, 195, 227, 247, 253, 254, 257, 262, 288, 305, 334, 344, 353, 355, 361, 365, 368, 613, 615, 618, 623, 624], "under": [30, 44, 45, 52, 54, 55, 141, 154, 157, 158, 176, 182, 205, 211, 227, 247, 258, 288, 612, 613, 615, 642, 645, 646, 649, 651, 653, 655], "smmarthomeng": [30, 154, 612], "beyond": [30, 44, 45, 154, 157, 158, 296, 298, 612, 613, 615], "it": [30, 40, 44, 45, 52, 54, 55, 58, 66, 107, 115, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 154, 157, 158, 159, 160, 162, 164, 185, 190, 193, 198, 205, 210, 211, 218, 227, 231, 235, 236, 240, 247, 248, 251, 253, 254, 255, 257, 260, 273, 274, 278, 280, 281, 282, 288, 290, 294, 301, 305, 309, 312, 314, 315, 317, 334, 335, 337, 341, 352, 353, 355, 356, 357, 361, 365, 368, 370, 395, 512, 590, 612, 613, 615, 618, 623, 624, 646, 649, 650, 652, 653, 654, 655, 663, 670, 686], "requir": [30, 44, 154, 157, 198, 209, 227, 245, 248, 260, 301, 335, 342, 344, 368, 612, 613, 646, 688], "need": [30, 44, 45, 52, 54, 55, 66, 68, 130, 132, 133, 137, 138, 141, 142, 154, 157, 158, 180, 185, 186, 193, 195, 205, 208, 211, 218, 227, 231, 234, 239, 245, 247, 248, 251, 253, 257, 260, 274, 278, 281, 288, 290, 294, 296, 305, 308, 311, 312, 334, 335, 344, 365, 368, 612, 613, 615, 616, 624, 643, 646, 652, 653, 670], "handling": [30, 44, 45, 63, 66, 76, 126, 133, 137, 139, 141, 149, 154, 157, 158, 164, 173, 195, 219, 227, 248, 273, 293, 334, 352, 365, 496, 523, 545, 554, 563, 585, 599, 612, 613, 615, 618, 620, 621, 622, 624, 634, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 665, 671, 674, 693], "activated": [30, 44, 45, 154, 157, 158, 176, 199, 205, 413, 612, 613, 615, 653], "mak": [30, 44, 45, 55, 58, 66, 72, 142, 148, 154, 157, 158, 161, 185, 186, 205, 218, 227, 239, 248, 274, 278, 282, 309, 612, 613, 615, 624, 628, 642, 643, 646, 649, 650, 651, 652, 653, 655], "sur": [30, 44, 45, 154, 157, 158, 185, 186, 205, 218, 227, 240, 278, 282, 612, 613, 615, 616, 646, 650, 651], "that": [30, 40, 44, 45, 52, 53, 54, 55, 63, 66, 107, 113, 115, 126, 133, 134, 136, 137, 138, 139, 141, 146, 147, 148, 154, 157, 158, 160, 161, 162, 164, 175, 180, 185, 186, 198, 199, 202, 205, 208, 211, 218, 221, 227, 234, 235, 236, 240, 247, 248, 251, 254, 257, 262, 274, 278, 288, 290, 294, 296, 301, 312, 315, 342, 344, 352, 353, 355, 356, 357, 364, 365, 610, 612, 613, 615, 616, 618, 620, 623, 624, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 667, 691], "use_modul": [30, 44, 45, 154, 157, 158, 612, 613, 615], "module_nam": [30, 44, 45, 110, 119, 120, 121, 122, 154, 157, 158, 612, 613, 615, 684, 690], "42": [30, 52, 100, 106, 233, 263, 293, 326, 332, 562, 563, 569, 592], "loadlabl": [30, 44, 45, 154, 157, 158, 612, 613, 615], "therefor": [30, 44, 45, 154, 157, 158, 205, 211, 257, 278, 352, 612, 613, 615, 650], "ther": [30, 44, 45, 54, 55, 66, 127, 132, 134, 136, 137, 138, 139, 141, 143, 147, 148, 154, 157, 158, 182, 183, 185, 202, 205, 211, 217, 227, 231, 239, 240, 257, 262, 278, 280, 281, 290, 294, 296, 301, 305, 312, 318, 341, 344, 365, 368, 395, 612, 613, 615, 618, 624, 643, 646, 653, 655, 670], "guarantie": [30, 44, 45, 154, 157, 158, 612, 613, 615], "present": [30, 44, 45, 136, 154, 157, 158, 160, 284, 293, 367, 383, 612, 613, 615, 646, 655], "every": [30, 42, 44, 45, 54, 55, 71, 86, 87, 103, 104, 111, 123, 126, 137, 154, 157, 158, 161, 173, 176, 180, 181, 183, 186, 199, 202, 211, 231, 240, 248, 260, 274, 290, 296, 301, 305, 315, 317, 334, 351, 352, 355, 365, 612, 613, 615, 633, 643, 645, 660, 667, 686], "befor": [30, 44, 45, 54, 55, 66, 126, 129, 133, 137, 139, 142, 154, 157, 158, 160, 183, 186, 200, 205, 211, 218, 248, 278, 294, 317, 341, 612, 613, 615, 624, 643, 645, 646, 649, 650, 652, 655, 656, 670], "you": [30, 44, 45, 47, 52, 54, 55, 58, 66, 72, 83, 130, 132, 136, 137, 141, 143, 147, 148, 154, 158, 160, 161, 162, 164, 175, 180, 183, 185, 186, 195, 198, 205, 206, 208, 211, 218, 221, 227, 231, 234, 235, 236, 239, 240, 245, 248, 251, 253, 254, 257, 260, 262, 273, 274, 278, 280, 281, 283, 288, 290, 294, 296, 301, 305, 309, 312, 315, 317, 318, 334, 335, 344, 351, 352, 355, 365, 368, 413, 512, 612, 613, 615, 624, 625, 646, 664, 665, 667, 670, 686], "hav": [30, 40, 44, 45, 54, 55, 63, 66, 126, 130, 132, 133, 136, 137, 139, 141, 143, 147, 148, 152, 154, 157, 158, 160, 185, 186, 190, 195, 205, 208, 211, 218, 221, 227, 231, 234, 240, 247, 248, 251, 257, 269, 273, 278, 283, 288, 290, 294, 301, 305, 309, 312, 315, 317, 334, 352, 353, 355, 365, 368, 413, 612, 613, 615, 620, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 656, 667, 670, 691], "by": [30, 40, 44, 45, 52, 53, 54, 55, 60, 63, 66, 71, 87, 104, 107, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 147, 148, 149, 151, 152, 154, 157, 158, 160, 161, 162, 180, 182, 183, 185, 186, 193, 195, 199, 202, 206, 211, 218, 227, 232, 234, 240, 247, 248, 253, 254, 256, 257, 258, 260, 262, 263, 274, 288, 290, 294, 297, 298, 301, 304, 305, 312, 315, 317, 318, 329, 335, 338, 344, 352, 355, 356, 357, 361, 365, 370, 395, 520, 545, 558, 562, 594, 595, 610, 612, 613, 615, 618, 620, 623, 624, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 667, 669, 670, 681, 688, 691], "calling": [30, 44, 45, 54, 55, 66, 134, 141, 147, 154, 157, 158, 227, 293, 612, 613, 615, 624, 650, 666], "main": [30, 40, 44, 45, 46, 54, 55, 66, 86, 116, 132, 137, 143, 145, 146, 147, 148, 152, 154, 155, 157, 158, 160, 170, 189, 229, 240, 262, 280, 298, 304, 315, 353, 355, 356, 357, 370, 521, 536, 589, 595, 612, 613, 615, 618, 624, 653], "object": [30, 40, 44, 45, 52, 54, 55, 66, 127, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 154, 157, 158, 186, 211, 229, 247, 273, 612, 613, 615, 623, 624, 643, 649, 650, 653, 655, 656, 660, 664, 666], "lik": [30, 44, 45, 52, 54, 55, 66, 127, 132, 137, 148, 154, 157, 158, 160, 183, 186, 193, 200, 205, 211, 218, 221, 227, 234, 247, 248, 258, 269, 278, 288, 290, 294, 301, 312, 334, 342, 356, 357, 368, 398, 612, 613, 615, 623, 624, 649, 655], "self": [30, 42, 44, 45, 50, 52, 54, 55, 58, 59, 60, 62, 63, 66, 115, 141, 151, 154, 157, 158, 219, 227, 243, 281, 288, 315, 328, 331, 334, 343, 352, 561, 562, 563, 567, 573, 576, 589, 591, 592, 612, 613, 615, 620, 624, 632, 641, 643, 645, 646, 649, 651, 665], "classnam": [30, 43, 44, 45, 52, 53, 54, 55, 58, 66, 143, 145, 154, 157, 158, 606, 610, 612, 613, 615, 616, 624, 671], "__class__": [30, 44, 45, 154, 157, 158, 612, 613, 615], "__name__": [30, 44, 45, 52, 115, 154, 157, 158, 612, 613, 615, 638, 641], "mod_sampl": 30, "_sh": [30, 40, 44, 45, 52, 154, 157, 158, 243, 612, 613, 615, 632], "get_modul": [30, 40, 44, 45, 66, 140, 154, 157, 158, 612, 613, 615, 624], "what": [30, 44, 45, 52, 54, 55, 58, 134, 154, 157, 158, 186, 218, 227, 240, 251, 288, 294, 356, 357, 612, 613, 615, 623, 650], "necessary": [30, 44, 45, 54, 55, 146, 154, 157, 158, 193, 227, 334, 353, 612, 613, 615, 623, 645, 649, 652, 663], "your": [30, 44, 45, 52, 54, 55, 66, 72, 85, 88, 130, 132, 137, 141, 143, 147, 148, 154, 157, 158, 160, 173, 175, 176, 190, 195, 198, 203, 205, 206, 208, 218, 221, 227, 228, 229, 231, 234, 235, 236, 240, 245, 248, 254, 257, 260, 262, 269, 274, 278, 281, 282, 288, 290, 294, 296, 297, 298, 301, 305, 309, 312, 318, 334, 335, 344, 346, 352, 361, 362, 365, 368, 413, 512, 612, 613, 615, 624, 646, 666, 667, 686], "abort": [30, 44, 45, 141, 154, 157, 158, 612, 613, 615], "loading": [30, 44, 45, 54, 55, 60, 66, 115, 132, 137, 140, 143, 145, 154, 157, 158, 612, 613, 615, 624, 643, 645, 646, 649, 655], "param_a": 30, "param_b": 30, "allgemein": [31, 32, 52, 54, 55, 76, 77, 82, 83, 96, 104, 106, 123, 154, 169, 179, 181, 184, 192, 210, 212, 213, 220, 232, 237, 241, 252, 265, 268, 289, 291, 292, 302, 310, 314, 320, 324, 338, 347, 348, 351, 357, 360, 366, 421, 422, 563, 568, 570, 579, 612, 622, 625, 633, 641, 671], "wozu": [31, 54], "gut": [31, 45, 46, 47, 52, 54, 67, 70, 71, 82, 103, 165, 189, 262, 369, 584, 615], "tut": [31, 54, 69, 82, 486], "auflist": [31, 33, 34, 54, 71, 106, 170, 181, 189, 215, 359, 461, 483, 489], "soft": [31, 33, 34, 54], "hardwarekomponent": [31, 33, 34, 54], "beinhaltet": [31, 33, 34, 51, 52, 54, 169, 187, 188, 232, 262, 284, 295, 325, 328, 329, 330, 331, 333, 338, 421, 573, 642], "hardwar": [31, 33, 34, 54, 55, 66, 71, 80, 82, 87, 170, 200, 227, 235, 258, 259, 280, 300, 310, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 623, 624, 632, 647, 688], "spezif": [31, 32, 52, 53, 54, 55, 106, 115, 120, 122, 123, 165, 166, 168, 169, 170, 189, 191, 194, 197, 201, 203, 212, 213, 223, 232, 238, 242, 246, 261, 264, 265, 267, 271, 276, 277, 284, 286, 287, 289, 300, 313, 316, 319, 333, 336, 351, 359, 369, 564, 567, 577, 591, 603, 625, 673, 686, 688], "evtl": [31, 32, 42, 43, 52, 53, 54, 55, 67, 71, 76, 79, 93, 106, 210, 284, 293, 454, 532, 567, 591, 596, 601, 602, 604, 607, 608, 609, 625, 628, 630, 632, 653], "stellt": [31, 32, 52, 54, 55, 71, 86, 120, 121, 123, 154, 162, 187, 189, 207, 222, 228, 230, 241, 243, 259, 260, 262, 268, 284, 286, 287, 295, 302, 314, 324, 325, 329, 330, 338, 359, 360, 462, 522, 532, 567, 585, 589, 590, 591, 595, 597, 599, 612, 621, 622, 625, 634, 674, 678], "dokumentiert": [31, 32, 43, 48, 52, 54, 55, 86, 106, 159, 168, 178, 207, 212, 219, 360, 414, 587, 621, 625, 626, 653, 671, 674, 688], "Sonst": [31, 32, 52, 54, 55, 69, 71, 79, 292, 625, 652], "anwendungsfall": [31, 33, 34, 54, 97, 187, 214, 369], "sample_plugin": [31, 33, 34, 47, 52, 54, 67, 250, 641, 651, 671], "webif": [31, 33, 34, 44, 48, 50, 52, 54, 55, 57, 58, 59, 60, 61, 164, 170, 172, 189, 214, 250, 251, 262, 286, 306, 307, 310, 314, 336, 369, 371, 612, 613, 625, 641, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655], "index": [31, 33, 34, 37, 44, 48, 50, 52, 54, 55, 56, 58, 59, 60, 61, 62, 85, 92, 109, 130, 133, 156, 161, 170, 187, 192, 222, 223, 240, 250, 262, 265, 288, 303, 339, 340, 341, 355, 356, 357, 401, 465, 496, 524, 563, 612, 613, 623, 625, 646, 650, 651, 652, 653, 655, 688], "grundlag": [31, 33, 34, 52, 54, 55, 71, 79, 250, 370], "tabelleninhalt": [31, 33, 34, 52, 54, 250], "sorti": [31, 33, 34, 52, 54, 58, 60, 76, 250], "eingefugt": [31, 33, 34, 52, 53, 54, 58, 60, 62, 86, 87, 89, 90, 97, 162, 219, 250, 271, 295, 325, 381, 577, 578, 585, 603, 674, 682], "doku": [31, 33, 34, 48, 52, 54, 98, 115, 123, 162, 167, 200, 250, 312, 313, 641, 649, 671, 693], "liefert": [31, 33, 34, 52, 54, 57, 84, 154, 165, 170, 212, 214, 229, 250, 261, 262, 287, 289, 306, 307, 330, 339, 340, 360, 369, 376, 379, 382, 391, 396, 398, 400, 406, 408, 434, 435, 441, 457, 460, 462, 464, 467, 469, 496, 506, 510, 524, 527, 534, 545, 558, 562, 563, 565, 567, 573, 576, 591, 594, 599, 612, 634, 636, 671, 674, 682, 690], "drittherstell": [31, 33, 34, 52, 54, 214, 250, 306, 307, 369], "gestalt": [31, 33, 34, 52, 54, 83, 98, 214, 250, 306, 307, 369, 575], "ordn": [31, 33, 34, 37, 40, 43, 51, 52, 53, 54, 55, 56, 57, 85, 162, 169, 172, 192, 214, 219, 220, 241, 244, 250, 295, 306, 307, 314, 351, 369, 381, 423, 444, 519, 538, 560, 585, 682, 688], "gstatic": [31, 33, 34, 44, 52, 54, 55, 56, 57, 214, 250, 251, 306, 307, 369, 613, 674], "darub": [31, 33, 34, 52, 54, 59, 80, 116, 181, 214, 250, 289, 306, 307, 329, 369, 561, 688], "hinaus": [31, 33, 34, 52, 54, 59, 80, 181, 214, 250, 289, 306, 307, 347, 369, 574], "static": [31, 33, 34, 40, 44, 48, 52, 54, 55, 60, 134, 137, 140, 141, 144, 146, 147, 148, 152, 157, 172, 214, 219, 250, 306, 307, 335, 369, 613, 625], "versionshistori": [31, 32, 52, 54, 55, 625], "autor": [31, 32, 47, 51, 52, 54, 55, 77, 97, 178, 369, 370, 373, 545, 547, 548, 550, 552, 554, 558, 625, 681], "mocht": [31, 32, 52, 54, 55, 58, 82, 88, 89, 90, 92, 98, 101, 103, 106, 111, 115, 116, 120, 155, 164, 169, 184, 222, 243, 263, 268, 289, 304, 323, 363, 370, 373, 561, 569, 571, 572, 573, 576, 592, 625, 630, 688], "zweck": [32, 47, 52, 55, 80, 125, 162, 192, 289, 330, 508, 625, 638], "entfall": [32, 52, 55, 82, 106, 168, 326, 625], "funktionalitat": [32, 43, 48, 52, 55, 67, 76, 93, 106, 110, 111, 115, 118, 181, 188, 212, 243, 314, 331, 359, 363, 370, 371, 373, 383, 504, 545, 550, 554, 555, 560, 585, 611, 621, 625, 626, 630, 638, 641, 652, 653, 654, 656, 671, 674, 675, 684, 689, 693], "asset": [32, 48, 51, 52, 55, 162, 219, 625, 655], "abzuleg": [32, 52, 55, 103, 328, 625], "les": [33, 34, 44, 52, 62, 86, 97, 98, 109, 168, 169, 184, 197, 214, 215, 222, 226, 229, 232, 249, 250, 256, 259, 261, 268, 276, 277, 306, 307, 309, 313, 314, 321, 339, 340, 343, 351, 359, 360, 363, 369, 370, 380, 381, 382, 400, 408, 434, 435, 441, 459, 464, 467, 496, 498, 499, 500, 512, 522, 524, 533, 545, 550, 564, 613, 616, 622, 632, 674, 678], "metadat": [33, 34, 48, 51, 53, 64, 67, 76, 97, 111, 168, 170, 179, 184, 192, 197, 210, 214, 215, 222, 223, 224, 232, 249, 250, 252, 255, 259, 261, 276, 277, 306, 307, 309, 314, 339, 340, 343, 348, 357, 359, 360, 363, 366, 369, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 556, 557, 558, 601, 606, 608, 610, 611, 621, 625, 626, 641, 671, 674, 681], "metagateway": [36, 78], "ding": [36, 71, 78, 169, 269, 296, 596], "fungiert": [36, 78, 259, 325], "gerat": [36, 52, 53, 54, 55, 78, 79, 80, 82, 162, 163, 166, 167, 169, 170, 179, 191, 192, 194, 196, 200, 201, 207, 228, 232, 244, 249, 264, 267, 272, 308, 309, 313, 321, 329, 331, 334, 337, 346, 349, 359, 370, 371, 373, 375, 376, 377, 378, 379, 380, 381, 382, 384, 388, 400, 403, 406, 407, 408, 415, 416, 417, 433, 435, 440, 441, 443, 449, 452, 464, 467, 472, 473, 475, 476, 480, 488, 495, 497, 498, 499, 501, 503, 504, 507, 509, 518, 527, 531, 533, 536, 537, 545, 548, 550, 558, 563, 610, 621, 622, 625, 644, 671, 682, 693], "So": [36, 58, 61, 71, 78, 100, 103, 118, 132, 134, 161, 162, 163, 164, 191, 227, 229, 232, 234, 247, 262, 264, 267, 288, 290, 293, 294, 325, 326, 329, 332, 333, 362, 381, 562, 567, 591, 599, 622, 634, 668], "klingel": [36, 78], "musikanlag": [36, 78], "tv": [36, 78, 160, 162, 166, 231, 248, 266, 278, 301, 314, 378, 466, 495, 545, 550, 574, 648, 649, 666, 682], "spricht": [36, 51, 69, 78, 164], "wiedergab": [36, 78, 164, 314, 617], "unterbricht": [36, 78, 189], "nachricht": [36, 78, 116, 164, 168, 170, 200, 241, 262, 272, 314, 338, 339, 340, 359, 380, 406, 407, 417, 434, 446, 456, 457, 463, 469, 471, 472, 491, 512, 513, 527, 534, 545, 552, 554, 558, 641, 674], "email": [36, 47, 54, 55, 78, 214, 219, 227, 241, 244, 254, 255, 273, 399, 444, 445, 545, 558, 612], "verschickt": [36, 78, 338, 339, 340, 379, 471, 512], "bisher": [36, 89, 97, 100, 106, 213, 453, 572, 573, 577, 652, 653, 654, 656, 674, 682, 689], "lebt": 36, "projekt": [36, 68, 121, 250, 282, 283, 314, 345, 630], "open": [36, 55, 57, 82, 84, 103, 141, 162, 170, 200, 221, 223, 224, 227, 251, 269, 288, 296, 334, 510, 623, 643, 646, 649, 652, 655], "mitmach": 36, "eingelad": 36, "beizutrag": 36, "gern": [36, 116, 260, 370], "how": [36, 44, 55, 58, 113, 130, 136, 152, 157, 160, 185, 193, 199, 205, 211, 218, 221, 262, 274, 281, 297, 312, 341, 613, 643, 645], "kommentier": 36, "instruktion": 37, "gebaut": [37, 106], "zurzeit": [37, 90, 289, 291, 293, 556], "integriert": [37, 48, 51, 56, 191, 201, 212, 219, 232, 238, 262, 264, 267, 293, 295, 313, 314, 329, 331, 383, 545, 550, 641], "ubrig": [37, 260, 330], "bleib": [37, 76, 77, 96, 97, 106, 162, 178, 187, 330, 339, 340, 428, 513, 585, 635], "cd": [37, 64, 68, 71, 73, 82, 83, 85, 92, 103, 169, 199, 221, 248, 269, 278, 309, 628, 630, 667, 688], "mkdir": [37, 83, 85, 278, 688], "shng_doc": 37, "chown": [37, 83, 85, 688], "ausfuhrbar": 37, "doc": [37, 52, 53, 54, 55, 103, 111, 228, 233, 610, 625, 644, 646, 652, 653, 654, 655], "build_doc": 37, "chmod": [37, 85, 278, 351], "755": 37, "pip3": [37, 44, 47, 83, 92, 113, 154, 157, 171, 185, 198, 205, 210, 245, 253, 260, 284, 299, 334, 335, 344, 370, 508, 612, 613, 630, 635, 644, 646, 678], "install": [37, 44, 47, 68, 73, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 154, 157, 171, 186, 192, 198, 205, 210, 218, 235, 236, 245, 249, 253, 260, 273, 278, 281, 284, 287, 297, 299, 309, 334, 335, 338, 341, 344, 352, 368, 370, 508, 612, 613, 628, 630, 646, 647, 652, 667, 678, 688], "sphinx": [37, 645, 646, 649, 651, 655], "sphinx_rtd_them": 37, "recommonmark": [37, 645], "befehl": [37, 42, 68, 71, 82, 83, 84, 85, 86, 89, 90, 103, 115, 155, 156, 162, 164, 165, 169, 170, 191, 201, 230, 237, 238, 255, 264, 267, 303, 304, 314, 316, 319, 323, 333, 338, 367, 376, 377, 381, 382, 432, 451, 456, 476, 477, 482, 507, 533, 563, 588, 621, 622, 629, 630, 642, 671, 693], "beendet": [37, 42, 46, 52, 53, 71, 86, 90, 92, 102, 115, 168, 170, 181, 233, 292, 325, 330, 331, 382, 401, 458, 588, 595, 610, 632], "offn": [37, 71, 82, 86, 155, 162, 164, 200, 219, 304, 328, 337, 338, 346], "zugehor": [37, 155, 170, 255, 302, 304, 331, 338, 351, 382], "getrachtet": 37, "wiederholt": [37, 104, 233, 249, 326, 339, 340, 453], "mal": [37, 47, 52, 58, 68, 71, 83, 106, 164, 169, 237, 325, 327, 328, 329, 331, 362, 446, 463, 561, 567, 591, 599, 632, 634], "vorangegang": [37, 48, 83, 562, 566, 567, 576, 591, 596, 652, 653, 655, 656, 674, 692, 693], "ausgecheckt": 37, "forc": [37, 47, 88, 326, 332, 370, 655], "mast": [37, 47, 88, 103, 132, 134, 140, 143, 144, 145, 169, 171, 174, 178, 218, 261, 290, 354, 389, 488, 641, 654, 668], "sicherzustell": [37, 58, 60, 83, 169], "abgeseh": [39, 339, 340], "hauptprogramm": [39, 103], "liegt": [39, 64, 76, 89, 104, 106, 170, 262, 284, 295, 325, 326, 328, 332, 339, 340, 398, 400, 441, 464, 467, 538, 562, 566, 567, 574, 591, 599, 634], "befind": [39, 47, 48, 53, 71, 92, 103, 196, 200, 306, 307, 310, 314, 327, 373], "bibliothek": [39, 46, 68, 79, 92, 103, 106, 131, 172, 191, 201, 215, 238, 264, 267, 309, 310, 338, 351, 359, 367, 448, 533, 693], "mitgeliefert": [39, 57, 83, 184, 192, 212, 213, 219, 220, 233, 244, 265, 268, 289, 371, 591, 622], "requirement": [39, 43, 44, 45, 48, 53, 54, 55, 67, 68, 76, 79, 83, 92, 139, 160, 162, 192, 194, 306, 307, 338, 606, 610, 612, 613, 615, 632, 641, 644, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 674, 675, 678], "txt": [39, 40, 43, 48, 54, 55, 63, 66, 68, 83, 92, 148, 151, 164, 169, 173, 176, 188, 192, 205, 245, 285, 294, 306, 307, 338, 359, 381, 585, 595, 620, 624, 641, 646, 648, 649, 652, 653, 655, 671, 674, 675, 678, 688], "eingetrag": [39, 43, 53, 58, 69, 82, 94, 97, 103, 104, 116, 162, 164, 215, 226, 244, 261, 262, 287, 331, 338, 351, 380, 519, 608, 682, 688], "config": [39, 40, 44, 45, 52, 54, 55, 66, 73, 82, 85, 87, 90, 115, 132, 133, 134, 135, 136, 137, 140, 143, 144, 157, 158, 161, 162, 168, 183, 195, 211, 219, 228, 233, 285, 359, 360, 612, 613, 615, 617, 624, 625, 643, 644, 645, 648, 650, 652, 653, 655, 656, 660, 665, 666, 667, 670, 677, 679, 682, 688], "constant": [39, 126, 294, 649, 670], "item_conversion": 39, "log": [39, 44, 47, 50, 60, 66, 71, 83, 89, 92, 102, 105, 107, 111, 113, 116, 120, 123, 125, 126, 127, 133, 138, 148, 161, 169, 178, 180, 181, 186, 187, 188, 189, 195, 198, 200, 210, 211, 227, 232, 243, 248, 254, 255, 256, 257, 262, 270, 271, 273, 293, 306, 307, 309, 320, 322, 328, 329, 336, 368, 382, 389, 391, 396, 397, 423, 446, 463, 489, 508, 533, 538, 545, 554, 562, 575, 583, 584, 585, 586, 595, 612, 613, 616, 618, 624, 632, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 665, 666, 671, 682], "metadata": [39, 43, 44, 54, 55, 64, 114, 115, 116, 133, 134, 141, 190, 218, 251, 280, 368, 583, 606, 610, 612, 613, 615, 616, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 681], "shyaml": [39, 651], "translation": [39, 50, 54, 55, 133, 159, 169, 381, 643, 645, 646, 649, 653, 654, 655, 670], "logutil": [39, 49, 107, 115, 116, 322, 581, 583, 646], "network": [39, 49, 55, 67, 84, 88, 89, 90, 111, 127, 162, 170, 180, 216, 219, 227, 234, 235, 239, 259, 274, 290, 292, 298, 305, 308, 309, 315, 318, 344, 355, 363, 369, 382, 545, 552, 581, 617, 622, 623, 630, 646, 648, 649, 650, 651, 652, 653, 654, 655, 663, 665, 667], "orb": [39, 49, 581, 648, 650], "util": [39, 40, 49, 63, 66, 141, 150, 560, 581, 618, 620, 623, 624, 649, 652, 653, 655, 669, 688], "haupt": [40, 43], "programm": [40, 42, 43, 46, 86, 115, 237, 283, 294, 314, 416, 495], "exklusiv": 40, "implementi": [40, 43, 52, 58, 120, 367, 589, 611, 621, 671, 674, 675, 688], "unterpunkt": [40, 597], "class": [40, 44, 45, 48, 50, 52, 53, 54, 55, 56, 58, 60, 61, 62, 107, 115, 116, 127, 130, 136, 137, 138, 139, 140, 141, 142, 146, 147, 148, 149, 150, 151, 152, 157, 158, 166, 198, 199, 217, 227, 232, 235, 253, 278, 280, 294, 314, 322, 353, 368, 585, 589, 598, 610, 612, 613, 615, 616, 618, 621, 622, 625, 626, 632, 643, 645, 646, 647, 649, 651, 652, 653, 655, 656, 663, 669], "mod": [40, 44, 66, 116, 141, 162, 169, 170, 176, 185, 192, 195, 196, 199, 202, 210, 218, 227, 247, 248, 254, 261, 265, 276, 288, 290, 291, 292, 294, 297, 311, 318, 326, 332, 334, 341, 400, 408, 419, 422, 435, 441, 464, 465, 467, 487, 492, 521, 612, 613, 623, 624, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 655, 667, 682, 688], "extern_conf_dir": 40, "config_etc": [40, 103, 635, 656], "quellcod": [40, 44, 45, 54, 55, 63, 66, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 162, 612, 613, 615, 616, 618, 620, 623, 624], "bas": [40, 42, 44, 45, 63, 66, 68, 83, 92, 127, 130, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 199, 200, 218, 229, 254, 255, 262, 282, 283, 352, 353, 361, 407, 588, 612, 613, 615, 616, 618, 620, 623, 624, 641, 647, 649, 650, 654, 655, 665, 669, 678, 687], "oth": [40, 45, 66, 107, 115, 138, 142, 152, 160, 162, 186, 190, 193, 205, 227, 239, 248, 258, 278, 280, 294, 296, 297, 305, 315, 335, 341, 342, 355, 370, 573, 615, 624, 644, 645, 646, 652, 653], "addressed": 40, "oject": 40, "which": [40, 44, 45, 54, 55, 58, 66, 113, 126, 127, 130, 132, 133, 134, 136, 137, 141, 142, 148, 149, 151, 157, 158, 160, 176, 183, 186, 195, 198, 211, 216, 218, 221, 227, 231, 239, 240, 245, 247, 248, 257, 262, 274, 278, 288, 290, 294, 296, 301, 305, 311, 312, 317, 352, 353, 356, 357, 365, 368, 612, 613, 615, 616, 618, 623, 624, 643, 644, 646, 647, 649, 650, 651, 652, 653, 654, 655, 659, 669], "is": [40, 44, 45, 52, 53, 54, 55, 58, 62, 63, 66, 71, 83, 103, 104, 107, 110, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 151, 152, 155, 156, 159, 160, 161, 162, 164, 173, 175, 176, 177, 179, 180, 183, 185, 186, 188, 190, 193, 195, 198, 199, 200, 202, 205, 208, 209, 210, 211, 216, 217, 218, 221, 227, 231, 234, 239, 240, 243, 245, 247, 248, 251, 257, 258, 260, 262, 263, 269, 274, 275, 278, 280, 281, 282, 288, 290, 294, 295, 297, 301, 303, 304, 305, 311, 312, 315, 318, 325, 334, 337, 338, 341, 342, 344, 352, 353, 355, 356, 357, 361, 364, 365, 368, 370, 380, 395, 413, 479, 512, 575, 589, 590, 595, 610, 612, 613, 615, 616, 618, 620, 623, 624, 633, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 663, 668, 669, 670, 680, 681, 685, 688, 690, 691], "instanc": [40, 44, 45, 52, 54, 55, 66, 67, 111, 126, 127, 132, 133, 134, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 157, 158, 161, 166, 167, 169, 170, 183, 184, 186, 187, 189, 198, 208, 212, 213, 229, 237, 239, 245, 247, 249, 250, 262, 268, 289, 299, 300, 301, 308, 309, 310, 356, 357, 362, 368, 565, 591, 610, 612, 613, 615, 624, 641, 643, 644, 645, 646, 651, 653, 655, 660, 669, 673, 674, 680], "mostly": [40, 274], "referred": 40, "hom": [40, 97, 160, 170, 178, 208, 218, 235, 244, 262, 282, 283, 294, 305, 306, 307, 344, 378, 383, 416, 445, 447, 479, 524, 545, 548, 550, 654, 688], "runn": 40, "initialize_var": 40, "initialize_dir_var": 40, "create_directori": 40, "creat": [40, 44, 55, 88, 127, 130, 132, 134, 137, 140, 141, 143, 144, 152, 160, 161, 175, 183, 186, 187, 193, 205, 235, 236, 254, 278, 288, 296, 353, 361, 365, 368, 612, 613, 616, 643, 646, 648, 649, 652, 653, 655, 668, 677], "directori": [40, 88, 309, 352, 646, 655, 679], "used": [40, 44, 45, 55, 63, 66, 83, 104, 107, 110, 113, 115, 126, 127, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 151, 157, 158, 160, 173, 176, 177, 180, 186, 190, 193, 195, 198, 202, 211, 216, 218, 221, 227, 234, 239, 240, 245, 247, 248, 257, 258, 260, 262, 273, 274, 278, 281, 288, 294, 298, 305, 345, 352, 353, 356, 357, 358, 361, 365, 368, 479, 612, 613, 615, 616, 618, 620, 624, 633, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 667, 682, 691], "they": [40, 54, 55, 126, 137, 140, 141, 143, 180, 183, 205, 211, 218, 227, 240, 248, 274, 288, 294, 305, 352, 595, 642, 645, 646, 649, 650, 653, 655, 670], "don": [40, 44, 45, 54, 55, 63, 66, 111, 132, 134, 136, 141, 146, 151, 157, 183, 186, 195, 205, 211, 218, 227, 234, 260, 278, 281, 290, 294, 309, 312, 335, 344, 352, 355, 613, 615, 616, 620, 624, 645, 646, 647, 649, 655, 686], "exist": [40, 44, 45, 130, 134, 137, 139, 141, 157, 158, 183, 253, 294, 298, 344, 353, 613, 615, 645, 646, 655], "property": [40, 54, 55, 133, 137, 141, 160, 162, 186, 200, 203, 211, 305, 325, 326, 328, 330, 347, 355, 521, 567, 573, 576, 591, 641, 643, 646, 649, 650, 655, 656], "lat": [40, 43, 44, 45, 52, 53, 54, 55, 66, 83, 103, 113, 131, 133, 142, 173, 176, 199, 205, 208, 219, 229, 248, 262, 280, 294, 308, 309, 334, 344, 351, 355, 599, 606, 610, 612, 613, 615, 616, 624, 636, 642, 646, 648, 649, 650, 652, 653, 655], "float": [40, 43, 45, 53, 92, 106, 131, 148, 150, 152, 186, 192, 207, 235, 236, 240, 293, 317, 352, 356, 357, 381, 401, 418, 419, 420, 450, 453, 486, 510, 562, 567, 574, 575, 591, 599, 601, 602, 604, 607, 608, 609, 615, 634, 648, 651, 653, 655], "read": [40, 45, 55, 73, 98, 126, 129, 130, 136, 137, 159, 160, 168, 173, 175, 180, 183, 186, 195, 196, 198, 202, 221, 226, 227, 234, 235, 236, 239, 240, 249, 254, 258, 260, 274, 276, 281, 288, 294, 297, 298, 305, 308, 309, 312, 314, 315, 334, 341, 345, 352, 355, 370, 452, 612, 615, 622, 623, 641, 643, 645, 646, 647, 649, 651, 652, 653, 655, 656, 670, 690], "only": [40, 44, 45, 53, 54, 55, 64, 66, 83, 88, 104, 107, 115, 126, 130, 132, 133, 134, 135, 137, 138, 141, 144, 147, 148, 151, 152, 160, 170, 173, 177, 180, 186, 195, 196, 205, 208, 211, 218, 227, 231, 239, 240, 247, 248, 254, 255, 257, 260, 269, 274, 276, 278, 288, 294, 301, 312, 314, 315, 318, 337, 341, 344, 352, 355, 356, 357, 368, 370, 413, 479, 595, 610, 613, 615, 616, 623, 624, 633, 643, 645, 646, 647, 648, 649, 650, 651, 653, 655, 674, 677, 681, 690], "latitud": [40, 97, 113, 131, 142, 215, 219, 365, 422, 599, 636, 655], "from": [40, 44, 45, 52, 54, 55, 58, 59, 63, 66, 86, 97, 107, 115, 125, 126, 127, 130, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 160, 161, 164, 168, 169, 175, 176, 182, 183, 185, 186, 190, 193, 195, 198, 199, 200, 202, 203, 206, 211, 216, 218, 221, 222, 223, 227, 230, 231, 234, 239, 240, 241, 247, 248, 251, 253, 257, 258, 260, 262, 273, 274, 278, 280, 281, 288, 290, 294, 297, 298, 301, 305, 308, 312, 315, 317, 318, 329, 341, 352, 353, 355, 358, 361, 365, 368, 370, 406, 565, 591, 612, 613, 615, 618, 620, 622, 623, 624, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 666, 668, 670, 674, 677, 679, 682, 688, 691], "lon": [40, 83, 103, 113, 131, 142, 229, 262, 344, 599, 636, 649, 655], "longitud": [40, 97, 113, 131, 142, 215, 219, 365, 422, 599, 636, 655], "get_defaultlanguag": 40, "configured": [40, 44, 45, 52, 54, 55, 66, 107, 113, 115, 137, 139, 144, 152, 173, 176, 180, 183, 185, 186, 195, 205, 211, 216, 217, 227, 231, 234, 257, 258, 294, 305, 335, 352, 355, 356, 357, 368, 395, 612, 613, 615, 616, 623, 624, 644, 645, 646, 647, 650, 655, 670], "languag": [40, 44, 56, 61, 83, 103, 106, 113, 131, 139, 151, 157, 164, 169, 185, 192, 219, 262, 305, 306, 307, 341, 344, 401, 545, 548, 613, 646, 649, 653, 655, 674], "set_defaultlanguag": 40, "get_basedir": [40, 217], "path": [40, 44, 45, 54, 55, 60, 66, 83, 88, 90, 103, 112, 113, 124, 126, 129, 132, 133, 134, 137, 141, 143, 145, 149, 157, 164, 182, 185, 186, 188, 202, 205, 218, 225, 227, 229, 256, 262, 273, 274, 278, 280, 304, 315, 317, 328, 330, 352, 356, 357, 360, 423, 564, 567, 612, 613, 615, 616, 624, 641, 643, 646, 648, 650, 652, 653, 654, 655, 656, 664, 686, 688], "ruckgabetyp": [40, 44, 45, 66, 126, 129, 131, 133, 134, 136, 137, 139, 140, 141, 144, 145, 146, 147, 148, 149, 150, 152, 613, 615, 618, 623, 624], "get_confdir": 40, "contain": [40, 61, 66, 79, 80, 126, 129, 130, 133, 136, 139, 141, 149, 150, 152, 183, 186, 202, 294, 296, 334, 346, 353, 361, 365, 368, 504, 624, 643, 644, 649, 650, 651, 653, 655, 656], "subdirectori": [40, 646], "get_etcdir": 40, "get_structsdir": 40, "get_vardir": 40, "get_config_dir": 40, "replac": [40, 52, 126, 141, 151, 257, 278, 288, 294, 315, 334, 352, 645, 646, 649, 655, 656, 686], "prevent": [40, 55, 107, 115, 130, 141, 142, 147, 195, 644, 646, 647, 648, 650, 651, 652, 653, 655, 656], "plethora": 40, "get_": 40, "invalid": [40, 42, 88, 126, 161, 169, 218, 227, 254, 255, 288, 334, 588, 642, 643, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 681], "get_config_fil": 40, "extension": [40, 42, 44, 52, 55, 57, 88, 105, 112, 126, 128, 146, 149, 168, 257, 368, 585, 613, 616, 625, 643, 649, 651, 653, 655, 670, 687], "fil": [40, 42, 43, 44, 45, 47, 48, 52, 53, 60, 66, 71, 106, 107, 109, 113, 115, 120, 123, 126, 128, 129, 134, 135, 136, 137, 139, 140, 141, 143, 144, 145, 146, 149, 151, 160, 162, 164, 169, 172, 183, 191, 193, 195, 205, 206, 208, 216, 217, 219, 221, 227, 228, 229, 230, 235, 236, 239, 250, 254, 257, 264, 267, 274, 278, 288, 295, 308, 309, 312, 315, 317, 318, 324, 326, 334, 335, 346, 352, 355, 356, 357, 361, 365, 372, 376, 381, 423, 431, 453, 608, 612, 613, 615, 616, 624, 625, 641, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 664, 667, 670, 674, 677, 679], "getbasedir": [40, 650], "deprecated": [40, 85, 123, 137, 150, 243, 245, 262, 263, 302, 354, 374, 381, 383, 394, 397, 421, 426, 446, 448, 463, 474, 496, 497, 506, 523, 524, 532, 545, 548, 550, 554, 558, 635, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 662, 689, 691], "method": [40, 44, 45, 47, 48, 50, 52, 54, 55, 59, 60, 63, 66, 76, 92, 100, 115, 116, 129, 130, 132, 133, 134, 136, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 152, 154, 162, 164, 186, 189, 198, 219, 227, 243, 260, 262, 289, 293, 298, 314, 317, 360, 396, 506, 561, 562, 563, 564, 574, 576, 586, 587, 589, 590, 594, 595, 596, 612, 613, 615, 620, 621, 622, 623, 624, 632, 636, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 667, 670, 671, 673, 674], "instead": [40, 54, 55, 66, 71, 133, 137, 160, 181, 186, 195, 200, 211, 216, 227, 278, 305, 352, 355, 364, 618, 624, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 663, 670, 681, 686], "checkconfigfil": 40, "check": [40, 47, 52, 54, 55, 66, 107, 115, 125, 126, 127, 129, 130, 139, 141, 147, 152, 175, 198, 205, 206, 211, 217, 218, 219, 247, 325, 333, 334, 356, 357, 368, 418, 574, 618, 623, 624, 638, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 656, 669, 670, 671, 681], "needed": [40, 43, 44, 45, 52, 53, 54, 55, 58, 60, 63, 66, 83, 113, 129, 136, 139, 208, 211, 218, 240, 245, 247, 278, 281, 294, 301, 355, 356, 357, 365, 479, 606, 610, 613, 615, 616, 620, 623, 624, 643, 646, 647, 649, 650, 652, 655], "configuration": [40, 44, 45, 53, 55, 66, 85, 107, 113, 115, 126, 133, 134, 135, 137, 140, 143, 144, 145, 147, 149, 227, 230, 329, 351, 353, 356, 357, 610, 612, 613, 615, 616, 623, 624, 643, 644, 646, 647, 649, 651, 653, 655, 664, 667, 670], "dont": [40, 288], "checked": [40, 54, 55, 130, 139, 152, 355], "copied": [40, 221, 353], "corresponding": [40, 52, 54, 55, 211, 248, 257, 356, 357, 623, 643, 644, 645, 646, 649, 650, 651, 691], "som": [40, 45, 55, 57, 107, 115, 127, 141, 142, 183, 186, 188, 195, 202, 211, 218, 221, 227, 231, 243, 247, 248, 260, 274, 294, 305, 315, 334, 345, 355, 365, 368, 615, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 688], "content": [40, 54, 55, 56, 60, 62, 126, 135, 149, 156, 166, 170, 178, 227, 253, 262, 278, 294, 303, 314, 317, 337, 353, 356, 357, 360, 361, 612, 646, 653, 656, 686, 688], "won": [40, 138, 257, 294], "init_logging": 40, "conf_basenam": 40, "initiat": [40, 227, 356, 357, 645], "beeing": [40, 60, 66, 618, 624, 650, 655], "started": [40, 44, 45, 54, 55, 63, 66, 84, 133, 140, 141, 157, 158, 195, 227, 612, 613, 615, 616, 618, 620, 624, 643, 646, 653], "called": [40, 44, 45, 52, 54, 55, 63, 66, 126, 133, 134, 135, 137, 139, 140, 141, 143, 147, 149, 160, 170, 227, 278, 288, 290, 294, 305, 325, 353, 382, 595, 613, 615, 618, 620, 623, 624, 645, 655], "stop": [40, 44, 45, 46, 52, 54, 55, 63, 66, 76, 84, 86, 89, 90, 92, 107, 112, 115, 134, 140, 144, 145, 147, 162, 169, 198, 199, 205, 215, 218, 227, 231, 244, 248, 250, 254, 255, 275, 281, 282, 284, 288, 294, 295, 318, 319, 334, 338, 367, 370, 378, 381, 433, 453, 482, 486, 504, 512, 536, 612, 613, 615, 616, 618, 620, 623, 624, 635, 641, 643, 645, 646, 648, 649, 650, 652, 653, 654, 655, 674], "signum": [40, 134], "fram": [40, 134, 279, 361, 379, 650, 651, 652, 688], "restart": [40, 53, 76, 82, 84, 85, 87, 89, 90, 103, 151, 198, 206, 227, 288, 371, 406, 610, 612, 630, 635, 643, 645, 646, 648, 650, 651, 655, 674, 688], "one": [40, 44, 66, 100, 126, 127, 130, 132, 134, 136, 137, 141, 144, 147, 152, 157, 160, 162, 173, 186, 193, 202, 205, 211, 217, 222, 227, 231, 245, 257, 261, 262, 263, 274, 281, 288, 290, 294, 296, 298, 305, 317, 334, 342, 352, 361, 368, 413, 613, 624, 643, 646, 649, 650, 652, 653, 655, 660, 663, 666, 681], "foreground": [40, 635, 646, 650, 652], "just": [40, 55, 66, 136, 160, 161, 186, 205, 227, 240, 243, 257, 278, 294, 312, 335, 624, 646, 649, 652, 653], "quit": [40, 71, 180, 181, 365], "let": [40, 54, 55, 58, 141, 288, 297, 328], "manually": [40, 66, 141, 227, 253, 254, 288, 294, 352, 624, 653], "list_thread": 40, "add_event_list": 40, "event": [40, 62, 133, 141, 161, 217, 219, 244, 262, 272, 288, 290, 293, 314, 315, 339, 340, 368, 412, 420, 423, 490, 508, 623, 643, 646, 647, 651, 652, 653, 654, 655, 660, 666], "add": [40, 47, 52, 54, 55, 56, 58, 60, 63, 66, 107, 115, 126, 133, 134, 136, 137, 141, 146, 147, 148, 164, 175, 185, 186, 195, 198, 199, 200, 205, 206, 227, 251, 273, 274, 278, 280, 281, 288, 293, 294, 315, 317, 318, 326, 332, 337, 361, 398, 545, 554, 594, 612, 618, 620, 624, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 656], "listen": [40, 221], "interfacing": 40, "visus": [40, 524, 545, 554], "visu_websocket": [40, 83, 85, 98, 103, 117, 127, 302, 352, 355, 360, 545, 554, 592, 600, 641, 643, 645, 646, 649, 669, 670, 671, 674, 689], "return_event_listen": 40, "specified": [40, 44, 45, 53, 54, 55, 63, 66, 83, 104, 113, 126, 130, 134, 136, 137, 138, 143, 145, 148, 149, 157, 158, 160, 168, 186, 193, 199, 200, 211, 231, 247, 248, 278, 290, 301, 305, 315, 317, 355, 356, 357, 365, 368, 610, 613, 615, 616, 620, 623, 624, 633, 645, 646, 650, 655, 660, 667, 670], "object_refcount": 40, "numb": [40, 44, 45, 54, 55, 106, 126, 129, 130, 133, 134, 136, 139, 141, 147, 148, 152, 155, 157, 158, 170, 186, 195, 198, 200, 202, 211, 218, 221, 227, 232, 235, 240, 248, 257, 263, 278, 290, 294, 298, 301, 304, 305, 314, 317, 337, 341, 349, 356, 357, 462, 598, 612, 613, 615, 616, 644, 645, 646, 647, 648, 649, 652, 654, 655, 656, 663, 669], "defined": [40, 44, 45, 52, 54, 55, 66, 107, 113, 115, 126, 133, 134, 136, 137, 139, 141, 146, 148, 151, 176, 199, 205, 208, 211, 216, 217, 227, 247, 248, 253, 274, 278, 288, 304, 315, 344, 352, 356, 357, 365, 413, 538, 613, 615, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655], "string2bool": 40, "boolean": [40, 45, 106, 152, 186, 187, 231, 240, 258, 301, 314, 325, 339, 340, 360, 580, 615, 646], "to_bool": [40, 152], "convert": [40, 133, 135, 141, 148, 149, 152, 183, 235, 315, 645, 646, 650, 651, 655, 667, 670, 679], "converted": [40, 130, 148, 152, 217, 312, 643, 646, 655], "add_it": [40, 54, 55, 66, 134, 624, 653], "dictionary": [40, 43, 44, 50, 53, 58, 62, 66, 126, 130, 134, 141, 148, 184, 232, 256, 268, 315, 337, 338, 347, 361, 382, 397, 398, 423, 511, 519, 579, 601, 602, 604, 607, 608, 609, 613, 624, 645, 646, 649, 653], "does": [40, 44, 45, 54, 55, 66, 113, 126, 130, 134, 136, 149, 152, 157, 158, 160, 162, 186, 190, 218, 247, 248, 251, 278, 294, 311, 312, 352, 356, 357, 364, 365, 512, 613, 615, 618, 624, 645, 646, 648, 649, 653, 655, 670], "created": [40, 44, 130, 132, 133, 134, 136, 142, 160, 176, 186, 288, 294, 296, 312, 353, 612, 613, 616, 629, 643, 646, 649, 650, 651, 652, 653, 655, 656], "api": [40, 45, 46, 110, 120, 130, 134, 140, 144, 146, 151, 160, 164, 173, 179, 184, 186, 213, 215, 218, 224, 227, 228, 229, 244, 247, 254, 255, 257, 262, 268, 272, 273, 274, 280, 291, 293, 296, 301, 311, 314, 335, 336, 344, 348, 349, 359, 360, 361, 362, 364, 365, 366, 369, 370, 376, 384, 390, 394, 396, 399, 420, 421, 422, 424, 425, 430, 447, 449, 458, 462, 468, 472, 473, 479, 491, 495, 510, 516, 520, 521, 529, 530, 532, 535, 545, 548, 550, 558, 560, 565, 573, 591, 594, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 691, 693], "itself": [40, 66, 107, 115, 132, 134, 141, 143, 147, 176, 190, 211, 240, 290, 294, 352, 355, 356, 357, 618, 624, 645, 646, 650, 653], "giv": [40, 44, 52, 54, 55, 66, 71, 126, 130, 133, 134, 136, 137, 141, 142, 144, 147, 148, 152, 155, 161, 180, 186, 193, 217, 231, 239, 247, 273, 288, 290, 296, 304, 305, 315, 335, 353, 355, 356, 357, 368, 395, 613, 618, 623, 624, 646, 648, 649, 650, 652, 665, 681], "return_item": [40, 60, 132, 134, 203, 564, 654, 666], "match_item": [40, 134, 288, 564, 666, 667], "regex": [40, 115, 116, 134, 138, 325, 326, 331, 338, 564, 583, 642, 645, 655], "match": [40, 54, 55, 134, 139, 152, 193, 247, 262, 315, 361, 643, 645, 655, 667], "again": [40, 54, 55, 66, 83, 134, 139, 141, 186, 199, 208, 218, 315, 338, 624, 646, 648, 650, 655, 656, 688], "regular": [40, 115, 116, 132, 134, 137, 199, 200, 208, 314, 325, 326, 512, 565, 583, 591, 592, 599, 652], "expresseion": 40, "expression": [40, 116, 133, 134, 193, 263, 325, 562, 567, 573, 576, 583, 591, 648, 650, 652, 655, 660, 670], "matching": [40, 107, 115, 134, 136, 138, 147, 365, 670], "find_item": [40, 55, 134, 288, 564, 641, 665, 666], "look": [40, 44, 55, 126, 130, 134, 139, 157, 162, 209, 218, 221, 248, 273, 278, 290, 294, 356, 357, 365, 368, 612, 613, 643], "find_childr": [40, 134, 564, 641, 665, 666], "parent": [40, 54, 55, 103, 126, 132, 133, 134, 141, 170, 171, 189, 218, 219, 227, 262, 263, 318, 319, 347, 507, 561, 562, 566, 575, 612, 641, 651, 652, 655, 665, 674], "childr": [40, 134, 562], "on": [40, 44, 45, 52, 53, 54, 55, 56, 58, 66, 69, 83, 86, 87, 89, 90, 103, 104, 107, 111, 113, 115, 116, 125, 126, 127, 130, 133, 134, 136, 139, 141, 142, 147, 148, 151, 152, 154, 157, 158, 160, 161, 162, 164, 165, 169, 173, 176, 177, 179, 180, 183, 186, 187, 189, 193, 195, 198, 199, 200, 205, 206, 210, 211, 212, 213, 218, 221, 227, 230, 231, 235, 236, 239, 240, 245, 247, 248, 254, 258, 260, 262, 273, 274, 278, 282, 283, 285, 288, 290, 293, 294, 295, 296, 298, 301, 305, 312, 313, 315, 317, 325, 328, 329, 331, 334, 335, 337, 338, 342, 352, 353, 355, 356, 357, 359, 360, 361, 363, 365, 369, 370, 390, 398, 419, 420, 434, 436, 449, 488, 508, 531, 537, 545, 552, 554, 573, 574, 579, 590, 591, 610, 612, 613, 615, 616, 623, 624, 630, 633, 638, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 667, 668, 670, 688, 691], "search": [40, 133, 134, 142, 253, 315, 365, 649], "return_modul": [40, 140], "loaded": [40, 44, 45, 54, 55, 60, 66, 84, 86, 126, 134, 137, 139, 140, 144, 146, 149, 151, 356, 357, 595, 612, 613, 615, 624, 643, 646, 648, 655], "named": [40, 107, 115, 130, 136, 140, 162, 180, 353, 355, 368, 647, 649, 653, 655], "return_plugin": [40, 53, 143, 144, 338, 351, 609], "reload_logics": [40, 137], "reload": [40, 53, 58, 60, 62, 71, 137, 146, 151, 169, 180, 181, 381, 610, 648, 649, 652, 653, 665, 670], "return_logic": [40, 137], "get": [40, 44, 45, 47, 52, 54, 55, 58, 60, 66, 73, 82, 83, 84, 85, 86, 87, 88, 113, 132, 133, 136, 137, 141, 143, 144, 147, 148, 149, 150, 152, 157, 158, 161, 164, 173, 175, 183, 185, 186, 195, 197, 205, 206, 211, 218, 219, 221, 227, 234, 255, 256, 257, 260, 262, 274, 278, 281, 287, 288, 297, 309, 315, 334, 341, 356, 357, 360, 365, 370, 383, 405, 457, 545, 550, 552, 562, 563, 612, 613, 615, 618, 624, 644, 646, 648, 649, 650, 651, 652, 653, 655, 666, 667, 688], "return_logics": [40, 137], "actual": [40, 55, 133, 139, 148, 152, 160, 161, 162, 164, 186, 218, 235, 257, 294, 356, 357, 645, 651, 652, 654, 670], "timezon": [40, 66, 97, 113, 148, 211, 216, 262, 356, 357, 533, 624, 656, 659, 660, 662, 672], "awar": [40, 66, 148, 294, 624, 653, 659, 660, 672], "tzinfo": [40, 52, 148, 645, 664], "about": [40, 44, 45, 52, 54, 55, 71, 137, 148, 157, 173, 176, 180, 198, 205, 227, 253, 258, 282, 288, 305, 353, 356, 357, 612, 613, 615, 616, 641, 645, 646, 651, 653, 655, 669, 670], "gmt": [40, 116, 148, 599, 634], "utcinfo": [40, 148], "runtim": [40, 71, 148, 150, 180, 181, 200, 219, 284, 288, 407, 634, 653, 655, 670], "uptim": [40, 45, 63, 123, 148, 170, 227, 250, 382, 453, 615, 620], "get_instanc": [40, 132, 134, 137, 140, 143, 144, 146, 147, 148, 203, 253, 565, 591], "klass": [40, 43, 48, 50, 53, 56, 58, 59, 60, 62, 63, 66, 115, 123, 408, 413, 556, 557, 563, 590, 606, 610, 612, 618, 620, 621, 622, 623, 624, 641, 671, 687, 692, 693], "befasst": 41, "kan": [42, 262, 325, 590], "auszufuhr": [42, 83, 85, 316, 332, 562, 630, 642, 688], "erstellt": [42, 51, 52, 58, 67, 68, 77, 82, 83, 84, 89, 90, 92, 102, 103, 108, 109, 112, 122, 123, 162, 163, 170, 171, 189, 192, 215, 229, 233, 243, 250, 263, 313, 314, 323, 324, 338, 347, 371, 400, 432, 440, 441, 446, 464, 467, 486, 545, 550, 569, 585, 590, 591, 592, 593, 618, 621, 622, 630, 638, 641, 687, 688, 689, 692, 693], "pausiert": [42, 164, 178, 189, 295, 302, 314, 328, 398, 453, 484, 486, 527], "play": [42, 162, 164, 166, 169, 173, 198, 205, 231, 238, 248, 250, 275, 276, 294, 295, 315, 318, 319, 328, 370, 381, 433, 453, 464, 504, 507, 536, 545, 548, 550, 617, 643, 646, 655, 666, 669, 674], "enabeld": 42, "paus": [42, 54, 55, 86, 162, 164, 166, 169, 173, 198, 218, 219, 231, 244, 250, 254, 255, 284, 288, 329, 367, 370, 381, 400, 407, 408, 422, 425, 433, 435, 440, 441, 453, 464, 467, 482, 504, 507, 533, 536, 537, 643, 645, 674], "bytecod": [42, 137], "ubersetzt": [42, 50, 106, 169, 215, 622], "grob": 42, "auftritt": [42, 230, 360, 599], "geloggt": [42, 71, 76, 83, 107, 115, 116, 119, 200, 232, 262, 293, 322, 391, 397, 446, 461, 463, 496, 575, 577, 585, 588, 593, 612, 638, 674, 682], "test_logic": [42, 588], "mull": [42, 444], "ubersetz": [42, 48, 73, 92, 167, 575, 641], "2022": [42, 55, 58, 79, 270, 271, 431, 588, 622, 657], "51": [42, 160, 229, 293], "26": [42, 155, 160, 202, 261, 262, 273, 304, 341, 347, 356, 357, 381, 650, 682], "exception": [42, 44, 58, 66, 136, 147, 152, 210, 263, 294, 596, 613, 618, 624, 641, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 672], "syntax": [42, 66, 117, 125, 133, 137, 140, 143, 192, 205, 263, 269, 296, 301, 330, 397, 490, 563, 564, 574, 575, 576, 577, 589, 592, 594, 600, 618, 624, 638, 643, 646, 649, 650, 653, 655, 656, 667, 671], "lin": [42, 44, 54, 55, 71, 107, 115, 141, 165, 181, 195, 202, 205, 206, 216, 221, 227, 234, 253, 278, 294, 314, 319, 334, 341, 352, 353, 391, 545, 554, 613, 643, 645, 646, 649, 650, 652, 670], "most": [42, 45, 66, 113, 147, 160, 227, 240, 258, 260, 296, 305, 352, 361, 615, 624, 646, 653, 655], "recent": [42, 260, 294, 341, 643, 644, 645, 646, 649, 650, 651, 653, 655, 691], "call": [42, 44, 54, 55, 66, 126, 133, 136, 137, 138, 140, 141, 143, 147, 157, 160, 198, 202, 221, 222, 223, 227, 261, 262, 273, 274, 294, 325, 328, 331, 338, 347, 352, 355, 359, 361, 365, 381, 382, 563, 573, 575, 577, 612, 613, 623, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 656, 660, 665, 671, 686], "last": [42, 45, 54, 82, 86, 97, 104, 107, 115, 133, 136, 137, 141, 148, 152, 185, 186, 211, 247, 250, 262, 273, 278, 281, 287, 294, 317, 326, 332, 356, 357, 368, 395, 453, 567, 591, 615, 633, 649, 650, 651, 652, 667, 668], "shng_dev": [42, 125, 588, 629, 638], "1034": 42, "_generate_bytecod": 42, "compil": [42, 309, 628], "pathnam": [42, 44, 137, 613], "exec": 42, "syntaxerror": 42, "laufzeitfehl": [42, 588], "abgefang": [42, 56, 62, 563, 588, 641, 672, 673], "abc": [42, 126, 296, 588], "55": [42, 103, 112, 155, 167, 185, 250, 304, 329, 356, 357, 588], "aufgetret": [42, 351, 588], "hauptroutin": [42, 588, 589, 590, 598], "literal": [42, 278, 588], "vorlag": [42, 52, 212, 213, 219, 220, 293, 322, 324, 325, 326, 328, 329, 331, 590], "tpl": [42, 352, 590], "aufbau": [42, 53, 58, 71, 83, 100, 121, 238, 381, 603, 642, 682], "erfasst": [42, 43, 53, 165, 219, 590, 601, 602, 604, 606, 607, 608, 609, 610, 693], "minimalkonfiguration": [42, 79, 226], "sieht": [42, 53, 56, 58, 62, 69, 71, 83, 84, 86, 94, 98, 116, 123, 125, 162, 179, 192, 289, 293, 295, 314, 323, 331, 561, 566, 591, 593, 603, 638, 681, 682], "prinzip": [42, 339, 340, 508], "solang": [42, 57, 69, 105, 112, 203, 232, 261, 351, 370, 508, 527], "verwirr": [42, 106], "vermeid": [42, 60, 76, 83, 86, 90, 97, 106, 222, 329, 381, 641, 671], "empfohl": [42, 53, 62, 68, 79, 82, 85, 92, 103, 106, 115, 167, 169, 200, 222, 314, 323, 328, 347, 359, 367, 374, 381, 382, 383, 394, 397, 406, 421, 423, 426, 446, 448, 463, 474, 497, 506, 510, 519, 523, 524, 532, 533, 545, 550, 577, 586, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 685, 687, 691], "generell": [42, 62, 82, 196, 215, 322, 326, 329, 330, 331, 554, 555, 690], "kleinbuchstab": [42, 48, 51, 52, 54, 55, 400, 408, 435, 441, 464, 467, 614, 619, 625], "dateisyst": [42, 188], "existenz": 42, "angebeb": 42, "normalerweis": [42, 44, 53, 58, 62, 86, 100, 104, 115, 120, 122, 164, 300, 306, 307, 333, 370, 382, 396, 406, 416, 428, 448, 492, 508, 530, 532, 563, 566, 571, 588, 603, 610, 613, 616, 682, 690], "mitt": [42, 160, 588], "heraus": [42, 71, 83, 96, 106, 117, 187, 348, 366, 445, 532, 545, 558, 588, 589, 592, 593, 594, 600, 638, 671], "rais": [42, 152, 588, 648, 650, 655], "leavelogic": [42, 147, 650], "beispielkonfiguration": [42, 232], "initsmarthomeng": [42, 103], "weist": [42, 58, 156, 181, 303, 351, 400, 408, 435, 441, 458, 464, 467, 480, 496, 524], "hourly": [42, 184, 189, 260, 262, 268, 643, 655], "gat": 42, "alarm": [42, 165, 170, 176, 200, 219, 220, 262, 296, 314, 319, 334, 339, 340, 359, 368, 370, 414, 456, 504, 527, 592, 644, 649], "disk": [42, 649], "usage_warning": [42, 592], "schwellwert": [42, 328, 577], "defini": [42, 53, 58, 115, 155, 162, 164, 169, 184, 192, 200, 229, 232, 268, 295, 304, 313, 324, 325, 326, 328, 329, 332, 333, 338, 347, 381, 496, 523, 577, 589, 596, 603, 622, 671, 683, 686, 689], "monitor": [42, 76, 127, 141, 190, 245, 339, 340, 370, 382, 641, 645, 660, 663, 666], "chang": [42, 52, 54, 55, 60, 66, 67, 76, 88, 107, 113, 115, 130, 133, 137, 141, 147, 160, 167, 183, 185, 186, 195, 211, 213, 218, 221, 227, 240, 247, 262, 278, 288, 290, 291, 294, 295, 298, 318, 334, 341, 353, 355, 356, 357, 361, 395, 571, 577, 594, 624, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 664, 666, 668, 671, 691], "run": [42, 45, 46, 52, 54, 55, 63, 66, 71, 80, 82, 86, 89, 103, 112, 126, 129, 137, 141, 145, 147, 152, 161, 180, 200, 205, 221, 239, 253, 278, 281, 284, 326, 332, 338, 352, 353, 382, 481, 615, 618, 620, 623, 624, 630, 641, 643, 645, 646, 648, 649, 650, 651, 652, 653, 655, 660, 665], "at": [42, 45, 54, 55, 58, 96, 104, 126, 133, 134, 136, 142, 147, 161, 173, 183, 195, 202, 205, 206, 208, 209, 211, 218, 221, 227, 239, 247, 248, 254, 257, 260, 273, 278, 282, 288, 294, 296, 315, 317, 334, 338, 341, 342, 352, 356, 357, 361, 365, 368, 370, 409, 413, 545, 550, 615, 643, 645, 646, 649, 650, 651, 652, 653, 655, 660, 666, 667, 669, 670], "25": [42, 44, 54, 55, 76, 86, 103, 106, 120, 123, 125, 155, 160, 163, 165, 187, 192, 195, 196, 207, 211, 262, 270, 271, 276, 279, 297, 304, 323, 326, 328, 329, 332, 341, 347, 356, 357, 360, 445, 487, 510, 577, 580, 612, 613, 638], "35": [42, 83, 103, 107, 113, 115, 136, 160, 187, 219, 306, 307, 328, 398, 622], "40": [42, 76, 103, 115, 136, 162, 163, 199, 200, 207, 219, 338, 381, 476, 622], "50": [42, 44, 52, 54, 55, 76, 96, 103, 104, 115, 120, 123, 155, 160, 169, 193, 194, 210, 230, 243, 249, 263, 290, 304, 347, 356, 357, 359, 360, 362, 381, 401, 407, 410, 446, 463, 470, 488, 508, 613, 625], "500": [42, 183, 199, 211, 219, 305, 306, 307, 325, 326, 329, 337, 365, 393, 532, 545, 550, 592, 651, 653, 654], "ladbar": [43, 83, 110, 118, 671], "programmier": [43, 67, 106, 124, 270, 271], "unbedingt": [43, 45, 79, 83, 92, 106, 115, 116, 162, 164, 169, 302, 329, 330, 577, 579, 595, 601, 615, 632, 641, 649, 652, 671, 672, 674, 675], "zwangsweis": [43, 116, 332], "readm": [43, 44, 48, 51, 52, 53, 54, 55, 68, 111, 172, 175, 195, 218, 220, 273, 353, 356, 357, 365, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 610, 625, 641, 643, 645, 646, 648, 649, 653, 654, 655, 656, 666, 673, 674, 685], "md": [43, 44, 45, 48, 51, 53, 111, 160, 172, 210, 218, 273, 353, 356, 357, 388, 509, 610, 625, 645, 649, 654, 655, 656, 688], "existi": [43, 230, 339, 340, 343, 596, 611, 632, 641, 681], "websocket": [43, 71, 83, 84, 85, 98, 110, 111, 118, 119, 155, 301, 302, 304, 352, 360, 524, 545, 554, 611, 612, 617, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 663, 684, 688, 689], "__init__": [43, 47, 48, 53, 54, 55, 58, 59, 62, 115, 130, 178, 207, 351, 589, 614, 619, 622, 645, 648, 653, 654, 655], "llieg": 43, "unterordnet": 43, "moodul": 43, "kennt": [43, 53, 123, 124, 306, 307, 396, 601, 602, 604, 606, 607, 608, 609, 610, 638], "schlusselbegriff": [43, 53, 606, 610], "sh_minversion": [43, 44, 45, 53, 54, 55, 606, 610, 612, 613, 615, 616, 653], "minimum": [43, 53, 54, 55, 83, 162, 171, 186, 278, 287, 290, 317, 321, 325, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 606, 610, 612, 614, 616, 619], "shng": [43, 44, 45, 53, 54, 55, 62, 66, 83, 103, 113, 120, 121, 122, 162, 163, 164, 189, 190, 219, 222, 223, 262, 272, 285, 295, 306, 307, 338, 346, 350, 428, 520, 606, 610, 612, 613, 615, 616, 623, 624, 641, 646, 647, 648, 651, 652, 654, 655, 656, 679, 681, 684, 687, 688, 690], "leav": [43, 44, 45, 53, 107, 115, 199, 278, 333, 508, 606, 610, 612, 613, 615, 616, 643, 651, 655], "empty": [43, 44, 45, 53, 54, 55, 66, 137, 139, 149, 152, 157, 158, 165, 205, 227, 278, 294, 356, 357, 361, 365, 606, 610, 612, 613, 615, 616, 624, 643, 646, 648, 650, 653, 654, 655], "special": [43, 44, 53, 55, 58, 63, 66, 71, 107, 115, 135, 152, 160, 181, 202, 221, 227, 240, 251, 288, 290, 325, 326, 332, 565, 591, 599, 606, 610, 613, 616, 620, 624, 642, 643, 646, 647], "sh_maxversion": [43, 44, 45, 53, 54, 55, 606, 610, 612, 613, 615, 616], "maximum": [43, 44, 45, 53, 54, 55, 136, 141, 169, 186, 211, 262, 290, 294, 295, 317, 321, 325, 365, 413, 431, 538, 606, 610, 612, 613, 615, 616, 646, 651, 656], "py_minversion": [43, 53, 54, 55, 606, 610, 616, 645], "py_maxversion": [43, 53, 54, 55, 606, 610, 616, 645], "de": [43, 44, 45, 50, 53, 54, 55, 56, 57, 58, 66, 69, 83, 96, 103, 104, 107, 113, 115, 125, 131, 151, 162, 164, 170, 171, 172, 176, 182, 183, 185, 186, 198, 209, 214, 215, 218, 219, 234, 239, 244, 245, 250, 251, 253, 260, 273, 278, 279, 280, 285, 298, 301, 312, 313, 314, 315, 335, 336, 341, 344, 347, 352, 353, 355, 356, 357, 364, 365, 376, 394, 405, 439, 447, 460, 462, 468, 479, 510, 516, 532, 536, 545, 550, 558, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 624, 633, 638, 641, 647, 649, 651, 652, 653, 654, 655, 656, 666, 674, 675, 688], "backend": [43, 44, 45, 51, 88, 103, 106, 109, 112, 118, 120, 132, 137, 157, 158, 179, 180, 184, 192, 206, 220, 252, 255, 268, 328, 329, 348, 349, 357, 366, 521, 545, 548, 566, 596, 606, 613, 615, 641, 645, 649, 650, 651, 652, 653, 655, 656, 669, 670, 671, 672, 673, 674], "en": [43, 44, 45, 48, 50, 53, 54, 55, 56, 83, 111, 151, 172, 200, 219, 308, 309, 314, 359, 365, 532, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 655], "implementing": [43, 44, 45, 66, 211, 606, 613, 615, 624], "un": [43, 44, 53, 55, 66, 262, 314, 606, 610, 613, 624], "initialisiert": [43, 52, 53, 83, 155, 304, 314, 330, 393, 454, 508, 522, 565, 591, 596, 601, 602, 604, 606, 607, 608, 609, 610], "versionsnumb": [43, 53, 606, 610], "definierert": [43, 53, 606, 610], "verglich": [43, 53, 79, 232, 289, 323, 325, 330, 574, 577, 606, 610], "kmpatibel": [43, 53, 606, 610], "kompatibel": [43, 53, 232, 265, 271, 284, 293, 413, 431, 538, 606, 610], "komatibel": [43, 53, 606, 610], "mehrsprach": [43, 48, 53, 61, 601, 602, 604, 606, 607, 608, 609, 610, 632], "beschreibt": [43, 47, 53, 83, 91, 514, 563, 601, 602, 604, 606, 607, 608, 609, 610, 688], "generier": [43, 48, 53, 85, 302, 601, 602, 604, 606, 607, 608, 609, 610, 684, 685, 688], "identifikation": [43, 53, 504, 601, 602, 604, 606, 607, 608, 609, 610], "stellig": [43, 53, 96, 162, 407, 601, 602, 604, 606, 607, 608, 609, 610], "land": [43, 53, 83, 96, 104, 107, 115, 125, 244, 399, 601, 602, 604, 606, 607, 608, 609, 610, 638, 688], "kurzel": [43, 53, 566, 601, 602, 604, 606, 607, 608, 609, 610], "fr": [43, 44, 50, 53, 56, 71, 104, 133, 151, 172, 314, 347, 365, 532, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 616], "pl": [43, 53, 104, 210, 601, 602, 604, 606, 607, 608, 609, 610], "benutzt": [43, 45, 52, 53, 71, 85, 103, 106, 115, 116, 123, 166, 189, 302, 306, 307, 354, 359, 360, 397, 446, 454, 463, 504, 573, 579, 601, 602, 604, 607, 608, 609, 614, 615, 619, 682], "ungult": [43, 53, 232, 330, 563, 608], "warnung": [43, 53, 64, 92, 113, 115, 116, 123, 203, 232, 262, 263, 322, 391, 461, 496, 593, 602, 604, 608, 641, 671, 681, 682], "genau": [43, 53, 56, 67, 80, 82, 83, 86, 92, 103, 106, 112, 120, 123, 165, 187, 192, 200, 228, 230, 256, 261, 287, 289, 324, 329, 354, 359, 381, 396, 554, 555, 561, 563, 569, 572, 574, 579, 592, 601, 602, 604, 607, 608, 609, 614, 619], "schlussel": [43, 44, 50, 53, 106, 120, 122, 184, 188, 224, 229, 241, 260, 268, 338, 346, 359, 380, 427, 473, 511, 512, 594, 601, 602, 604, 607, 608, 609, 613, 616, 682, 688, 690], "grossbuchstab": [43, 53, 601, 602, 603, 604, 608, 609], "sonderzeich": [43, 53, 116, 602, 608], "durf": [43, 53, 103, 181, 325, 428, 490, 563, 566, 574, 596, 602, 608, 688], "ziff": [43, 53, 100, 164, 169, 585, 602, 608], "gultigkeitspruf": [43, 53, 601, 602, 608], "param1": [43, 53, 55, 62, 604, 608, 609], "1234": [43, 53, 227, 281, 305, 306, 307, 601, 602, 604, 608, 609], "deutsch": [43, 50, 51, 53, 77, 80, 82, 159, 215, 262, 373, 516, 520, 532, 545, 547, 548, 550, 552, 554, 558, 601, 602, 604, 608, 609, 665, 671, 672, 674, 688], "english": [43, 53, 139, 160, 365, 601, 602, 604, 608, 609, 645, 646, 649, 653, 655, 671], "valid_list": [43, 44, 45, 53, 55, 170, 207, 601, 602, 604, 607, 608, 609, 613, 615, 646, 649, 655], "2222": [43, 53, 168, 601, 602, 604, 608, 609], "4321": [43, 53, 601, 602, 604, 608, 609], "param2": [43, 53, 55, 604, 608, 609], "webif_pagelength": [43, 44, 53, 60, 120, 123, 608, 613, 651, 652, 653, 655], "manuell": [43, 53, 89, 90, 92, 102, 164, 169, 170, 192, 219, 220, 233, 238, 255, 270, 271, 283, 314, 319, 322, 324, 325, 326, 328, 329, 330, 347, 349, 351, 362, 370, 504, 507, 508, 519, 608, 622, 655, 688], "datatyp": [43, 45, 48, 53, 54, 55, 133, 139, 152, 191, 248, 264, 267, 294, 601, 602, 604, 607, 608, 609, 615, 621, 623, 626, 643, 646, 649, 655], "boolsch": [43, 45, 53, 164, 169, 191, 264, 267, 289, 327, 328, 330, 360, 454, 601, 602, 604, 607, 608, 609, 615], "ganzzahl": [43, 52, 53, 314, 401, 434, 579, 599, 601, 602, 604, 607, 608, 609, 634], "bereich": [43, 53, 56, 88, 92, 103, 115, 162, 170, 194, 262, 325, 354, 453, 475, 488, 563, 577, 601, 602, 604, 607, 608, 609, 682, 686, 688], "63": [43, 53, 98, 112, 124, 254, 255, 260, 282, 434, 443, 601, 602, 604, 607, 608, 609, 638], "szen": [43, 53, 93, 103, 106, 154, 160, 162, 212, 213, 314, 419, 420, 434, 579, 601, 602, 604, 607, 608, 609, 612, 632, 641, 671, 679], "numm": [43, 53, 162, 164, 167, 168, 169, 170, 178, 192, 196, 262, 287, 299, 300, 314, 330, 340, 374, 377, 380, 381, 382, 412, 417, 451, 453, 469, 470, 477, 488, 489, 511, 601, 602, 604, 607, 608, 609, 632, 674], "reprasentiert": [43, 53, 98, 106, 306, 307, 409, 601, 602, 604, 607, 608, 609], "darf": [43, 53, 58, 76, 82, 100, 102, 104, 106, 187, 229, 293, 325, 326, 329, 457, 490, 569, 575, 577, 592, 601, 602, 604, 607, 608, 609, 610, 633, 673, 682], "equivalent": [43, 53, 186, 227, 262, 601, 602, 604, 607, 608, 609], "ipv4": [43, 44, 53, 141, 152, 278, 377, 384, 413, 415, 452, 478, 494, 500, 524, 531, 533, 534, 601, 602, 604, 607, 608, 609, 613, 616, 649], "ipv6": [43, 53, 87, 141, 152, 368, 534, 601, 602, 604, 607, 608, 609, 641, 643, 674], "mac": [43, 53, 74, 82, 103, 141, 152, 166, 170, 185, 211, 238, 281, 282, 283, 293, 297, 310, 363, 378, 382, 395, 441, 480, 501, 507, 518, 531, 601, 602, 604, 607, 608, 609, 646, 655], "knx_ga": [43, 53, 434, 601, 602, 604, 607, 608, 609, 659, 674], "grupp": [43, 53, 82, 117, 124, 169, 192, 200, 212, 213, 224, 262, 276, 293, 302, 306, 307, 314, 321, 325, 328, 330, 359, 360, 391, 400, 408, 419, 420, 435, 441, 464, 467, 489, 511, 527, 592, 600, 601, 602, 604, 607, 608, 609, 632, 641, 671, 693], "universell": [43, 53, 78, 347, 545, 554, 583, 601, 602, 604, 607, 608, 609, 642], "komplex": [43, 47, 53, 57, 78, 83, 97, 106, 153, 189, 229, 325, 326, 328, 563, 573, 587, 601, 602, 604, 607, 608, 609, 622, 674, 693], "element": [43, 53, 55, 56, 83, 106, 164, 169, 185, 202, 222, 224, 229, 230, 232, 243, 262, 287, 315, 325, 328, 331, 352, 362, 368, 395, 396, 434, 496, 523, 564, 589, 601, 602, 604, 607, 608, 609, 653, 655, 663, 693], "len": [43, 53, 139, 152, 170, 203, 222, 223, 230, 288, 338, 601, 602, 604, 607, 608, 609, 622], "subtyp": [43, 53, 139, 601, 602, 604, 607, 608, 609], "gui_typ": [43, 44, 45, 53, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 643, 646], "spezifiziert": [43, 45, 53, 106, 196, 223, 338, 396, 397, 450, 457, 480, 516, 601, 602, 604, 607, 608, 609, 615, 682], "shngadmin": [43, 53, 155, 601, 602, 604, 607, 608, 609, 612, 644, 645, 646, 648, 649, 651, 653, 654, 655], "behandelt": [43, 53, 333, 508, 595, 601, 602, 604, 607, 608, 609, 622], "handhab": [43, 53, 325, 326, 589, 601, 602, 604, 607, 608, 609], "editi": [43, 53, 82, 83, 88, 92, 556, 557, 601, 602, 604, 607, 608, 609, 671], "wunschenswert": [43, 53, 583, 601, 602, 604, 607, 608, 609], "unterschiedlch": [43, 53, 601, 602, 604, 607, 608, 609], "editor": [43, 53, 83, 92, 94, 103, 106, 139, 164, 172, 203, 219, 294, 359, 385, 545, 554, 601, 602, 604, 607, 608, 609, 638, 655, 670, 671], "wide_str": [43, 45, 53, 601, 602, 604, 607, 608, 609, 615, 643], "breit": [43, 53, 58, 76, 378, 601, 602, 604, 607, 608, 609], "readonly": [43, 53, 111, 202, 290, 355, 537, 601, 602, 604, 607, 608, 609, 641, 643, 646], "erlaubt": [43, 53, 56, 57, 80, 106, 119, 120, 121, 122, 207, 228, 256, 262, 285, 302, 314, 326, 334, 351, 382, 415, 416, 448, 457, 469, 483, 490, 492, 495, 496, 523, 530, 532, 545, 548, 550, 567, 573, 591, 592, 601, 602, 603, 604, 607, 608, 609, 671, 673, 681, 686, 688], "valid_list_ci": [43, 53, 601, 602, 604, 607, 608, 609, 646], "low": [43, 53, 60, 133, 136, 162, 165, 170, 176, 179, 183, 211, 217, 218, 257, 262, 328, 338, 352, 359, 365, 412, 574, 601, 602, 604, 607, 608, 609, 618, 625, 648, 649, 652, 670, 688], "valid_list_description": [43, 53, 170, 601, 602, 604, 607, 608, 609, 655], "keys": [43, 53, 104, 112, 126, 130, 170, 198, 231, 237, 260, 261, 262, 301, 335, 337, 344, 347, 364, 366, 406, 455, 460, 510, 511, 563, 601, 602, 604, 607, 608, 609, 633, 641, 645, 646, 655, 688], "valid_min": [43, 44, 45, 53, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 646], "pint": [43, 53, 601, 602, 604, 607, 608, 609], "pfloat": [43, 53, 601, 602, 604, 607, 608, 609], "valid_max": [43, 44, 45, 53, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 646], "mandatory": [43, 53, 55, 139, 189, 218, 227, 290, 382, 518, 601, 602, 604, 607, 608, 609, 645, 650, 655, 669], "einschrank": [43, 53, 170, 179, 184, 192, 210, 219, 232, 252, 255, 348, 357, 360, 366, 596, 601, 602, 604, 607, 608, 609], "wirkungslos": [43, 53, 601, 602, 604, 607, 608, 609], "standardinstallation": [43, 48, 92], "anforder": [43, 48, 52, 53, 54, 55, 67, 81, 92, 116, 121, 125, 162, 232, 244, 313, 331, 474, 610, 625, 638, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 678, 691], "implement": [44, 45, 53, 54, 55, 66, 132, 133, 134, 137, 139, 140, 143, 144, 145, 146, 151, 154, 157, 160, 162, 205, 211, 216, 218, 221, 257, 288, 356, 357, 413, 610, 612, 613, 615, 616, 618, 623, 624, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667], "possibility": [44, 195, 216, 218, 274, 645, 646, 648, 649, 651, 652, 655], "writ": [44, 52, 54, 55, 66, 86, 98, 107, 111, 115, 126, 129, 130, 142, 149, 157, 164, 168, 175, 180, 183, 186, 195, 202, 218, 222, 223, 226, 239, 276, 278, 294, 308, 309, 314, 317, 334, 341, 352, 353, 355, 370, 452, 512, 613, 622, 623, 624, 643, 645, 646, 648, 650, 655, 656, 690], "cherrypyfilt": [44, 613], "build": [44, 51, 60, 71, 73, 83, 86, 133, 138, 139, 278, 288, 309, 612, 613, 627, 645, 646, 648, 649, 654, 664, 665], "configur": [44, 45, 137, 138, 183, 185, 186, 195, 205, 216, 234, 235, 236, 247, 254, 281, 296, 365, 368, 395, 613, 615, 628, 644, 645, 646, 651, 674], "returning": [44, 66, 138, 186, 613, 624, 646, 655], "tell": [44, 138, 157, 164, 613], "suppress": [44, 138, 613, 646, 649, 652, 655], "logentry": [44, 138, 613], "whereas": [44, 138, 613], "includ": [44, 138, 157, 160, 186, 190, 208, 227, 294, 318, 341, 352, 353, 613, 642, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 677, 688], "record": [44, 136, 138, 186, 222, 223, 227, 295, 583, 584, 613, 645, 669], "into": [44, 45, 52, 54, 55, 60, 66, 126, 130, 136, 138, 139, 141, 149, 160, 162, 164, 173, 176, 186, 187, 190, 198, 199, 202, 208, 211, 216, 217, 257, 273, 278, 294, 317, 335, 352, 613, 618, 623, 624, 646, 648, 652, 653, 654, 655, 659, 668, 669, 670], "furth": [44, 45, 107, 115, 126, 130, 138, 157, 158, 161, 195, 318, 342, 345, 353, 613, 615, 643, 644, 645, 646, 648, 649, 650, 651, 653, 655, 669, 691], "processing": [44, 138, 160, 161, 186, 198, 203, 227, 305, 368, 613, 643, 649], "eventual": [44, 138, 613], "output": [44, 46, 107, 115, 126, 133, 136, 138, 149, 152, 195, 205, 218, 227, 234, 239, 240, 248, 261, 262, 278, 293, 308, 309, 314, 322, 338, 613, 644, 645, 646, 649, 651, 653, 654, 656, 677], "determin": [44, 136, 138, 152, 211, 227, 260, 315, 613], "logged": [44, 138, 141, 148, 186, 208, 227, 248, 613, 647, 649, 654], "should": [44, 45, 52, 53, 54, 55, 58, 63, 66, 83, 107, 113, 115, 126, 132, 133, 134, 137, 138, 140, 141, 142, 143, 147, 148, 149, 150, 160, 164, 176, 183, 185, 186, 190, 193, 198, 206, 211, 216, 217, 218, 221, 227, 231, 234, 247, 248, 262, 269, 278, 283, 288, 297, 301, 312, 315, 334, 341, 342, 352, 356, 357, 436, 545, 550, 610, 613, 615, 616, 618, 620, 623, 624, 643, 644, 645, 646, 648, 649, 650, 651, 653, 655, 670, 681, 691], "otherwis": [44, 45, 55, 66, 107, 115, 137, 138, 139, 141, 142, 147, 152, 195, 221, 248, 251, 278, 294, 337, 613, 615, 616, 623, 624, 646, 652, 655], "deemed": [44, 138, 613], "appropriat": [44, 127, 133, 138, 227, 361, 613, 623, 643, 649], "may": [44, 45, 55, 130, 133, 137, 138, 141, 147, 157, 158, 160, 180, 186, 193, 195, 198, 218, 221, 305, 335, 341, 353, 365, 370, 613, 615, 643], "modified": [44, 133, 135, 138, 250, 288, 294, 355, 356, 357, 453, 613, 645, 646, 650, 651, 653, 655, 670], "plac": [44, 45, 138, 157, 158, 273, 315, 335, 337, 510, 613, 615, 649, 667, 688], "arg": [44, 45, 63, 130, 139, 143, 145, 147, 613, 615, 616, 620, 623, 641], "karg": [44, 45, 63, 613, 615, 616, 620, 623], "webif_mount_prefix": [44, 613], "gtemplates_dir": [44, 613], "gstatic_dir": [44, 613], "init_template_environment": [44, 613], "initializ": [44, 52, 66, 133, 134, 136, 151, 294, 613, 616, 624, 646, 655, 667], "jinja2": [44, 48, 56, 60, 107, 115, 151, 172, 613], "engin": [44, 61, 107, 115, 321, 508, 613, 674, 687], "environment": [44, 54, 55, 66, 68, 82, 83, 90, 107, 115, 125, 127, 131, 134, 152, 195, 278, 589, 598, 613, 618, 624, 629, 638, 644, 652, 653, 654, 655, 671, 693], "is_staticfil": [44, 613], "point": [44, 45, 66, 147, 148, 157, 158, 161, 186, 218, 221, 260, 278, 315, 317, 613, 615, 624, 649, 652], "existing": [44, 66, 133, 136, 137, 151, 162, 186, 292, 294, 325, 326, 612, 613, 624, 643, 645, 648, 652, 653, 655, 677], "extend": [44, 54, 55, 133, 278, 563, 612, 613, 649, 655], "is_port_in_us": [44, 613], "port": [44, 45, 52, 69, 71, 80, 83, 84, 85, 86, 87, 103, 110, 111, 119, 120, 121, 122, 123, 127, 141, 155, 160, 162, 167, 170, 173, 180, 181, 183, 186, 191, 192, 198, 200, 202, 206, 211, 222, 223, 227, 231, 235, 236, 238, 239, 240, 241, 247, 248, 249, 250, 257, 258, 264, 267, 276, 278, 281, 290, 292, 299, 300, 301, 304, 305, 306, 307, 308, 309, 315, 319, 331, 334, 341, 346, 351, 356, 357, 360, 362, 368, 374, 381, 401, 402, 413, 414, 417, 418, 419, 437, 438, 450, 469, 480, 501, 504, 505, 514, 522, 525, 528, 534, 612, 613, 615, 616, 643, 644, 646, 648, 650, 651, 655, 663, 684, 690], "get_user_dict": [44, 613], "section": [44, 54, 55, 66, 106, 107, 115, 137, 139, 143, 145, 154, 155, 176, 206, 209, 227, 240, 254, 273, 304, 353, 355, 356, 357, 368, 612, 613, 624, 643, 646, 647, 650, 652, 653, 654, 655, 673, 681], "containing": [44, 54, 55, 66, 107, 115, 126, 133, 134, 141, 143, 145, 148, 258, 356, 357, 613, 624, 652, 655], "hashed_password": [44, 45, 83, 111, 120, 180, 613, 615], "groups": [44, 160, 199, 352, 511, 613, 653, 655], "each": [44, 55, 66, 132, 133, 136, 137, 140, 142, 143, 144, 160, 182, 186, 198, 205, 240, 273, 274, 288, 294, 296, 353, 356, 357, 361, 613, 624, 643, 646, 650, 653, 655], "validate_password": [44, 157, 613], "realm": [44, 157, 613], "validat": [44, 141, 152, 613, 623, 645], "combination": [44, 148, 162, 613], "validate_service_password": [44, 613], "get_local_ip_address": [44, 45, 613, 615], "address": [44, 45, 66, 69, 71, 87, 127, 131, 141, 152, 157, 158, 173, 175, 176, 185, 195, 198, 202, 211, 218, 221, 222, 227, 230, 231, 234, 235, 236, 244, 245, 254, 256, 257, 278, 282, 283, 290, 292, 297, 298, 301, 315, 335, 355, 365, 368, 399, 452, 510, 612, 613, 615, 624, 649], "reached": [44, 45, 133, 136, 157, 158, 185, 199, 318, 395, 613, 615], "get_local_hostnam": [44, 45, 613, 615], "fully": [44, 160, 183, 613, 623, 650], "qualified": [44, 365, 613], "get_local_port": [44, 45, 613, 615], "get_local_servicesport": [44, 45, 613, 615], "webservic": [44, 45, 120, 157, 158, 160, 170, 502, 504, 545, 558, 613, 615, 617, 622, 641, 644, 646, 649, 653, 655, 671, 675], "get_service_us": [44, 613], "get_service_password": [44, 613, 646], "hashed": [44, 45, 120, 152, 157, 158, 180, 613, 615, 646], "get_webifs_for_plugin": [44, 613], "pluginnam": [44, 45, 52, 54, 55, 56, 60, 64, 68, 92, 157, 158, 243, 613, 615, 625], "registered": [44, 45, 54, 55, 66, 157, 158, 227, 365, 613, 615, 624, 652, 653], "shortnam": [44, 45, 66, 157, 158, 613, 615, 624, 655], "returned": [44, 58, 66, 130, 139, 141, 142, 144, 148, 152, 227, 248, 258, 305, 315, 335, 344, 356, 357, 361, 613, 624, 645, 646, 650, 655], "listentry": [44, 613], "has": [44, 45, 54, 55, 66, 126, 132, 133, 135, 136, 137, 139, 140, 141, 142, 148, 149, 152, 162, 183, 185, 186, 190, 205, 211, 218, 221, 227, 231, 234, 240, 248, 257, 262, 263, 278, 288, 290, 294, 298, 301, 312, 315, 317, 325, 352, 353, 355, 356, 357, 365, 368, 395, 413, 612, 613, 615, 616, 618, 623, 624, 645, 646, 647, 649, 650, 652, 653, 655, 656, 667, 670], "following": [44, 54, 55, 107, 113, 115, 126, 127, 130, 132, 133, 134, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 151, 173, 176, 177, 183, 186, 190, 193, 198, 199, 202, 205, 206, 208, 217, 218, 221, 227, 234, 240, 245, 247, 248, 251, 254, 257, 258, 262, 269, 278, 281, 288, 290, 294, 295, 296, 305, 315, 334, 335, 344, 352, 353, 355, 356, 357, 361, 365, 370, 613, 643, 644, 645, 646, 649, 650, 651, 653, 667, 679, 691], "structur": [44, 45, 53, 54, 55, 126, 130, 134, 135, 144, 149, 162, 186, 218, 227, 312, 353, 355, 361, 603, 613, 615, 646, 649, 652, 653, 664, 667, 689], "webif_dict": [44, 613], "mount": [44, 613], "pluginclass": [44, 45, 157, 158, 613, 615], "webifnam": [44, 613], "tnfos": [44, 613], "get_services_for_plugin": [44, 613], "service_dict": [44, 613], "servicenam": [44, 45, 157, 158, 198, 613, 615], "register_webif": [44, 613], "app": [44, 45, 80, 157, 158, 160, 162, 172, 176, 205, 214, 215, 218, 219, 220, 244, 254, 255, 257, 283, 293, 314, 344, 362, 375, 424, 472, 613, 615, 646], "use_global_basic_auth": [44, 613], "useprefix": [44, 613], "regist": [44, 66, 186, 195, 196, 207, 208, 218, 249, 334, 335, 403, 452, 494, 517, 613, 616, 624, 643, 649, 650, 653], "application": [44, 62, 161, 215, 219, 272, 274, 359, 360, 612, 613, 648, 669], "mod_http": [44, 157, 528, 613, 646], "get_shortnam": [44, 54, 55, 60, 66, 613, 624, 646], "get_classnam": [44, 66, 613, 624], "get_instance_nam": [44, 66, 157, 613, 624], "functionallity": [44, 613, 646, 649], "left": [44, 52, 54, 55, 56, 198, 231, 253, 281, 352, 433, 613, 625], "generic": [44, 210, 240, 613, 641, 643, 647, 663], "generated": [44, 84, 136, 190, 218, 227, 251, 254, 280, 352, 353, 613, 646, 647, 648], "basic_auth": [44, 613], "setting": [44, 45, 54, 71, 142, 147, 181, 186, 190, 195, 205, 206, 211, 220, 227, 231, 247, 248, 258, 278, 290, 292, 294, 315, 325, 326, 329, 330, 331, 332, 352, 368, 394, 454, 462, 468, 487, 508, 594, 613, 615, 643, 646, 649, 650, 652, 654, 655, 666, 670, 688], "are": [44, 45, 52, 54, 55, 66, 83, 107, 113, 115, 126, 127, 130, 132, 133, 134, 136, 137, 138, 139, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 160, 173, 176, 180, 182, 183, 186, 195, 199, 202, 205, 208, 211, 227, 231, 234, 240, 245, 247, 248, 251, 254, 257, 260, 262, 274, 278, 281, 288, 290, 294, 301, 305, 312, 315, 317, 334, 335, 341, 344, 352, 353, 355, 356, 357, 361, 365, 368, 370, 413, 512, 595, 612, 613, 615, 618, 623, 624, 642, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 655, 656, 663, 670, 691], "registering": [44, 66, 186, 227, 613, 624], "its": [44, 52, 54, 55, 127, 133, 141, 142, 161, 182, 183, 186, 240, 248, 298, 613, 623, 655], "own": [44, 54, 55, 63, 66, 72, 142, 190, 235, 260, 334, 335, 344, 353, 370, 613, 620, 624, 646, 650, 653, 655], "added": [44, 66, 107, 113, 115, 137, 147, 175, 179, 183, 195, 216, 251, 273, 274, 278, 318, 352, 353, 365, 613, 618, 623, 624, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 670, 674], "turl": [44, 613], "register_servic": [44, 45, 613, 615], "servic": [44, 45, 50, 71, 82, 85, 86, 89, 90, 92, 103, 106, 120, 121, 157, 158, 159, 160, 161, 162, 170, 171, 180, 195, 196, 198, 225, 227, 257, 265, 273, 274, 279, 344, 355, 368, 374, 406, 421, 440, 444, 445, 454, 460, 471, 472, 512, 545, 558, 559, 595, 613, 615, 630, 643, 645, 646, 649, 653, 655, 670, 688], "register_visu": [44, 613], "visu_port": [44, 613], "startup": [44, 45, 84, 89, 107, 115, 157, 158, 183, 227, 288, 294, 398, 613, 615, 616, 642, 645, 646, 648, 649, 650, 653, 655], "uses": [44, 87, 130, 155, 183, 195, 221, 239, 257, 260, 298, 304, 355, 356, 357, 361, 368, 612, 613, 616, 643, 645, 646, 647, 651], "put": [44, 52, 54, 55, 60, 66, 206, 218, 219, 227, 253, 262, 294, 355, 360, 361, 590, 612, 613, 616, 618, 624, 653, 655, 664], "creation": [44, 142, 613, 616, 643, 646, 651, 655, 656], "her": [44, 45, 52, 54, 55, 88, 132, 134, 136, 138, 141, 160, 164, 169, 183, 186, 203, 205, 206, 218, 221, 227, 231, 247, 262, 273, 274, 280, 281, 290, 294, 301, 305, 312, 325, 326, 328, 351, 361, 563, 585, 595, 612, 613, 615, 616, 668], "cleanup": [44, 133, 187, 612, 613, 616, 647, 649, 650, 653, 654, 655, 664], "log_server_info": [44, 613], "server_nr": [44, 613], "moduleapp": [44, 613], "starturl": [44, 45, 110, 120, 613, 615], "webapp": [44, 613], "entrypoint": [44, 613], "depenting": [44, 613], "redirect": [44, 45, 129, 152, 157, 158, 161, 205, 215, 416, 521, 613, 615], "choos": [44, 130, 216, 221, 281, 315, 613, 654, 670], "differnt": [44, 613], "mounted": [44, 240, 315, 613], "exposed": [44, 262, 613], "pag": [44, 45, 54, 55, 58, 69, 71, 85, 157, 158, 180, 219, 220, 234, 273, 302, 352, 353, 354, 355, 356, 357, 365, 496, 524, 613, 615, 644, 645, 646, 647, 649, 650, 651, 652, 653, 655, 664, 665, 669, 670, 682, 686, 687], "formatted": [44, 45, 63, 136, 149, 370, 615, 620, 643], "raw": [44, 45, 71, 141, 181, 182, 186, 187, 281, 299, 305, 306, 307, 497, 498, 499, 521, 623, 655, 671], "copy": [44, 45, 54, 55, 66, 133, 160, 206, 226, 227, 239, 273, 309, 315, 352, 353, 361, 624, 641, 650, 674, 686], "past": [44, 45, 148, 160, 162, 163, 227, 262, 273, 361, 642, 652], "meta": [44, 45, 52, 143, 145, 305, 335, 646], "5b": [44, 613], "pour": [44, 612, 613, 616], "l": [44, 82, 149, 169, 192, 195, 196, 261, 338, 461, 612, 613, 616, 635, 671], "impl\u00e9mentation": [44, 613], "connectionretri": [44, 120, 613, 653], "verbindungsversuch": [44, 120, 233, 381, 400, 407, 408, 435, 440, 441, 464, 467, 507, 613], "erui": [44, 120, 330, 331, 599, 613, 634], "connection": [44, 45, 55, 69, 71, 85, 116, 130, 138, 141, 168, 179, 180, 181, 183, 186, 195, 200, 211, 218, 219, 234, 257, 301, 305, 315, 318, 355, 356, 357, 422, 613, 615, 616, 623, 632, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 665, 688], "retri": [44, 130, 141, 195, 400, 441, 464, 467, 613, 656], "retriev": [44, 186, 205, 234, 260, 262, 298, 312, 365, 413, 613, 643, 666], "nombr": [44, 612, 613], "tentativ": [44, 613], "connexion": [44, 613], "r\u00e9cup\u00e9r": [44, 613], "benutzernam": [44, 47, 82, 83, 120, 121, 170, 215, 338, 380, 382, 383, 424, 429, 436, 449, 526, 534, 599, 613], "access": [44, 45, 88, 130, 132, 134, 137, 140, 141, 143, 144, 146, 147, 148, 157, 158, 161, 180, 182, 202, 218, 227, 278, 301, 315, 334, 349, 352, 353, 355, 567, 591, 598, 612, 613, 615, 616, 643, 646, 653, 655, 660, 669, 674], "nom": [44, 613, 616], "utilisateur": [44, 613], "acc\u00e8s": [44, 612, 613, 616], "basiqu": [44, 613], "si": [44, 71, 107, 180, 181, 218, 219, 368, 424, 425, 613, 616], "mot": [44, 613], "pass": [44, 47, 52, 53, 54, 55, 113, 120, 123, 126, 141, 194, 210, 219, 248, 273, 288, 370, 423, 522, 554, 555, 613, 650], "est": [44, 613, 616], "d\u00e9fini": [44, 613], "unencrypted": [44, 45, 355, 613, 615, 616], "clair": [44, 613], "supersed": [44, 613], "hach\u00e9": [44, 613], "remplac": [44, 613], "le": [44, 71, 180, 181, 612, 613, 616], "param\u00e8tr": [44, 613], "service_us": [44, 45, 120, 257, 528, 613, 615, 646], "serviceus": [44, 45, 120, 157, 158, 613, 615], "webervic": [44, 157, 613], "au": [44, 373, 613], "service_password": [44, 45, 120, 257, 528, 613, 615, 646], "aux": [44, 613], "service_hashed_password": [44, 45, 120, 613, 615], "operat": [44, 126, 219, 254, 613, 616], "laquell": [44, 613, 616], "devrait": [44, 613, 616], "fonctionn": [44, 613, 616], "il": [44, 71, 180, 181, 613, 616], "g\u00e9n\u00e9ralement": [44, 613, 616], "pas": [44, 613, 616], "n\u00e9cessair": [44, 613, 616], "la": [44, 71, 82, 92, 104, 180, 181, 612, 613, 616, 681], "sp\u00e9cifi": [44, 613, 616], "65535": [44, 45, 211, 391, 413, 419, 426, 427, 428, 434, 442, 444, 445, 452, 457, 459, 470, 498, 499, 504, 612, 613, 615, 616], "portnumm": [44, 120, 375, 426, 427, 428, 458, 518, 613, 616], "num\u00e9ro": [44, 613, 616], "\u00e0": [44, 612, 613, 616], "tls_port": [44, 110, 120, 122, 613, 616, 617, 684, 690], "8385": [44, 120, 613, 617], "when": [44, 45, 52, 54, 55, 66, 83, 103, 107, 113, 115, 116, 130, 133, 136, 137, 141, 151, 152, 157, 158, 160, 162, 176, 183, 185, 186, 199, 211, 216, 218, 227, 232, 248, 254, 255, 257, 263, 274, 288, 294, 301, 305, 312, 318, 322, 335, 355, 356, 357, 368, 395, 479, 583, 585, 612, 613, 615, 618, 623, 624, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "using": [44, 45, 54, 55, 66, 113, 130, 136, 141, 149, 151, 155, 160, 161, 176, 180, 183, 185, 186, 190, 205, 216, 217, 227, 231, 235, 236, 247, 253, 254, 258, 260, 294, 301, 304, 305, 335, 342, 351, 355, 356, 357, 365, 368, 612, 613, 615, 624, 643, 645, 646, 648, 650, 651, 652, 653, 654, 655, 656, 662, 670], "utilisation": [44, 613, 616], "use_tl": [44, 110, 120, 122, 613, 616, 684, 690], "yes_no": [44, 45, 612, 613, 615, 616], "setz": [44, 45, 53, 56, 71, 85, 103, 106, 112, 115, 120, 162, 167, 168, 169, 170, 181, 187, 213, 230, 256, 289, 292, 293, 295, 300, 314, 322, 323, 326, 328, 329, 330, 331, 332, 360, 378, 381, 396, 401, 453, 454, 487, 495, 496, 504, 508, 511, 512, 517, 519, 523, 563, 566, 567, 569, 572, 573, 575, 576, 577, 591, 592, 613, 615, 616, 686, 688, 689], "ermog": [44, 60, 62, 67, 76, 106, 120, 169, 376, 613, 616, 641, 642, 688, 693], "allow": [44, 88, 186, 211, 315, 318, 352, 355, 612, 613, 616, 641, 643, 644, 645, 646, 647, 648, 649, 652, 653, 655, 656, 688], "over": [44, 45, 60, 136, 161, 218, 221, 227, 294, 368, 445, 595, 613, 615, 616, 643, 644, 645, 646, 649, 650, 651, 665, 691], "certificat": [44, 141, 198, 368, 613, 616, 649, 655, 688], "installed": [44, 54, 55, 83, 113, 157, 186, 198, 209, 240, 278, 308, 315, 352, 353, 358, 612, 613, 616, 643, 646, 650], "mettr": [44, 613, 616], "par": [44, 613, 616], "doivent": [44, 613, 616], "\u00eatre": [44, 613, 616], "install\u00e9s": [44, 613, 616], "tls_cert": [44, 110, 120, 122, 613, 616, 684, 690], "zertifikatsdatei": [44, 120, 122, 613, 616], "endung": [44, 83, 98, 103, 106, 112, 120, 122, 188, 381, 613, 616], "pem": [44, 102, 110, 120, 122, 161, 613, 616, 649, 688], "lieg": [44, 52, 106, 111, 117, 120, 122, 194, 314, 328, 329, 423, 592, 600, 613, 616, 685], "stored": [44, 45, 66, 133, 137, 146, 208, 211, 227, 245, 294, 295, 352, 353, 356, 357, 612, 613, 615, 616, 624, 649, 650], "fichi": [44, 612, 613, 616], "contanent": [44, 613, 616], "doit": [44, 613, 616], "se": [44, 321, 328, 414, 508, 545, 550, 613, 616, 642, 645, 646, 649, 654], "trouv": [44, 613, 616], "dan": [44, 612, 613, 616], "tls_key": [44, 110, 120, 122, 613, 616, 684, 690], "privat": [44, 77, 120, 122, 162, 170, 217, 352, 368, 423, 589, 613, 616, 641, 648, 686, 688, 690], "cl\u00e9s": [44, 613, 616], "priv\u00e9s": [44, 613, 616], "servicesport": [44, 45, 613, 615, 617], "8384": [44, 45, 120, 157, 158, 360, 613, 615, 617], "showpluginlist": [44, 45, 120, 613, 615], "show": [44, 45, 66, 71, 107, 115, 141, 157, 158, 163, 164, 180, 312, 423, 613, 615, 624, 643, 646, 651, 652, 653, 655, 677], "affich": [44, 612, 613], "une": [44, 613], "avec": [44, 613], "sous": [44, 613], "showservicelist": [44, 45, 120, 613, 615], "weiterleit": [44, 120, 613, 688], "redirection": [44, 613], "portnumb": [44, 613], "charg\u00e9": [44, 613], "navigateur": [44, 613], "utilisant": [44, 613], "seulement": [44, 613], "setup": [44, 45, 47, 55, 83, 87, 126, 130, 173, 176, 177, 186, 219, 221, 296, 326, 328, 330, 331, 368, 396, 613, 615, 645, 655, 667], "t\u00e2ches": [44, 613], "pr\u00e9vus": [44, 613], "showtraceback": [44, 45, 120, 613, 615], "fehlermeld": [44, 89, 92, 170, 187, 215, 295, 316, 360, 381, 409, 453, 613, 629, 641, 673, 674], "produktionsinstallation": [44, 613], "displayed": [44, 54, 55, 138, 227, 234, 352, 613, 646, 647, 649], "production": [44, 613, 651], "montr": [44, 613], "trac": [44, 120, 613], "exepction": [44, 613], "erreur": [44, 613], "affich\u00e9": [44, 613], "normallement": [44, 613], "environnement": [44, 613], "pro": [44, 56, 58, 60, 116, 120, 123, 131, 162, 164, 187, 189, 193, 194, 222, 238, 241, 262, 276, 314, 315, 322, 327, 328, 330, 334, 346, 347, 359, 414, 478, 508, 519, 545, 550, 613, 641], "wirkt": [44, 123, 613, 641], "sortierbar": [44, 309, 613], "amount": [44, 55, 141, 157, 186, 218, 262, 613, 663], "being": [44, 60, 66, 137, 157, 186, 199, 248, 294, 296, 352, 356, 357, 613, 624, 645, 650, 651, 652, 653, 655], "listed": [44, 107, 115, 130, 157, 180, 190, 227, 613], "automatic": [44, 55, 227, 258, 318, 353, 613, 645, 646, 649, 650, 651, 653, 654, 655, 669], "many": [44, 113, 130, 141, 147, 185, 205, 221, 274, 298, 334, 335, 613, 643, 666, 668], "fitted": [44, 613], "window": [44, 54, 55, 56, 58, 60, 162, 170, 200, 220, 232, 272, 288, 293, 613, 646, 651, 653, 655], "affect": [44, 613], "sortabl": [44, 613], "description_long": [44, 45, 613, 615], "browserfenst": [44, 613, 674], "tabelleneintrag": [44, 613], "adjust": [44, 54, 55, 157, 227, 247, 613, 645, 646, 651, 653, 655], "height": [44, 52, 54, 55, 56, 157, 162, 166, 227, 323, 329, 362, 530, 613, 625, 651, 653], "automatically": [44, 55, 136, 141, 157, 160, 195, 211, 221, 262, 294, 318, 612, 613, 651, 652, 653, 655], "based": [44, 46, 54, 55, 130, 136, 139, 141, 157, 198, 235, 236, 240, 247, 248, 254, 262, 368, 370, 612, 613, 643, 644, 645, 646, 649, 650, 651, 652, 655, 670, 691], "windows": [44, 68, 74, 79, 82, 88, 91, 92, 103, 113, 157, 274, 363, 507, 613, 646, 648, 649], "shows": [44, 157, 202, 288, 294, 295, 352, 356, 357, 613, 643, 667], "entri": [44, 50, 55, 83, 103, 107, 113, 115, 126, 133, 136, 137, 138, 147, 157, 186, 202, 247, 317, 352, 356, 357, 613, 644, 645, 646, 648, 649, 651, 652, 653, 655, 667], "utiliz": [44, 45, 157, 158, 208, 613, 615], "familiar": [44, 157, 613], "well": [44, 55, 154, 157, 159, 160, 161, 193, 211, 240, 247, 290, 297, 342, 612, 613, 646, 651, 653, 688], "librari": [44, 48, 79, 107, 115, 154, 157, 287, 359, 560, 573, 612, 613, 621, 622, 643, 670, 693], "apt": [44, 47, 68, 73, 82, 83, 84, 85, 86, 87, 88, 154, 157, 161, 185, 278, 281, 287, 297, 309, 341, 370, 508, 612, 613, 628, 667, 688], "pleas": [44, 55, 83, 154, 157, 160, 173, 176, 190, 193, 198, 205, 211, 218, 227, 251, 257, 297, 334, 335, 342, 355, 364, 612, 613, 643, 644, 645, 646, 649, 650, 651, 653, 663, 691], "pay": [44, 154, 157, 612, 613], "attention": [44, 52, 72, 141, 154, 157, 198, 205, 240, 334, 368, 612, 613], "old": [44, 88, 92, 126, 133, 136, 137, 154, 157, 208, 218, 234, 254, 301, 312, 341, 352, 396, 612, 613, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667, 670], "probably": [44, 113, 154, 157, 612, 613, 643], "careful": [44, 157, 195, 240, 294, 334, 613], "pip": [44, 48, 68, 83, 113, 154, 157, 169, 179, 192, 231, 235, 236, 249, 253, 301, 309, 338, 370, 433, 612, 613, 629, 630, 645, 646, 649, 651, 653, 655, 667, 678], "without": [44, 45, 53, 54, 55, 60, 66, 104, 141, 142, 149, 151, 152, 157, 158, 186, 205, 211, 218, 227, 263, 274, 276, 285, 315, 318, 352, 610, 613, 615, 624, 633, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655], "availabl": [44, 45, 55, 66, 71, 88, 133, 141, 151, 152, 157, 158, 173, 175, 176, 179, 180, 190, 202, 227, 234, 254, 258, 262, 274, 280, 281, 298, 305, 335, 344, 365, 370, 595, 613, 615, 624, 643, 646, 649, 652, 653, 655, 656, 658, 688], "everyon": [44, 45, 157, 158, 613, 615], "pluin": [44, 45, 157, 158, 613, 615], "shown": [44, 45, 54, 55, 157, 158, 162, 180, 257, 296, 352, 355, 613, 615, 643, 648, 651, 653, 655], "detailing": [44, 45, 157, 158, 613, 615], "want": [44, 45, 54, 55, 130, 136, 140, 157, 158, 160, 164, 175, 183, 185, 186, 195, 205, 211, 227, 231, 240, 248, 251, 262, 273, 278, 280, 288, 294, 296, 301, 305, 312, 356, 357, 365, 368, 613, 615, 667], "result": [44, 45, 53, 62, 66, 115, 130, 133, 137, 148, 155, 157, 158, 183, 186, 195, 198, 211, 227, 229, 253, 273, 304, 335, 338, 351, 356, 357, 368, 609, 613, 615, 618, 624, 646, 647, 650, 653, 655, 659], "tak": [44, 45, 55, 126, 130, 139, 147, 157, 158, 185, 198, 211, 218, 247, 253, 260, 273, 288, 290, 335, 344, 356, 357, 395, 613, 615, 643, 644, 645, 646, 649, 650, 651, 653, 654, 667, 691], "thos": [44, 45, 137, 142, 157, 158, 288, 294, 365, 613, 615], "redirected": [44, 45, 157, 158, 613, 615], "specific": [44, 45, 53, 54, 55, 66, 107, 115, 134, 136, 139, 141, 151, 157, 158, 160, 162, 176, 198, 231, 248, 253, 273, 275, 301, 352, 353, 355, 365, 368, 598, 603, 613, 615, 624, 643, 644, 645, 646, 651, 653, 655, 674], "always": [44, 45, 84, 107, 115, 147, 152, 157, 158, 160, 161, 205, 227, 294, 613, 615, 646, 652, 688], "entering": [44, 45, 157, 158, 227, 613, 615], "too": [44, 45, 72, 137, 147, 157, 158, 180, 186, 205, 208, 231, 253, 260, 298, 301, 312, 335, 344, 355, 413, 613, 615, 643, 646, 650, 651, 652, 653], "much": [44, 45, 157, 158, 262, 613, 615, 668], "slow": [44, 45, 157, 158, 613, 615, 643, 654], "cpus": [44, 45, 79, 120, 157, 158, 613, 615, 647], "404": [44, 45, 120, 141, 157, 158, 341, 613, 615, 688], "terminology": [44, 157, 613], "defin": [44, 45, 54, 55, 107, 115, 133, 134, 137, 138, 157, 160, 170, 182, 199, 205, 227, 231, 234, 240, 248, 254, 274, 281, 288, 290, 301, 305, 312, 342, 352, 353, 356, 357, 365, 613, 615, 643, 653, 655], "An": [44, 52, 53, 54, 55, 66, 132, 134, 142, 152, 157, 162, 165, 170, 186, 227, 257, 273, 311, 315, 338, 355, 365, 370, 382, 488, 518, 534, 610, 613, 618, 624, 681, 688], "app_conf": [44, 157, 613], "staticdir": [44, 157, 613], "root": [44, 82, 83, 85, 88, 107, 115, 116, 136, 157, 160, 161, 222, 256, 261, 304, 352, 353, 356, 357, 389, 612, 613, 656, 670, 687, 688], "current_dir": [44, 157, 613], "auth_basic": [44, 157, 161, 613, 688], "_basic_auth": [44, 157, 613], "earth": [44, 142, 157, 613], "checkpassword": [44, 157, 613], "os": [44, 74, 82, 141, 157, 170, 171, 221, 278, 378, 382, 507, 598, 613, 646, 655, 688], "join": [44, 66, 157, 504, 545, 558, 613, 624, 641, 645, 653, 655, 670], "logon": [44, 157, 613], "security": [44, 79, 88, 157, 161, 162, 170, 176, 219, 227, 292, 368, 428, 613, 643, 644, 645, 646, 647, 648, 649, 650, 653, 688, 691], "login": [44, 45, 76, 83, 119, 121, 141, 157, 160, 164, 180, 198, 216, 219, 220, 227, 248, 292, 376, 382, 383, 391, 399, 406, 417, 421, 422, 423, 451, 456, 465, 518, 612, 613, 615, 644, 646, 650, 652, 653, 655], "delet": [44, 55, 60, 133, 134, 136, 137, 157, 177, 186, 218, 219, 227, 563, 612, 613, 646, 653, 655], "enti": [44, 157, 613], "register_app": [44, 45, 613, 615], "app_object": [44, 157, 613], "appnam": [44, 157, 613], "updates_allowed": [44, 103, 157, 613], "developer_mod": [44, 119, 157, 612, 613], "pypi_timeout": [44, 119, 157, 612, 613], "ref": [44, 47, 157, 161, 190, 198, 205, 211, 218, 227, 251, 341, 342, 353, 356, 357, 613, 643, 644, 645, 646, 649, 650, 651, 691], "expos": [44, 58, 60, 62, 157, 161, 613], "part": [44, 45, 54, 55, 66, 87, 113, 126, 132, 133, 137, 140, 141, 143, 149, 152, 157, 161, 202, 211, 218, 227, 273, 278, 315, 345, 352, 353, 355, 356, 357, 365, 613, 615, 618, 624, 643, 650, 655, 669], "availab": [44, 157, 613], "through": [44, 45, 66, 107, 115, 132, 134, 137, 143, 147, 148, 149, 151, 157, 211, 613, 615, 618, 624, 645, 646, 649, 650, 651, 653], "cherypy": [44, 157, 613], "listening": [44, 45, 141, 157, 158, 169, 227, 244, 248, 315, 613, 615], "domain": [44, 45, 88, 141, 157, 158, 214, 216, 423, 613, 615, 688], "implemented": [44, 45, 54, 55, 66, 132, 137, 141, 143, 147, 148, 149, 150, 151, 152, 157, 158, 160, 173, 211, 227, 231, 234, 247, 248, 288, 352, 356, 357, 365, 613, 615, 618, 623, 624, 643, 645, 646, 649, 650, 651, 652, 653, 655, 670], "would": [44, 45, 107, 115, 157, 158, 168, 183, 211, 234, 262, 296, 353, 356, 357, 612, 613, 615], "protocol": [45, 52, 53, 54, 55, 88, 110, 127, 155, 158, 183, 218, 221, 240, 247, 279, 290, 304, 305, 351, 352, 357, 368, 454, 457, 466, 501, 531, 534, 545, 552, 610, 612, 615, 616, 622, 645, 647, 648, 649, 651, 653, 654, 655], "usabl": [45, 132, 133, 646], "longnam": [45, 615, 616, 655], "schedul": [45, 46, 54, 55, 66, 71, 113, 117, 133, 137, 180, 181, 219, 254, 255, 270, 271, 288, 326, 391, 400, 441, 464, 467, 560, 592, 594, 595, 600, 612, 615, 623, 624, 632, 642, 643, 644, 645, 646, 649, 650, 652, 653, 655, 664, 666, 671, 672], "stops": [45, 54, 55, 134, 145, 227, 281, 288, 294, 512, 615], "broker_uptim": [45, 63, 615, 620, 621], "get_broker_info": [45, 63, 615, 620, 621], "collected": [45, 615], "get_broker_conf": [45, 615], "subscribe_topic": [45, 615], "topic": [45, 54, 63, 76, 121, 337, 341, 359, 371, 454, 479, 511, 537, 595, 615, 620, 621, 645], "callback": [45, 52, 54, 63, 141, 257, 362, 417, 530, 595, 615, 620, 621, 623, 641, 649, 651, 654, 655], "qos": [45, 54, 63, 121, 292, 595, 615, 620, 621], "payload_typ": [45, 54, 63, 595, 615, 620, 621], "item_typ": [45, 615, 622], "bool_valu": [45, 54, 63, 121, 595, 615, 620, 621, 643, 655], "subscrib": [45, 54, 63, 227, 368, 615, 620, 674], "utilizing": [45, 615], "publish": [45, 63, 121, 368, 615, 620, 674], "mqttplugin": [45, 48, 54, 615, 626, 643, 648, 655, 656], "quality": [45, 121, 262, 454, 595, 615], "byt": [45, 141, 160, 165, 170, 230, 232, 239, 240, 249, 279, 308, 309, 310, 351, 434, 478, 498, 499, 522, 595, 615, 622, 641, 646, 649, 653, 655], "casting": [45, 83, 103, 113, 615, 646, 655, 672], "representation": [45, 137, 152, 615], "unsubscribe_topic": [45, 615], "unsubscrib": [45, 615, 653, 674], "publish_topic": [45, 63, 615, 620, 621], "payload": [45, 54, 63, 121, 162, 163, 164, 305, 315, 371, 375, 454, 595, 615, 616, 620, 621, 641, 643, 647, 648, 649, 651, 653, 654, 655], "retain": [45, 54, 63, 615, 620, 621, 645], "flag": [45, 63, 76, 124, 139, 221, 235, 240, 241, 328, 389, 394, 411, 454, 458, 468, 479, 615, 620, 641, 643], "cast_from_mqtt": [45, 615], "raw_data": [45, 615], "cast": [45, 148, 152, 615, 645, 651, 653, 655], "casted": [45, 615], "received": [45, 54, 55, 66, 141, 240, 248, 254, 282, 298, 315, 365, 595, 612, 615, 623, 624, 642, 648, 649, 650, 655], "writt": [45, 55, 66, 107, 115, 133, 136, 137, 152, 186, 202, 211, 247, 248, 257, 353, 365, 615, 618, 624, 645, 649, 651], "cast_to_mqtt": [45, 615], "compatibl": [45, 193, 247, 269, 274, 615, 623, 645, 646, 648, 651, 654, 655], "sampl": [45, 54, 55, 60, 183, 198, 218, 229, 239, 305, 308, 351, 562, 612, 625, 643, 644, 645, 646, 651, 653, 655], "6a": [45, 615], "enabled": [45, 53, 55, 84, 86, 87, 107, 115, 117, 121, 122, 137, 181, 202, 219, 221, 222, 227, 247, 300, 304, 317, 356, 357, 367, 449, 600, 610, 615, 616, 623, 643, 652, 688], "enabl": [45, 54, 55, 71, 82, 86, 89, 90, 110, 133, 137, 141, 160, 175, 180, 183, 186, 199, 218, 235, 236, 254, 255, 258, 278, 292, 296, 317, 342, 368, 370, 594, 615, 616, 623, 645, 646, 649, 650, 651, 653, 655, 666, 671], "disabl": [45, 55, 71, 88, 89, 90, 92, 137, 180, 216, 218, 254, 255, 297, 352, 370, 538, 562, 594, 615, 616, 623, 650, 651, 652, 653, 655, 671], "broker_host": [45, 121, 615], "127": [45, 71, 85, 86, 87, 98, 103, 111, 121, 123, 152, 165, 180, 186, 199, 200, 256, 276, 319, 331, 368, 377, 379, 380, 391, 405, 407, 417, 428, 433, 434, 457, 461, 488, 507, 534, 615], "specifi": [45, 186, 199, 211, 231, 240, 247, 248, 274, 301, 305, 312, 315, 615], "comput": [45, 142, 162, 258, 288, 310, 363, 598, 599, 615, 630, 644, 678, 682, 690], "specify": [45, 130, 160, 186, 195, 211, 221, 227, 239, 248, 290, 301, 305, 315, 317, 352, 365, 615, 686], "assumed": [45, 53, 152, 186, 315, 356, 357, 610, 615], "sam": [45, 66, 126, 127, 130, 133, 138, 147, 160, 183, 186, 210, 227, 234, 248, 263, 274, 278, 280, 288, 312, 315, 353, 355, 615, 624, 643, 645, 646, 650, 651, 653, 654, 655, 656, 660, 663, 666, 674], "machin": [45, 87, 239, 262, 278, 323, 329, 508, 615, 654], "localhost": [45, 69, 71, 85, 86, 87, 111, 121, 180, 181, 215, 221, 222, 223, 258, 391, 426, 427, 459, 525, 537, 615], "broker_port": [45, 121, 615], "1883": [45, 84, 121, 292, 615, 617], "Vom": [45, 92, 615], "8883": [45, 615, 617], "iana": [45, 615], "reserviert": [45, 100, 256, 325, 615], "Er": [45, 52, 53, 106, 292, 416, 419, 420, 448, 492, 530, 532, 584, 593, 609, 615], "tcp": [45, 71, 78, 86, 87, 116, 127, 141, 169, 183, 191, 200, 201, 207, 230, 256, 264, 267, 281, 355, 381, 415, 480, 517, 545, 550, 552, 615, 617, 622, 643, 651, 663, 665], "secur": [45, 227, 368, 615, 616, 617], "reserved": [45, 126, 615, 670], "broker_client": [45, 121, 615], "Muss": [45, 121, 122, 169, 170, 396, 417, 476, 477, 486, 508, 522, 615, 690], "zeitgleich": [45, 121, 615, 642], "kommunizi": [45, 52, 67, 84, 121, 122, 155, 171, 197, 304, 309, 351, 371, 405, 511, 537, 545, 548, 549, 550, 615, 616, 689], "communication": [45, 141, 193, 211, 218, 230, 234, 247, 281, 290, 335, 352, 356, 357, 365, 615, 616, 650, 655], "must": [45, 54, 55, 66, 87, 107, 115, 141, 160, 162, 176, 184, 188, 193, 199, 202, 205, 211, 227, 247, 257, 268, 278, 288, 290, 315, 325, 332, 352, 353, 365, 397, 413, 515, 569, 585, 592, 615, 624, 645], "multipl": [45, 66, 83, 113, 130, 144, 148, 152, 160, 161, 186, 211, 218, 227, 247, 248, 274, 288, 296, 352, 353, 365, 368, 615, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 654, 656, 660, 664, 666, 667, 669, 670, 682], "communicat": [45, 183, 218, 239, 290, 615, 643, 651, 665], "concurrently": [45, 615], "achtung": [45, 82, 85, 162, 192, 219, 255, 262, 328, 359, 369, 374, 376, 381, 382, 383, 384, 385, 387, 389, 394, 397, 399, 400, 406, 408, 411, 416, 420, 421, 422, 424, 426, 428, 435, 437, 438, 441, 446, 447, 449, 463, 464, 465, 467, 474, 475, 477, 478, 480, 482, 483, 484, 485, 488, 489, 491, 497, 501, 503, 505, 506, 508, 511, 513, 514, 515, 518, 521, 523, 524, 526, 527, 532, 537, 538, 575, 577, 615, 641, 652, 671], "Bis": [45, 96, 111, 583, 589, 615, 689], "unverschlusselt": [45, 122, 367, 615, 616], "ubertrag": [45, 47, 62, 82, 86, 97, 162, 165, 188, 219, 230, 306, 307, 316, 359, 362, 405, 457, 615, 688], "authentication": [45, 141, 160, 161, 215, 218, 227, 296, 368, 429, 615, 646, 649, 688], "notic": [45, 55, 107, 115, 125, 293, 615, 638, 649, 653, 655], "implementation": [45, 53, 55, 56, 62, 66, 130, 137, 141, 145, 186, 221, 301, 306, 307, 334, 353, 365, 615, 624, 643, 646, 649, 650, 653, 655], "transmitted": [45, 337, 361, 615], "hid": [45, 66, 107, 115, 141, 615, 624, 653], "jetzig": [45, 225, 615, 677], "stag": [45, 280, 368, 615], "clear": [45, 62, 133, 563, 615, 641, 649, 652], "broker_monitoring": [45, 63, 121, 252, 615, 620], "monitoring": [45, 141, 227, 615, 643, 646, 651, 655], "interfas": [45, 615], "mqtt_qos": [45, 615], "uberschrieb": [45, 58, 60, 79, 85, 92, 120, 184, 232, 268, 322, 326, 328, 329, 332, 333, 412, 452, 454, 496, 508, 523, 585, 591, 615, 685], "onc": [45, 144, 160, 179, 257, 260, 341, 615, 643, 645, 650, 651, 652, 653, 655], "least": [45, 205, 221, 227, 288, 342, 413, 615, 650], "excactly": [45, 615], "meist": [45, 52, 79, 106, 116, 164, 167, 169, 192, 219, 230, 261, 321, 326, 332, 371, 379, 545, 548, 594, 615, 622, 641], "overhead": [45, 365, 615], "notig": [45, 56, 58, 60, 172, 191, 200, 237, 264, 267, 319, 329, 339, 340, 347, 349, 441, 507, 573, 615, 642, 688], "erlauter": [45, 93, 116, 181, 219, 594, 599, 615, 634], "gefund": [45, 48, 54, 55, 58, 65, 90, 153, 162, 164, 170, 171, 179, 200, 212, 213, 261, 285, 302, 314, 321, 322, 347, 349, 354, 360, 382, 453, 477, 483, 565, 573, 591, 615, 635, 652, 653, 654, 656, 678, 682], "hivemq": [45, 615], "essential": [45, 73, 83, 538, 615, 628], "englisch": [45, 47, 50, 51, 53, 68, 80, 82, 106, 165, 259, 262, 373, 532, 615, 641], "communicating": [45, 615, 655], "overwritt": [45, 66, 234, 615, 623, 624], "individual": [45, 66, 288, 615, 624, 643, 644, 645, 646, 649, 650, 651, 653, 691], "three": [45, 66, 137, 217, 240, 288, 352, 361, 615, 624, 663], "good": [45, 160, 251, 257, 281, 296, 491, 615], "explanation": [45, 615, 664], "falsch": [45, 82, 92, 96, 121, 162, 196, 262, 306, 307, 360, 381, 423, 454, 573, 615], "wahr": [45, 121, 169, 217, 321, 325, 328, 333, 360, 401, 423, 432, 454, 481, 486, 573, 615], "wrong": [45, 195, 365, 615, 643, 644, 645, 648, 649, 650, 652, 654, 655], "right": [45, 55, 113, 133, 136, 141, 161, 186, 195, 198, 205, 211, 227, 231, 240, 251, 278, 281, 290, 352, 355, 356, 357, 433, 615, 646], "last_will_topic": [45, 121, 615], "Will": [45, 312, 313, 615, 646, 665, 666, 667], "telegramm": [45, 111, 232, 407, 451, 615], "telegram": [45, 199, 248, 545, 558, 572, 615, 641, 642, 643, 645, 646, 648, 649, 650, 652, 653, 655, 670, 674], "testament": [45, 615], "messag": [45, 63, 66, 84, 107, 111, 115, 116, 121, 136, 138, 141, 148, 155, 156, 179, 188, 192, 198, 199, 202, 210, 218, 227, 229, 232, 243, 256, 263, 273, 279, 294, 295, 296, 303, 304, 305, 306, 307, 315, 337, 338, 339, 340, 356, 357, 359, 368, 382, 401, 406, 422, 446, 454, 456, 463, 479, 490, 512, 521, 534, 545, 548, 575, 583, 584, 586, 595, 615, 620, 624, 643, 644, 645, 646, 649, 650, 652, 653, 654, 655, 663, 677], "versendet": [45, 121, 170, 440, 445, 471, 473, 545, 548, 595, 615], "abbricht": [45, 615], "ordnungsgemass": [45, 85, 86, 615], "birth": [45, 121, 615], "sent": [45, 52, 54, 55, 66, 141, 198, 231, 248, 254, 288, 290, 298, 301, 305, 365, 615, 624, 650], "closed": [45, 136, 141, 170, 200, 227, 257, 615, 647], "orderly": [45, 615], "mann": [45, 615], "shutting": [45, 615], "last_will_payload": [45, 121, 615], "birth_topic": [45, 121, 615], "gegenteil": [45, 615], "opposit": [45, 615], "up": [45, 52, 54, 55, 66, 71, 72, 113, 130, 133, 139, 140, 141, 160, 180, 181, 198, 200, 205, 227, 231, 245, 248, 294, 317, 318, 353, 355, 356, 357, 365, 370, 412, 433, 512, 615, 618, 623, 624, 643, 646, 648, 649, 650, 652, 653, 655, 662, 668], "birth_payload": [45, 121, 615], "publish_item": [45, 615], "publizi": [45, 293, 615], "Noch": [45, 82, 385, 545, 554, 615], "steuert": [45, 314, 428, 496, 524, 615], "publiziert": [45, 293, 454, 615], "items_topic_prefix": [45, 615], "acl": [45, 83, 315, 615, 667, 690], "erlaub": [45, 76, 119, 169, 212, 213, 226, 289, 599, 612, 615, 634], "yet": [45, 176, 183, 211, 231, 281, 294, 352, 595, 615, 646, 655, 656, 670], "control": [45, 83, 103, 113, 160, 162, 166, 170, 173, 175, 176, 183, 190, 198, 200, 211, 216, 221, 227, 230, 233, 237, 240, 247, 248, 280, 290, 295, 301, 319, 338, 353, 368, 369, 370, 384, 415, 479, 490, 511, 545, 550, 615, 617, 623, 643, 645, 646, 649, 650, 653, 655, 665, 666, 667, 674], "published": [45, 54, 55, 298, 595, 615], "their": [45, 126, 151, 205, 227, 248, 312, 353, 359, 615, 646, 670], "prefix": [45, 55, 66, 97, 114, 134, 139, 186, 262, 292, 325, 326, 341, 385, 453, 479, 511, 615, 624, 646, 649, 650, 651, 655], "prafix": [45, 97, 111, 462, 589, 596, 615], "pathfrom": [45, 615], "building": [45, 162, 251, 278, 615, 646, 648], "verschlussel": [45, 162, 359, 429, 444, 445, 615], "encyption": [45, 615], "ca_cert": [45, 615], "pub": [45, 219, 615], "pubsub": [45, 368, 615], "zugriffskontroll": [45, 505, 615], "accesscontrol": [45, 615, 690], "abonni": [45, 595, 615], "akzepti": [45, 256, 401, 457, 615], "definert": [45, 454, 615], "publishing": [45, 63, 615, 620], "accept": [45, 127, 130, 200, 219, 301, 315, 355, 615, 646, 649, 653, 655, 663], "mod_mqtt": [45, 158, 615], "basiert": [46, 47, 200, 262, 283, 284, 310, 314, 344, 360, 367, 370, 502, 545, 558, 599, 636, 692], "kam": [46, 263, 641, 643], "initial": [46, 54, 55, 107, 115, 124, 179, 183, 221, 249, 273, 274, 277, 278, 284, 498, 499, 568, 632, 641, 643, 646, 649, 652, 653, 655, 658, 671], "asynchron": 46, "gab": [46, 642, 687], "zustand": [46, 153, 162, 187, 204, 215, 255, 293, 314, 320, 321, 323, 325, 326, 327, 328, 330, 332, 338, 412, 419, 420, 456, 508, 574, 587, 682], "Viele": [46, 80, 100], "integri": [46, 56, 92, 169, 324, 362, 687], "osen": 46, "zusammengestellt": [46, 60, 617, 637], "tread": 46, "ausserhalb": [46, 53, 77, 92, 111, 196, 373, 545, 547, 548, 550, 552, 554, 558, 596, 609, 610], "eventloop": [46, 55, 66, 618, 624, 650, 652], "gegenub": [46, 79, 83, 165, 170, 212, 213, 289, 331, 512, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "bemerk": [46, 119, 120, 121, 122, 262, 595], "parse_it": [46, 52, 54, 55, 66, 561, 623, 624, 632, 655], "pluginwrapp": 46, "situation": [46, 55, 92, 115, 232, 314, 326, 330, 331, 338, 655], "poll_devic": [46, 55, 66, 624, 649], "pool": [46, 526], "berucksicht": [46, 96, 232, 287, 306, 307, 446, 463, 599, 634, 641], "ubergang": [46, 106, 419, 420], "io": [46, 48, 210, 227, 235, 247, 261, 308, 309, 337, 371, 461, 498, 511, 533, 674, 675, 688], "blocking": [46, 221, 227, 368], "async": [46, 55, 66, 338, 498, 616, 618, 624, 652, 655, 674, 675], "co": [46, 202, 262, 291, 305, 409, 545, 550, 688], "routin": [46, 52, 58, 62, 66, 140, 141, 155, 304, 356, 357, 589, 618, 624], "herausforder": 46, "combining": 46, "traditional": [46, 301], "richtlini": 47, "smarthomehg": 47, "aufgenomm": [47, 50, 53, 82, 110, 207, 294, 370, 373, 609, 621, 652, 653, 655, 656], "umfass": [47, 85, 155, 224, 232, 304, 536, 622], "einfuhr": [47, 67, 68, 219, 671, 674], "gitimmersion": 47, "veroffentlicht": [47, 92, 363], "schnell": [47, 58, 83, 95, 106, 169, 170, 310, 329, 334, 351, 367, 381, 406, 630], "konto": [47, 164, 214, 241, 272, 349, 399], "kommandozeilenversion": 47, "softwar": [47, 52, 54, 55, 67, 68, 92, 103, 111, 167, 170, 224, 225, 278, 279, 341, 356, 357, 368, 412, 419, 420, 508, 617, 625, 628, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 668, 671, 672, 674, 675, 691], "sourcetre": 47, "atlassian": 47, "oberflach": [47, 82, 83, 93], "gegriff": [47, 67], "kostenlos": [47, 103, 314, 516, 545, 558, 688], "repositry": 47, "stattfindet": [47, 217, 423, 508, 569, 592], "featur": [47, 58, 60, 62, 67, 79, 106, 112, 118, 120, 124, 141, 160, 162, 169, 198, 211, 213, 218, 227, 251, 302, 314, 328, 330, 333, 349, 368, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 513, 514, 515, 518, 521, 526, 527, 537, 538, 545, 550, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675, 691], "gemerged": [47, 97, 394, 468], "modell": [47, 116, 165, 169, 191, 192, 201, 214, 215, 230, 244, 264, 267, 306, 307, 345, 378, 421, 422, 514, 653], "workflows": [47, 652, 653, 654, 655, 656], "hol": [47, 82, 83, 308, 309, 500, 512], "clon": [47, 73, 83, 85, 92, 221, 269, 278, 688], "Ihren": [47, 164], "checkout": [47, 73, 92, 653], "myplugin": [47, 52], "pep": [47, 130, 187, 368], "ok": [47, 86, 88, 89, 90, 139, 165, 169, 198, 251, 284, 306, 307, 315, 316, 481, 612], "fehl": [47, 53, 64, 71, 73, 83, 84, 86, 92, 103, 105, 115, 116, 120, 189, 207, 210, 230, 232, 249, 262, 295, 321, 322, 338, 351, 360, 362, 370, 382, 414, 458, 496, 522, 526, 563, 573, 593, 599, 641, 642, 649, 671, 672, 673, 674, 675, 681, 688], "e501": 47, "ignori": [47, 196, 328], "sample_pluginplugin": 47, "hauptdatei": 47, "vi": [47, 103], "qq": 47, "statistics": [47, 655], "yourcod": 47, "vim": [47, 54, 55], "ausgieb": 47, "Ihrem": [47, 164], "user_doc": [47, 48, 53, 54, 55, 64, 247, 309, 350, 373, 381, 610, 619, 621, 622, 625, 626, 645, 646, 648, 649, 651, 652, 653, 655, 671], "rst": [47, 48, 53, 54, 55, 64, 247, 309, 350, 373, 610, 619, 621, 622, 625, 626, 646, 649, 651, 652, 653, 655, 671], "befull": 47, "viplugin": 47, "docstring": [47, 654], "verseh": [47, 50, 85, 106, 260, 508, 537, 545, 548], "aufrufparamet": 47, "ruckgabewert": [47, 62, 162, 263, 316, 326, 332, 351, 360, 380, 506, 522], "unitt": [47, 652, 653, 654, 655, 656], "pull": [47, 80, 92, 191, 201, 212, 218, 238, 264, 267, 646, 652, 653], "requ": [47, 83, 133, 141, 160, 161, 162, 164, 182, 191, 198, 199, 201, 202, 218, 219, 226, 227, 234, 238, 239, 244, 254, 260, 264, 266, 267, 273, 281, 294, 301, 302, 312, 315, 335, 344, 360, 361, 365, 368, 370, 376, 383, 394, 458, 468, 495, 532, 545, 550, 612, 616, 622, 641, 646, 648, 649, 651, 652, 653, 655, 656, 688], "geg": [47, 262, 338, 416, 512, 574, 577, 641, 671, 688], "repositorys": 47, "entwicklerteam": 47, "abgeklart": 47, "maintain": [47, 53, 54, 55, 161, 191, 201, 238, 264, 267, 545, 547, 548, 550, 552, 554, 558, 610, 656], "geh": [47, 82, 86, 164, 189, 233, 276, 339, 340, 381, 519, 594, 596, 642], "aif": 47, "repo": [47, 68, 211, 321, 621], "meld": [47, 83, 103, 293], "terminal": [47, 71, 82, 90, 181, 221], "geb": [47, 52, 68, 71, 92, 93, 100, 106, 226, 272, 306, 307, 314, 331, 434, 566, 579, 597, 630, 646, 685], "entwicklungszweig": 47, "fug": [47, 62, 164], "ubernehm": [47, 58, 244, 255, 266, 314, 328, 359, 527, 566], "kommentar": [47, 62, 83, 86, 100, 123, 169, 577, 673], "commit": [47, 78, 130, 187, 646, 650, 651, 653, 655, 656, 691], "push": [47, 269, 273, 274, 290, 296, 359, 527, 545, 558, 653, 663, 665], "vergleich": [47, 53, 162, 164, 189, 192, 212, 232, 261, 325, 326, 330, 498, 499, 630, 642, 682], "glaub": [47, 622], "hauptsendezeit": 47, "mitglied": 47, "team": [47, 119, 214, 215, 219, 296, 359, 510, 612, 681], "uberpruf": [47, 62, 215, 674, 681, 688], "ausseh": [47, 61, 84, 87, 104, 106, 107, 110, 112, 113, 115, 155, 192, 200, 215, 233, 283, 284, 289, 293, 304, 331, 359, 367, 561, 590, 638, 682], "remot": [47, 141, 165, 198, 202, 205, 210, 237, 247, 248, 278, 281, 290, 440, 477, 648, 649], "origin": [47, 66, 170, 382, 624, 644], "fetch": [47, 130, 141, 641, 665], "head": [47, 55, 58, 62, 141, 156, 160, 161, 164, 165, 219, 222, 223, 230, 303, 356, 357, 360, 368, 412, 527, 612, 646, 651, 653, 656, 665, 688], "verifizierbar": 47, "signiert": [47, 359], "gpg": 47, "signier": 47, "entwicklungsumgeb": 47, "gpgsign": 47, "signingkey": 47, "xxxxxxxxxxxxxxxx": 47, "paar": [47, 85, 155, 188, 249, 261, 272, 304, 306, 307, 325, 328, 338, 347, 427, 471, 512], "kommandozeil": [47, 82, 92, 102, 165, 169, 229, 367, 377, 632, 637, 671, 677], "veroffentlich": [47, 260, 595], "versiontag": 47, "pretty": [47, 203], "xxxidxxx": 47, "ruckgang": 47, "reset": [47, 183, 185, 219, 227, 284, 395, 482, 533, 649, 652, 653, 655, 671], "hard": [47, 67, 92, 545, 548, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 688, 691], "xxxixxx": 47, "zweig": [47, 229, 573, 576], "cherry": 47, "pick": [47, 219], "atom": [47, 79, 103], "feed": [47, 234, 436, 641, 646], "current": [47, 55, 66, 71, 83, 130, 133, 136, 138, 141, 142, 145, 148, 152, 155, 173, 176, 180, 185, 186, 189, 198, 208, 227, 234, 235, 240, 254, 262, 275, 281, 288, 290, 293, 304, 305, 306, 307, 325, 328, 330, 331, 334, 337, 352, 356, 357, 368, 370, 413, 480, 507, 624, 642, 645, 646, 649, 651, 652, 654, 655, 663, 686, 688], "benutzereinstell": 47, "kern": [48, 83, 106, 111, 115, 159, 622, 693], "programmcod": [48, 53, 103, 110], "umfang": [48, 62, 64, 70, 106], "erfordernis": [48, 113], "hinzuzufug": [48, 52, 58, 92, 95, 162, 295, 306, 307, 687], "dateiformat": [48, 51, 60, 71, 100, 112, 124, 314, 679], "kommandos": [48, 62, 83, 85, 86, 181, 228, 233, 250, 302, 314, 338, 360, 381, 390, 391, 400, 408, 440, 441, 453, 464, 466, 467, 480, 504, 507, 521, 545, 548, 621, 626, 635, 642, 671, 674, 689], "nachles": [48, 83, 106, 215, 233, 562, 684], "pypa": 48, "stabl": [48, 292], "pip_install": 48, "bild": [48, 51, 56, 60, 98, 110, 178, 219, 338, 389, 462, 496, 512, 523, 527, 674], "anzuleg": [48, 85, 97, 106, 214, 329, 381, 593], "aufnimmt": [48, 94, 116, 566], "dokumentationsdatei": [48, 51, 52, 625], "developer_doc": 48, "fruh": [48, 51, 52, 53, 54, 55, 83, 92, 103, 111, 115, 262, 328, 347, 599, 625, 634, 677], "veraltet": [48, 51, 52, 53, 54, 55, 103, 106, 260, 262, 354, 396, 440, 532, 586, 610, 652, 653, 654, 655, 656, 677, 682, 689, 693], "grossteil": [48, 51, 52, 53, 54, 55, 79, 212, 238, 545, 547, 548, 550, 552, 554, 558], "ubergegang": [48, 51, 52, 53, 54, 55], "restlich": [48, 51, 52, 53, 54, 55, 86, 103, 184, 219, 268, 295], "aktualisier": [48, 51, 52, 53, 54, 55, 58, 170, 219, 243, 285, 325, 326, 332, 333, 338, 346, 347, 462, 510, 519, 688], "uberfuhrt": [48, 51, 52, 53, 54, 55, 106, 674], "uberschrift": [48, 51, 52, 60, 61, 156, 219, 303, 496, 625, 683], "MUSS": [48, 52, 58, 97, 230, 625], "short": [48, 141, 197, 198, 205, 278, 405, 652], "ident": [48, 62, 97, 116, 145, 168, 324, 347, 370, 508, 563, 572, 576, 585, 674, 688], "inkonsistent": 48, "_pv_": [48, 111], "uberarbeit": [48, 351, 671, 674], "unterstrich": [48, 100, 325, 566], "1_3_5": 48, "css": [48, 55, 56, 57, 58, 106, 161, 172, 251, 314, 353, 645, 646, 651, 655, 687], "cascading": 48, "styl": [48, 55, 56, 58, 62, 130, 170, 172, 186, 198, 234, 253, 318, 496, 523], "sheet": 48, "img": [48, 52, 54, 55, 56, 60, 166, 198, 253, 294, 625, 682], "smartplugin": [48, 52, 53, 54, 55, 59, 63, 115, 144, 147, 151, 248, 301, 312, 313, 341, 365, 618, 620, 623, 626, 641, 642, 643, 645, 646, 648, 651, 652, 653, 655, 656, 669, 670, 671, 674, 692, 693], "abgeleitet": [48, 165, 262, 329, 349, 621, 622, 687], "stattdess": [48, 53, 58, 97, 106, 123, 238, 325, 330, 338, 354, 532, 562, 603, 621, 677], "unterklass": [48, 621], "smartdeviceplugin": [48, 191, 201, 233, 238, 264, 267, 622, 626, 655, 693], "Wie": [48, 53, 58, 62, 85, 92, 94, 97, 98, 111, 116, 200, 323, 325, 326, 330, 453, 457, 513, 517, 603, 682], "command": [48, 66, 71, 113, 141, 160, 164, 169, 179, 180, 181, 183, 185, 191, 199, 200, 201, 218, 230, 231, 238, 248, 255, 258, 264, 267, 278, 279, 281, 284, 301, 304, 315, 318, 319, 330, 349, 351, 355, 356, 357, 368, 370, 400, 413, 441, 451, 456, 464, 467, 478, 521, 522, 545, 554, 618, 621, 623, 624, 626, 629, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 666, 693], "bezieht": [50, 54, 55, 56, 123, 326, 475, 573], "inklusiv": [50, 55, 56, 80, 324, 360, 525, 599, 634], "wort": [50, 97, 100, 169, 256], "phras": 50, "textteil": 50, "deklari": [50, 169, 243, 263, 324, 329, 333, 396, 475, 519], "eingeschloss": [50, 106, 285, 360, 461, 483, 561, 566, 575, 577], "_": [50, 54, 55, 58, 60, 61, 62, 151, 187, 222, 288, 313, 325, 332, 566, 585, 655, 688], "stringliteral": 50, "variabl": [50, 52, 53, 55, 56, 58, 60, 62, 66, 85, 92, 106, 121, 137, 151, 152, 160, 165, 170, 189, 228, 249, 258, 304, 312, 313, 315, 316, 320, 356, 357, 459, 577, 586, 589, 590, 591, 594, 595, 624, 632, 638, 641, 642, 645, 649, 652, 655, 671], "anfuhrungszeich": [50, 106, 112, 124, 263, 325, 326, 330, 332, 569, 577, 579, 592], "heisst": [50, 52, 53, 92, 325, 326, 329, 332, 333, 563, 614, 619, 688], "td": [50, 54, 55, 58, 60, 61, 62, 166, 170, 210, 218, 253, 294, 653], "strong": [50, 54, 55, 58, 60, 62, 170, 460], "markier": [50, 61, 314], "markup": [50, 106, 164, 368], "translat": [50, 51, 54, 55, 63, 66, 148, 151, 620, 624, 652, 655], "translated_text": 50, "mehrstuf": 50, "fundstell": [50, 260], "suchreihenfolg": 50, "folgt": [50, 52, 53, 56, 57, 58, 59, 60, 61, 62, 83, 106, 116, 155, 162, 164, 165, 169, 178, 188, 189, 192, 229, 243, 263, 272, 289, 295, 304, 306, 307, 322, 323, 326, 328, 329, 331, 351, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 565, 576, 591, 610, 678, 688], "sprachdatei": 50, "suchtreff": 50, "unverandert": [50, 96, 103, 106, 116, 162, 219, 508, 573, 576], "fehlend": [50, 79, 262, 545, 547, 548, 550, 552, 554, 558, 641, 671, 673], "dringlich": [50, 272], "vermerkt": [50, 105, 200], "uberwieg": 50, "plugin_translation": [50, 54, 55, 151], "specially": [50, 54, 55], "schliess": [50, 62, 162, 249, 328, 337], "clos": [50, 55, 127, 130, 136, 141, 162, 168, 222, 223, 227, 262, 278, 623, 645, 646, 649, 650, 652, 688], "gleichheitszeich": [50, 568, 570], "sprachcod": 50, "ferm": 50, "macht": [50, 58, 59, 69, 85, 103, 106, 154, 222, 325, 326, 330, 332, 367, 371, 481, 561, 566, 612, 615], "satz": [50, 54, 55, 106, 224, 316, 379], "unterscheidet": [50, 95, 106, 326, 434, 571], "einzufug": [50, 53, 58, 60, 62, 164, 200, 563, 603], "item_id": [50, 55, 58, 186, 187, 398], "geschweift": [50, 566, 575], "klamm": [50, 103, 106, 115, 116, 167, 326, 330, 545, 547, 548, 550, 552, 554, 558, 566, 573, 575, 590, 591, 625, 641], "leerzeich": [50, 53, 71, 83, 97, 103, 106, 112, 116, 165, 169, 230, 326, 339, 340, 566, 569, 592, 610, 682], "loschauftrag": 50, "initiiert": [50, 98, 232], "deletion": [50, 133, 137], "successfully": [50, 66, 141, 190, 227, 334, 618, 624, 653, 655], "initiated": [50, 141, 294, 356, 357, 646], "critical": [50, 76, 83, 115, 116, 243, 263, 575, 643, 646], "todo": [50, 52, 54, 55, 133, 164, 218, 232, 250, 424, 475], "flexibl": [50, 183, 229, 288, 368, 508, 655], "enocean": [50, 78, 199, 221, 545, 548, 644, 646, 649, 650, 652, 653, 654, 655, 656, 671, 674], "argument": [50, 52, 53, 54, 55, 61, 64, 130, 138, 141, 147, 186, 230, 254, 255, 256, 334, 338, 351, 360, 398, 457, 591, 592, 609, 644, 645, 649, 653, 655, 677, 681], "konfigurationsinformation": [51, 98, 545, 547, 548, 550, 552, 554, 558], "enhalt": [51, 53, 609, 642], "restructured": [51, 621, 626], "durchgang": [51, 400, 408, 435, 441, 464, 467, 617], "grund": [51, 100, 103, 106, 116, 165, 219, 232, 283, 299, 323, 325, 328, 330, 333, 369, 381, 561, 588], "englischsprach": [51, 68, 96, 373, 374, 375, 386, 387, 388, 391, 392, 393, 395, 396, 399, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 429, 433, 436, 437, 438, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 529, 532, 534, 538, 545, 547, 548, 550, 552, 554, 558], "dokuemntation": [51, 597], "googl": [51, 159, 172, 207, 215, 273, 314, 315, 316, 344, 421, 504, 516, 545, 558, 642, 646, 652, 653, 670, 674], "nutzerdokumentation": 51, "homepag": [51, 173, 230], "kurznam": [51, 52, 123, 217, 511, 517, 625], "einstiegspunkt": [51, 52, 625], "inkonsistenz": [51, 52, 625], "navigationselement": [51, 52, 625], "navigationsbaum": 51, "kategori": [51, 78, 95, 263, 305, 373, 375, 682], "navigationspanel": 51, "eim": 51, "anweis": [51, 54, 55, 59, 68, 82, 83, 103, 165, 256, 283, 401, 453, 641], "imag": [51, 52, 54, 55, 56, 79, 82, 92, 183, 185, 198, 219, 227, 228, 253, 274, 359, 370, 625, 643, 663, 674], "pictur": [51, 248, 294, 352], "beispielplugin": [52, 56, 59, 622], "komplett": [52, 54, 55, 91, 92, 116, 162, 172, 189, 212, 233, 262, 284, 289, 314, 316, 321, 328, 333, 347, 351, 362, 376, 381, 401, 462, 506, 508, 563, 573, 630], "kleinschreib": [52, 100, 106, 219, 263, 325, 331], "derzeit": [52, 60, 73, 83, 87, 92, 103, 115, 120, 165, 197, 203, 310, 313, 338, 351, 360, 362, 369, 370, 396, 401, 423, 479, 526, 536, 642], "formal": [52, 64, 106, 125, 638, 653, 671], "umfangreich": [52, 62, 83, 94, 289, 328, 590, 674], "anwendungsmog": 52, "dabgelegt": 52, "ausgeliefert": [52, 57, 103, 292, 528, 641, 671], "logo": [52, 54, 55, 60, 308, 309, 500, 545, 550, 625, 642, 644, 645, 646, 653, 655], "plugin_logo": [52, 54, 55, 60, 625], "png": [52, 54, 55, 60, 178, 198, 219, 253, 294, 295, 352, 425, 625, 653, 687], "zulass": [52, 60, 100, 106, 170, 260, 265, 310, 325, 508, 569, 575, 592], "logos": [52, 60], "jpg": [52, 55, 60, 162, 274, 338, 507, 625], "svg": [52, 56, 60, 166, 218, 219, 253, 284, 288, 294, 424, 425, 682, 683, 686, 687], "konfigurationsoption": [52, 103], "item_attribut": [52, 54, 55, 139, 170, 189, 207, 270, 271, 601, 605, 619, 626, 646, 652, 655], "item_struct": [52, 54, 55, 97, 605, 619, 626], "teilbaum": [52, 97, 532, 566, 578, 682], "logic_paramet": [52, 54, 55, 605, 619, 626], "plugin_function": [52, 54, 55, 605, 619, 626], "gateway": [52, 53, 54, 55, 78, 152, 155, 176, 207, 211, 235, 247, 304, 305, 356, 357, 371, 373, 379, 384, 386, 390, 395, 401, 402, 407, 417, 418, 419, 420, 434, 440, 447, 450, 451, 452, 453, 461, 465, 474, 475, 476, 477, 483, 489, 497, 498, 499, 504, 507, 511, 512, 521, 537, 538, 545, 563, 597, 610, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "titel": [52, 60, 106, 166, 260, 314, 338, 378, 430, 453, 469, 472, 512, 527, 536, 625], "konfigurationsparamet": [52, 83, 111, 113, 118, 119, 120, 121, 122, 625], "konfigurationsdokumentation": [52, 373, 597, 616, 625], "verwies": [52, 82, 625, 687], "samp": 52, "comment": [52, 54, 55, 88, 126, 137, 625, 652, 654, 656], "according": [52, 55, 148, 190, 260, 262, 341, 625, 643, 644, 645, 646, 647, 649, 650, 651, 691], "width": [52, 54, 55, 56, 58, 62, 162, 166, 198, 219, 227, 253, 294, 625, 649, 650, 652, 653], "300px": [52, 54, 55, 625], "scal": [52, 54, 55, 305, 306, 307, 337, 498, 499, 625], "align": [52, 54, 55, 253, 625], "plugins_doc": [52, 54, 55, 228, 233, 625, 660, 665, 666], "ersetz": [52, 54, 55, 58, 76, 82, 85, 164, 262, 272, 321, 507, 566, 586, 625, 641], "webif_tab1": [52, 55, 625], "history": [52, 54, 55, 178, 186, 218, 625, 666], "mitgeteilt": [52, 86, 117, 592], "option": [52, 54, 55, 60, 64, 71, 82, 86, 102, 103, 160, 206, 212, 217, 227, 244, 248, 255, 258, 259, 285, 318, 327, 330, 352, 434, 504, 508, 569, 592, 622, 637, 643, 645, 646, 647, 649, 651, 652, 653, 654, 655, 656, 663, 667, 670, 671, 674, 677, 681, 686, 688], "ggf": [52, 62, 92, 272, 326, 332, 351, 621, 622], "benot": [52, 62, 68, 118, 164, 167, 169, 192, 200, 328, 332, 338, 381, 622], "typisch": [52, 187, 262], "myplugin_instanc": 52, "parameter1": 52, "werf": [52, 73], "tatsach": [52, 58, 83, 115, 194, 276, 306, 307, 329, 347, 378, 381, 427, 461, 569, 592], "frei": [52, 116, 123, 263, 338, 362, 617], "anhand": [52, 56, 71, 83, 106, 115, 200, 229, 314, 326, 332], "initialisier": [52, 58, 59, 115, 164, 283, 328, 331, 347, 412, 434, 508, 522, 565, 566, 570, 591, 641, 642, 673], "N\u00e4chste": [52, 347], "verlinkt": [52, 65, 77, 223, 373], "erford": [52, 58, 59, 62, 112, 124, 194, 222, 233, 314, 326, 331, 332, 351, 369, 434, 599, 636, 678], "aufgab": [52, 86, 224, 289, 583], "angewies": [52, 103, 156, 303, 496, 524], "intervall": [52, 58, 165, 187, 188, 219, 321, 326, 332, 347, 393, 397, 400, 408, 414, 423, 431, 435, 441, 444, 464, 467, 514, 519, 522], "aufzuruf": [52, 125, 325, 396, 510, 545, 558, 573, 638], "nah": [52, 62, 88, 191, 200, 201, 238, 260, 264, 267, 306, 307], "nutzbar": [52, 84, 255, 366, 462, 479, 615, 674], "getlogg": [52, 115, 253, 638, 641], "model": [52, 54, 55, 59, 63, 66, 151, 165, 169, 170, 191, 201, 218, 227, 235, 264, 267, 285, 293, 314, 337, 341, 344, 345, 378, 419, 420, 422, 504, 516, 545, 558, 618, 620, 622, 623, 624, 643, 646, 648, 649, 653, 655, 656], "allow_multiinstanc": [52, 53, 66, 624, 669], "plugin_version": [52, 53, 54, 55, 66, 111, 123, 271, 347, 622, 624, 669], "describ": [52, 128, 160, 251, 353, 356, 357, 652], "pulled": [52, 176], "entry": [52, 55, 66, 113, 127, 136, 137, 147, 152, 164, 186, 216, 217, 260, 306, 307, 618, 624, 645, 646, 648, 649, 652, 653, 654, 655, 667], "param": [52, 54, 55, 58, 130, 139, 141, 142, 152, 155, 203, 274, 293, 304, 349, 356, 357, 622, 623, 638, 644, 646, 650], "sav": [52, 85, 135, 136, 141, 142, 149, 205, 218, 226, 227, 278, 292, 653, 655], "referenc": [52, 54, 55, 66, 126, 133, 137, 141, 160, 173, 186, 217, 247, 352, 623, 624, 645, 646, 649, 650, 652, 655], "standalon": [52, 192, 258], "likely": 52, "rely": 52, "within": [52, 54, 55, 127, 136, 137, 141, 185, 186, 199, 200, 227, 235, 236, 248, 254, 257, 262, 301, 312, 317, 365, 645, 646, 653, 655, 669], "uniqu": [52, 186, 187, 198, 200, 206, 227, 305, 352, 407, 504], "internally": [52, 142], "any": [52, 54, 55, 63, 66, 83, 87, 126, 137, 140, 141, 142, 147, 160, 161, 162, 186, 190, 205, 218, 227, 248, 260, 263, 273, 278, 344, 355, 364, 527, 618, 620, 624, 641, 645, 646, 647, 648, 649, 655, 669, 670], "initialization": [52, 54, 55, 66, 107, 115, 125, 132, 134, 137, 294, 624, 638, 645, 646, 647, 650, 651, 652, 654], "aliv": [52, 54, 55, 66, 219, 248, 356, 357, 624, 643, 645, 649, 655, 660], "initialized": [52, 54, 55, 66, 107, 115, 147, 148, 186, 347, 595, 623, 624, 645, 648, 655], "keyword": [52, 53, 54, 55, 126, 147, 168, 221, 222, 315, 352, 398, 573, 610, 623, 655, 660, 686], "decid": [52, 54, 55, 218, 623], "futur": [52, 54, 55, 142, 148, 152, 298, 364, 623, 645, 652], "adding": [52, 54, 55, 183, 218, 278, 318, 352, 623, 655, 663, 665, 666, 667], "internal": [52, 54, 55, 133, 147, 168, 202, 227, 260, 290, 335, 355, 623, 643, 646, 652, 655, 659], "array": [52, 54, 55, 141, 170, 198, 228, 253, 260, 312, 313, 335, 344, 382, 394, 455, 460, 468, 472, 510, 521, 579, 623, 648], "process": [52, 54, 55, 129, 141, 152, 160, 198, 199, 208, 623, 641, 643, 645, 646, 650, 652], "informed": [52, 54, 55], "back": [52, 54, 55, 133, 142, 149, 218, 248, 261, 288, 347, 375, 646, 649, 652, 653], "update_it": [52, 54, 55, 66, 360, 376, 618, 623, 624, 645, 646, 649, 650, 652, 656], "wher": [52, 53, 54, 55, 66, 83, 113, 126, 130, 137, 141, 142, 148, 160, 164, 186, 199, 218, 227, 262, 278, 288, 290, 294, 317, 353, 356, 357, 610, 612, 624, 641, 644, 646, 649, 650, 655, 688], "mean": [52, 54, 55, 141, 211, 221, 290, 305, 355, 643, 644, 645, 646, 649, 650, 651, 669, 691], "updated": [52, 54, 55, 66, 133, 183, 186, 187, 195, 211, 216, 218, 234, 260, 273, 341, 355, 623, 624, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 663, 675], "dest": [52, 54, 55, 66, 90, 133, 137, 147, 221, 222, 223, 263, 325, 338, 563, 573, 575, 577, 594, 623, 624, 666], "has_iattr": [52, 54, 55, 66, 624], "foo_itemtag": [52, 54, 55], "pars": [52, 54, 55, 58, 66, 98, 106, 126, 140, 143, 144, 216, 258, 263, 312, 315, 318, 361, 431, 505, 532, 545, 558, 624, 641, 645, 664], "interesting": [52, 54, 55, 641], "sending": [52, 54, 55, 179, 183, 199, 205, 231, 274, 278, 296, 301, 305, 368, 642, 645, 646, 647, 648, 654, 655, 663, 665, 666], "parse_logic": [52, 54, 55, 66, 624, 632], "toward": [52, 54, 55, 66, 623, 624], "represent": [52, 54, 55, 66, 141, 186, 202, 211, 612, 623, 624], "ws": [52, 122, 219, 360, 362, 528, 616, 617, 651, 687, 690], "run_logic": 52, "bla": [52, 325, 326, 573, 652], "auszugeb": [52, 67, 107, 164, 263, 577], "klassendefinition": 52, "klassennam": 52, "ladt": [52, 82, 115, 192, 262, 314, 462], "einricht": [52, 83, 89, 103, 162, 170, 188, 212, 213, 220, 265, 289, 293, 574, 630], "seriell": [52, 67, 192, 194, 351, 381, 393, 400, 401, 402, 403, 408, 439, 464, 467, 497, 498, 499, 509, 514, 522, 621, 622, 693], "extern": [52, 67, 77, 82, 92, 165, 204, 207, 260, 314, 328, 338, 373, 412, 563, 635], "vorbereitet": [52, 82, 89, 90], "ausgeles": [52, 53, 56, 170, 178, 232, 243, 279, 282, 306, 307, 314, 349, 351, 362, 367, 396, 401, 403, 443, 481, 482, 497, 575], "verarbeitet": [52, 58, 62, 105, 106, 219, 241, 381, 382, 577, 622, 641], "vorgabewert": [52, 287, 326, 328, 330, 331, 332, 338, 508], "klassenvariabl": 52, "einmalig": [52, 171, 200, 244, 351, 400, 408, 435, 441, 464, 467], "aufgruf": 52, "zeitpunkt": [52, 77, 102, 170, 189, 192, 225, 232, 237, 261, 262, 287, 295, 306, 307, 314, 347, 396, 516, 562, 567, 568, 569, 570, 573, 576, 577, 583, 584, 591, 592, 599, 634, 636, 671, 673], "weitergeb": 52, "empfang": [52, 58, 62, 169, 170, 223, 237, 241, 244, 293, 323, 337, 338, 369, 381, 390, 434, 440, 444, 445, 454, 466, 493, 507, 511, 512, 521, 545, 558, 595, 622, 641, 642, 671], "sichern": [52, 85, 88, 92, 102, 292], "liest": [52, 165, 289, 300, 314, 333, 393, 396, 400, 408, 434, 435, 441, 464, 467, 494, 522, 545, 550, 622], "upstair": 52, "ivalu": 52, "ad": [52, 368], "zuruckgegeb": [52, 56, 58, 62, 165, 170, 229, 316, 330, 382, 416, 434, 519, 527, 528, 563, 565, 591], "parameterwert": [52, 189, 310, 338, 443], "stringwert": [52, 112, 124], "umgewandelt": [52, 169, 367, 533, 595], "einfluss": [52, 77], "logikparamet": 52, "jalousie_up": 52, "jalousi": [52, 162, 321, 323, 324, 328, 329, 331, 508, 572], "20m": 52, "some_plugin_setting": 52, "notify": [52, 261, 269, 272, 296, 646], "feststell": [52, 232, 370], "interagi": 52, "einzuricht": [52, 306, 307, 596], "wer": [52, 53, 66, 86, 88, 92, 115, 136, 141, 184, 227, 268, 363, 370, 610, 624, 642, 643, 644, 645, 646, 649, 650, 651, 653, 655, 668, 688, 691], "zentral": [52, 224, 417, 545, 548, 554, 555, 591, 674, 682, 689], "aufruft": [52, 85, 595], "prio": [52, 66, 117, 137, 147, 216, 217, 328, 594, 600, 624], "fugt": [52, 116, 172, 563, 686], "timing": [52, 211, 646, 649], "sogenannt": [52, 62, 85, 189, 200, 338, 363, 586], "kwarg": [52, 66, 137, 147, 189, 398, 618, 623, 624, 641], "ruft": [52, 58, 62, 338, 570], "fordert": [52, 155, 304, 313], "einmalige": 52, "nd": 52, "jan": [52, 79, 104, 219, 341, 545, 558, 569, 592, 633, 657, 667], "2015": [52, 142, 273, 341], "09pm": 52, "p": [52, 54, 55, 58, 59, 60, 62, 80, 169, 170, 176, 222, 223, 231, 235, 236, 248, 254, 255, 290, 367, 433, 635, 647, 651, 688], "absturz": 52, "wertpaar": 52, "_bla": 52, "heinz": 52, "em": [52, 210, 646, 670, 674], "wertelist": [52, 575, 671], "tom": [52, 206, 545, 550], "_ndat": 52, "period": [52, 58, 117, 176, 187, 189, 192, 213, 262, 289, 291, 341, 351, 356, 357, 592, 600, 655], "verzogert": [52, 326, 328, 332, 508, 519], "zufallswert": 52, "loscht": [52, 154, 181, 189, 337, 396, 423, 508, 563, 567, 591, 612, 641], "bezeichnet": [52, 106, 446, 563], "schedulereintrag": 52, "ebene1": [52, 338], "raum4": 52, "lampe2": [52, 371], "boolesch": [52, 106, 360], "denjen": 52, "identifiziert": [52, 83, 192, 306, 307, 338, 370], "sech": [53, 192, 212, 213, 265, 289], "kompatibilitat": [53, 162], "sprachversion": 53, "vorgefertigt": [53, 189, 219, 244, 622], "paket": [53, 68, 79, 82, 86, 91, 92, 167, 170, 249, 256, 287, 306, 307, 314, 338, 434, 627, 641, 674], "bereitstell": [53, 83, 91, 159, 187, 260, 641], "funktionsaufruf": [53, 338, 347, 472], "vorgeseh": [53, 58, 62, 191, 201, 232, 264, 267], "automatisiert": [53, 117, 170, 189, 323, 434, 592, 600, 652, 653, 654, 655, 656, 688], "grafisch": [53, 79, 82, 347, 642], "konfigurationsoberflach": [53, 577], "systemat": 53, "abgeschloss": [53, 62, 80, 83, 330, 508, 628, 632], "bereitgestellt": [53, 58, 86, 92, 109, 115, 162, 178, 194, 219, 262, 279, 313, 314, 324, 329, 366, 370, 371, 375, 382, 511, 573, 581], "trotzd": [53, 77, 92, 115, 120, 314, 381], "sichergestellt": [53, 58, 106, 192, 262, 289, 360, 596, 628], "dateiversion": 53, "zueinand": 53, "verhindert": [53, 71, 84, 116, 295, 326, 332, 496, 523, 675], "validi": 53, "plugin_metadata_check": [53, 643, 644, 645, 646, 650, 654, 676], "fehlerfrei": [53, 73, 89, 92, 260], "smart": [53, 66, 160, 162, 165, 192, 195, 218, 219, 220, 257, 262, 266, 305, 306, 307, 318, 337, 362, 383, 438, 445, 458, 497, 545, 550, 610, 618, 623, 624, 641, 643, 649, 666, 681], "cloud": [53, 78, 160, 162, 163, 215, 219, 221, 229, 262, 265, 316, 346, 373, 447, 465, 545, 548, 610, 652], "classified": [53, 610], "msinn": [53, 54, 545, 548, 550, 552, 554, 558, 610], "who": [53, 54, 55, 610], "stat": [53, 54, 55, 66, 71, 83, 96, 104, 133, 137, 141, 146, 162, 186, 198, 200, 202, 208, 215, 218, 227, 235, 240, 250, 254, 255, 276, 288, 290, 291, 293, 295, 310, 321, 323, 329, 333, 338, 359, 365, 367, 368, 370, 422, 453, 456, 458, 490, 501, 508, 533, 535, 610, 618, 624, 633, 641, 643, 644, 646, 647, 648, 649, 651, 652, 653, 654, 655, 666, 681], "qa": [53, 610, 641, 681], "passed": [53, 60, 130, 147, 152, 185, 227, 248, 356, 357, 395, 610, 641, 653, 681], "applicabl": [53, 254, 370, 610, 623], "supportfor": [53, 54, 55, 170, 182, 186, 198, 218, 234, 239, 245, 253, 260, 278, 298, 301, 335, 344, 352, 353, 355, 356, 357, 364, 610, 647, 651], "multi_instanc": [53, 54, 55, 610], "restartebly": [53, 610], "unknown": [53, 54, 55, 137, 210, 257, 328, 545, 548, 610, 642, 645, 649, 650, 652, 655], "startord": [53, 610, 653], "configuration_needed": [53, 55, 610, 646], "plugin_class": [53, 610], "klassifiziert": [53, 78, 373, 610], "anbind": [53, 78, 259, 345, 373, 407, 409, 416, 418, 419, 420, 434, 436, 437, 438, 447, 452, 456, 459, 466, 470, 472, 473, 474, 479, 480, 481, 488, 502, 504, 507, 512, 521, 526, 530, 545, 548, 550, 552, 554, 555, 558, 610, 621], "dien": [53, 60, 67, 78, 83, 86, 92, 93, 96, 100, 103, 120, 153, 171, 262, 272, 291, 313, 337, 338, 359, 371, 373, 434, 470, 473, 490, 491, 545, 558, 587, 610, 627, 632, 638, 671], "ubertragungsprotokoll": [53, 373, 610], "pflegt": [53, 610], "weiterentwickelt": [53, 73, 370, 610, 641], "erklart": [53, 103, 107, 169, 610, 622], "ready": [53, 54, 55, 56, 60, 62, 173, 176, 235, 610, 641, 646, 651, 653, 655], "schlusselwort": [53, 58, 98, 241, 256, 263, 333, 610], "weiterfuhr": [53, 98, 103, 545, 547, 548, 550, 552, 554, 558, 580, 610], "gemeint": [53, 92, 610, 682], "lag": [53, 68, 107, 223, 229, 550, 551, 574, 610], "lauffah": [53, 67, 79, 83, 212, 213, 261, 265, 289, 610, 622, 674], "restartabl": [53, 54, 55, 610, 641, 647], "fahlg": [53, 610], "besond": [53, 76, 79, 85, 86, 103, 115, 116, 123, 210, 320, 323, 326, 328, 329, 332, 347, 381, 406, 561, 566, 573, 584, 586, 589, 598, 610, 630, 671], "startreihenfolg": [53, 610], "early": [53, 610, 643, 652, 653], "classpath": [53, 139, 143, 145, 610], "attributnam": [53, 326, 330, 566, 577, 602, 641], "zukunft": [53, 58, 82, 106, 191, 201, 238, 262, 264, 267, 326, 426, 427, 487, 599, 601, 602, 609, 634, 672], "attribute1": [53, 126, 601, 602], "attribute2": [53, 126, 601, 602], "duplicate_us": [53, 602, 652], "ubereinstimm": [53, 79, 169, 194, 326, 328, 332, 450, 602], "trees": [53, 97, 304, 603, 664, 689], "struct1": [53, 603], "item1": [53, 103, 188, 256, 315, 603, 641], "item2": [53, 103, 188, 256, 603, 641], "item3": [53, 188, 256, 603], "my": [53, 97, 152, 169, 189, 191, 196, 201, 218, 221, 234, 238, 253, 264, 267, 273, 274, 285, 317, 338, 347, 370, 506, 566, 573, 596, 603, 612, 667], "plg_attr1": [53, 603], "item4": [53, 603], "item_name_of_struct": [53, 603], "example_plugin": [53, 603], "ineinand": [53, 603], "referenzi": [53, 324, 329, 561, 566, 603], "redefini": [53, 603], "einles": [53, 106, 338, 440, 537, 603], "zuletzt": [53, 97, 164, 165, 237, 295, 325, 330, 347, 376, 460, 508, 519, 562, 563, 567, 591, 603], "hingeg": [53, 92, 293, 326, 330, 332, 359, 589, 603, 688], "auflos": [53, 82, 97, 187, 330, 331, 453, 561, 573, 603], "gewinn": [53, 603], "uberschreib": [53, 97, 333, 596, 603], "betreff": [53, 71, 241, 424, 425, 445, 603, 637], "reihenfolg": [53, 80, 86, 92, 97, 105, 162, 219, 241, 323, 324, 325, 326, 331, 332, 333, 577, 603, 632, 682], "verschachteln": [53, 603], "redefiniert": [53, 603], "aneinand": [53, 603], "gehangt": [53, 603], "fahig": [53, 97, 189, 212, 213, 289, 362, 603, 617, 641, 674, 689], "wahrschein": [53, 58, 71, 191, 201, 267, 325, 485, 603], "angefugt": [53, 59, 97, 527, 566, 585, 603, 682], "kennzeichn": [53, 100, 287, 563, 566, 603, 641], "bekomm": [53, 58, 71, 79, 103, 112, 162, 192, 229, 232, 262, 285, 338, 573, 603, 641], "konstant": [53, 124, 249, 487, 519, 568, 570, 595, 603, 693], "real": [53, 68, 87, 126, 160, 161, 164, 187, 193, 262, 305, 603, 650, 655, 688], "mitgegeb": [53, 58, 121, 123, 330, 588, 603], "plg_instanc": [53, 603], "benannt": [53, 124, 169, 224, 263, 326, 328, 428, 563, 585, 603, 642], "offent": [53, 187, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 597, 609, 619, 641], "aufrufbar": [53, 609], "funktionsdefinition": [53, 589, 609], "example_function": [53, 609], "funktionsparamet": [53, 62, 609], "entfallt": [53, 609, 682, 689], "funktionsnam": [53, 116, 381, 609], "umgesetzt": [54, 55, 189, 326, 339, 340, 347, 519], "anreg": [54, 55], "beispieldatei": [54, 55, 87, 103], "beispieldokumentation": [54, 55], "development": [54, 55, 66, 107, 114, 115, 121, 176, 198, 239, 280, 618, 624, 642, 644, 645, 646, 651, 653, 668, 681], "iot": [54, 55, 218, 219, 424, 425], "thes": [54, 55, 137, 141, 149, 150, 152, 160, 173, 186, 195, 221, 234, 240, 248, 253, 257, 260, 282, 294, 305, 334, 344, 352, 353, 356, 357, 365, 370, 643, 644, 645, 646, 649, 650, 651, 655, 691], "max": [54, 55, 88, 133, 155, 161, 186, 187, 189, 200, 203, 207, 221, 235, 239, 262, 281, 287, 292, 294, 304, 308, 309, 317, 325, 329, 330, 338, 356, 357, 361, 398, 462, 506, 510, 573, 632, 642, 646, 650, 651, 671, 688], "quot": [54, 55, 106, 126, 152, 189, 398, 575, 577], "interpreted": [54, 55, 290, 643, 655], "omit": [54, 55, 160, 186], "stopping": [54, 55, 646], "starting": [54, 55, 83, 84, 104, 126, 140, 143, 147, 190, 200, 211, 234, 257, 315, 318, 355, 436, 633, 643, 646, 649, 652, 655], "sampleplugin": [54, 55, 58], "toggl": [54, 55, 137, 170, 198, 200, 247, 338, 406, 407], "execution": [54, 55, 71, 130, 147, 180, 221, 269, 288, 292, 646, 655], "wanted": [54, 55, 281, 288], "pause_it": [54, 55, 338], "controlling": [54, 55, 645, 651], "encoding": [54, 55, 107, 115, 116, 136, 141, 169, 170, 188, 263, 322, 583, 585, 647, 648, 666], "utf": [54, 55, 62, 71, 82, 83, 103, 164, 170, 310, 376, 445, 655, 666], "tabstop": [54, 55], "softtabstop": [54, 55], "shiftwidth": [54, 55], "expandtab": [54, 55], "copyright": [54, 55, 182, 344, 352, 353, 355, 356, 357, 646], "2020": [54, 55, 68, 79, 104, 107, 115, 184, 187, 268, 270, 271, 312, 313, 360, 633, 646, 647, 648, 649, 650, 657, 682], "author": [54, 55, 176, 190, 208, 298, 372, 670], "new": [54, 55, 56, 68, 71, 129, 130, 136, 137, 141, 149, 150, 151, 152, 170, 180, 181, 183, 185, 186, 195, 198, 200, 216, 218, 227, 234, 239, 251, 254, 273, 274, 288, 296, 297, 298, 301, 315, 338, 341, 353, 356, 357, 395, 612, 616, 623, 647, 652, 653, 654, 655, 656, 659, 660, 663, 664, 668, 688], "upward": [54, 650], "free": [54, 55, 218, 239, 251, 273, 274, 344, 364, 365, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "redistribut": [54, 55], "modify": [54, 55, 149, 355, 655], "term": [54, 55, 79], "gnu": [54, 55], "general": [54, 55, 169, 171, 190, 191, 253, 262, 264, 267, 295, 296, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 353, 358, 646, 649, 653], "public": [54, 55, 148, 161, 310, 311, 368, 641, 646, 653, 688], "licens": [54, 55, 172, 182, 227, 251, 311], "foundation": [54, 55], "eith": [54, 55, 127, 133, 136, 142, 147, 160, 227, 281, 294, 359], "distributed": [54, 55], "hop": [54, 55, 288, 663], "useful": [54, 55, 138, 141, 183, 186, 205, 247, 248, 305, 650, 652], "but": [54, 55, 66, 87, 107, 115, 129, 141, 146, 152, 160, 162, 183, 186, 208, 218, 227, 234, 247, 274, 278, 288, 294, 312, 318, 352, 355, 368, 512, 624, 643, 644, 645, 646, 649, 650, 651, 653, 668, 686, 691], "warranty": [54, 55, 195], "even": [54, 55, 126, 161, 211, 221, 231, 257, 278, 301, 341, 365, 645, 646, 648, 649, 650, 652, 655, 668], "implied": [54, 55], "merchantability": [54, 55], "fitness": [54, 55], "particular": [54, 55, 142], "purpos": [54, 55, 107, 115, 141, 160, 251, 645, 646, 648], "see": [54, 55, 136, 141, 142, 148, 152, 160, 173, 176, 180, 182, 183, 186, 195, 198, 199, 205, 206, 218, 221, 232, 251, 253, 257, 260, 273, 275, 278, 280, 281, 294, 305, 315, 341, 344, 350, 361, 365, 368, 370, 650, 651, 652, 653, 659, 663, 664], "mor": [54, 55, 60, 63, 66, 136, 137, 148, 152, 176, 186, 193, 198, 205, 211, 216, 221, 222, 227, 231, 248, 258, 260, 262, 278, 288, 294, 296, 298, 301, 305, 315, 344, 361, 364, 620, 624, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 659, 663, 669, 670, 677], "along": [54, 55], "imported": [54, 55, 653], "might": [54, 55, 58, 113, 162, 193, 218, 227, 280, 294, 649, 650, 655], "samplemqttplugin": 54, "stuff": [54, 55, 218, 234, 646], "initaliz": [54, 55], "get_sh": [54, 55, 66, 624, 649], "almost": [54, 55, 312, 653, 655], "way": [54, 55, 66, 127, 132, 134, 137, 140, 141, 143, 144, 146, 147, 148, 160, 183, 234, 240, 247, 248, 258, 262, 288, 290, 312, 335, 352, 355, 595, 624, 644, 646, 650, 655, 686], "getting": [54, 55, 195, 257, 562, 612, 646, 649, 650, 655], "get_parameter_valu": [54, 55, 60, 66, 624, 644, 645, 655], "parameter_nam": [54, 55, 66, 592, 624], "anywh": [54, 55], "sup": [54, 55, 66, 624, 645, 651, 653, 655], "uncomment": [54, 55], "_pause_item_path": [54, 55], "goes": [54, 55, 149, 645], "_init_complet": [54, 55], "init_webinterfac": [54, 55, 59, 66, 624, 645, 655], "dbghigh": [54, 55, 115, 651, 653], "_pause_it": [54, 55], "get_fullnam": [54, 55, 66, 624, 655], "subscription": [54, 63, 227, 595, 620, 645, 647, 653], "topics": [54, 63, 121, 223, 479, 595, 620, 645, 674], "start_subscription": [54, 63, 620, 621], "scheduler_remove_all": [54, 55, 66, 624], "stop_subscription": [54, 63, 620, 621], "updating": [54, 55, 66, 254, 255, 329, 341, 623, 624, 646, 653], "foo_itemid": 54, "relay": [54, 337, 489, 511, 646, 655], "mqtt_id": 54, "get_iattr_valu": [54, 66, 624, 646], "upp": [54, 133, 142, 211, 352, 574], "shelli": [54, 292], "shellyplug": [54, 292, 293, 489, 645], "add_subscription": [54, 63, 620, 621], "on_mqtt_messag": 54, "changed": [54, 55, 66, 87, 107, 115, 133, 183, 185, 187, 205, 211, 218, 227, 234, 240, 247, 248, 257, 263, 273, 278, 290, 294, 355, 356, 357, 365, 395, 589, 623, 624, 642, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 663, 667, 670], "shall": [54, 199, 245, 278, 653], "been": [54, 55, 63, 66, 133, 135, 139, 141, 186, 190, 211, 218, 227, 248, 294, 298, 315, 317, 356, 357, 618, 620, 623, 624, 643, 644, 645, 646, 647, 649, 650, 651, 653, 655, 656, 670, 691], "managed": [54, 55, 66, 623, 624], "execut": [54, 55, 130, 152, 186, 205, 227, 254, 294, 330, 368, 643, 648, 650], "stopped": [54, 55, 66, 200, 294, 479, 618, 624, 653], "outsid": [54, 55, 97, 162, 186, 260, 261, 317, 521, 646, 651, 653, 655], "funf": [54, 55, 104, 169, 633], "inhaltsblock": [54, 55], "befullt": [54, 55, 58, 62, 92, 102, 192, 330, 642], "kopfdat": [54, 55], "headtabl": [54, 55, 58, 62, 653, 654, 655], "hauptteil": [54, 55], "bodytab1": [54, 55, 58, 60, 62], "bodytab2": [54, 55], "bodytab3": [54, 55], "bodytab4": [54, 55], "bodytab": [54, 55, 58, 62, 651, 655, 656], "tabcount": [54, 55, 60], "base_plugin": [54, 55, 655, 656], "logo_fram": [54, 55], "update_interval": [54, 55, 58, 653], "millisecond": [54, 55, 152], "periodic": [54, 55, 643, 646], "additional": [54, 55, 107, 113, 115, 116, 141, 151, 176, 180, 183, 195, 202, 205, 218, 262, 331, 352, 353, 355, 356, 357, 365, 623, 645, 646, 647, 649, 651, 652, 653, 654, 655], "script": [54, 55, 56, 57, 58, 60, 62, 205, 251, 263, 278, 321, 337, 353, 644, 653, 655], "javascript": [54, 55, 85, 106, 151, 161, 312, 313, 353, 649, 653, 687, 690], "go": [54, 55, 164, 206, 218, 248, 257, 296], "pluginscript": [54, 55, 56, 58, 60, 62], "document": [54, 55, 56, 58, 60, 62, 334, 365], "datatabl": [54, 55, 57, 58, 60, 646, 649, 650, 651, 652, 653, 654, 655, 656], "js": [54, 55, 56, 57, 58, 60, 160, 172, 251, 314, 353, 356, 357, 496, 524, 646, 649, 651, 655, 670, 690], "renam": [54, 55, 317, 646, 649, 655], "bind": [54, 55, 221, 222, 256, 288, 329], "datatables_default": [54, 55, 60], "behaviour": [54, 55, 60, 133, 211, 355, 645, 650, 655], "cours": [54, 55], "overwrit": [54, 55, 130, 623, 677], "putting": [54, 55, 222, 653], "declaration": [54, 55, 647, 652, 655], "pagelength": [54, 60, 653, 655], "pageresiz": [54, 57, 651, 652, 655], "included": [54, 55, 227, 274, 305, 352, 370, 653, 655], "maintabl": [54, 55, 58, 60, 61, 62], "columndef": [54, 55, 58], "hiding": [54, 55], "column": [54, 55, 186, 187, 645, 648, 652, 653, 655], "concat": [54, 55, 58], "target": [54, 55, 58, 84, 89, 90, 147, 273, 368, 630], "fn": [54, 55, 58, 169], "catch": [54, 55, 60, 195, 641, 646, 648, 649, 652, 653, 654, 655, 656], "consol": [54, 55, 60, 82, 107, 115, 116, 160, 162, 199, 646, 653, 655], "warn": [54, 55, 368, 641, 653], "showing": [54, 55, 60, 227, 280, 646, 649, 653], "reord": [54, 55, 60], "handleupdateddata": [54, 55], "respons": [54, 55, 58, 62, 141, 169, 218, 219, 227, 356, 357, 394, 407, 468, 646, 648, 649, 650, 651, 652, 655, 667], "dataset": [54, 55], "null": [54, 55, 58, 88, 92, 129, 165, 187, 244, 654], "devices_info": [54, 55, 58], "objrespons": [54, 55, 58], "json": [54, 55, 58, 62, 85, 104, 106, 133, 141, 160, 161, 162, 164, 178, 184, 203, 208, 219, 227, 229, 234, 268, 349, 356, 357, 360, 365, 368, 370, 431, 436, 462, 472, 496, 511, 525, 545, 550, 558, 599, 622, 633, 641, 646, 647, 649, 651, 655, 656, 670, 672], "myproto": [54, 55], "getelementbyid": [54, 55, 56, 58], "shnginserttext": [54, 55, 58, 62, 651], "_sourc": 54, "_powerstat": 54, "powerstat": [54, 162, 198, 266, 276, 384, 466], "draw": [54, 55, 58], "endblock": [54, 55, 56, 58, 60, 62, 314], "striped": [54, 55, 58, 61, 62], "hov": [54, 55, 58, 61, 62], "tbody": [54, 55, 58, 60, 61, 62], "tr": [54, 55, 58, 60, 61, 62, 71, 166, 180, 181, 253, 294, 382, 655, 660, 674], "prompt": [54, 55, 646], "nein": [54, 55, 71, 219, 255, 338, 406], "endif": [54, 55, 56, 60, 353], "50px": [54, 55], "div": [54, 55, 56, 60, 61, 78, 166, 253, 294, 314, 644, 651, 653, 655], "btn1": [54, 55], "btn": [54, 55, 62], "sm": [54, 55, 62, 210, 211], "scan": [54, 55, 58, 62, 164, 297, 492], "onclick": [54, 55, 56, 62], "shngpost": [54, 55], "learn": [54, 55, 112, 124, 199, 296, 649], "fas": [54, 55, 137], "fa": [54, 55], "question": [54, 55, 152, 160, 161, 205, 227, 338], "nbsp": [54, 55, 166], "body": [54, 55, 142, 150, 161, 170, 227, 362, 368, 612], "visibl": [54, 55, 160, 651], "anoth": [54, 55, 126, 129, 132, 134, 160, 161, 185, 227, 273, 296, 304, 356, 357, 365, 368, 395, 647, 651, 655], "item_count": [54, 55, 60, 134], "start_tab": [54, 55, 60], "tab1titl": [54, 55, 60], "mb": [54, 60, 653], "datatableadditional": [54, 55, 58, 60, 61, 651, 655], "thead": [54, 55, 58, 60, 61, 62], "th": [54, 55, 58, 60, 61, 62, 104, 139, 149, 210, 347, 520, 545, 558, 643, 653, 655], "mqtt_topic_in": 54, "mqtt_topic_out": 54, "_path": [54, 55, 58, 60, 61], "_typ": [54, 58, 60, 61], "_valu": [54, 55, 58, 62, 223, 224, 655], "br": [54, 198, 294, 460, 682, 683, 688], "_last_updat": 54, "last_updat": [54, 133, 297, 360, 492, 562, 567, 591, 667], "strftim": [54, 56, 164, 184, 253, 262, 268, 330, 338], "_last_chang": 54, "last_chang": [54, 133, 355, 360, 562, 567, 571, 577, 591, 641, 667], "endfor": [54, 55, 58, 60, 61, 62], "etwaig": [54, 55, 58, 189, 191, 196, 201, 264, 267, 295, 326, 330, 331, 332, 333, 347, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "tab2titl": [54, 55], "device_count": [54, 55], "third": [54, 55, 243, 288, 315, 659], "titl": [54, 55, 161, 166, 169, 178, 206, 228, 250, 359, 453, 612, 645, 651, 655, 665], "tab3titl": [54, 55], "fourth": [54, 55, 243, 315], "tab4titl": [54, 55], "long": [54, 55, 66, 79, 142, 176, 179, 208, 219, 227, 251, 278, 317, 624, 643, 646, 647, 649, 653, 655, 656, 663, 670], "skizziert": [54, 55, 688], "mindestumfang": [54, 55], "demo": 55, "demonstration": 55, "value2": [55, 106, 563], "value1": [55, 106, 563], "value3": [55, 106], "value4": [55, 106], "value5": 55, "gultigkeitslist": 55, "valid": [55, 126, 132, 133, 139, 149, 152, 170, 177, 179, 205, 211, 227, 262, 278, 288, 312, 314, 352, 355, 370, 413, 508, 623, 646, 647, 649, 652, 655, 656, 681], "param3": 55, "item_attribute_prefix": [55, 139, 605, 619, 626, 647], "common": [55, 122, 227, 253, 301, 612, 649], "ommit": 55, "really": 55, "nessesary": 55, "stateengin": [55, 67, 78, 97, 111, 116, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 545, 554, 601, 638, 641, 642, 643, 645, 646, 647, 648, 649, 650, 652, 653, 655, 656], "asyncio": [55, 66, 624, 626, 646, 652, 656, 692], "hint": [55, 72, 86, 169, 247, 259, 321, 326, 330, 332, 368, 472, 545, 547, 548, 550, 552, 554, 558, 573, 585, 648, 681], "properti": [55, 133, 134, 144, 145, 162, 227, 305, 330, 349, 355, 562, 564, 573, 641, 643, 646, 652], "already": [55, 66, 71, 107, 115, 129, 130, 136, 137, 148, 186, 217, 243, 257, 278, 294, 623, 624, 643, 644, 645, 646, 647, 649, 650, 651, 691], "polled": [55, 655], "mayb": [55, 227, 240, 288, 290, 334, 650], "_cycl": [55, 649], "connect": [55, 71, 83, 111, 127, 130, 141, 175, 183, 186, 208, 215, 218, 219, 235, 236, 248, 254, 257, 278, 281, 283, 284, 292, 297, 345, 350, 355, 368, 411, 416, 424, 425, 482, 538, 545, 550, 558, 623, 643, 645, 646, 650, 654, 655], "serial": [55, 87, 155, 183, 192, 193, 200, 206, 218, 227, 235, 281, 298, 304, 305, 334, 341, 356, 357, 384, 422, 479, 533, 622, 623, 646, 655, 656, 688], "forget": [55, 288], "disconnect": [55, 141, 297, 623, 645, 649], "poll": [55, 66, 127, 213, 244, 341, 382, 478, 479, 624, 646, 652, 655, 666, 670, 674], "loop": [55, 66, 227, 618, 623, 624, 646, 648, 652, 655, 660], "remb": 55, "scheduler_add": [55, 66, 137, 594, 624, 643, 645, 655], "_poll": 55, "start_asyncio": [55, 66, 618, 624], "plugin_coro": [55, 66, 618, 624], "coroutin": [55, 66, 618, 624], "them": [55, 66, 136, 166, 186, 218, 227, 231, 240, 245, 251, 253, 257, 288, 294, 296, 301, 312, 314, 562, 618, 624, 631, 652, 655], "shutdown": [55, 186, 243, 645, 649, 650, 652, 653, 654, 655, 660, 671], "properly": [55, 133, 141, 193, 262, 278, 646], "bug": [55, 162, 205, 227, 249, 334, 359, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 675], "Also": [55, 87, 92, 102, 123, 169, 186, 226, 257, 260, 278, 577, 579, 596], "restarted": [55, 186, 646], "stop_asyncio": [55, 66, 618, 624], "rememb": [55, 138, 240, 248], "clean": [55, 71, 136, 140, 141, 180, 190, 281, 645, 646, 650, 653, 655, 660, 666], "anything": [55, 221, 294, 666], "cleanly": 55, "_itemlist": 55, "append": [55, 60, 133, 170, 180, 288, 563], "comparing": [55, 66, 624], "fullnam": [55, 612], "callerinfo": [55, 66, 624], "propagat": 55, "device_valu": 55, "simpl": [55, 90, 115, 130, 152, 160, 161, 186, 200, 273, 274, 275, 288, 297, 504, 643, 659, 665, 688], "receiv": [55, 63, 66, 107, 115, 169, 198, 199, 205, 231, 247, 248, 274, 368, 369, 370, 381, 400, 406, 433, 440, 467, 535, 545, 550, 620, 624, 646, 649, 652, 655, 663, 669, 671], "several": [55, 231, 278, 281, 301, 353, 645, 653, 654, 655, 663], "external": [55, 141, 152, 186, 227, 230, 293, 368, 649, 655, 670], "device_source_id": 55, "plugintask": 55, "terminat": [55, 66, 618, 624, 655], "finished": [55, 66, 107, 115, 125, 141, 272, 329, 618, 624, 638, 650], "heavy": 55, "interval": [55, 58, 136, 186, 206, 227, 234, 245, 297, 317, 341, 347, 514, 569, 585, 592, 652, 655], "200": [55, 79, 112, 141, 168, 170, 189, 195, 196, 229, 329, 334, 349, 380, 382, 422, 651], "log_array": 55, "length": [55, 66, 136, 148, 624, 643, 650, 653, 655], "update_param": [55, 58], "auto": [55, 58, 71, 133, 141, 162, 260, 270, 271, 352, 353, 375, 449, 453, 479, 643, 647, 649, 651, 652, 653, 655], "completely": [55, 183, 186, 198, 298, 646], "refresh": [55, 58, 253, 349, 376, 521, 645, 651, 652, 653, 655, 674], "autorefresh_button": [55, 58], "reload_button": [55, 58], "close_button": [55, 58], "know": [55, 186, 227, 234, 290, 297, 305, 312, 317, 512], "rows": [55, 58, 130, 651], "activat": [55, 58, 68, 162, 205, 227, 247, 334, 347, 420, 538, 612, 646, 652, 666, 670, 688], "increas": [55, 169, 247, 278, 335, 645, 652, 653, 655], "performanc": [55, 211, 221, 227, 643, 649], "row_count": [55, 58], "retrieved": [55, 66, 260, 305, 315, 624], "beginning": [55, 133, 136, 148, 227, 646], "initial_updat": [55, 58], "pluginstyl": [55, 56, 58], "100px": [55, 58], "highligt": 55, "effect": [55, 57, 164, 211, 212, 213, 290, 419, 420, 648, 651], "color": [55, 58, 71, 170, 200, 211, 219, 247, 253, 337, 382, 649, 651, 652, 655], "shng_effect_highlight": [55, 58], "background": [55, 58, 253, 278], "ffffe0": [55, 58], "shng_effect_standard": [55, 58], "cell": [55, 651], "visual": [55, 103, 342], "highlight": [55, 58, 651], "duration": [55, 133, 148, 170, 187, 250, 260, 329, 344, 382, 453, 460, 645, 646, 655, 670], "redraw": 55, "resorting": 55, "table_id": [55, 60], "tooltips": [55, 57, 650, 655], "tooltip": [55, 56, 347], "const": [55, 56], "tooltiplist": [55, 56], "Nach": [55, 58, 71, 77, 82, 83, 84, 87, 106, 155, 164, 169, 187, 200, 212, 213, 220, 233, 237, 244, 255, 304, 314, 328, 330, 331, 338, 349, 369, 508, 512, 561, 569, 573, 576, 592, 652, 688], "createtooltips": [55, 56, 655], "cooki": [55, 122, 141, 376, 545, 558, 644, 655, 656, 688], "sort_ord": [55, 56], "resepctiv": 55, "ord": [55, 56, 151, 162, 185, 206, 254, 294, 297, 315, 326, 332, 335, 342, 368, 395, 643, 646, 647, 652, 653, 655, 682], "getcooki": [55, 56], "desc": [55, 56, 304, 356, 357], "click": [55, 56, 62, 119, 164, 274, 612, 646, 653, 655], "deactivated": [55, 58, 257], "12th": [55, 58, 639], "decemb": [55, 58, 127], "sens": [55, 58, 165], "today": [55, 58, 148, 217, 234, 262, 294, 311, 599, 634], "today_dat": [55, 58], "getdat": [55, 56, 58], "getmonth": [55, 56, 58], "getfullyear": [55, 56, 58], "test_dat": [55, 58], "12122022": [55, 58], "specialit": [55, 58, 325, 326], "2000": [55, 58, 207, 211, 337, 622], "update_activ": [55, 58], "px": 55, "responsiv": [55, 58, 60, 62, 85, 651, 652, 653, 654, 655], "setcooki": [55, 56], "365": [55, 56, 122, 389, 688], "accordingly": [55, 211, 646, 653, 655], "correct": [55, 149, 185, 195, 202, 206, 227, 248, 646, 649, 651, 652, 653, 654, 655], "plugin_attribut": [55, 134], "ui": [56, 57, 58, 170, 198, 234, 244, 436, 545, 550, 655], "plugindat": 56, "erganzt": [56, 58, 62, 102, 123, 162, 170, 207, 219, 261, 262, 328, 329, 351, 381, 591, 621, 626, 638, 641, 671, 687], "templateengin": 56, "gerendert": [56, 219], "standardtemplat": 56, "kopfteil": 56, "ober": [56, 60, 97, 188, 200, 263, 496, 523, 569, 575, 577, 592, 682, 686], "rand": [56, 686], "webseit": [56, 58, 61, 62, 85, 111, 120, 164, 184, 229, 261, 268, 279, 313, 424, 425, 455, 599], "popp": [56, 57, 251, 352, 353, 355, 356, 357, 649, 655], "zehn": [56, 162, 585], "ansprech": [56, 589], "auszustatt": 56, "codezeil": [56, 58, 622], "dauerhaft": [56, 232, 461], "angebot": [56, 77, 82], "cookienam": 56, "cookiewert": 56, "speicher": [56, 192, 220, 426, 427, 428, 545, 554], "beispielhaft": [56, 62, 192, 200, 215, 261, 359], "alpha": [56, 164, 643], "asc": 56, "sortierfunktion": [56, 641], "heiss": [56, 82, 169, 189, 325], "sort": [56, 136], "eingefarbt": [56, 232], "20px": 56, "bord": 56, "padding": [56, 253], "margin": [56, 253, 653], "bottom": 56, "5px": [56, 253], "invert": [56, 107, 115, 116, 137, 138, 229, 297, 312, 313, 436, 492, 545, 550, 583, 645, 649, 653], "sepia": 56, "saturat": 56, "6481": 56, "rotat": 56, "246deg": 56, "brightness": [56, 200, 211, 213, 247, 323, 337, 646], "102": [56, 155, 239, 288, 304, 308, 309, 312, 313, 356, 357, 365, 442], "contrast": 56, "143": [56, 444], "alpha_asc": 56, "alpha_desc": 56, "eventlist": 56, "reagiert": [56, 83, 302, 338, 407, 451, 671, 689], "addeventlist": 56, "samtlich": [56, 82, 83, 116, 169, 191, 201, 243, 244, 263, 264, 267, 319, 320, 322, 325, 328, 330, 338, 346, 347, 507, 569, 575, 592, 671], "entfernt": [56, 95, 103, 106, 162, 302, 326, 332, 354, 396, 453, 506, 563, 566, 635, 641, 652, 653, 654, 655, 656, 677, 682], "classlist": 56, "geklickt": [56, 71, 83, 96, 187, 226, 292], "inputelement": 56, "src": [56, 57, 166, 198, 251, 253, 288, 294, 353, 628], "bootstrap": [56, 57, 251, 641, 646, 649, 655, 674, 675], "datepick": [56, 57, 251, 643, 649, 655, 674], "kalendertag": 56, "auszuwahl": [56, 369, 431], "initialisi": [56, 58, 210, 382], "autoclos": 56, "todayhighlight": 56, "todaybtn": 56, "linked": [56, 273, 646, 650], "enddat": 56, "sobald": [56, 117, 121, 169, 188, 217, 219, 237, 323, 324, 325, 330, 333, 347, 381, 423, 508, 573, 592, 600, 628, 688], "eruiert": [56, 169, 325, 326, 330, 332, 367], "changedat": 56, "interaktion": [56, 373], "erweit": [56, 67, 76, 98, 111, 116, 159, 219, 241, 328, 333, 373, 554, 555, 611], "drittanbiet": [56, 103, 224], "drittanbieterkomponent": 57, "jquery": [57, 58, 251, 649, 655, 662, 663, 665, 674], "rel": [57, 251, 338], "stylesheet": [57, 251], "href": [57, 161, 170, 198, 251], "incl": [57, 218, 260, 289, 335, 396, 646, 649, 655, 656, 670, 674, 691], "view": [57, 219, 251, 345, 352, 646, 649, 655, 665, 669, 674], "treeview": [57, 251, 674], "dist": [57, 335, 439, 510], "popper_function": 57, "codemirror": [57, 251, 653, 671, 674], "46": [57, 251], "font": [57, 170, 251, 253, 641, 649, 674], "awesom": [57, 251, 641, 649, 674], "fontawesom": [57, 251], "jederzeit": [57, 115, 260, 328, 370, 376], "lizenz": [57, 224], "sendet": [58, 111, 155, 164, 165, 167, 169, 170, 192, 194, 232, 237, 256, 293, 304, 306, 307, 337, 338, 369, 376, 379, 382, 400, 406, 420, 425, 434, 440, 441, 453, 464, 467, 472, 480, 512, 527, 531, 545, 548, 599], "ajax": [58, 62, 234, 351, 643], "millisekund": [58, 469], "zusammenstellt": 58, "zuruckgibt": 58, "smartpluginwebif": [58, 62, 151], "webif_dir": [58, 62, 612], "webpag": [58, 312, 342], "mechanism": [58, 218, 646, 653, 656], "overview": [58, 161, 288, 352, 496, 523, 643, 645, 649, 655, 686], "_webdata": 58, "dumps": [58, 62, 203, 317, 645], "fromip": [58, 62], "getitemvalu": 58, "zykl": [58, 210, 233, 570], "anspruch": [58, 96, 293], "anzuford": 58, "600px": [58, 62], "scann": [58, 62, 378, 384], "datenzeil": [58, 409], "rend": [58, 59, 60, 62], "schleif": [58, 62], "wertetabell": [58, 62], "schleifenvariabl": 58, "datentabell": [58, 62], "zell": 58, "vermied": [58, 100], "Jetzt": [58, 62, 71, 82, 83, 86, 92, 189, 262, 328, 630, 673, 682], "adaption": [58, 312, 653], "einwandfrei": [58, 262], "elementar": 58, "saub": [58, 71], "exakt": [58, 92, 325, 330, 347, 490, 519], "anfang": [58, 87, 96, 97, 106, 178, 287, 316, 354, 563, 598, 601], "passiert": [58, 71, 92, 115, 232, 321, 325, 331, 333, 462, 561, 572, 573], "fuhr": [58, 67, 97, 100, 170, 189, 263, 328, 458, 508, 573, 576, 641, 649, 671, 672, 674, 675], "regelmass": [58, 73, 187, 188, 321, 400, 408, 434, 435, 441, 464, 467, 570, 577, 632], "vorgestellt": [58, 328, 585], "obligator": [58, 362], "tabellenzell": [58, 62], "schreibend": [58, 255, 314, 349, 443, 470, 489, 511, 522, 537], "effekt": [58, 262, 314], "laut": [58, 92, 165, 196, 213, 314, 328, 331, 561, 591, 641], "aktualisert": [58, 423], "erwahnt": [58, 154, 200, 323, 612], "durchsuchbar": [58, 641], "sortier": [58, 508], "erkannt": [58, 92, 164, 166, 170, 196, 219, 244, 261, 263, 295, 316, 378, 381, 561, 674], "mitzugeb": [58, 97], "skaliert": 58, "va": [58, 115, 235, 236], "unerwunscht": [58, 583], "insof": [58, 328, 330], "empfehlenswert": [58, 106, 321, 354], "vorzugeb": 58, "40px": 58, "zuzuweis": [58, 188, 261, 306, 307, 332, 337, 573, 591, 672], "bess": [58, 67, 79, 94, 106, 115, 219, 262, 351, 565, 589, 591, 593, 641, 642, 671], "ansatz": [58, 68, 92], "erwartungsgemass": 58, "ausklappbar": [58, 496], "informationszeil": 58, "auszuseh": 58, "intern": [58, 165, 181, 207, 232, 262, 293, 329, 337, 375, 382, 389, 401, 423, 425, 434, 446, 447, 463, 490, 514, 519, 596, 641], "nummerier": [58, 412], "tabellenspalt": [58, 62], "manch": [58, 314, 321, 359, 382, 401], "durchgefuhrt": [58, 59, 64, 82, 83, 92, 93, 102, 112, 162, 165, 169, 282, 292, 331, 332, 349, 381, 508, 565, 573, 591, 632, 652, 653, 654, 655, 656], "commandos": 58, "evaluiert": [58, 115, 169, 321, 323, 324, 326, 328, 332, 381, 508, 575], "sanft": [58, 519], "eingeblendet": [58, 314], "gecheckt": 58, "isdatatabl": 58, "table_to_updat": 58, "row": [58, 62, 130, 222, 223, 643, 653, 655], "beispielfall": 58, "eq": 58, "abschliess": [58, 215, 260, 328], "dank": [58, 162, 188, 219], "farblich": [58, 295], "gezeichnet": 58, "newrow": 58, "nod": [58, 122, 149, 160, 214, 248, 276, 379, 538, 643, 655], "_row": 58, "attr": [58, 66, 126, 133, 149, 192, 193, 194, 219, 261, 337, 624, 655, 656, 688], "farbig": 58, "hervorgehob": 58, "switchclass": 58, "sorg": [58, 263, 329, 381, 571, 685], "vorig": [58, 295, 325, 330, 333, 381, 508], "templatedatei": 58, "item_detail": [58, 649], "via": [58, 62, 66, 85, 88, 92, 98, 102, 141, 152, 160, 162, 163, 164, 170, 182, 185, 193, 199, 201, 208, 211, 219, 221, 227, 230, 234, 235, 236, 238, 244, 248, 253, 254, 255, 256, 257, 258, 260, 262, 280, 292, 298, 301, 305, 328, 329, 344, 347, 349, 352, 355, 356, 357, 360, 367, 368, 371, 374, 375, 376, 382, 392, 401, 406, 423, 434, 440, 444, 445, 452, 475, 479, 497, 499, 516, 521, 528, 534, 535, 545, 548, 550, 558, 573, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 669, 670, 671, 674, 686, 688], "genug": [58, 92, 295, 328], "ca": [58, 60, 98, 219, 365, 394, 468, 524, 527, 649, 688], "ms": [58, 131, 199, 261, 412], "5000": [58, 201, 323, 408, 574, 612], "datenintensiv": 58, "sinn": [58, 69, 103, 238, 321, 325, 326, 330, 332, 352, 353, 355, 356, 357, 367, 561], "datensatz": [58, 165, 187, 189, 229, 306, 307, 360, 379, 431, 493, 641], "festzuleg": [58, 112, 226, 232, 256, 321, 326, 327, 575, 577, 592], "optimal": [58, 191, 201, 264, 267], "updateintervall": 58, "kopfbereich": [58, 187], "adaptier": 58, "vereinfacht": [58, 92, 212, 213, 219, 229, 265, 289, 321, 325, 326, 330, 351, 566, 589], "entnomm": [58, 111, 265, 314, 594, 622], "anzeigt": [58, 116, 292, 328, 337, 593, 690], "versteck": [58, 116], "datenreih": [58, 485], "insbesond": [58, 77, 106, 189, 222, 260, 323, 324, 326, 330, 332, 381, 688], "dummy": [58, 63, 205, 332, 620, 645, 683, 687], "readlog": 58, "time_start": 58, "time_": 58, "umstand": [58, 117, 261, 321, 328, 329, 381, 569, 585, 592], "dictionari": [58, 62, 106, 672], "fiktiv": [58, 98], "vermut": [58, 324], "ans": [59, 228, 577, 645], "funktionier": [59, 162, 163, 197, 214], "wenngleich": 59, "seitenerstell": 59, "rendert": 59, "tmpl": [59, 60], "einzig": [59, 68, 83, 102, 111, 165, 313, 332, 566], "leb": 60, "ubergab": [60, 106, 314, 589], "modifiziert": [60, 189, 219, 496, 524, 573, 682, 687], "besitz": [60, 103, 178, 200, 366, 563], "beispielcod": 60, "delivered": [60, 227, 251, 652], "rendered": 60, "eg": [60, 98, 132, 133, 134, 137, 140, 143, 144, 146, 147, 148, 162, 247, 294, 295, 338, 347, 368, 682], "tplenv": [60, 151], "get_templat": 60, "plgitem": 60, "additionally": [60, 107, 115, 127, 130, 137, 186, 257, 305, 356, 357, 656], "hand": [60, 643, 682], "sorted": [60, 134, 645, 649, 654], "k": [60, 104, 126, 170, 175, 218, 339, 340, 487], "starttab": 60, "hidd": [60, 62], "gar": [60, 103, 293, 370, 573], "obig": [60, 71, 112, 116, 123, 314, 322, 325, 326, 330, 332, 333, 338, 561, 573, 574, 583, 589, 638, 682], "ua": [60, 688], "einzigart": [60, 238, 338], "vergeb": [60, 62, 71, 82, 112, 124, 184, 200, 223, 226, 268, 292, 338, 671, 688], "tablehead": 60, "tablebody": 60, "Sollen": [60, 92, 102, 115, 119, 187, 381, 496, 523, 589, 598, 612], "_knx_dpt": 60, "scriptcod": 60, "sicher": [60, 62, 82, 86, 92, 262, 339, 340, 532, 545, 547, 548, 550, 552, 554, 558, 632, 688], "variant": [60, 62, 74, 79, 122, 167, 189, 191, 201, 227, 261, 264, 267, 323, 326, 329, 568, 569, 570, 585, 591, 592, 638, 683], "codeteil": 60, "entnehm": [60, 110, 123, 178, 319, 507, 579, 671], "table_xx": 60, "mitbring": 60, "bilddatei": [60, 338], "180x150": 60, "pixel": [60, 227, 378, 646], "uberschreit": [60, 574, 577], "unnot": [60, 314, 329], "datenubertrag": 60, "anpasst": 61, "fluid": 61, "resiz": [61, 651, 653, 654, 655], "pluginlist": [61, 671], "spaltenuberschrift": 61, "ublicherweis": [61, 62, 323, 331, 508, 532], "einschloss": 61, "verarbeit": [62, 192, 224, 338, 371, 408, 501], "zuruckzus": 62, "eingabefeld": [62, 255, 674], "datentransf": 62, "biet": [62, 189, 622, 682], "zuruckzulief": 62, "result_dict": 62, "tu_was_mit_dat": 62, "zurucks": 62, "encod": [62, 164, 315, 334, 376], "gesammelt": [62, 400, 408, 435, 441, 464, 467], "berucksichtigt": [62, 76, 96, 102, 169, 191, 192, 201, 267, 304, 314, 331, 360, 398, 508, 646, 656, 691], "denkbar": 62, "transformation": 62, "gekapselt": [62, 496, 523], "empfiehlt": [62, 82, 98, 162, 179, 184, 268, 311, 321, 688], "Einen": [62, 71, 100, 380], "transport": [62, 161, 314, 368, 642, 688], "verkapselt": 62, "nativ": [62, 186], "kategorie1": 62, "attr1": 62, "attr2": 62, "kategorie2": 62, "unmittelbar": [62, 272, 370], "kat1attr1": 62, "kat2": 62, "design": [62, 222], "optimi": 62, "elem": 62, "nachtrag": 62, "gener": [62, 67, 256, 349, 457], "headertabell": 62, "bietet": [62, 74, 79, 83, 86, 91, 92, 106, 162, 164, 166, 181, 189, 212, 237, 241, 261, 310, 320, 321, 324, 325, 328, 329, 331, 336, 338, 346, 347, 362, 367, 381, 562, 567, 573, 584, 587, 591, 594, 599, 621, 622, 630, 636, 641, 682, 689], "formularkonstruktion": 62, "skali": 62, "gewahrleist": [62, 262, 508], "NACH": 62, "val": [62, 150, 155, 272, 304, 326, 332, 356, 357, 360, 471, 528, 622, 641], "button_pressed": 62, "action": [62, 88, 112, 141, 146, 160, 162, 163, 168, 173, 185, 227, 244, 253, 254, 255, 292, 314, 315, 329, 371, 395, 458, 612, 616, 642, 643, 646, 652, 653, 655, 668], "post": [62, 141, 164, 219, 240, 256, 296, 360, 612, 647, 651, 688], "zeilenwert": 62, "formular": 62, "webserv": [62, 82, 85, 120, 202, 240, 409, 688, 690], "daraufhin": [62, 92, 226, 338], "schickt": 62, "verhind": [62, 89, 90, 262, 325, 326, 332, 338, 412, 508, 527, 576, 641, 675, 685], "gleichzeit": [62, 86, 106, 121, 178, 283, 326, 328, 332, 351, 360, 370, 400, 408, 435, 441, 458, 464, 467, 570], "antwortdat": 62, "webseitenspezif": 62, "einfug": [62, 88, 97, 106, 164, 169, 189, 219, 226, 338, 688], "preventdefault": 62, "kennung": [62, 187, 306, 307, 641], "gedruckt": [62, 169, 293, 302, 420, 495, 511, 545, 550], "ermitteln": [62, 83, 155, 189, 244, 262, 287, 304, 330], "betroff": [62, 169, 192, 332, 351], "shnginsertext": 62, "strukturiert": [62, 106, 224, 351, 682], "datenstruktur": [62, 427, 436, 577, 579], "erheb": [62, 67, 69, 103, 233, 618, 692], "basisklass": [63, 66, 620, 622, 623, 624], "vererbt": [63, 66, 171, 189, 462, 620, 622, 623, 624], "translated": [63, 66, 148, 151, 620, 624, 646, 649], "subscribed_topics": [63, 620], "subscribing": [63, 620, 645, 655], "directly": [63, 126, 132, 137, 140, 143, 147, 148, 149, 162, 186, 208, 211, 258, 260, 305, 335, 355, 620, 646, 652, 653, 655], "broker_conf": [63, 620], "mqtt_init": [63, 620], "rtyp": [63, 66, 133, 148, 620, 624], "prufung": [64, 106, 162, 325, 328, 331, 382, 396, 406, 460, 492, 566, 641, 671, 673, 674], "hinweis": [64, 68, 77, 115, 116, 162, 167, 200, 232, 260, 360, 370, 373, 434, 510, 545, 558, 585, 641, 675, 681, 688], "beseitigt": [64, 675], "nahezu": [64, 359, 508], "check_plugin": [64, 653, 681], "eingeschrankt": [64, 115, 118, 504, 573], "v0": [64, 73, 83, 125, 155, 221, 545, 548, 550, 554, 638, 647, 651, 653, 654, 655], "improvement": [64, 195, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667, 669], "potential": [64, 652, 655], "usag": [64, 133, 273, 278, 308, 368, 643, 646, 649, 677, 681, 682], "positional": 64, "successiv": 64, "ausgebaut": 64, "smartobject": [66, 618, 624], "addition": [66, 211, 318, 370, 618, 624, 643, 648, 649, 653, 655, 670], "inherited": [66, 618, 623, 624], "stop_on_item_chang": [66, 624], "during": [66, 126, 132, 134, 278, 294, 297, 365, 624, 645, 646, 647, 649, 650, 651, 653, 654, 655, 670], "raised": [66, 248, 624, 652], "shut": [66, 624, 643, 646], "abl": [66, 142, 147, 186, 218, 365, 618, 624, 645, 646, 651, 653, 655], "react": [66, 624], "bending": [66, 624], "arm": [66, 79, 624], "periodically": [66, 624], "thing": [66, 240, 288, 368, 624, 649], "deinit": [66, 624], "deinitializ": [66, 624], "prepar": [66, 136, 624, 646, 651, 655], "unloading": [66, 137, 624], "provided": [66, 127, 130, 141, 193, 218, 234, 260, 301, 305, 335, 341, 342, 344, 365, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 659, 662, 691], "executed": [66, 130, 141, 221, 227, 278, 315, 618, 624, 650, 654], "unloaded": [66, 137, 624, 655], "keep": [66, 88, 107, 115, 141, 219, 248, 365, 624, 652, 653, 655], "original": [66, 150, 176, 220, 221, 229, 240, 262, 326, 330, 332, 341, 545, 547, 548, 550, 552, 554, 558, 624, 645, 653, 655, 668], "unregistered": [66, 227, 624], "singl": [66, 106, 126, 133, 161, 185, 211, 219, 234, 250, 315, 355, 395, 453, 575, 576, 577, 612, 624, 643, 649, 652, 653, 655], "config_data_dict": [66, 624], "mapping": [66, 80, 106, 136, 240, 243, 260, 335, 344, 368, 577, 624, 653, 655], "handled": [66, 107, 115, 151, 193, 218, 248, 624, 646, 647, 648, 650], "stor": [66, 80, 186, 208, 221, 288, 315, 335, 353, 356, 357, 488, 624, 651, 652, 655, 666, 670], "get_item_configdata": [66, 624], "item_path": [66, 360, 624, 655], "matchstring": [66, 365, 394, 462, 468, 624, 652], "3rd": [66, 67, 251, 278, 624, 641, 667], "revers": [66, 160, 161, 219, 247, 441, 624, 652], "lookup": [66, 127, 139, 177, 186, 191, 264, 267, 365, 400, 408, 435, 441, 464, 467, 622, 623, 624], "get_itemlist_for_mapping": [66, 624], "than": [66, 107, 115, 136, 137, 152, 185, 186, 205, 211, 222, 227, 231, 254, 288, 296, 298, 301, 315, 317, 341, 356, 357, 361, 365, 395, 624, 645, 646, 649, 650, 652, 653], "_plg_item_dict": [66, 624, 653, 655], "is_updating": [66, 624], "nothing": [66, 107, 115, 149, 624, 669, 670], "happ": [66, 136, 211, 624, 646, 651, 653, 655], "identifing": [66, 624], "kind": [66, 100, 171, 189, 305, 347, 519, 563, 565, 573, 591, 624], "remove_it": [66, 134, 623, 624], "removed": [66, 133, 136, 137, 141, 179, 200, 211, 341, 364, 496, 624, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 682, 691], "register_updating": [66, 624], "mark": [66, 164, 227, 239, 288, 308, 309, 368, 624, 653, 655, 667], "usually": [66, 206, 211, 227, 305, 361, 365, 624], "could": [66, 84, 107, 115, 160, 186, 193, 195, 211, 221, 234, 239, 247, 248, 251, 261, 262, 315, 317, 352, 355, 356, 357, 365, 368, 624, 644, 646, 647, 649, 652, 653, 654, 655, 660, 664, 665, 686], "occur": [66, 141, 162, 227, 334, 624, 646, 649, 653, 654, 655], "turn": [66, 141, 162, 198, 247, 624, 646], "get_item_conf": [66, 624], "get_item_mapping": [66, 624, 653], "get_item_mapping_list": [66, 624], "executor": [66, 545, 554, 618, 624, 643, 645, 653, 655], "get_item_path_list": [66, 624, 653], "filter_key": [66, 624, 653], "filter_valu": [66, 624, 653], "configdata": [66, 624], "filtering": [66, 624], "item_path_list": [66, 624], "compar": [66, 139, 152, 294, 624], "different": [66, 107, 115, 130, 136, 141, 147, 160, 183, 186, 199, 200, 211, 218, 227, 240, 247, 254, 278, 288, 296, 305, 352, 353, 365, 624, 646, 648, 666, 670], "ommitting": [66, 624], "get_item_list": [66, 624, 653, 655], "get_trigger_item": [66, 624], "marked": [66, 190, 334, 624, 643, 644, 645, 646, 649, 650, 651, 655, 691], "get_items_for_mapping": [66, 624, 653], "receiving": [66, 141, 274, 288, 368, 624, 665], "get_mapping": [66, 624], "associated": [66, 186, 205, 623, 624], "unparse_it": [66, 624], "ensur": [66, 133, 248, 278, 365, 624, 652, 654], "propagated": [66, 355, 624], "unpars": [66, 624], "get_confignam": [66, 624], "instancenam": [66, 237, 239, 308, 624], "get_version": [66, 139, 624, 674], "extended": [66, 130, 298, 329, 355, 368, 370, 624, 643, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 674], "pv": [66, 235, 312, 313, 624, 674], "is_multi_instance_capabl": [66, 624], "capabl": [66, 624, 646, 655], "multiinstanc": [66, 123, 239, 624, 643, 645, 646], "get_plugin_dir": [66, 624], "pluing": [66, 624], "get_info": [66, 624], "small": [66, 136, 318, 624, 643, 644, 646, 647, 648, 649, 650, 652, 653, 654, 655, 660], "depend": [66, 169, 186, 205, 227, 231, 234, 262, 278, 301, 334, 381, 624], "get_parameter_value_for_display": [66, 624], "update_config_section": [66, 137, 624, 646, 647, 648], "param_dict": [66, 624], "get_loginstanc": [66, 624], "logmessag": [66, 116, 624], "preseeded": [66, 624], "traild": [66, 624], "easy": [66, 107, 115, 133, 160, 173, 176, 190, 193, 258, 278, 415, 545, 550, 612, 624, 643, 653, 655, 688], "logstring": [66, 624], "set_attr_valu": [66, 624], "atteibut": [66, 624], "refered": [66, 624], "modulenam": [66, 624], "path_join": [66, 624], "scheduler_return_next": [66, 624], "scheduler_trigg": [66, 624], "obj": [66, 127, 137, 141, 147, 624], "identification": [66, 200, 612, 624, 655], "identical": [66, 137, 183, 624, 653], "cron": [66, 137, 147, 519, 594, 624, 649, 650, 688], "offset": [66, 137, 142, 147, 148, 170, 199, 200, 217, 279, 330, 347, 383, 407, 478, 504, 508, 569, 592, 599, 624, 634, 636, 649, 650, 651, 656, 659], "next": [66, 71, 107, 115, 133, 137, 138, 147, 160, 162, 173, 180, 185, 198, 206, 218, 221, 250, 262, 294, 315, 330, 347, 370, 395, 453, 504, 624, 643, 644, 645, 646, 649, 650, 651, 656, 691], "scheduler_chang": [66, 137, 594, 624], "scheduler_remov": [66, 137, 594, 624], "identifiction": [66, 137, 624], "scheduler_get": [66, 624], "scheduler_get_all": [66, 624], "asyncio_stat": [66, 618, 624], "unused": [66, 205, 618, 624, 652, 655], "processed": [66, 185, 240, 298, 395, 618, 624], "task": [66, 71, 86, 113, 141, 180, 181, 315, 316, 618, 624, 646, 650, 655], "run_asyncio_coro": [66, 618, 624], "coro": [66, 618, 624], "return_exeption": [66, 618, 624], "operated": [66, 618, 624], "wait": [66, 83, 129, 152, 182, 183, 205, 298, 616, 618, 624, 646, 655, 656], "wait_for_asyncio_termination": [66, 618, 624], "queu": [66, 136, 598, 618, 624, 643, 646, 649], "put_command_to_run_queu": [66, 618, 624], "get_command_from_run_queu": [66, 618, 624], "list_asyncio_task": [66, 618, 624], "intention": [66, 618, 624], "debugging": [66, 107, 181, 618, 624, 649, 651, 652, 655], "frag": [67, 92, 122, 125, 325, 638], "beantwort": 67, "Soll": [67, 83, 162, 169, 170, 189, 223, 289, 338, 381, 391, 486, 487, 498, 526, 569, 592, 622], "anzusteuernd": [67, 419, 420, 465, 487], "angesteuert": [67, 98, 124, 162, 215, 250, 402, 417, 692], "existier": [67, 82, 92, 100, 123, 189, 496, 523, 671, 672], "verbindet": [67, 170, 197, 276, 292, 314, 381, 382, 405, 545, 550], "netzw": 67, "ansteu": [67, 166, 214, 215, 479, 545, 550], "ausgelegt": [67, 116, 165], "angeseteuert": 67, "avdevic": [67, 545, 550, 643, 645, 646, 650, 651, 653, 655, 671, 672, 674, 675], "viessmann": [67, 349, 521, 545, 548, 550, 622, 646, 649, 650, 652, 655], "sprech": [67, 316], "bussyst": [67, 91, 261], "anspricht": 67, "philips": [67, 78, 112, 205, 211, 212, 213, 266, 371, 418, 419, 420, 466, 545, 548, 552, 646, 649], "homematic": [67, 78, 545, 548, 566, 641, 644, 645, 646, 647, 648, 656, 674], "hue2": [67, 213, 545, 548, 646, 648, 649, 651, 652, 653, 655], "tasmota": [67, 545, 548, 645, 646, 648, 649, 650, 651, 653, 655, 656], "snmp": [67, 545, 552, 643, 649, 654], "wol": [67, 545, 552, 649], "einzules": [67, 204, 217, 403, 412], "alexa4p3": [67, 545, 558, 617, 641, 643, 644, 645, 646, 649, 651, 691], "ical": [67, 545, 558, 642, 643, 644, 645, 646, 649, 653, 654, 655, 656, 664], "jsonread": [67, 545, 558, 641, 645, 649, 651, 653, 655, 656], "piratewthr": [67, 545, 558, 653, 654, 655], "sample_mqttplugin": 67, "kommuniziert": [67, 291, 337, 338, 346, 362, 371, 405, 535, 545, 550], "aufgabenstell": 67, "uberleg": 67, "fertig": [67, 79, 82, 86, 162, 163, 220, 324, 329, 621, 622], "party": [67, 112, 251, 278, 290, 488, 622, 641, 659], "abzuwag": 67, "vorteil": [67, 98, 103, 116, 170, 566, 573, 688], "anzufuhr": 67, "spart": 67, "allerding": [67, 71, 82, 83, 84, 102, 103, 106, 122, 124, 187, 192, 213, 265, 314, 324, 325, 326, 330, 331, 333, 490, 519, 596, 630], "weiterentwickl": [67, 612, 613, 615], "breaking": [67, 213, 648, 650, 651, 654, 655, 656], "einsatz": [67, 79, 110, 115, 117, 118, 123, 192, 212, 213, 263, 329, 441, 592, 600, 630], "neuinstallation": [67, 79, 92, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "plotzlich": 67, "unerwartet": [67, 115, 189, 351, 583, 596], "geeignet": [67, 83, 652, 653, 654, 655, 656], "felxibel": 67, "einsetzbar": [67, 642], "voneinand": [68, 74, 326, 332, 573], "virtual": [68, 83, 107, 115, 125, 152, 262, 334, 629, 630, 638, 653, 654, 655, 688], "why": [68, 278], "lesenswert": 68, "stackoverflow": [68, 142, 152], "stand": [68, 78, 162, 165, 199, 220, 265, 294, 384, 564, 632, 642, 646, 678], "novemb": [68, 92, 104, 526, 639], "packaging": 68, "standardumfang": 68, "zunach": [68, 73, 80, 82, 83, 86, 92, 98, 192, 331, 338, 573], "basisordn": 68, "basisabhang": 68, "basisverzeichnis": [68, 92, 496, 508, 523, 630], "shell": [68, 71, 79, 82, 83, 152, 192, 211, 330, 629, 635, 680], "upgrad": [68, 81, 82, 130, 198, 234, 245, 249, 253, 260, 278, 335, 344, 580, 649, 651, 688], "erfullt": [68, 92, 97, 169, 321, 325, 329, 330, 331, 333, 381, 573, 576, 583, 632], "brauch": [68, 83, 328], "denk": [68, 300, 566, 572], "mu\u00df": [68, 71, 82, 83, 86, 87, 92, 98, 102, 192, 229, 261, 265, 291, 293, 337, 338, 590], "deactivat": [68, 227, 281, 629, 630, 646, 649, 670], "umzugeh": 68, "lieferumfang": [68, 622], "extra": [68, 202, 227, 288, 363, 396, 649], "nutzungsbeschreib": 68, "portiert": 68, "sogar": [68, 169, 289, 326, 332, 514, 583, 621], "guid": [68, 84, 85, 229, 646], "antwort": [69, 119, 125, 155, 156, 169, 232, 237, 262, 303, 304, 316, 338, 381, 400, 406, 423, 435, 441, 464, 467, 522, 622, 638, 642, 671], "involviert": 69, "miteinand": [69, 79, 97, 328], "red": [69, 167, 198, 200, 247, 248, 407, 643, 652], "eibd": [69, 92, 111, 434, 545, 548], "knxd": [69, 80, 89, 91, 92, 111, 232, 434, 545, 548, 617, 630, 645, 649, 652], "funktionsfah": [69, 86, 250, 371, 652, 653, 654, 655, 656], "kommando": [69, 83, 84, 86, 92, 122, 162, 169, 181, 210, 225, 256, 330, 338, 381, 391, 393, 400, 405, 408, 421, 422, 425, 433, 435, 441, 451, 456, 464, 467, 512, 522, 535, 536, 622, 630, 671, 674, 678], "groupswrit": [69, 71, 86], "funktioni": [69, 79, 86, 89, 90, 97, 165, 169, 191, 194, 201, 203, 262, 267, 333, 347, 363, 369, 545, 547, 548, 550, 552, 554, 558, 622, 641, 671, 674, 682, 693], "redet": 69, "quick": [69, 107, 115, 197, 211, 643, 644], "dirty": 69, "erganz": [69, 98, 112, 123, 162, 191, 201, 249, 264, 267, 346, 424, 504, 511, 688], "ausschalt": [69, 82, 98, 112, 164, 169, 170, 338, 360, 419, 420, 479, 536, 642, 688], "zuzuw": 69, "driv": [69, 83, 111, 130, 165, 186, 193, 281, 355, 356, 357, 646, 653, 670], "2424": [69, 71, 83, 85, 110, 119, 122, 355, 524, 612, 616, 617, 684, 688, 690], "realtim": [69, 79, 306, 307, 650], "zeitnah": [69, 293], "pflegbar": 69, "helf": [70, 92, 584], "startpunkt": [70, 516], "checklist": 70, "administrationsinterfac": [70, 102, 103], "klappt": [71, 92, 196, 201], "supportforum": [71, 78, 347], "Aber": [71, 306, 307], "durchdenk": 71, "Euch": 71, "weiterhelf": 71, "beisteu": 71, "ausgab": [71, 83, 84, 86, 115, 116, 189, 203, 249, 270, 271, 283, 309, 351, 367, 412, 413, 423, 449, 489, 584, 628, 632, 671, 673], "anhang": [71, 92, 400, 408, 435, 441, 464, 467, 569, 592], "ersicht": [71, 79, 508], "beseit": [71, 674], "Euer": [71, 170], "zusammenhangt": 71, "vm": [71, 82, 200, 239, 308, 309], "raspi": [71, 82, 229, 285, 655, 688], "raspbian": [71, 79, 82], "ubuntu": [71, 79], "davor": [71, 170, 179, 184, 189, 192, 210, 223, 232, 252, 255, 289, 328, 348, 357, 360, 366, 573, 657], "durcharbeit": 71, "ssh": [71, 367, 477], "festzustell": [71, 83, 599, 634], "ps": [71, 83, 210, 370], "ef": [71, 83], "grep": [71, 83], "augegeb": 71, "aussieht": [71, 83, 306, 307, 682], "smartho": [71, 83], "28373": [71, 83], "00": [71, 83, 86, 115, 116, 155, 162, 165, 169, 186, 187, 192, 203, 227, 262, 281, 289, 294, 295, 297, 304, 306, 307, 317, 325, 328, 337, 347, 356, 357, 360, 367, 569, 592, 652], "abgekurzt": [71, 83, 200], "pid": [71, 76, 83, 86, 89, 107, 115, 116, 125, 129, 161, 263, 289, 487, 575, 577, 630, 638, 641, 644, 646, 651, 655, 656, 680], "highland": 71, "versuch": [71, 83, 232, 233, 381, 403, 412, 434, 440, 507], "mehrfach": [71, 83, 184, 262, 263, 268, 338, 417, 423, 561], "parallel": [71, 92, 122, 123, 171, 183, 278, 550, 551, 630, 653], "strikt": [71, 682], "geachtet": [71, 92, 106, 123, 229, 577, 579, 593], "bindung": [71, 87], "quittiert": [71, 230, 256], "lasst": [71, 86, 192, 226, 232, 233, 289, 306, 307, 321, 326, 329, 332, 339, 340, 381, 568, 591], "binding": [71, 669], "errno": [71, 334], "98": [71, 229, 586], "2323": [71, 83, 111, 180, 181, 391], "klar": [71, 262, 339, 340, 351, 641, 688], "indiz": [71, 262, 563], "kill": [71, 129], "modus": [71, 119, 162, 165, 192, 196, 233, 244, 261, 292, 295, 302, 314, 324, 328, 349, 378, 395, 400, 408, 412, 435, 441, 443, 450, 453, 464, 467, 479, 486, 487, 488, 528, 612, 671], "logausgab": [71, 263, 593, 651], "unubersicht": [71, 106], "vorzuzieh": 71, "gezielt": [71, 103, 232, 347, 519], "aktivier": [71, 111, 203, 289, 291, 337, 417, 487], "dbug": 71, "meng": [71, 116, 187, 192, 339, 340, 586, 641, 642, 643, 645, 646, 649, 650, 655, 671, 674, 675, 691], "loggingdat": 71, "aufgelistet": [71, 79, 92, 192, 215, 230, 310, 349, 351, 359, 373, 681], "ax": 71, "sh13": 71, "908": 71, "ss": [71, 83, 102, 116, 188, 263, 314, 575, 599, 634], "208": [71, 165, 334], "11045": 71, "pts": 71, "zugreift": 71, "auftaucht": 71, "170": [71, 86, 229], "gruppenadress": [71, 86, 124, 162, 232, 289, 328, 329, 331, 434, 597], "schaltaktor": [71, 86, 200, 567, 591], "hangt": [71, 79, 83, 92, 98, 165, 261, 262, 314, 381, 412, 563], "vorgehensweis": [71, 306, 307], "hoch": [71, 162, 263, 325, 326, 328, 572, 592], "systemd": [71, 73, 82, 84, 89, 90, 92, 630], "herkomm": [71, 325], "startskript": 71, "synonym": 71, "systemctl": [71, 82, 84, 86, 87, 89, 90, 92, 103, 199, 646, 688], "sh11": [71, 165], "job": [71, 453, 479, 643, 645, 688], "queued": [71, 141], "failed": [71, 116, 141, 227, 269, 646, 655, 665], "unit": [71, 84, 89, 90, 152, 192, 230, 234, 235, 236, 249, 258, 260, 262, 298, 305, 306, 307, 334, 349, 401, 409, 452, 460, 487, 497, 498, 499, 630, 650, 652, 653, 654, 655, 665, 669], "2016": [71, 79, 155, 169, 304, 341, 352, 353, 355, 356, 357, 381, 426, 545, 554, 640], "03": [71, 86, 116, 155, 187, 282, 293, 294, 295, 304, 328, 337, 356, 357, 407, 585, 682], "49": [71, 86, 165, 219, 229, 230], "08": [71, 86, 116, 125, 165, 199, 227, 270, 271, 273, 274, 293, 325, 328, 638], "cet": [71, 148, 599, 634], "ago": [71, 84, 86], "cgroup": [71, 84, 86], "sbin": [71, 84, 90, 185], "slic": [71, 84, 86], "avahi": 71, "463": 71, "489": 71, "chroot": 71, "help": [71, 150, 152, 180, 181, 193, 218, 314, 666, 671, 677], "1204": 71, "scop": 71, "2757": 71, "1152": 71, "1153": 71, "sd": [71, 79, 82, 210, 641], "pam": [71, 88], "1119": 71, "27926": 71, "sshd": [71, 82], "priv": 71, "27928": 71, "27929": 71, "bash": [71, 83, 85, 199, 321], "28229": 71, "28230": 71, "gang": 71, "geklappt": 71, "knxtool": [71, 86], "tun": [71, 82, 86, 92, 93, 94, 97, 106, 111, 169, 191, 264, 267, 290, 306, 307, 368, 370, 618, 688], "irgendwo": [71, 86], "uberseh": [71, 86], "schaltvorgang": [71, 260, 347, 519], "adminstration": 71, "mithilf": [71, 90, 92, 97, 164, 200], "zwingend": [71, 80, 112, 200, 326, 329, 330, 331, 332, 434, 530, 583, 688], "eroffnet": 71, "telnet": [71, 141, 180, 181, 200, 258, 319, 405, 459, 507, 659], "darin": [71, 566, 581], "eingeb": [71, 83, 85, 86, 92, 106, 164, 225, 292, 532, 638, 688], "yourcomput": [71, 677, 678], "trying": [71, 623, 645, 647, 649, 653, 655], "fe80": 71, "c23f": 71, "d5ff": 71, "fe68": 71, "e9a": 71, "refused": 71, "connected": [71, 130, 141, 160, 162, 170, 176, 195, 227, 248, 258, 278, 284, 288, 290, 305, 341, 349, 382, 465, 482, 646, 650, 652, 653, 654, 655], "escap": [71, 106, 116, 649], "charact": [71, 126, 152, 160, 183, 205, 227, 334, 612, 650], "alias": [71, 82, 160, 161, 162, 163, 180, 181, 216, 217, 261, 285, 423, 461, 483, 643], "group": [71, 88, 128, 152, 160, 180, 181, 189, 192, 205, 211, 212, 213, 227, 228, 247, 261, 262, 276, 278, 290, 293, 314, 359, 419, 420, 504, 511, 623, 653, 671], "ii": [71, 180, 181, 234], "dump": [71, 149, 180, 181, 222, 223, 652, 653], "iup": [71, 180, 181], "iupdat": [71, 180, 181], "ld": [71, 180, 181], "dl": [71, 180, 181, 225, 688], "el": [71, 180, 181], "li": [71, 161, 170, 180, 181, 210, 681], "ll": [71, 82, 180, 181, 234, 296], "lo": [71, 180, 181, 674], "logc": [71, 180, 181], "memory": [71, 136, 161, 180, 181, 221, 227, 230, 243, 263, 463, 580, 585, 632, 642, 645, 646, 649, 655, 665, 666], "logd": [71, 180, 181, 649], "lr": [71, 180, 181], "rl": [71, 180, 181, 665], "lrr": [71, 180, 181], "rr": [71, 180, 181, 665], "lt": [71, 77, 180, 181], "rt": [71, 180, 181, 210], "sl": [71, 104, 180, 181, 520, 545, 558, 643], "st": [71, 104, 180, 181, 288, 517, 520, 545, 558, 643], "tl": [71, 180, 181], "q": [71, 180, 181, 229, 239, 308, 309, 612, 635], "ausprobiert": 71, "ls": [71, 82, 92], "aufzulist": 71, "abzufrag": [71, 85, 184, 212, 213, 215, 268, 270, 289, 360, 382, 398, 453, 501, 507, 524, 573, 574, 594], "anzuschalt": 71, "hierh": 71, "grundsyst": [71, 123], "funktional": [71, 314, 622], "verfolgt": [71, 96], "ursach": 71, "fehlerbild": 71, "behebungsansatz": 71, "bom": [71, 83, 103, 206, 210, 545, 550], "bricht": [71, 83, 599, 641], "einlesevorgang": 71, "widget": [71, 76, 85, 106, 155, 187, 211, 219, 262, 263, 295, 302, 304, 329, 344, 345, 347, 352, 356, 357, 496, 508, 519, 523, 545, 554, 585, 643, 646, 648, 649, 651, 652, 653, 655, 666, 674, 684, 686, 689], "doppelt": [71, 76, 97, 106, 116, 187, 360, 498, 499, 593, 675, 688], "Keine": [71, 165, 213, 214, 328, 339, 340, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 671, 674], "merkwurd": 71, "andernd": [71, 103, 326, 332, 514], "plausibilitat": 71, "visu_smartvisu": [71, 302, 352, 545, 554, 561, 566, 646, 669, 670, 671, 682, 687, 689], "host": [71, 80, 86, 87, 88, 98, 103, 111, 123, 127, 141, 150, 160, 161, 164, 170, 176, 181, 183, 186, 191, 198, 200, 211, 219, 222, 230, 231, 233, 238, 239, 240, 241, 248, 249, 250, 258, 264, 267, 270, 276, 278, 290, 299, 300, 301, 305, 306, 307, 308, 309, 310, 312, 313, 319, 355, 358, 369, 374, 469, 477, 484, 496, 524, 531, 545, 550, 643, 648, 655, 662, 663, 688], "implicit": [71, 181], "cr": [71, 141, 181], "lf": [71, 181, 210], "keyboard": [71, 181, 338, 512, 688], "hilfestell": [72, 74, 638], "dokumentationsseit": [72, 74], "caution": 72, "dang": [72, 296, 368, 491], "important": [72, 147, 162, 186, 240, 257, 258, 262, 290, 315, 365, 646, 651, 653, 655, 667], "tip": [72, 315], "linux": [73, 74, 92, 103, 107, 115, 116, 125, 193, 194, 198, 200, 225, 237, 256, 261, 279, 306, 307, 309, 351, 370, 407, 507, 569, 592, 617, 628, 638, 688], "installationspaket": [73, 86, 225], "compiliert": 73, "grundsatz": [73, 92, 97, 98, 109, 111, 116, 192, 212, 213, 256, 260, 289, 346, 351, 360, 371, 621, 672], "me": [73, 126, 208, 297, 368], "verpass": 73, "eher": 73, "histor": [73, 187, 262, 338, 674], "installationsschritt": [73, 86], "grundleg": [73, 83, 115, 192, 212, 213, 215, 359, 587, 612, 632], "dh": 73, "autoconf": 73, "libtool": 73, "libusb": 73, "pkg": 73, "libsystemd": 73, "libev": 73, "cmak": 73, "sicherstell": [73, 223, 314, 373, 510, 545, 558], "libfmt": 73, "herunterzulad": [73, 172], "get_libfmt": 73, "dpkg": [73, 225, 255], "buildpackag": 73, "uc": 73, "paketerstell": 73, "gemeldet": [73, 92, 162, 165, 255, 304, 453, 641, 649, 671, 672, 674, 675], "knxd_": 73, "deb": [73, 225], "tools_": 73, "unabhang": [74, 106, 122, 184, 192, 268, 321, 325, 326, 327, 328, 332, 351, 508, 545, 546, 561, 593, 622, 630, 638, 641, 674], "standardattribut": [74, 115], "parametersatz": [74, 569, 592], "Oder": [74, 82, 573], "betriebssystem": [74, 225, 585], "posix": 74, "bsd": [74, 79, 88, 688], "unix": [74, 79, 88, 103, 186, 187, 188, 227, 262, 263, 288, 306, 307, 309, 453, 479, 498, 499, 575, 585, 599, 649, 688], "vordergrund": [76, 635], "kaputt": 76, "spatest": [76, 569, 592], "umgeh": [76, 77, 82, 338, 370, 485], "hatt": [76, 97, 116, 212, 213, 331, 562, 567, 573, 591, 595, 597, 599, 636, 682], "issu": [76, 162, 183, 293, 359, 623, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656], "aufgemacht": 76, "spassig": 76, "adminui": [76, 573], "hrhr": 76, "herunterfahr": [76, 328], "woll": [76, 78, 324, 328, 561, 641, 671, 672, 674, 675, 685, 688], "anderbar": [76, 328, 331, 419, 420, 671], "384": [76, 368], "sysinfo": [76, 136], "shnginfo": 76, "info_l2": 76, "info_l3": 76, "debug_l2": 76, "debug_l3": 76, "ausnahm": [76, 83, 369, 394, 468, 563, 566, 682], "vorbehalt": [76, 256], "solle": 76, "plginfo": 76, "abstuf": 76, "27": [76, 79, 155, 165, 187, 192, 262, 265, 294, 295, 304, 347, 356, 357, 651, 652, 654, 655, 656], "23": [76, 79, 115, 116, 155, 162, 169, 187, 191, 193, 194, 219, 262, 264, 275, 288, 304, 325, 328, 346, 347, 355, 356, 357, 361, 381, 400, 408, 464, 496, 524, 563, 569, 592, 629, 640, 651, 652, 657], "user_debug": 76, "debug_low": 76, "library": [76, 126, 127, 132, 137, 139, 140, 141, 143, 147, 148, 149, 150, 151, 152, 166, 190, 208, 216, 239, 245, 273, 277, 308, 309, 573, 641, 643, 646, 649, 653, 655], "umrechn": [76, 131], "farbraum": 76, "aufnehm": [76, 116, 579, 585], "umgeb": [76, 83, 85, 104, 116, 504, 580, 629, 630], "nacheinand": [76, 230, 513, 545, 554, 572], "jemand": [76, 79, 92, 116, 261, 339, 340, 685], "uberspringt": 76, "Wo": [76, 192], "v5": [76, 121, 674], "verbess": 76, "vorletzt": [76, 92, 189, 562, 563, 567, 591, 599, 634], "changed_by": [76, 133, 360, 561, 562, 571, 577], "updated_by": [76, 133, 562, 646, 650], "previous": [76, 133, 148, 162, 173, 198, 205, 234, 250, 330, 370, 453, 504, 643, 644, 645, 646, 649, 650, 651, 652, 654, 655, 691], "change_by": [76, 650], "graph": [76, 312, 426, 545, 554, 643, 645, 655, 693], "umstell": [76, 92, 106, 170, 219, 371, 641, 671], "discoverhu": 76, "regl": [76, 279, 289, 345, 486, 487, 545, 554], "korrektur": [76, 170, 189, 674], "faktor": [76, 452], "kp": [76, 288, 289, 487, 653, 688], "ki": [76, 288, 289, 487, 653], "kd": [76, 289], "setzbar": 76, "zuklappbar": 76, "maximierbar": 76, "raum": [76, 85, 98, 103, 255, 289, 316, 328, 339, 340, 351, 399, 428, 451, 486, 487, 496, 523, 545, 554, 573, 622, 682, 683, 686], "vorkomm": [76, 92, 100, 106, 111, 293, 373, 423, 561], "diensteanbiet": 77, "abs": [77, 260, 263], "verantwort": [77, 330, 642], "verpflichtet": 77, "fremd": 77, "berwach": 77, "umsta": 77, "forsch": 77, "ta": 77, "tigkeit": 77, "verpflicht": [77, 123, 351], "sperrung": 77, "hiervon": [77, 618], "unberu": 77, "hrt": 77, "diesbezu": 77, "kenntnis": [77, 153, 587], "rechtsverletz": [77, 260], "bekanntwerd": 77, "Unser": 77, "entha": 77, "gewa": 77, "hr": 77, "bernehm": 77, "anbiet": [77, 212], "verlink": [77, 169, 671], "rechtsversto": 77, "sse": 77, "berpru": 77, "ft": 77, "permanent": [77, 594], "kontroll": [77, 232, 434, 453, 641], "zumutbar": 77, "derart": 77, "werk": 77, "unterlieg": 77, "vervielfa": 77, "ltigung": 77, "verbreit": 77, "verwert": 77, "bedu": 77, "rfen": 77, "schriftlich": 77, "download": [77, 79, 82, 141, 161, 187, 216, 218, 227, 234, 239, 278, 279, 309, 423, 627, 653, 688], "kommerziell": 77, "gebrauch": [77, 369, 445, 687], "gestattet": 77, "beachtet": [77, 83, 122], "gekennzeichnet": [77, 103, 260, 325, 374, 376, 381, 382, 383, 384, 385, 387, 389, 394, 397, 399, 400, 408, 411, 416, 420, 421, 422, 424, 426, 428, 435, 437, 438, 441, 446, 447, 449, 463, 464, 465, 467, 474, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 497, 501, 503, 505, 506, 513, 514, 515, 518, 521, 523, 524, 526, 527, 532, 537, 538, 635, 641, 682], "urheberrechtsverletz": 77, "aufmerksam": 77, "flexibel": [78, 310, 328, 351], "wire": [78, 285, 461, 483, 617, 645, 646, 674], "dmx": [78, 167, 379, 545, 548, 643, 659, 663], "avm": [78, 107, 115, 123, 171, 185, 339, 340, 383, 545, 550, 566, 641, 642, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 669, 670, 674, 685], "fritzbox": [78, 170, 171, 185, 227, 339, 340, 650, 666, 682, 688], "heizungssteuer": 78, "av": [78, 169, 191, 205, 267, 381, 400, 467, 545, 550, 655, 671], "mail": [78, 227, 244, 335, 355, 356, 357, 411, 445, 456, 641, 643, 644, 645, 646, 649, 665, 666, 672, 674, 688, 691], "prowl": [78, 545, 558, 644, 646, 647, 648], "wett": [78, 219, 262, 328, 329, 338, 339, 340, 361, 365, 425, 529, 532, 545, 558, 674], "alexa": [78, 161, 163, 164, 375, 376, 545, 558, 617, 641, 643, 644, 645, 646, 649, 670, 691], "xmpp": [78, 545, 552, 641, 646, 649], "systemnah": 78, "zeitschaltuhr": [78, 282, 347, 376, 545, 554], "endlich": [78, 162, 508], "richt": [78, 79, 533], "reflektiert": 78, "16": [78, 86, 115, 131, 160, 161, 165, 169, 192, 227, 262, 270, 271, 273, 279, 293, 305, 306, 307, 328, 334, 337, 338, 339, 340, 347, 389, 434, 443, 494, 511, 526, 545, 554, 569, 592, 638, 640, 643, 665], "oktob": [78, 79, 526, 585], "2024": [78, 79, 265, 657], "d8d808f": 78, "chat": [78, 88, 92, 338, 359, 368, 512, 641, 649, 674], "gitt": [78, 92], "anmerk": [78, 115, 328, 405], "anderungswunsch": 78, "feedback": [78, 160, 200, 231, 655], "hinterlass": 78, "kennenlern": 79, "bust": [79, 83, 86, 92, 688], "18": [79, 189, 192, 195, 196, 210, 219, 229, 262, 265, 275, 293, 306, 307, 314, 329, 334, 347, 360, 361, 434, 443, 641, 655, 682], "04": [79, 86, 115, 155, 187, 263, 274, 281, 293, 294, 295, 304, 337, 356, 357, 360, 363, 463, 585], "benutzeroberflach": [79, 82, 164, 302, 354, 376], "schlank": 79, "x86": [79, 225], "x64": [79, 309], "cpu": [79, 83, 113, 170, 198, 310, 484, 632, 652, 653, 654, 688], "genauso": [79, 215, 360, 565, 591], "visualisier": [79, 85, 91, 117, 166, 178, 187, 302, 330, 331, 347, 354, 496, 523, 592, 600, 642, 682, 683], "umfrag": [79, 641], "geschwindigkeitst": 79, "stabilitat": 79, "geschwind": [79, 83, 131, 192, 334, 361, 450, 514, 517, 622], "leistung": [79, 165, 170, 187, 192, 293, 306, 307, 337, 436, 502, 526, 622], "sata": 79, "festplatt": [79, 82], "ssd": 79, "kart": [79, 82, 219, 262, 399, 456], "beagl": 79, "bon": 79, "gehostet": 79, "dock": [79, 81, 85, 281, 282, 284, 346, 417, 482, 504], "brauchbar": [79, 115], "auszuprobi": 79, "512mb": 79, "ram": [79, 263], "40gb": 79, "80gb": 79, "plattenplatz": 79, "gunstig": [79, 91, 261], "einstieg": [79, 321, 325, 328], "verbreitet": [79, 87, 106, 630], "onkelandy": [79, 185, 545, 548, 550, 552, 554, 558, 646], "pis": [79, 646], "massenspeich": [79, 80], "hochwert": 79, "dringend": [79, 106, 321, 354, 519], "schreibzykl": 79, "auslager": 79, "stick": [79, 82, 126], "boot": [79, 278, 285], "hd": [79, 205], "empfind": [79, 219], "spannungsversorg": [79, 461], "plattform": [79, 103, 165, 675], "vollkomm": [79, 80], "ausreich": [79, 203, 328, 331], "i3": [79, 239, 298, 308, 309, 461], "prozessor": [79, 225, 229], "hardwareausstatt": 79, "niedrig": [79, 164, 262, 263, 328, 592], "teur": 79, "dn2820fykh0": 79, "4gb": 79, "60gb": 79, "250": [79, 328], "eur": [79, 262, 367], "celeron": 79, "150": [79, 166, 227, 299, 300, 328, 337, 487], "pentium": 79, "350": [79, 162, 183, 218, 219, 262, 393, 545, 550], "zumeist": [79, 98, 115, 159, 261], "reicht": [79, 80, 89, 90, 107, 123, 261, 263, 333, 598], "prozessortyp": 79, "systemsoftwar": 79, "oft": [79, 83, 106, 123, 162, 211, 218, 221, 232, 233, 253, 260, 274, 297, 314, 328, 335, 341, 344, 379, 381, 396, 423, 510, 545, 558, 646], "teilweis": [79, 169], "zugang": [79, 82, 85, 164, 184, 222, 244, 268, 338, 349, 641, 688, 689], "amd64": [79, 107, 115, 125, 225, 638], "gepuffert": [79, 162, 381], "echtzeituhr": 79, "clock": [79, 329, 370, 508, 644, 646], "ntp": 79, "zeitinformation": [79, 585], "benutz": [79, 82, 103, 121, 162, 165, 192, 212, 213, 214, 224, 230, 241, 306, 307, 338, 375, 421, 473, 496, 510, 512, 517, 523, 524, 562, 635], "artig": 79, "erwart": [79, 97, 360, 599, 634], "macos": [79, 643, 654], "angehob": [79, 314, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "lif": [79, 160, 643, 644, 645, 646, 647, 648, 649, 650, 691], "fix": [79, 162, 200, 216, 219, 318, 319, 324, 328, 329, 507, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 691], "offizell": 79, "aufzusetz": [79, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "offiziell": [79, 83, 179, 311, 314, 321, 334, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "grundregel": [79, 123], "enwicklungsstart": 79, "vorgangerversion": 79, "akt": [79, 197], "entwicklungsstart": 79, "tbd": [79, 227], "jewil": 79, "zud": [79, 85, 98, 122, 166, 169, 321], "bugfix": [79, 642, 650, 651, 652, 653, 654, 655, 670, 672, 673, 674], "Sicherheits": 79, "lifecycl": 79, "keinerlei": 79, "maintenanc": [79, 227, 336, 341, 545, 547, 548, 550, 552, 554, 558, 632, 646, 653], "dezemb": [79, 325, 526, 569, 592, 640, 651, 657], "2021": [79, 104, 115, 125, 127, 184, 270, 271, 585, 633, 638, 651, 657], "juni": [79, 526, 652, 653, 654, 655, 656, 657], "2018": [79, 84, 116, 210, 273, 274, 306, 307, 338, 640, 641, 643], "2023": [79, 155, 267, 268, 270, 271, 274, 293, 337, 467, 569, 585, 592, 652, 655, 656, 657], "2019": [79, 86, 104, 203, 306, 307, 312, 313, 355, 356, 357, 538, 633, 643, 644, 645, 657, 691], "2025": 79, "2026": 79, "2027": 79, "2028": 79, "prereleas": 79, "2029": 79, "2030": 79, "bring": [79, 83, 280, 635, 671, 672], "aktialisiert": 79, "aufsetz": [79, 92], "sies": 79, "mitgelief": 79, "sep": [79, 222, 223], "jun": [79, 639], "bullsey": [79, 82, 92], "jul": 79, "bookworm": [79, 82, 83, 89, 91, 628, 655], "lts": 79, "bionic": 79, "beav": 79, "apr": [79, 169], "focal": 79, "fossa": 79, "jammy": 79, "jellyfish": 79, "2032": 79, "lunar": 79, "lobst": 79, "mantic": 79, "minotaur": 79, "stretch": [79, 84, 688], "andau": [79, 574, 577], "systemander": 79, "konfrontiert": 79, "verpack": 80, "applikation": [80, 215, 260, 362, 471, 612], "vergleichbar": [80, 326, 332, 577], "apk": [80, 219], "android": [80, 274, 315, 316, 359, 527, 545, 550, 688], "nas": [80, 111, 310], "herstell": [80, 162, 169, 170, 192, 212, 213, 306, 307, 337, 362, 456], "sozusag": [80, 89, 90], "isoliert": [80, 630], "ahnelt": [80, 326], "virtualisier": 80, "wesent": [80, 85, 103, 106, 270, 271, 316, 514, 563, 622], "handy": [80, 179, 688], "henfri": [80, 545, 548, 550, 558], "ng": [80, 165, 185, 214, 215, 359], "abgeschottet": 80, "netzwerk": [80, 82, 84, 90, 162, 164, 179, 181, 197, 200, 207, 212, 283, 314, 378, 390, 391, 405, 493, 497, 504, 526, 545, 550, 558, 559, 621, 622, 693], "abgebildet": [80, 153, 220, 261, 324, 587], "v": [80, 104, 169, 170, 235, 248, 261, 293, 305, 306, 307, 351, 369, 461, 535, 545, 550, 622, 635, 646, 653, 656, 667, 677, 681], "123": [80, 103, 183, 240, 247, 256, 281, 290, 352, 597, 623], "456": 80, "mapp": [80, 200, 688], "unsere": 80, "belang": 80, "yml": [80, 207, 652, 654], "erlaut": 81, "nachinstalliert": [81, 82, 83, 85, 630], "betriebsystem": 82, "paketauswahl": 82, "kompakt": 82, "netinstall": 82, "nuc": 82, "balena": 82, "etch": 82, "creator": [82, 142, 646, 668], "universal": [82, 199, 200, 227], "unetbootin": 82, "virtuell": [82, 83, 90, 91, 92, 162, 416, 627, 629, 693], "maschin": [82, 91, 92, 477], "vmwar": [82, 91], "derivat": 82, "idealerweis": [82, 162], "fast": [82, 111, 211, 642, 649, 652], "raspberrypi": [82, 278, 283, 688], "win32diskimag": 82, "einzulogg": 82, "tastatur": 82, "tastaturlayout": 82, "rechnernam": 82, "shmuc": 82, "smarthome23": 82, "gerad": [82, 92, 162, 203, 325, 326, 330, 332, 339, 340, 363, 420, 456, 479, 481, 632], "gefuhrt": [82, 115, 223, 382], "partitioni": 82, "speicherbereich": 82, "platt": [82, 396], "grundinstallation": [82, 83], "basispaket": 82, "landesauswahl": 82, "spiegelserv": 82, "festleg": [82, 232, 324, 333, 401, 452, 485, 499, 569, 592, 688], "geleg": [82, 329], "kaltgetrank": 82, "netzwerkgeschwind": 82, "abgelehnt": 82, "abwahl": 82, "kde": 82, "gnom": 82, "machtig": [82, 115], "lxde": 82, "apache2": [82, 85, 688], "putty": 82, "bitvis": 82, "systemwerkzeug": 82, "auswahlmog": 82, "getrank": 82, "nachlad": 82, "installier": 82, "wiederum": [82, 87, 92, 100, 169, 329, 347, 440, 545, 548], "grub": 82, "akzeptiert": [82, 116, 178, 241, 256, 304, 359, 457, 495, 545, 550], "reboot": [82, 198, 227, 278, 288, 406, 641, 643, 688], "eintipp": 82, "ip_des_serv": 82, "komfortabl": [82, 688], "kitty": 82, "umbenenn": [82, 92, 512, 561, 641], "exe": 82, "bak": [82, 88, 653], "operation": [82, 202, 234, 248, 368, 646, 653], "sed": 82, "permitemptypassword": 82, "sshd_config": 82, "nssh": 82, "securetty": 82, "abzusich": 82, "unterbind": 82, "thomas": [82, 215, 545, 548, 550, 554, 558], "krenn": 82, "systemupdat": 82, "versorg": [82, 287], "nix": 82, "herunterzufahr": 82, "poweroff": [82, 205, 244, 266, 466, 653], "snapshot": [82, 162, 227, 274, 338], "angesetzt": 82, "Hat": [82, 189, 306, 307, 562, 567, 591], "menu": [82, 94, 95, 96, 166, 169, 198, 202, 219, 226, 227, 231, 248, 254, 255, 262, 338, 351, 378, 409, 433, 646, 651, 653, 686], "getatigt": [82, 519], "de_d": 82, "umzustell": [82, 693], "filesyst": 82, "sei": [82, 304, 632, 687], "virtualbox": [82, 91], "gasterweiter": 82, "mitinstalliert": 82, "servervariant": 82, "bildschirmgross": 82, "gasteerweiter": 82, "einleg": 82, "media": [82, 162, 172, 231, 233, 276, 368, 370, 433, 507], "cdrom": 82, "vboxlinuxaddition": 82, "passt": 82, "addus": 82, "gecos": 82, "roomnumb": 82, "workphon": 82, "homephon": 82, "usermod": [82, 278], "ag": [82, 104, 278], "sleep": [82, 248, 281, 338, 370, 536, 646, 654], "hybernat": 82, "abgeschaltet": [82, 381], "allowsusp": 82, "allowhibernation": 82, "allowsuspendthenhibernat": 82, "allowhybridsleep": 82, "Vor": [82, 189, 284, 536, 641], "bashrc": 82, "abzukurz": 82, "nano": [82, 83, 84, 86, 87, 88, 89, 92, 103, 265, 278, 465, 630, 688], "anfug": [82, 479], "kommentarzeich": 82, "zeilenanfang": 82, "abgemeldet": [82, 220], "angemeldet": [82, 212, 213, 220, 319], "setuptool": [83, 629, 630, 667], "venv": [83, 152, 627, 655], "wget": [83, 225, 256, 309, 628, 688], "unzip": 83, "account": [83, 139, 176, 198, 208, 211, 227, 254, 262, 273, 314, 335, 361, 362, 365, 368, 388, 390, 456, 530, 532, 534], "postinstall": [83, 89, 630, 655, 693], "dateiberecht": 83, "py_shng": [83, 89], "auslogg": 83, "einlogg": [83, 220, 362, 472, 688], "getetet": 83, "setpermission": [83, 85, 653, 655], "nachinstalli": 83, "konsol": [83, 116, 162, 163, 192, 200, 314, 376, 573], "test_requirement": 83, "eph": [83, 580, 598, 647, 650, 667], "v3": [83, 84, 85, 107, 115, 116, 125, 162, 247, 493, 545, 548, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 674, 687, 691], "holidays": [83, 96, 102, 106, 148, 217, 423, 520, 599, 633, 634, 643, 646, 649, 651], "psutil": 83, "dateutil": [83, 361], "v2": [83, 85, 106, 152, 162, 213, 220, 223, 247, 248, 261, 270, 271, 273, 282, 302, 304, 338, 354, 355, 356, 357, 375, 419, 420, 487, 493, 496, 506, 524, 545, 548, 550, 552, 554, 558, 577, 579, 641, 646, 649, 651, 652, 653, 654, 655, 671, 674, 678, 682, 689], "ruamel": 83, "installing": [83, 651], "virtualenv": [83, 152, 627], "4024": 83, "mechanismus": [83, 566], "nachgelad": 83, "erschein": [83, 115], "fehlersuch": [83, 115, 189], "versucht": [83, 100, 115, 164, 165, 203, 233, 262, 331, 351, 381, 453, 527, 682], "netzwerkverbind": [83, 363, 393, 400, 408, 435, 441, 464, 467, 622], "erstkonfiguration": 83, "startseit": 83, "ausgegraut": 83, "begonn": [83, 119], "sucht": [83, 103, 115, 314, 333, 453], "gelingt": 83, "notepad": [83, 103], "einruck": [83, 100, 103, 106, 112], "position": [83, 142, 200, 215, 218, 219, 325, 331, 332, 333, 334, 453, 508, 563, 598, 599, 636, 638, 651, 652, 653, 682], "objekthierarchi": 83, "bildet": [83, 585], "logikeditor": [83, 671], "konfigurationseinstell": [83, 106, 671], "standort": [83, 219], "mapcoordinat": [83, 113], "net": [83, 97, 113, 167, 184, 198, 200, 239, 268, 274, 275, 278, 309, 315, 379, 394, 440, 468, 545, 558], "airport": [83, 113, 365], "berlin": [83, 103, 113, 148, 344, 460], "tegel": [83, 113], "5588327": [83, 113], "2884374": [83, 113], "elev": [83, 103, 113, 142, 599, 636, 649], "tz": [83, 103, 113, 148, 263, 575, 599, 634, 662, 664], "europ": [83, 103, 113, 148], "deprecated_warning": [83, 113], "default_languag": [83, 113, 151], "supported": [83, 113, 130, 139, 148, 152, 160, 161, 175, 182, 183, 186, 193, 199, 227, 231, 254, 257, 290, 298, 301, 305, 317, 344, 352, 365, 370, 538, 616, 644, 645, 646, 649, 651, 655, 663, 670], "possibl": [83, 103, 113, 141, 148, 159, 176, 185, 205, 231, 245, 247, 257, 274, 278, 280, 290, 301, 334, 355, 356, 357, 368, 370, 395, 623, 641, 646, 647, 649, 650, 651, 652, 653, 654, 655, 670], "sqlit": [83, 92, 103, 106, 113, 162, 183, 186, 187, 192, 200, 218, 221, 222, 239, 258, 287, 356, 357, 396, 485, 545, 554, 641, 643, 644, 645, 646, 649, 666, 667, 691], "pymysql": [83, 111, 113, 186], "module_path": [83, 103, 113, 670], "assiging": [83, 103, 113], "assign_compatibility": [83, 103, 113], "compat_1": [83, 103, 113], "programmablauf": [83, 103, 115], "notiert": [83, 98, 103, 577], "ausfuhrungskett": 83, "untersuch": [83, 115, 401], "grundkonfiguration": [83, 96], "yyyy": [83, 116, 263, 411, 520, 575, 585, 599, 634], "mm": [83, 102, 116, 184, 188, 262, 263, 268, 269, 314, 325, 365, 411, 479, 520, 575, 599, 634], "dd": [83, 116, 185, 263, 411, 520, 575, 599, 634, 646, 681], "hh": [83, 104, 107, 115, 116, 125, 184, 188, 263, 268, 314, 325, 479, 520, 545, 558, 575, 599, 633, 634, 638, 643], "__main__": [83, 116], "platform": [83, 113, 116, 645, 646], "provinz": [83, 96, 104, 107, 115, 125, 638], "feiertagsdefinition": 83, "meldungstext": 83, "zeitangab": [83, 155, 184, 268, 291, 304, 347, 562, 599, 634], "startzeit": [83, 244, 396, 423, 479, 580], "kritisch": [83, 107, 115], "ungewohnt": 83, "funktionsschwier": 83, "gelt": [83, 97, 328, 330], "entscheid": 83, "ohnehin": [83, 333, 381], "handlungsbedarf": 83, "123456789abcdef123456789abcdef123456789abcdef": 83, "wsproto": 83, "check_same_thread": [83, 111, 186], "kraft": 83, "weiss": [83, 92, 162, 196, 200, 321, 403, 450, 486, 545, 550], "arbeitsgrundlag": 83, "stattfind": [83, 326, 330, 332], "einsetz": [83, 219, 330], "abbruch": [83, 92, 189, 398, 400, 408, 435, 441, 464, 467], "entwicklungsteam": 83, "skriptdatei": 83, "wann": [83, 108, 109, 155, 187, 237, 304, 324, 327, 423, 460, 508, 519, 577], "ex_logging": [83, 243, 263], "example_logging": [83, 243], "ex_persist": 83, "example_persistanc": 83, "kernfunktionalitat": 83, "smarthomemg": 84, "popular": [84, 104, 185], "eclips": [84, 121, 279], "lsb": 84, "vendor": [84, 86, 160, 192, 280, 646], "preset": [84, 86, 173, 370, 536], "05": [84, 116, 187, 234, 247, 270, 271, 273, 294, 295, 337, 436, 545, 550], "39": [84, 155, 165, 304, 341, 356, 357, 674], "47": [84, 187, 230, 262], "cest": [84, 86, 148], "5min": 84, "docs": [84, 162, 221, 222, 296, 325, 337, 359, 394, 472, 511, 646, 648, 655], "sysv": 84, "generator": [84, 180, 346, 352, 646, 686, 688], "3548": 84, "mai": [84, 526, 640, 657], "3543": 84, "gestoppt": [84, 112, 200, 295, 416], "texteditor": [84, 89, 92, 164, 490, 630], "hineinkopi": [84, 89, 630, 682], "execstart": [84, 89, 90, 630], "workingdirectory": [84, 89, 630], "timeoutstartsec": [84, 89, 90, 630], "90": [84, 160, 226, 229, 325, 328, 329, 334, 370, 419, 502, 508, 574], "wantedby": [84, 89, 90, 630], "service": 84, "authentifizi": [84, 120, 599], "anonym": 84, "password_fil": 84, "passwd": [84, 88, 111, 161, 186, 234, 688], "allow_anonymous": 84, "accountinformation": 84, "stev": 84, "explizit": [84, 87, 222, 223, 314, 472, 552, 553, 589, 593, 598], "php": [85, 106, 156, 192, 303, 312, 313, 341, 355, 356, 357, 496, 524, 525, 652, 688], "libawl": 85, "curl": [85, 164, 170, 229, 641, 670], "xml": [85, 106, 161, 170, 279, 365, 368, 369, 535, 545, 550], "mbstring": 85, "rws": 85, "martin": [85, 104, 218, 352, 353, 355, 356, 357], "gleiss": [85, 218], "schreibrecht": [85, 226, 302, 424, 425, 512], "apach": 85, "umgang": [85, 131, 162, 423, 563, 573, 599, 634, 676, 693], "konflikt": [85, 90, 381], "entsteh": [85, 566], "vorkonfiguriert": [85, 115], "checking": [85, 130, 136, 141, 186, 645, 646, 649, 652, 655, 656, 670], "knopf": [85, 407], "einzugeb": [85, 93, 261], "demoseit": 85, "funktionsbereich": 85, "_templat": [85, 650], "meineneuevisu": 85, "bedienelement": 85, "flips": 85, "werteanzeig": 85, "makros": [85, 642, 687], "makrosprach": 85, "twig": [85, 652, 687], "bedurfnis": [85, 107, 575], "projektseit": 85, "nachzules": [85, 223, 256, 262, 271, 285, 330, 338, 532, 577], "gitgub": 85, "nachzuinstalli": 85, "gepflegt": [85, 106, 354, 545, 547, 548, 550, 552, 554, 558, 577, 688, 693], "durchweg": 85, "statisch": [85, 103, 314, 325, 326, 328, 332, 690], "manipuliert": [85, 330], "ubermittelt": [85, 162, 168, 170, 219, 223, 306, 307, 323, 375, 562, 567, 591], "dom": 85, "newstuff": 85, "heran": 85, "vertraut": [85, 338, 512], "inlin": [85, 646, 653, 656], "assistent": [85, 302, 496, 689], "parametriert": 85, "zwischenablag": [85, 164, 219, 226], "systemmenu": 85, "erreich": [85, 103, 249, 450], "visuseit": [85, 354], "misch": [85, 103, 302, 354, 682], "softwareschnittstell": 86, "uberspring": 86, "distribution": [86, 258, 370, 630], "n\u00e4chstes": [86, 331], "originalzeil": 86, "darunt": [86, 96, 97, 98, 189, 204, 323, 329, 450], "physikal": [86, 192, 232, 328, 329], "multicast": [86, 298, 314, 369, 434, 493, 545, 550, 622, 643], "tp": 86, "uart": [86, 200], "konsulti": [86, 96, 347, 641, 652, 653, 654, 655, 656, 675], "telegrammverlust": 86, "minimi": [86, 189], "wartezeit": [86, 165, 233, 392, 423, 461, 498, 499], "30msec": 86, "eingelegt": 86, "uberfahr": 86, "obsolet": [86, 347, 655], "ets": [86, 162, 232, 434, 646], "groupsocketlist": 86, "protokolliert": [86, 162, 163, 188, 222, 243, 362, 434], "202": [86, 187], "43": [86, 328, 682], "203": [86, 264, 464], "2e": [86, 283], "204": 86, "0b": 86, "bf": 86, "34": [86, 107, 111, 115, 160, 256, 306, 307, 347], "191": 86, "c0": 86, "c3": [86, 182, 218, 253, 260], "f2": 86, "fb": 86, "7e": [86, 245], "243": 86, "protokolli": [86, 115, 188], "ctrl": [86, 90, 203, 227, 278], "socket": [86, 89, 141, 355, 630, 649, 653, 655], "6720": [86, 103, 111, 123, 434, 617], "ubernimmt": [86, 259, 330, 562, 567, 591, 652, 653, 654, 656, 679], "sofort": [86, 165, 169, 178, 219, 295, 324, 326, 327, 328, 330, 332, 508, 519, 641, 674], "19": [86, 104, 178, 192, 198, 210, 215, 227, 240, 262, 288, 334, 338, 341, 443, 538, 586, 633, 638, 643], "07": [86, 125, 165, 171, 199, 273, 328, 347, 360, 638, 671], "stream": [86, 107, 115, 116, 127, 136, 161, 198, 244, 275, 368, 375, 453], "865": 86, "limit": [86, 160, 211, 221, 235, 263, 344, 407, 649, 651, 652, 655], "4915": 86, "99": [86, 164, 167, 239, 308, 309, 314, 334], "groupwrit": [86, 597], "send_tim": [86, 103, 111, 123, 232], "600": [86, 103, 111, 123, 183, 284, 365, 416, 442, 461, 508, 509, 530, 532, 649], "time_ga": [86, 103, 111, 123], "ga": [86, 223, 328, 339, 340, 594, 597, 650, 653, 670], "date_ga": [86, 103, 111, 123], "busmonitor": [86, 107, 111, 115, 195, 196, 232, 646, 666], "owhttpd": 87, "paketinstallation": 87, "adapt": [87, 160, 167, 181, 195, 200, 281, 351, 379, 387, 407, 545, 548, 550, 646, 651, 652, 653], "ds9490r": 87, "4304": [87, 461, 617], "fak": 87, "ds18s20": [87, 667], "ds2405": 87, "ds9490": [87, 261], "ds9097": 87, "ttys1": 87, "3131": 87, "random": [87, 250, 325, 453, 598, 646], "simulated": 87, "mountpoint": 87, "mnt": [87, 367], "1wir": [87, 285], "allow_oth": 87, "2121": [87, 663], "owftpd": 87, "ftp": 87, "2120": 87, "tcp6": 87, "owhttp": 87, "konfigurationsander": 87, "bridg": [87, 247, 257, 337, 371, 418, 419, 420, 458, 545, 548, 641, 646, 648, 649, 653, 655], "auskommentiert": [87, 106, 612, 613, 615], "mv": [88, 104, 197, 281, 405, 520, 545, 558, 643, 688], "workgroup": 88, "syslog": 88, "panic": 88, "encrypt": 88, "passdb": 88, "tdbsam": 88, "obey": 88, "restriction": [88, 186], "sync": [88, 279, 319, 653, 655], "program": [88, 176, 248, 301, 521], "snew": 88, "spassword": 88, "retyp": 88, "supdated": 88, "ssuccessfully": 88, "map": [88, 215, 218, 219, 254, 255, 260, 262, 367, 649, 652, 688], "guest": [88, 170, 261], "bad": [88, 98, 164, 250, 275, 276, 682], "usershar": 88, "printing": 88, "printcap": 88, "spoolss": 88, "due": [88, 138, 227, 245, 334, 364, 643, 644, 646, 649, 650, 652, 653, 655, 663, 667], "reason": [88, 133, 141, 227, 240, 660], "smb2_10": 88, "smb3": 88, "deny": [88, 355, 496, 524, 688, 690], "browseabl": 88, "writabl": [88, 202, 211, 370], "mask": [88, 141, 230, 423, 478], "0664": 88, "0775": 88, "besagt": [88, 508], "smb2": 88, "freigab": [88, 200, 219], "smb3_11": 88, "smbpasswd": 88, "explor": 88, "debiam": 89, "neuling": 89, "einrichtet": 89, "verstand": [89, 112, 115, 319, 590, 596], "forking": [89, 630], "pidfil": [89, 129, 630, 646], "failur": [89, 90, 144, 227, 278, 630], "900": [89, 90, 176, 192, 195, 282, 284, 329, 361, 388, 462, 468, 481, 482, 510, 537, 545, 550, 574, 630, 650], "restartforceexitstatus": [89, 90, 630], "nachinstallation": 89, "admingui": [89, 632], "zusammenhang": [89, 92, 106, 215, 261, 326, 332, 599, 619, 622, 634], "venvs": [89, 90, 630, 655], "tail": [89, 328], "autostart": [89, 90], "auszuschalt": [89, 90, 103], "genugt": [89, 90, 116], "esphome_install": 90, "verseichnis": 90, "restauriert": 90, "esphome_start": 90, "chrom": [90, 155, 359], "safari": [90, 304, 356, 357, 651], "6052": 90, "entdeckt": [90, 306, 307], "discovered": [90, 261, 645, 652], "onlin": [90, 121, 165, 179, 193, 194, 216, 217, 218, 219, 258, 259, 291, 293, 312, 313, 314, 337, 371, 642, 649, 655, 656], "restartsec": 90, "py_esphom": 90, "linuxsyst": 91, "mosquitto": [91, 617], "messdat": [91, 189, 287], "temperatur": [91, 107, 115, 131, 150, 160, 163, 164, 165, 170, 176, 177, 178, 182, 186, 189, 192, 195, 200, 207, 212, 218, 219, 221, 229, 232, 235, 244, 245, 249, 261, 262, 279, 281, 287, 288, 289, 291, 293, 310, 315, 317, 321, 325, 328, 329, 333, 334, 337, 341, 343, 349, 358, 361, 365, 371, 382, 383, 392, 394, 419, 420, 443, 448, 461, 465, 468, 479, 480, 484, 485, 486, 487, 514, 521, 526, 530, 545, 554, 573, 599, 622, 643, 646, 651, 652, 655], "samba": 91, "dateifreigab": 91, "allererst": [91, 530, 632], "geseh": 91, "Sichern": 92, "szenari": 92, "upgedated": [92, 283], "systemubergreif": 92, "stuckwerk": 92, "abschalt": [92, 170, 289], "itemwert": [92, 167, 170, 187, 256, 287, 326, 332, 338, 351, 360, 412, 507, 512, 563, 573, 574, 599], "owserv": [92, 261, 461, 545, 548, 617, 646], "sonstig": [92, 162, 183, 260, 320, 324, 331, 671], "basisinstallation": 92, "fehlschlagt": 92, "verzweig": [92, 370], "fehlschlag": 92, "ungesichert": 92, "auskennt": 92, "selbstand": 92, "ausgegang": [92, 330, 630], "less": [92, 147, 262, 365], "cat": [92, 126, 367], "zuruckgespielt": 92, "rrd": [92, 102, 545, 554, 643, 645, 646, 655, 656, 665, 667], "zuruckspiel": 92, "wirklich": [92, 162, 229, 262, 325, 338, 431, 583], "pluginverzeichnis": [92, 321], "wiss": [92, 103, 108, 192, 641], "erhoht": [92, 112, 162, 450, 461, 571, 586, 671, 672, 674], "distributionsupgrad": 92, "mitbringt": [92, 328, 583, 687], "nachgeles": [92, 194, 212, 213, 265, 289, 563, 584, 631, 693], "revision": 92, "programmstart": 92, "eingespielt": 92, "durchaus": [92, 103, 115, 326], "abgebroch": [92, 169, 189, 338, 498, 499], "committ": [92, 648], "stash": 92, "fraglich": 92, "auscheck": 92, "uberschreibbar": 92, "pypi": [92, 119, 368, 520, 598, 612, 641, 643, 646, 648, 650, 651, 655, 670, 671, 674], "programmk": 92, "aufgeteilt": [92, 229, 351, 641], "durchlauft": 92, "build_requirement": [92, 675, 676], "ausgelass": 92, "Und": [92, 106, 116, 184, 268, 328, 333], "Von": [92, 102, 167], "ruh": 92, "anschau": 92, "durchsuch": [92, 217, 532], "stimmt": 92, "einschalt": [92, 163, 164, 169, 256, 316, 338, 369, 375, 381, 407, 488, 591], "2013": [92, 312, 313, 352, 353, 355, 356, 357, 639, 668], "wheezy": 92, "kinderschuh": 92, "vielen": [92, 179, 219, 282, 283, 287, 289, 337, 453], "etlich": 92, "entwicklungsschub": 92, "rechtfert": 92, "vorzuschlag": 92, "problemlos": [92, 351], "umzusteig": [92, 374, 381, 383, 394, 397, 421, 426, 446, 463, 474, 497, 506, 523, 524, 532], "weiterverwendet": [92, 162], "vornehm": [92, 101, 292, 622, 682], "umgestieg": 92, "gescheh": [92, 333, 338, 589, 628, 688], "zuruckgesichert": 92, "ubernahm": [92, 200, 328], "ideal": 92, "konvert": [92, 106, 306, 307, 436, 671, 673], "einarbeit": 92, "doppel": [92, 106, 585], "einruckeb": 92, "kontrolliert": [92, 162, 206], "geschaut": 92, "konvertierungstool": 92, "conf_to_yaml_convert": [92, 106, 135, 673, 676], "durchlauf": [92, 328, 329, 330, 331, 333, 515, 641, 688], "umschwenk": 92, "nacharbeit": 92, "empfehl": [92, 101, 283, 586], "prominent": 92, "169712030000": 92, "16971203": 92, "konfigurier": 93, "freitext": 93, "dialogfeld": 93, "umgestellt": [93, 162, 170, 233, 641, 652, 671], "beschreibungstext": 93, "auffind": [93, 116], "erleichtert": [93, 223], "Was": [94, 123], "hinzukonfiguriert": 95, "aufklapp": [95, 292, 674], "offnet": [95, 291, 320, 337], "konfigurationsdialog": [95, 96], "gemein": 95, "geschob": 95, "n\u00e4chsten": [95, 115, 164, 184, 243, 262, 263, 268, 295, 314, 323, 325, 329, 333, 347, 373, 453, 502, 519, 569, 585, 589, 592, 596, 599, 635, 636, 641, 673], "verli": 95, "essentiell": 96, "mondstand": 96, "veranlasst": [96, 325, 331, 338], "fortschritt": 96, "reit": [96, 104, 170, 189, 210, 212, 213, 262, 336, 633, 671], "vorzugsweis": [96, 106, 292], "abkurz": [96, 131, 237], "ch": [96, 104, 176, 210, 248, 315], "fra": [96, 104], "uk": [96, 104, 229], "bundesland": [96, 520, 545, 558], "regional": [96, 104, 643], "landesweit": 96, "usa": 96, "brasili": 96, "holidays_custom": [96, 104, 633], "regeln": [96, 97, 104, 194, 263, 316, 325, 326, 330, 575, 577, 633], "sysadmin": [96, 104, 633], "systemadministrator": 96, "freitag": [96, 104, 325, 328, 479], "juli": [96, 104, 526, 640], "begang": 96, "benutzerspezif": 96, "vervollstandigt": [96, 674], "administation": 96, "dahin": [96, 272], "demzufolg": 97, "struct_": [97, 102, 106], "vorangestellt": [97, 114, 262, 462, 629, 671], "namensdoppl": [97, 114], "vorzubeug": [97, 114], "namensvergab": 97, "darksky": [97, 268, 364, 366, 545, 558, 641, 643, 645, 646, 648, 649, 652, 653, 655, 674], "vordefiniert": [97, 115, 170, 219, 263, 293, 578, 594], "angewendet": [97, 115, 121, 230, 314, 575, 577], "mein_wetter1": 97, "mein_wetter2": 97, "verdeutlicht": [97, 566, 589], "wettervorhersag": [97, 641], "mein_wett": [97, 365], "local_weath": 97, "wetterbericht": 97, "platzhalt": [97, 116, 169, 188, 263, 319, 330, 376, 397, 507, 564, 575, 585, 693], "report": [97, 162, 205, 227, 278, 365], "weather_hom": 97, "weather_summer_residenc": 97, "summer_residenc": 97, "oberst": [97, 100, 106, 112, 181, 369], "individual_struct_01": 97, "individual_struct_02": 97, "item_01": 97, "item_02": 97, "subit": [97, 202, 211], "item_a": [97, 446, 463], "item_b": [97, 446, 463], "my_tre": 97, "my_complex_data": 97, "individual_it": 97, "stammt": [97, 116, 261], "konntn": 97, "strukturdefinition": 97, "verweis": [97, 103, 327, 329, 330, 331, 347, 423, 545, 547, 548, 550, 552, 554, 558, 575], "unterstrukturreferenz": 97, "beschleun": 97, "unterstrukturdefinition": 97, "tret": [97, 632], "zutag": [97, 576], "unterstruktur": [97, 106, 112, 682], "kapitel": [97, 170, 189, 200], "dasselb": 97, "zusammengefuhrt": 97, "attributdefinition": 97, "attributwert": [97, 169, 170, 229, 338, 351, 443, 564, 693], "substruct": 97, "gemergt": 97, "spezialeintrag": 97, "standardverhalt": [97, 262, 314], "abgeandert": [97, 328, 508, 630], "verbund": [97, 124, 170, 171, 178, 189, 207, 212, 213, 223, 244, 259, 265, 283, 284, 285, 289, 302, 314, 336, 382, 395, 471, 562, 572, 621, 626, 642, 693], "mergend": 97, "merge_uniqu": [97, 328, 329], "listeintrag": 97, "neudefinition": 97, "zusammengefugt": 97, "listeneintrag": [97, 314, 326, 338, 674], "namensschema": 97, "namensdoppel": 97, "individual_struct": 97, "herkunft": [97, 232], "auszuschliess": [97, 351], "ruckgrat": 98, "typischerweis": [98, 170, 261, 262, 331], "doppelpunkt": [98, 106, 331, 566, 577], "eingeruckt": 98, "zeig": [98, 120, 162, 163, 262, 561], "signalisiert": 98, "weitergeleitet": [98, 120, 262], "vorgegeb": [98, 107, 124, 203, 316, 323, 326, 328, 332, 446, 463, 498, 499, 577, 622], "codiert": [98, 164, 192, 219, 232, 306, 307, 401, 434], "decodiert": [98, 310], "133": [98, 162, 210], "130": [98, 169, 195, 196, 210, 288, 305, 306, 307, 403], "dimmwert": [98, 106, 162, 337, 407], "zahlenwert": 98, "dimmeinstell": 98, "vorsieht": 98, "lampedimm": 98, "134": [98, 210], "132": [98, 210], "tipparbeit": 98, "erspar": 98, "hierarch": [98, 100, 112, 192, 323, 333, 508], "angeordnet": 98, "hauptit": [98, 238], "kinditem": [98, 424, 425], "eingefuhrt": [98, 562, 589, 641, 671], "uberblick": [98, 106, 215, 367], "schema": [98, 222], "stockwerk": 98, "gewerk": 98, "deck": [98, 196, 289, 683], "haus": [98, 219, 316, 339, 340], "auszulos": [98, 241, 285, 316, 351, 511], "berechtigungseb": 98, "schreibzugriff": 98, "reagi": [98, 169, 324, 382], "dash": [98, 185, 395], "dashbutton_mac": [98, 185], "ac": [98, 219, 229, 234, 235, 346, 436], "b0": [98, 200], "dashbutton_mod": [98, 185], "flip": [98, 185, 395], "dashbutton": [98, 545, 548, 641, 643, 646, 670], "myit": [100, 203, 205, 368, 568, 570], "_innerhalb_": 100, "1w_bus": 100, "_bus": 100, "unzulass": [100, 103], "programmiersprach": [100, 103, 106, 153, 172, 587], "aufgebaut": [100, 106, 164, 169, 244, 292, 308, 309, 321, 328, 333, 500, 512, 534, 641, 682], "ihrerseit": 100, "hierarchieeb": [100, 324, 331], "oma": [100, 563], "papa": [100, 563], "referenzier": [100, 329, 519, 561, 638, 671], "erfull": [100, 187, 289], "glieder": 100, "zuweis": [100, 106, 112, 215, 232, 261, 262, 306, 307, 337, 338, 351, 426, 427, 498, 499, 517, 522, 563, 567, 573, 576, 577, 589, 591, 672], "top": [100, 123, 134, 206, 304, 352, 356, 357, 651, 653, 655], "namensraum": [100, 594], "unvorhergeseh": 100, "einzeil": [100, 106], "zeilen": [100, 381], "angenomm": [100, 112, 121, 155, 169, 304, 325, 326, 330, 332, 333, 370, 396, 419, 420, 457, 508, 561, 568, 570, 599, 634], "mehrzeil": [100, 106, 229], "vorerst": [100, 333, 517], "herauszufind": [100, 111, 283, 325, 448, 492, 597], "nachseh": [100, 106, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "einsteig": [101, 103], "nachfolg": [101, 124, 170, 187, 189, 192, 215, 232, 262, 285, 287, 328, 339, 340, 359, 371, 381, 589, 641, 652, 653, 654, 655, 656, 682], "richtet": [101, 265], "cb": [102, 635], "create_backup": [102, 136, 149, 635], "shng_config_backup": 102, "cbt": [102, 635], "create_backup_t": [102, 635], "shng_config_backup_yyyy": 102, "tt_hh": 102, "ausschliess": [102, 339, 340, 575, 682, 688], "gelegt": 102, "rb": [102, 275, 635], "restore_backup": [102, 635], "config_dir": [102, 635], "codebasis": 103, "erlern": [103, 106], "elegant": 103, "objektorientiert": 103, "plattformunabhang": 103, "bedingt": [103, 262, 329], "threaded": [103, 141], "peinlich": 103, "achtet": 103, "Etwas": [103, 688], "bar": [103, 126, 222, 262, 263, 352, 563, 646, 686], "unweig": 103, "oftmal": [103, 232, 325, 326, 381], "fehlerquell": 103, "argernis": 103, "herein": 103, "emacs": 103, "ging": 103, "studio": 103, "bbedit": 103, "syntaxeinfarb": 103, "hauptverzeichnis": 103, "gewohn": [103, 169], "hauptmodul": 103, "grundgerust": 103, "pluginentwickl": 103, "grundsystem": 103, "userfunction": [103, 649, 652, 655], "modulbibliothek": 103, "bekommt": [103, 192, 200, 237, 261, 262, 282, 349, 576, 596, 685], "hilfsprogramm": [103, 165], "w\u00e4ren": [103, 106, 116, 328, 674], "wunsch": [103, 354, 370], "verwaltet": [103, 164, 265, 339, 340, 346], "verzeichnisstruktur": 103, "ublich": [103, 169, 291, 293, 333, 586], "aufteil": [103, 671], "67": [103, 247, 254, 255, 283], "36": [103, 107, 115, 155, 230, 275, 279, 289, 304, 347, 356, 357], "modulpfad": 103, "wertzuweis": [103, 333, 577, 579], "autotim": [103, 133, 148, 162, 200, 218, 262, 266, 282, 283, 284, 351, 360, 562, 573, 577, 646, 649, 655, 667, 670, 693], "beeinflusst": [103, 314, 563], "konfigurationsanweis": 103, "sql": [103, 130, 317, 506, 653], "sqlite_visu2_8": [103, 317, 545, 554, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "inzwisch": [103, 115, 212, 213, 314, 332, 383, 545, 550, 586], "leistungsfah": 103, "bindet": [103, 333], "auszug": [103, 229], "backendserv": 103, "xxxx": [103, 219], "eckig": [103, 106, 115, 116, 167, 213, 326], "abgearbeitet": [103, 230, 339, 340, 632], "beispiellog": [103, 164, 338], "umgebungsvariabl": 103, "diskusag": [103, 580], "logikaufruf": 103, "afterward": [103, 130, 218, 273, 296, 648, 655], "erklarungsbedurft": 103, "programmzustand": 103, "noti": [103, 306, 307], "komprimier": 103, "bericht": [103, 306, 307], "stromzahl": [103, 497, 498, 499, 545, 548, 550], "ziemlich": [103, 106, 229], "fein": 103, "hartnack": 103, "reduzi": 103, "aufs": [103, 622, 688, 693], "konzentri": [103, 164], "egal": [103, 169, 314, 332, 339, 340, 351], "eingebaut": [103, 162, 219, 232, 270, 271, 363, 641], "aufbaus": 103, "themat": 103, "gesichtspunkt": 103, "aufzusplitt": 103, "parametri": 103, "eg_kuech": 103, "eg_wohnzimm": 103, "og_schlafzimmer_elt": 103, "og_schlafzimmer_ryan": 103, "terrass": [103, 682], "kwl": [103, 183, 195, 196, 207, 270, 271, 393, 415, 470, 545, 550, 643, 670], "zentralheiz": 103, "zzt": 104, "region": 104, "holidays_country": [104, 633], "holidays_provinc": [104, 633], "holidays_stat": [104, 633], "Des": [104, 170, 359], "formuliert": [104, 573, 633], "weitestgeh": [104, 576, 633], "feiertagsdatum": 104, "weggelass": [104, 115, 116, 155, 192, 262, 289, 304, 306, 307, 314, 325, 326, 330, 531, 595, 641], "jahrlich": [104, 585], "dow": [104, 633], "dow_week": [104, 633], "dow_start_week": [104, 633], "jon": [104, 633], "doe": [104, 338, 633], "birthday": [104, 633], "august": [104, 265, 431, 526, 639, 640, 657], "geburtstag": 104, "100th": [104, 633], "tuesday": [104, 633], "july": [104, 633, 639], "dienstag": [104, 325, 351, 479, 585], "wednesday": [104, 633], "mittwoch": [104, 325, 479], "1st": [104, 633], "countri": 104, "provinc": [104, 633], "country": [104, 219, 229, 262, 365, 633, 655, 688], "germany": [104, 183, 227, 260, 365, 633, 655], "bw": [104, 520, 545, 558, 643], "bb": [104, 520, 545, 558, 643], "hb": [104, 520, 545, 558, 643], "he": [104, 353, 520, 545, 558, 643], "ni": [104, 239, 308, 309, 520, 545, 558, 643], "rp": [104, 520, 545, 558, 643], "sn": [104, 297, 520, 545, 558, 643], "austria": 104, "switzerland": 104, "ar": 104, "ai": [104, 200, 239, 308, 309], "bl": 104, "bs": 104, "ge": 104, "gl": 104, "gr": 104, "ju": 104, "ne": [104, 688], "sg": 104, "sz": [104, 451], "tg": 104, "ti": 104, "ur": 104, "vd": [104, 169, 210], "vs": [104, 262], "zg": 104, "zh": 104, "belgium": 104, "franc": 104, "m\u00e9tropol": 104, "alsac": 104, "mosell": 104, "guadeloup": 104, "guyan": 104, "martiniqu": 104, "mayott": 104, "nouvell": 104, "cal\u00e9doni": 104, "r\u00e9union": 104, "polyn\u00e9si": 104, "fran\u00e7ais": 104, "saint": 104, "barth\u00e9l\u00e9my": 104, "wallis": 104, "et": 104, "futuna": 104, "luxembourg": 104, "poland": 104, "unitedkingdom": 104, "england": 104, "north": [104, 502], "ireland": [104, 160], "scotland": 104, "wal": 104, "fl": [104, 169, 633], "united": [104, 633], "brazil": [104, 633], "custom": [104, 136, 148, 160, 188, 230, 432, 441, 538, 633, 643, 646, 649, 655], "repeat": [104, 166, 170, 250, 326, 332, 382, 420, 453, 545, 550, 633, 643, 669], "friday": [104, 633], "reprasenti": [105, 117, 592, 600], "herz": 105, "eingearbeitet": [105, 682], "syntakt": [105, 172], "fehlerhalft": 105, "vermutet": 105, "werdeen": [106, 487], "configobj": 106, "multilevel": 106, "umsteig": 106, "konvertiert": [106, 165, 270, 271, 325, 329, 423], "blockly": [106, 109, 137, 545, 554, 643, 653, 655, 671], "lern": [106, 112, 124, 440], "gelernt": [106, 124, 673], "szenendefinition": [106, 112, 641], "beschaftigt": 106, "konfigurationsmog": [106, 115, 168, 197, 276, 568, 570, 577], "standardformat": 106, "voraussicht": [106, 262, 381, 502], "beigefugt": [106, 689], "durchfuhrt": [106, 291, 337, 371, 632], "dateityp": 106, "interess": [106, 289], "section1": 106, "key1": 106, "key2": 106, "section2": 106, "key3": [106, 210], "key4": [106, 210], "subsection": 106, "sub_subsection": 106, "gegensatz": [106, 112, 187, 212, 351, 562, 567, 576, 591], "sektion": [106, 123, 320], "binar": [106, 306, 307, 400, 408, 464, 467, 476, 477, 621, 622], "boolwert": 106, "hierarchi": [106, 321, 330, 331, 347, 519, 560], "spezifikation": [106, 167, 192, 686], "wohnung": [106, 112, 155, 187, 289, 304, 356, 357, 561, 567, 591, 682], "koch": [106, 187, 325, 682, 683], "strahl": 106, "kuchenwand": 106, "knx_init": [106, 160, 162, 232, 239, 275, 360, 641, 665, 683], "kochfeldgesamt": 106, "kochfeld": 106, "watt": [106, 165, 234, 305, 337, 436, 502, 574], "kochfeld1": 106, "kochfeld2": 106, "lesbarst": 106, "folgezeil": 106, "doubl": [106, 126, 186, 262, 646], "escaped": 106, "sv_pag": [106, 162, 288, 566, 682, 683], "room": [106, 160, 173, 185, 193, 195, 222, 248, 272, 276, 288, 352, 355, 368, 427, 496, 523, 562, 573, 590, 646, 649, 655, 682, 683, 686], "visu_downlight": 106, "downlight": 106, "tres": [106, 160, 683], "sv_widget": [106, 195, 206, 219, 289, 314, 561, 566, 646, 656, 682, 683, 687], "dl_auss": 106, "dl_inn": 106, "inn": [106, 133, 191, 201, 264, 267], "dl_mitt": 106, "mittl": [106, 160, 262, 334, 362, 622], "selbet": 106, "fragt": [106, 165, 261, 380], "auskommentier": 106, "bewegt": 106, "einli": 106, "zweimal": 106, "herausbeweg": 106, "lesbar": [106, 262, 561, 584, 586], "konformitat": 106, "editierbar": [106, 672], "sytax": [106, 597], "highlighting": [106, 671], "faltung": 106, "ausruck": 106, "logikdefinition": 106, "itemdefinition": [106, 192], "ain": [106, 170, 171, 382, 383, 653], "datenformat": [106, 313, 622], "unhand": 106, "leistungsstark": 106, "bereitzustell": 106, "codetyp": 106, "bedi": 106, "mehrdeut": 106, "bezug": [106, 192, 196, 228, 306, 307, 325, 330, 573], "bearbeitungsprogramm": 106, "konsistent": 106, "interpretation": [106, 262], "strukturier": [106, 682], "hinreich": [106, 684], "gering": [106, 328, 333, 621], "unles": 106, "zeichnet": [106, 115, 295], "datenstrukturtyp": 106, "herum": [106, 339, 340], "perl": [106, 341], "ruby": 106, "konzept": [106, 179, 222, 224], "zeichenfolg": [106, 224, 381], "zusammensetz": [106, 672], "textzeichenfolg": 106, "pflanz": 106, "interpunktionszeich": 106, "verwechselt": 106, "bindestrich": 106, "ascii": [106, 230, 254, 255, 334, 434, 456], "unicod": 106, "offnend": 106, "hell": [106, 112, 179, 333], "platziert": [106, 682], "derselb": [106, 370], "unterelement": 106, "standerdmass": 106, "hund": 106, "katz": 106, "maus": [106, 164], "rind": 106, "schwein": 106, "zieg": 106, "nutzlich": [106, 189, 289, 306, 307, 333, 396, 508, 560, 599, 634], "reich": 106, "detailinformation": 107, "disable_existing_logg": [107, 115, 116], "formatt": [107, 115, 136, 188, 232, 263, 322, 368, 583, 585], "shng_simpl": [107, 115, 116, 263, 322, 368, 583, 584, 585], "asctim": [107, 115, 116, 232, 584], "levelnam": [107, 115, 116, 584], "8s": [107, 115, 116, 584], "19s": [107, 115, 116, 584], "datefmt": [107, 115, 116, 232, 584], "shng_detail1": [107, 115], "17s": [107, 115, 116], "threadnam": [107, 115, 116], "12s": [107, 115, 116], "funcnam": [107, 115, 116], "lineno": [107, 115, 116], "shng_detail2": [107, 115], "ln": [107, 115, 161, 688], "3d": [107, 115, 586], "shng_item": [107, 115], "shng_busmonitor": [107, 115], "knx_filt": [107, 115], "coming": [107, 115, 221], "knx_busmonitor": [107, 115, 232, 434, 648], "filter_exampl": [107, 115], "very": [107, 115, 160, 161, 168, 218, 359, 650, 667], "nic": [107, 115, 161, 211, 651], "msg": [107, 115, 116, 126, 138, 141, 172, 243, 263, 322, 338, 359, 368, 583, 688], "both": [107, 115, 126, 142, 160, 183, 205, 234, 260, 413, 623, 646, 655], "shng_warnings_fil": [107, 115, 116, 585], "abov": [107, 115, 130, 133, 138, 142, 148, 160, 180, 199, 206, 221, 245, 254, 273, 281, 290, 294, 296, 297, 312, 335, 355, 356, 357, 361, 370, 651, 653, 655], "smooth": [107, 115, 211, 651], "readabl": [107, 115, 148, 202, 211, 248], "seperat": [107, 115, 195, 454, 645, 646, 649, 654, 655], "logentri": [107, 115, 136, 648], "keeps": [107, 115], "sev": [107, 115], "shngtimedrotatingfilehandl": [107, 115, 136, 188, 583, 656], "utc": [107, 115, 136, 148, 211, 262, 306, 307, 322, 516, 583, 585, 599, 636, 672], "backupcount": [107, 115, 116, 136, 232, 263, 322, 583, 585], "utf8": [107, 115, 116, 188, 255, 263, 322, 583, 585], "shng_details_fil": [107, 115, 116, 322, 583, 593, 638], "develop_fil": [107, 115], "shng_detail": [107, 115, 116], "shng_busmonitor_fil": [107, 115], "shng_items_fil": [107, 115], "streamhandl": [107, 115, 116, 136], "ext": [107, 115, 116, 168, 170, 331, 382], "sys": [107, 113, 115, 116, 229, 262, 278, 361, 483, 598], "stdout": [107, 115, 116, 129, 152, 205], "required": [107, 115, 130, 160, 173, 176, 185, 205, 227, 305, 643, 655], "shoud": [107, 115], "doubled": [107, 115], "x86_64": [107, 115, 125, 638], "glibc2": [107, 115, 125, 638], "24407": [107, 115], "54": [107, 113, 115, 203, 230, 349, 518, 638], "shng_develop_fil": [107, 115], "unwanted": [107, 115, 227], "log_chang": [107, 115, 188, 243, 263, 577, 646, 655], "ererbt": [107, 115], "new_devic": [107, 115], "handed": [107, 115, 147, 595], "mylogic": [108, 326, 332], "mydoorcontact": 108, "Du": [109, 111], "konvention": 109, "dateiend": [109, 112], "ressourcenbedarf": 110, "leistungsschwach": [110, 118, 120], "einzusetz": [110, 118], "verzicht": [110, 118, 641], "graphical": 110, "2425": [110, 122, 616, 617, 684, 690], "myprivat": [110, 122], "going": [110, 141, 150, 152, 218, 364, 365], "empfangt": [111, 115, 116, 326], "gateways": [111, 247, 371, 451], "plugin_enabled": [111, 123, 249, 322, 641], "1245a9633edf47b7091f37c4d294b5be5a9936c81c5359b16d1c48337": 111, "database_mysql": 111, "precision": [111, 186, 200, 337, 641], "3306": [111, 186], "autogenerier": [111, 496, 523, 545, 554, 682, 686], "UND": [111, 169, 325, 569, 592], "nutzdatenprotokoll": [111, 302], "smartvisu_pag": 111, "smartvisu_dir": [111, 353, 684], "generate_pag": [111, 655, 684, 693], "overwrite_templat": [111, 684], "create_masteritem_fil": [111, 649], "visu_styl": [111, 682, 684], "std": [111, 496, 523, 682], "default_acl": [111, 302, 684], "handle_widget": [111, 684], "list_deprecated_warning": [111, 684], "log_level": [111, 243, 322, 577], "log_directory": [111, 322, 338], "startup_delay_default": [111, 322], "120": [111, 162, 165, 167, 169, 196, 227, 244, 284, 288, 289, 334, 370, 403, 483, 484, 487, 504, 512, 574], "suspend_time_default": [111, 322, 331], "10800": 111, "laststate_name_manually_locked": 111, "gesperrt": [111, 289, 329, 331], "laststate_name_suspended": 111, "ausgesetzt": [111, 330, 331, 508], "log_maxag": [111, 322], "2727": [111, 256, 457, 617], "8765": [111, 440], "tcp_acl": [111, 256], "udp": [111, 127, 141, 221, 247, 264, 314, 369, 370, 427, 464, 514, 545, 552, 617, 622, 649, 650, 663, 667], "udp_acl": [111, 256], "spezifizi": [111, 188, 289, 397], "class_path": [111, 123, 211, 219, 257, 258, 260, 269, 270, 273, 274, 275, 278, 281, 282, 288, 290, 294, 297, 298, 301, 305, 306, 307, 312, 314, 315, 334, 335, 341, 344, 358, 643, 654, 671, 674], "redundant": [111, 341, 645, 649], "class_nam": [111, 123, 211, 257, 258, 260, 269, 270, 273, 274, 275, 278, 281, 282, 288, 290, 294, 297, 298, 301, 305, 306, 307, 312, 314, 315, 334, 335, 341, 344, 358, 643, 654, 671], "hilft": [111, 165, 210, 573], "verzeichnisnam": [111, 123, 508], "_pv_1_3_0": 111, "weicht": 112, "szenenobjekt": [112, 124], "szenenverzeichnis": [112, 124], "szenenkonfigurationsdatei": 112, "zielit": [112, 124], "annimmt": [112, 525, 574], "annehm": [112, 215, 338, 530, 532, 566, 682], "ziel": [112, 116, 124, 223, 226, 263, 380, 434, 457, 516, 575, 576, 671], "otherit": [112, 573], "logicnam": [112, 241], "szenenaktion": [112, 124], "anstell": [112, 120, 124, 256, 262, 289, 302, 323, 326, 354, 434, 533, 545, 550, 573, 577, 585], "ungeordnet": 112, "geordnet": [112, 329], "untergeordnet": [112, 314, 330, 331, 333, 441, 508, 536, 562], "eintritt": [112, 164, 326, 330, 332], "wildcard": [112, 133, 315, 331, 645], "zweifach": [112, 124], "listitem1": [112, 124], "listitem2": [112, 124], "schreibweis": [112, 123, 169, 511, 568, 569, 570, 592], "ansteuert": 112, "ausschnitt": [112, 116, 576, 622, 684, 690], "sonderfall": [112, 596], "dreieckschrank": 112, "schreibtischleucht": [112, 155, 304, 356, 357, 561], "126": [112, 649, 652], "ct": [112, 210, 211, 212, 213, 337, 419, 420], "345": 112, "ambient": 112, "ambiente_level": 112, "putz": 112, "59635": 112, "230": [112, 165, 187, 200, 638], "azimuth": [113, 142, 155, 304, 356, 357, 655], "elevation": [113, 142, 580, 599, 636, 638, 648, 669], "mond": [113, 569, 592], "geograph": [113, 325], "Deinen": 113, "weitewelt": 113, "0621869293091": 113, "4431106741905": 113, "fin": [113, 198, 247], "central": [113, 288], "high": [113, 133, 147, 165, 177, 183, 200, 211, 218, 221, 262, 269, 274, 288, 335, 341, 359, 365, 412, 527, 652, 688], "commend": [113, 655], "pip_command": [113, 646], "shpypi": [113, 641, 644, 645, 646, 647, 648, 650, 651, 652, 653, 654, 655], "shpypi_crontab": 113, "stem": [113, 648], "backup_name_st": 113, "myinstallation": 113, "altered": [113, 211], "abgekundigt": [113, 243, 262, 263], "undefined": [113, 136, 257], "statdard": 113, "undef_item_attr_loglevel_info": 113, "consum": [113, 250, 298, 362, 453, 530, 643], "cpuusag": [113, 646, 656], "threadinfo_export": 113, "supportded": 113, "gps": [113, 422, 652], "mobiltelefon": 113, "Deren": [114, 360], "entwicklerdokumentation": 114, "programmfehl": 115, "spur": 115, "nachhinein": 115, "untersucht": [115, 453], "desto": [115, 261, 333], "sachverhalt": 115, "vorgeb": 115, "aufgezeichnet": [115, 120, 232, 295, 446, 490], "21": [115, 155, 160, 162, 189, 192, 199, 203, 221, 230, 234, 245, 261, 262, 288, 289, 297, 300, 304, 306, 307, 328, 334, 356, 357, 401, 487, 492, 545, 548, 550, 577, 647, 657, 682], "56": [115, 360, 443, 682], "2c": [115, 612], "4e0938c2": 115, "deutet": 115, "hingeh": 115, "gedacht": [115, 119, 385, 545, 554, 612, 690], "auftauch": 115, "steiger": 115, "bedeut": [115, 123, 165, 187, 192, 200, 285, 306, 307, 351, 526, 561, 562, 574, 577], "weiterarbeit": 115, "dar": [115, 260, 262, 302, 567, 590, 591, 622], "absteig": [115, 339, 340], "programmabbruch": 115, "weiterlauf": 115, "moglicherweis": [115, 169, 192, 351], "weitergearbeitet": 115, "filehandl": [115, 655], "ablaufinformation": 115, "dbgmed": [115, 651, 653], "dbglow": [115, 651, 653], "notset": [115, 434], "verbos": [115, 169, 320, 635, 646, 653, 677], "informell": 115, "daraus": [115, 192, 232, 306, 307, 325, 683], "schief": 115, "umbenannt": [115, 219, 262, 371, 449, 641, 652, 653, 654, 656], "konfigurationseintrag": 115, "ausgabeformat": 115, "loggingeintrag": [115, 256], "behandlungsroutin": 115, "ausgabekanal": 115, "vorimplementiert": 115, "filtername1": 115, "filtername2": 115, "loggernam": 115, "versteckt": 115, "loggerfilt": 115, "filternam": 115, "loggermodul": 115, "timestamp": [115, 116, 133, 137, 138, 155, 186, 189, 223, 263, 288, 304, 305, 306, 307, 356, 357, 359, 498, 499, 516, 583, 585, 645, 648, 649, 652, 655], "NUR": 115, "logtief": 115, "ausgeb": 115, "instanziert": 115, "instanzier": 115, "dwd": [115, 665, 666, 670, 674], "fundig": 115, "hauptlog": 116, "anderseit": 116, "interessiert": 116, "hochsetz": 116, "anzuheb": 116, "wuhl": 116, "interessi": 116, "gehalt": [116, 263, 328, 370], "logmeld": 116, "rotier": [116, 163, 219, 220], "sieb": [116, 614, 619], "aufheb": [116, 331], "rotation": [116, 508, 655, 656], "enogw": 116, "18624": 116, "lenk": 116, "standardkonfiguration": [116, 593], "modulnam": 116, "woh": 116, "hinausgeh": 116, "wodurch": [116, 169, 325, 328, 330, 347, 519, 573, 594, 642], "voransteh": [116, 583], "jedenfall": [116, 191, 201, 238, 264, 267], "abzufang": 116, "meinfilt": 116, "tat": 116, "ee": [116, 281], "nginelogg": 116, "stateengine_fil": 116, "beistrich": 116, "gelistet": [116, 184, 215, 262, 268, 286, 325, 329, 347, 622], "stamm": 116, "beinhalt": [116, 165, 169, 262, 316, 325, 328, 329, 333, 573], "kriteri": [116, 396], "filterbeispiel": 116, "filtert": [116, 338, 532], "filterattribut": 116, "filter_nacht": 116, "s2": 116, "s0": [116, 170], "filtercod": 116, "filter_abend_mai": 116, "kalendermonat": 116, "abfang": [116, 642], "filter_eintrag_mitsonderzeich": 116, "tcp_client_192": 116, "9621": [116, 290, 488], "tcp_client": [116, 141, 646], "mitteil": [116, 232, 243, 263, 338, 380, 406, 512], "backslash": 116, "verbessert": [116, 219, 249, 351, 641, 642, 651, 671, 674], "nennt": 116, "16s": 116, "ausgibt": [116, 306, 307], "file_additional": 116, "bewirkt": [116, 272, 572, 573, 576], "logic_groupnam": [117, 592, 600], "aufgefuhrt": [117, 192, 241, 306, 307, 554, 555, 577, 592, 594, 597, 600], "zykluszeit": [117, 388, 419, 436, 470, 526, 592, 600], "angibt": [117, 165, 262, 568, 570, 575, 592, 600, 683], "zeitabstand": [117, 285, 511, 515, 520, 537, 592, 600], "paramt": [117, 162, 181, 249, 289, 412, 512, 533, 592, 600], "standardprioritat": [117, 592, 600], "auszusetz": [117, 592, 600], "ausfuhrungsstatus": [117, 592, 600], "user_paramet": [117, 592, 600], "ressourc": [118, 202], "funktionsumfang": [118, 212, 289, 354, 359], "webbrows": 119, "login_expiration": [119, 612], "itemtree_fullpath": [119, 612], "itemtree_searchstart": [119, 612], "websocket_host": [119, 612], "websocket_port": [119, 612], "log_chunksiz": [119, 612], "rest_dispatch_force_exception": [119, 612], "click_dropdown_head": [119, 612], "verlang": [119, 612], "gewartet": [119, 169, 328, 351, 401, 458, 493, 632], "falls": 119, "kurzform": [119, 337], "itemtre": [119, 643], "rest_dispatch_execut": [119, 612], "execption": [119, 612], "kopfeintrag": [119, 612], "dropdown": [119, 410, 612, 646], "menus": [119, 612], "webschnittstell": 120, "basisauthentifizier": 120, "anzubiet": 120, "geheim": [120, 121, 512], "1245a9633edf47b7091f37c4d294b5be5a9936c81c5359b16d1c4833729965663f1943ef240959c53803fedef7ac19bd59c66ad7e7092d7dbf155ce45884607d": [120, 180], "Kann": [120, 320, 323, 331, 382, 462, 475, 486, 508, 519], "sha": [120, 180, 391], "512": [120, 180, 379, 391, 500], "lauscht": [120, 391, 405, 440, 453, 514, 674], "serviceport": 120, "fehlerseit": 120, "tabellenreih": [120, 123], "scrolling": [120, 123, 646], "geled": 120, "registriert": [120, 187, 192, 228, 243, 244, 338, 363, 422, 532], "hort": [121, 690], "durchsatz": [121, 252], "eingeh": [121, 170, 210, 232, 241, 256, 382, 417, 457, 617, 622], "last_will": 121, "verbindungsaufbau": [121, 309, 400, 440, 441, 464, 467, 507, 622, 674], "nutzdat": [122, 155, 304, 496, 682, 690], "verschlusselt": [122, 219, 616, 688, 690], "wss": [122, 616, 617, 654, 690], "ODER": [122, 169, 325], "passphras": 122, "druck": [122, 164, 212, 213, 292, 337, 395, 526], "meinserv": 122, "fritz": [122, 171, 312, 313, 382, 383, 545, 550, 650, 651, 655, 669], "box": [122, 167, 168, 171, 198, 227, 312, 313, 382, 383, 406, 545, 550, 642, 669], "einstimm": 122, "openssl": [122, 161], "req": [122, 649, 688], "newkey": 122, "rsa": [122, 688], "2048": [122, 161, 688], "keyout": 122, "x509": [122, 688], "verschusselt": 122, "zusatzmodul": 123, "knx_1": 123, "namensgleich": [123, 671], "itemkonfiguration": [123, 262, 351], "einzutrag": 123, "avm_data_typ": [123, 339, 340, 566, 651, 655], "fritzbox_1": [123, 170], "fb6360": 123, "fritzbox_2": 123, "fb7490": 123, "wan": [123, 170, 382], "connection_status": [123, 170, 382], "wan_connection_status": [123, 170, 382], "konfiguation": 124, "64": [124, 161, 254, 255, 283, 434, 443, 494, 641], "angewahlt": 124, "aktor": [124, 162, 170, 200, 204, 289, 323, 326, 329, 383, 407, 412, 434], "modi": [124, 162, 289, 314, 375, 487], "szenenstatus": 124, "szenenstati": 124, "szenennumm": [124, 434, 641], "128": [124, 160, 198, 200, 247, 334, 434], "addi": 124, "abgespeichert": [124, 203], "initialwert": [124, 412, 508], "formeln": 124, "funktionssamml": [125, 638], "anhalt": [125, 488, 638], "_version": [125, 638], "_description": [125, 638], "galaxis": [125, 638], "zweiundvierz": [125, 638], "2d": [125, 638], "b81166c3": [125, 638], "4584": [125, 638], "uf": [125, 573, 635, 638], "voranzustell": [125, 638], "funtion": [125, 137, 638], "parsing": [126, 141, 179, 315, 365, 623, 645, 648, 649, 651, 652, 653], "add_struct_to_item_templat": 126, "struct_nam": [126, 134], "struct_dict": 126, "referenced": [126, 317, 368, 649], "items_templat": 126, "subtre": [126, 227, 304, 365, 646], "merged": [126, 312], "derived": [126, 643], "destination": [126, 146, 168, 227, 248, 253, 279, 288, 455, 478, 653, 666], "source_nam": 126, "dest_nam": 126, "ordereddict": [126, 135, 137, 149, 397], "noset": 126, "doct": 126, "all_rows": 126, "dog": [126, 338], "fail": [126, 130, 221, 294, 642, 645], "merge_structlist": 126, "l1": [126, 306, 307], "l2": [126, 306, 307], "nested_get": 126, "input_dict": 126, "nested_put": 126, "output_dict": 126, "nested": [126, 612], "addfilenam": 126, "parseitem": 126, "depending": [126, 127, 130, 195, 198, 202, 227, 245, 294, 301, 335, 355, 649], "apropriat": 126, "resulting": [126, 139, 141, 654, 655], "parse_basenam": 126, "basenam": [126, 140, 143, 144], "configtyp": 126, "preferenc": 126, "parse_conf": 126, "firstlevel": 126, "attribute3": 126, "secondlevel": 126, "thirdlevel": 126, "barfoo": 126, "foobar": 126, "anothersecondlevel": 126, "respectiv": [126, 199, 370, 643, 644, 645, 646, 649, 650, 651, 655, 691], "pair": [126, 133, 219, 356, 357, 397], "plus": [126, 141, 195, 196, 235, 293, 294, 347, 568, 652], "digit": [126, 186, 211, 227, 248, 278, 370, 476, 477], "underscor": [126, 312, 313], "parse_itemsdir": [126, 134], "itemsdir": 126, "item_conf": 126, "filetyp": 126, "fold": [126, 146, 195, 205, 208, 218, 251, 253, 315, 334, 352, 361, 643, 650, 651, 653, 655, 656, 670], "parse_yaml": 126, "stuct": [126, 693], "reading": [126, 137, 161, 193, 195, 202, 216, 280, 281, 288, 305, 623, 642, 645, 646, 653, 654, 655], "remove_comment": 126, "ydata": 126, "remove_digit": 126, "remove_invalid": 126, "char": [126, 278, 344], "remove_keys": 126, "func": [126, 155, 189, 203, 304, 326, 356, 357], "key_prefix": 126, "removal": [126, 646, 653], "startswith": [126, 562], "recursion": 126, "remove_keyword": 126, "remove_reserved": 126, "remove_special_listentri": 126, "replace_struct_instanc": 126, "instac": [126, 296], "sanitize_item": 126, "search_for_struct_in_item": 126, "recursively": 126, "merging": [126, 643, 646, 648, 650, 656], "expanded": [126, 195, 655], "set_attr_for_subtre": 126, "indent": [126, 203, 649], "strip_quot": [126, 152], "strip": [126, 141, 247, 423], "beggining": 126, "stripped": [126, 152], "creating": [127, 254, 255, 646, 653, 655, 688], "thus": [127, 141, 160, 193, 355, 512, 668], "inherit": 127, "family": [127, 141, 152, 164, 261], "flavour": 127, "proto": [127, 282, 646, 688], "filenumb": 127, "contained": 127, "_connection": 127, "_serv": 127, "epoll": 127, "kqueu": 127, "select": [127, 173, 205, 211, 221, 229, 248, 273, 296, 351, 361, 419, 420, 565, 591, 612, 646, 649], "register_connection": 127, "fileno": 127, "register_serv": 127, "unregister_connection": 127, "handle_connection": 127, "sock": [127, 649], "balanc": [127, 290, 488], "bop": 127, "bclos": 127, "discard_buff": 127, "found_balanc": 127, "found_terminator": [127, 655], "handle_clos": 127, "handle_connect": [127, 653], "wid": [128, 162, 170, 262, 382, 646], "check_sh_is_running": 129, "wheth": [129, 138, 205, 254], "daemoniz": 129, "stdin": 129, "stderr": [129, 646], "descriptor": [129, 141], "mapped": [129, 170, 263, 382], "waittim": 129, "pid0_warning": 129, "identified": [129, 186, 335], "identifying": 129, "killing": 129, "read_pidfil": 129, "remove_pidfil": 129, "write_pidfil": 129, "lock": [129, 130, 162, 170, 185, 186, 249, 257, 289, 324, 325, 328, 331, 333, 382, 383, 458, 545, 550, 646, 652, 655, 656, 670], "whil": [129, 170, 198, 199, 353, 646, 647, 655], "dbapi": 130, "formatting": [130, 296, 646], "abstraction": 130, "lay": [130, 211, 262, 462, 670], "api2": [130, 186, 396, 670], "specification": [130, 192, 230, 232, 352, 401, 545, 548, 623, 645, 655], "functionality": [130, 162, 198, 200, 239, 248, 253, 257, 344, 353, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 691], "establish": [130, 141], "fetchon": 130, "fetchall": 130, "reeturn": 130, "cursor": [130, 186, 248, 646, 653], "transaction": [130, 187], "selcted": 130, "rollback": [130, 187], "acquir": 130, "simultaneous": 130, "verify": [130, 141, 198, 217, 260, 649, 655], "reconnect": [130, 141, 641, 649, 651, 655, 656], "placehold": [130, 136, 315, 655], "qmark": [130, 186], "numeric": [130, 136, 152, 164, 186, 187, 227, 247, 248, 370, 650, 655], "pyformat": [130, 186], "transparently": 130, "executing": [130, 650, 652], "stmt": 130, "cur": 130, "selected": [130, 151, 186, 227, 281, 365, 651], "constructor": [130, 141, 147, 152], "aqcuired": 130, "omitted": [130, 152, 205, 356], "aqcuir": 130, "released": [130, 200, 227, 247, 330, 413, 431, 538, 646, 656, 670], "mentioned": [130, 312], "timeout": [130, 141, 150, 165, 191, 201, 216, 221, 227, 238, 258, 264, 267, 334, 338, 370, 378, 381, 517, 599, 612, 646, 650, 651, 653, 654, 655, 656], "providing": [130, 160, 288, 623], "two": [130, 132, 137, 138, 141, 143, 147, 148, 152, 160, 162, 198, 205, 211, 227, 231, 239, 248, 254, 257, 263, 278, 296, 301, 305, 308, 352, 356, 357, 365, 646, 648, 650, 651, 652, 655, 659, 660, 669], "rollout": [130, 187], "retry": [130, 195, 652, 655], "verifi": 130, "reconnet": 130, "established": [130, 141, 211, 646], "opened": [130, 257, 646], "betwe": [130, 133, 141, 147, 148, 160, 162, 183, 186, 193, 198, 211, 239, 278, 352, 655], "vorwieg": 131, "massein": [131, 261], "mps": 131, "mil": [131, 262], "mph": 131, "km": [131, 338, 344, 510], "kilomet": 131, "kmh": [131, 338, 649], "nm": 131, "nautical": 131, "kn": 131, "knot": [131, 262], "entfernungenn": 131, "meil": 131, "nautisch": 131, "fahr": [131, 162, 170, 219, 262, 328, 329, 367, 456, 573], "celsius": [131, 142, 150, 262, 281, 334, 349, 365, 573], "kn_to_kmh": 131, "kmh_to_kn": 131, "ms_to_kmh": 131, "kmh_to_m": 131, "mps_to_kmh": 131, "kmh_to_mps": 131, "mph_to_kmh": 131, "kmh_to_mph": 131, "ms_to_bft": 131, "kmh_to_bft": 131, "bft_to_text": 131, "miles_to_met": 131, "distanc": [131, 281, 344, 480], "umterchn": 131, "streck": 131, "nauticalmiles_to_met": 131, "meter_to_mil": 131, "meter_to_nauticalmil": 131, "f_to_c": 131, "c_to_f": 131, "degrees_to_direction_8": 131, "deg": [131, 229, 262], "gradzahl": 131, "teilt": 131, "sektor": 131, "kompass": 131, "degrees_to_direction_16": 131, "location_nam": 131, "lokationsnam": 131, "stadt": 131, "stadtteil": 131, "lokation": [131, 428], "openweathermap": [131, 229, 339, 340, 545, 558, 641, 646, 649, 650, 651, 652, 653, 655], "abgeruf": [131, 165, 178, 262, 306, 307, 338, 392, 394, 423, 462, 468, 485, 520, 545, 550, 567, 591, 632], "union": [131, 144], "location_address": 131, "ways": [132, 137, 143, 147, 148, 234, 335], "preferred": [132, 143, 160], "manily": [132, 137], "near": [132, 137], "consist": [132, 143, 152, 211, 227, 315, 356, 357], "items_instanc": [132, 133], "represented": [132, 133, 137], "maintained": [132, 133, 655, 670], "load_itemdefinition": [132, 133, 134], "management": [132, 143, 368, 449, 545, 550, 598, 655], "moved": [132, 134, 643, 646, 649, 653, 654, 655, 664], "typehandl": 133, "modifying": [133, 227], "yield": [133, 234, 235, 641], "storing": [133, 655], "changed_ag": 133, "correspond": [133, 312, 315], "instantiated": [133, 141], "resp": [133, 141], "minimiz": [133, 649, 650, 655], "collision": [133, 643, 656], "item_function": 133, "listhandl": 133, "prepend": [133, 563], "insert": [133, 186, 187, 254, 296, 352, 563], "pop": [133, 262, 365, 563], "mimic": 133, "del": [133, 563], "supply": [133, 258, 259, 298, 521, 643], "dicthandl": 133, "popit": [133, 563], "success": [133, 137, 141, 144, 227, 360, 655, 688], "find_attribut": 133, "strict": [133, 161, 688], "whol": [133, 221, 262, 365, 643, 649], "exact": [133, 183, 227], "ptyp": 133, "necessarily": 133, "update_ag": [133, 562, 671], "last_trigg": [133, 562, 567, 591, 650], "trigger_ag": [133, 562], "triggered": [133, 137, 168, 185, 205, 208, 243, 253, 257, 263, 294, 355, 356, 357, 368, 395, 413, 595, 643, 650, 652], "prev_chang": [133, 562, 567, 591, 667, 673], "prev_ag": [133, 562, 667], "had": [133, 218, 644, 646, 647, 649, 650, 652, 655, 656], "prev_updat": [133, 562, 567, 591, 671, 673], "prev_update_ag": [133, 562, 567, 591, 671], "existed": 133, "prev_trigg": [133, 562, 567, 591, 650], "prev_trigger_ag": [133, 562, 567, 591], "prev_valu": [133, 263, 355, 562, 567, 573, 576, 591, 667], "indication": [133, 368], "triggered_by": [133, 562], "get_absolutepath": 133, "relativepath": 133, "expand_relativepath": [133, 561], "begintag": 133, "endtag": [133, 351], "remain": [133, 137, 653], "signal": [133, 162, 165, 167, 200, 227, 278, 365, 412, 440, 545, 548, 644, 646], "get_stringwithabsolutepath": 133, "evalstr": 133, "get_class_from_fram": 133, "get_calling_item_from_fram": 133, "get_stack_info": 133, "hysteresis_stat": [133, 574], "hysteresis": [133, 655], "hysteresis_data": 133, "threshold": [133, 189, 247, 360, 453, 574, 577, 659], "add_logic_trigg": 133, "remove_logic_trigg": 133, "get_logic_trigg": 133, "add_method_trigg": [133, 137, 674], "remove_method_trigg": 133, "get_method_trigg": [133, 137], "get_item_trigg": 133, "get_hysteresis_item_trigg": 133, "compat": [133, 562], "till": [133, 288], "anymor": [133, 257, 301, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "backward": [133, 152, 247, 281, 291, 655], "compatibility": [133, 152, 175, 649, 651], "remove_tim": [133, 562], "fad": [133, 314, 562, 660], "step": [133, 155, 203, 211, 278, 304, 328, 329, 356, 357, 562, 646], "delta": [133, 217, 562], "return_parent": [133, 288, 562], "ancestor": 133, "doesn": [133, 162, 211, 234, 365, 649, 655], "optionally": [133, 160, 368, 646, 649], "timestamps": [133, 645], "get_children_path": 133, "jsonvar": 133, "memb": [133, 141, 144], "to_json": 133, "plugin_attribute_prefix": 134, "plugin_prefixes_tupl": 134, "add_struct_definition": 134, "from_dir": [134, 151], "return_struct_definition": 134, "env_dir": 134, "items_dir": 134, "etc_dir": [134, 656], "plugins_dir": 134, "get_toplevel_item": 134, "ordered": [134, 137, 149], "alphabetically": 134, "doing": [134, 161, 294, 652], "fading": 134, "add_plugin_attribut": 134, "attribute_nam": [134, 561], "add_plugin_attribute_prefix": 134, "prefix_nam": 134, "plugin_attribute_exist": 134, "get_plugin_attribute_typ": 134, "conversion": [135, 216, 598, 642, 645, 646, 649, 655, 669], "convert_yaml": 135, "formated": 135, "is_ruamelyaml_installed": 135, "parse_for_convert": 135, "conf_cod": 135, "yaml_sav": [135, 149], "datetimerotatingfilehandl": [136, 188, 263, 656], "patt": [136, 397], "rotating": [136, 655], "rollov": 136, "kept": [136, 688], "ones": [136, 148, 161], "deleted": [136, 137, 294, 646, 649, 667], "do_rollov": 136, "then": [136, 137, 138, 141, 142, 147, 162, 183, 195, 206, 208, 231, 234, 248, 258, 278, 281, 282, 294, 301, 312, 315, 612, 646, 649, 652, 688], "we": [136, 152, 173, 221, 234, 251, 288, 347], "suffix": [136, 262, 326, 332], "emit": 136, "catering": 136, "get_filenam": 136, "get_files_to_delet": 136, "rolling": 136, "next_rollover_tim": 136, "parsefilenam": 136, "maxl": [136, 243, 263, 585], "dequ": [136, 263], "assuming": [136, 155, 278, 304, 356, 357], "equal": [136, 147, 317], "sid": [136, 151, 155, 203, 235, 304, 352, 356, 357, 648, 655, 688], "export": [136, 278, 367, 645, 646, 652, 674, 688], "dbghigh_level": 136, "dbglow_level": 136, "dbgmed_level": 136, "notice_level": 136, "add_all_handlers_logg": 136, "logging_conf": 136, "add_log": 136, "add_logging_level": 136, "appearanc": [136, 643], "tocall": 136, "performed": [136, 227, 655], "typos": [136, 643, 646, 647, 648, 651, 653], "configure_logging": 136, "config_filenam": [136, 612], "get_all_handlernam": 136, "get_handler_by_nam": 136, "handlernam": 136, "get_shng_logging_level": 136, "od": [136, 210, 616, 646, 681], "loa": 136, "initmemlog": 136, "datastructur": [136, 234, 545, 550], "mem": [136, 248], "memlog": [136, 263, 545, 554, 585, 632, 643, 649, 655, 671], "log_m": 136, "shngmemloghandl": [136, 243, 263], "load_logging_conf": 136, "ignore_notfound": [136, 149], "shng_version": 136, "load_logging_config_for_edit": 136, "logging_level": 136, "return_log": 136, "root_handler_nam": 136, "save_logging_conf": 136, "lognam": [136, 243, 263, 585, 612], "loghandl": [136, 188, 243, 263], "trailing": 136, "newlin": 136, "print_exception": 136, "appended": [136, 147, 294], "naming": [136, 353, 641, 643, 651, 652, 654], "schem": [136, 229, 688], "rotated": 136, "dorollov": 136, "stamp": [136, 188, 262, 263, 294, 575, 585, 646, 655, 671], "howev": [136, 138, 160, 221, 652], "getfilestodelet": 136, "earli": [136, 227, 356, 357, 650], "glob": 136, "enable_logic": [137, 140], "coupl": [137, 653, 668], "userlogicconf": 137, "envlogicconf": 137, "og": [137, 162, 164, 294, 295, 338, 573, 682], "get_loaded_logics": 137, "rmov": 137, "get_logics_dir": 137, "dirctory": 137, "generat": [137, 161, 186, 226, 234, 296, 352, 598, 646, 665, 677], "is_logic_loaded": 137, "get_logic_info": 137, "visu_access": 137, "is_logic_enabled": 137, "disable_logic": 137, "toggle_logic": 137, "trigger_logic": 137, "is_userlogic": 137, "userlogic": 137, "systemlogic": 137, "load_logic": 137, "reloaded": 137, "unload_logic": 137, "unload": [137, 144], "get_logiccrontab": 137, "return_logictyp": 137, "return_defined_logics": 137, "withtyp": 137, "logictyp": 137, "return_loaded_logics": 137, "return_config_typ": 137, "manipulating": 137, "read_config_section": 137, "config_list": 137, "set_config_section_key": [137, 594], "cleared": 137, "imformation": 137, "configurationfil": 137, "filename_used_count": 137, "delete_logic": 137, "with_cod": 137, "complet": [137, 186, 199, 227, 305, 365, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 513, 514, 515, 518, 521, 526, 527, 537, 538, 644, 645, 646, 648, 653, 681], "referencing": [137, 643, 646], "successful": [137, 623], "groupnam": 137, "log_readonly_warning": 137, "prop": [137, 644, 645, 647, 652, 656], "lnam": 137, "assignement": [137, 645, 646, 653], "collection": [137, 632], "trigger_dict": [137, 589], "is_enabled": 137, "last_run": [137, 594, 671], "wasn": [137, 642, 650], "set_last_run": 137, "duplicatefilt": 138, "taking": [138, 655], "logrecord": 138, "levelno": 138, "immediately": [138, 179, 294, 337, 655], "generation": [138, 166, 212, 213, 230, 235, 306, 307, 352, 653, 656, 669], "hug": [138, 667], "captured": 138, "limited": [138, 361, 646], "interchanging": 138, "siz": [138, 211, 221, 253, 612, 646, 649, 650, 651, 653, 688], "measurement": [138, 200, 222, 223, 312], "everything": [138, 183, 243, 288, 655, 688], "addon_nam": 139, "addon_typ": 139, "get_global_plugin_paramet": 139, "get_plugin_function_defstring": 139, "with_typ": 139, "with_default": 139, "completion": 139, "get_string": 139, "get_mlstring": 139, "mlkey": 139, "multilanguag": 139, "trys": [139, 234], "get_bool": 139, "test_shngcompatibility": 139, "rang": [139, 148, 160, 186, 193, 195, 199, 200, 211, 227, 278, 290, 334, 370, 643, 655], "addon": [139, 251, 398], "test_pythoncompatibility": 139, "test_sdpcompatibility": 139, "sdp": [139, 622, 655, 656, 693], "test_version": 139, "code_version": 139, "get_parameterlist": 139, "get_itemdefinitionlist": 139, "get_parameter_typ": 139, "get_itemdefinition_typ": 139, "get_parameter_subtyp": 139, "get_itemdefinition_subtyp": 139, "get_parameter_listl": 139, "get_itemdefinition_listl": 139, "get_parameter_type_with_subtyp": 139, "get_itemdefinition_type_with_subtyp": 139, "get_parameter_defaultvalu": 139, "get_parameterdefinition": 139, "get_itemdefinition": 139, "check_paramet": 139, "indicating": [139, 655], "missing": [139, 173, 211, 218, 643, 645, 646, 647, 649, 651, 652, 653, 655], "check_itemattribut": 139, "defined_in_fil": 139, "moddul": 140, "configfil": [140, 143, 144, 145], "utiliti": 141, "mainly": 141, "meant": 141, "utility": 141, "related": [141, 234, 257, 646, 650, 654], "tcp_serv": [141, 646], "udp_serv": 141, "project": [141, 182, 214, 215, 247, 258, 309, 345, 359, 361, 368, 520, 646], "duplicat": [141, 645, 648, 655], "primarily": 141, "ip_port_to_socket": 141, "endpoint": [141, 161, 162, 219, 337, 375, 655], "family_to_string": 141, "af_inet": 141, "af_inet6": 141, "ping": [141, 150, 337, 368, 646, 654, 662, 664], "icmp": 141, "reachabl": [141, 211, 212, 213, 337, 419, 420, 645, 653, 655], "ping_port": 141, "80": [141, 161, 169, 193, 194, 198, 200, 207, 211, 229, 249, 260, 261, 294, 297, 330, 334, 406, 407, 418, 419, 648], "reach": [141, 211], "send_wol": [141, 363], "wak": [141, 363, 531, 545, 552], "lan": [141, 178, 212, 213, 284, 305, 363, 381, 387, 478, 531, 545, 550, 552, 646, 649, 688], "packet": [141, 305, 363, 655, 666, 667, 670], "broadcast": [141, 247, 298, 450], "directed": 141, "pur": [141, 169], "separator": [141, 203, 352, 667, 682, 686], "validate_inet_addr": [141, 650], "resolv": [141, 643, 648, 652, 655], "resolved": 141, "ip_address": [141, 170], "clean_uri": 141, "uri": [141, 202, 216, 227, 314, 349, 409, 423, 646], "uris": [141, 423, 644], "embedded": [141, 160], "tld": [141, 161, 423], "autoconnecting": 141, "reconnecting": 141, "unmonitor": 141, "baseurl": 141, "hide_login": 141, "simplify": [141, 643, 650, 652, 653, 655], "especially": [141, 186, 298, 623, 641, 650], "talk": [141, 290], "everywh": [141, 646], "myserv": 141, "httpdigestauth": 141, "post_json": 141, "launch": [141, 227], "answ": [141, 142, 195, 198, 199, 202, 227, 315, 356, 357, 368, 646, 648], "query": [141, 169, 170, 186, 217, 219, 253, 273, 312, 344, 381, 382, 655], "ignor": [141, 186, 195, 645, 646, 653], "ssl": [141, 160, 176, 198, 227, 359, 388, 423, 445, 643, 649, 688], "verification": [141, 198, 216, 217], "signed": [141, 622, 651], "httpbasicauth": 141, "decoded": [141, 248, 646], "whatev": [141, 325], "occured": [141, 149], "get_json": 141, "get_text": 141, "figur": [141, 278, 650], "binary": [141, 185, 191, 201, 238, 264, 267, 278, 305, 368], "prefixed": 141, "get_binary": 141, "downloading": 141, "objector": 141, "response_status": 141, "statuscod": 141, "response_head": 141, "response_cooki": 141, "response_object": 141, "advanced": [141, 292, 328, 368, 655], "ussag": 141, "repons": 141, "underlying": [141, 160, 190, 227, 653, 663], "autoreconnect": [141, 169, 191, 201, 238, 264, 267, 318, 319, 645, 650, 651], "autoconnect": [141, 191, 201, 238, 264, 267, 650], "connect_retri": [141, 191, 201, 233, 238, 264, 267, 319], "connect_cycl": [141, 191, 201, 233, 238, 264, 267, 319], "retry_cycl": [141, 233], "retry_abort": 141, "abort_callback": 141, "terminator": [141, 191, 201, 238, 264, 267, 646], "rate_limit": 141, "max_rate_connect": 141, "structured": 141, "locally": [141, 338], "follows": [141, 160, 205, 278, 315], "connected_callback": 141, "tcp_client_instanc": 141, "receiving_callback": 141, "disconnected_callback": 141, "data_received_callback": 141, "v4": [141, 152, 545, 558, 617, 674, 675], "v6": [141, 152, 617], "copi": 141, "insid": [141, 162, 211, 650], "connecting": [141, 218, 227, 248, 258, 305], "switch": [141, 162, 170, 171, 176, 177, 199, 200, 205, 206, 210, 227, 247, 258, 278, 293, 315, 318, 346, 363, 371, 375, 449, 477, 489, 511, 518, 545, 548, 550, 561, 566, 642, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 663, 682, 691], "encoded": [141, 219, 240, 305, 425, 641, 646], "split": [141, 152, 288, 487, 655, 669], "set_callback": 141, "data_received": 141, "disconnected": [141, 646], "whenev": [141, 227, 231, 257, 301], "dropped": [141, 221, 235, 236, 653, 655], "prevented": [141, 186, 645, 650, 651, 670], "us": [141, 211, 251, 346, 359, 365], "launching": 141, "connectionclient": 141, "incoming": [141, 227, 256, 296, 315, 339, 340, 359, 616], "normally": [141, 205, 211, 278, 334], "fd": [141, 334], "gett": [141, 355], "will_clos": 141, "bytearray": 141, "send_echo_off": 141, "iac": 141, "ask": 141, "echo": [141, 162, 163, 164, 192, 256, 278, 334, 374, 375, 376, 545, 558, 644], "send_echo_on": 141, "dispatch": [141, 161, 623, 641], "possibly": [141, 623], "expect": [141, 355, 655], "incoming_connection": 141, "mode_text": 141, "mode_text_lin": 141, "mode_binary": 141, "mode_fixed_length": 141, "actually": 141, "remote_ip": 141, "remote_port": 141, "observ": 142, "celestial": 142, "pyeph": 142, "computation": 142, "bodi": 142, "seen": [142, 298, 651], "surfac": [142, 162], "zero": [142, 195, 263, 315, 646], "degre": [142, 262, 281, 361, 365, 580, 599, 636, 638, 669], "sea": [142, 262], "horizon": 142, "epoch": [142, 184, 268, 306, 307], "j2000": 142, "temp": [142, 170, 183, 189, 200, 207, 221, 222, 229, 262, 265, 288, 289, 293, 333, 334, 337, 338, 352, 368, 371, 398, 487, 573, 667, 686], "pressur": [142, 229, 262], "1010": 142, "mbar": [142, 262], "get_observer_and_orb": 142, "uniquely": 142, "dated": [142, 218], "moon": [142, 650, 665], "ruining": 142, "doff": 142, "moff": 142, "noon": 142, "pos": [142, 162, 200, 250, 282, 293, 453, 665], "calculat": [142, 148, 202, 247, 305, 653, 664], "shift": [142, 294, 305, 306, 307], "calculation": [142, 148, 200, 305, 643, 649, 650, 651, 652, 653, 654, 655], "forth": 142, "radian": [142, 580, 669], "calculated": [142, 148, 195, 240, 247, 262, 305, 519, 649, 652], "cent": [142, 279, 352], "centerpoint": 142, "considered": [142, 148, 217], "transit": [142, 516], "limb": 142, "wrapp": [143, 145, 632], "get_logic_paramet": 144, "get_loaded_plugin": 144, "get_loaded_plugin_instanc": 144, "confignam": 144, "pyobject": 144, "refcnt": 144, "unload_plugin": 144, "get_pluginthread": 144, "get_nam": 145, "get_ident": 145, "identifi": [145, 152, 155, 160, 162, 170, 198, 202, 227, 260, 304, 305, 352, 356, 357, 382, 383, 566, 622, 623, 653, 686], "get_implementation": 145, "follow": [146, 160, 199, 288, 335, 353], "get_loaded_sc": 146, "get_scene_action_nam": 146, "scenenam": 146, "get_scene_action": 146, "reload_sc": 146, "learned": [146, 646, 655], "return_scene_value_action": 146, "set_worker_warn_count": [147, 653], "get_worker_count": 147, "get_idle_worker_count": 147, "get_worker_nam": 147, "representing": 147, "activity": [147, 162, 195, 254, 368, 413, 422, 623, 652], "overrid": [147, 273, 274, 288, 646], "subclass": 147, "invok": [147, 186, 643], "callabl": 147, "sequential": 147, "respectively": 147, "from_smartplugin": 147, "certain": [147, 294, 688], "mad": [147, 278, 288, 623, 647, 649, 653, 668], "distinguish": [147, 652], "check_call": [147, 651], "stack": [147, 595], "combined": [147, 161, 646], "return_next": 147, "having": [147, 151, 278, 297, 368, 643, 645, 646, 649, 655], "sign": [147, 655], "varied": 147, "public_holidays": 148, "shinfo": 148, "set_tz": 148, "tzon": 148, "set_tzinfo": 148, "tzfil": 148, "tzlocal": 148, "replacement": [148, 151, 247, 646, 648, 653, 655], "tznam": [148, 599, 634], "tznamed": 148, "daylight": [148, 212, 419, 420, 649], "saving": [148, 646, 649], "dst": 148, "timedelta": [148, 288, 562], "runtime_as_dict": 148, "resulttyp": [148, 599, 634], "elapsed": [148, 250, 453], "ih": [148, 599, 634], "dhms": [148, 599, 634], "ds": [148, 599, 634], "time_until": [148, 599, 634], "elaps": 148, "time_diff": [148, 599, 634], "dt1": [148, 599, 634], "dt2": [148, 599, 634], "seconds_to_displaystring": 148, "sec": [148, 210, 262, 269, 308, 309, 419, 420, 500, 646, 649, 650], "display": [148, 162, 169, 202, 206, 227, 312, 319, 356, 357, 381, 612, 643, 644, 645, 646, 647, 648, 649, 651, 654, 655, 656, 670, 681], "to_second": [148, 655], "time_str": 148, "suppressed": 148, "trailed": 148, "45s": 148, "2h": [148, 152, 262], "7200": [148, 283, 284], "2h5m45s": 148, "datetime_transform": [148, 599, 634], "various": [148, 200, 643, 644, 654, 655], "date_transform": [148, 599, 634], "beginning_of_week": [148, 599, 634, 645, 646], "calend": 148, "negativ": [148, 189, 325, 330, 381, 575, 599, 634, 636, 643, 645, 646], "positiv": [148, 330, 365, 532, 575, 599, 634], "monday": [148, 645], "beginning_of_month": [148, 599, 634], "beginning_of_year": [148, 599, 634], "tomorrow": [148, 217, 311, 599, 634], "yesterday": [148, 599, 634], "current_year": [148, 599, 634], "current_month": [148, 599, 634], "current_monthnam": [148, 599, 634, 653], "monthnam": 148, "current_day": [148, 599, 634], "length_of_year": [148, 599, 634], "length_of_month": [148, 599, 634], "weekday": [148, 184, 268, 325, 365, 569, 592, 599, 634], "sunday": 148, "calendar_week": [148, 599, 634], "calendar": [148, 216, 217, 218, 219, 282, 359, 644, 653], "weekday_nam": [148, 599, 634], "add_custom_holiday": [148, 599, 634], "cust_dat": [148, 599, 634], "holiday": [148, 170, 176, 521], "add_custom_holiday_rang": [148, 599, 634], "from_dat": [148, 599, 634], "to_dat": [148, 599, 634], "holiday_nam": [148, 599, 634], "is_week": [148, 599, 634], "weekend": 148, "east": [148, 502], "is_holiday": [148, 599, 634], "concidered": [148, 150], "is_public_holiday": [148, 599, 634], "as_list": [148, 599, 634], "comma": [148, 160, 186, 195, 196, 274, 301, 356, 357], "delimited": 148, "holiday_list": [148, 599, 634], "sould": 148, "rtpye": 148, "public_holiday_list": [148, 599, 634], "convert_linenumb": 149, "occ": 149, "editing_is_enabled": 149, "get_commentedseq": 149, "commented": [149, 169], "sequenc": [149, 183, 248, 669], "get_emptynod": 149, "get_key": 149, "get_parent": 149, "setindict": 149, "datadict": 149, "writebacktofil": 149, "itempath": 149, "itemattr": 149, "yaml_dump_roundtrip": 149, "roundtripdump": 149, "linespacing": 149, "yaml_load": 149, "yaml_load_fromstring": 149, "yaml_load_roundtrip": 149, "editing": [149, 278, 649], "roundtrip": 149, "yaml_save_roundtrip": 149, "yamlfil": 149, "filename_writ": 149, "create_bak": 149, "getnod": 149, "leaf": [149, 643], "getnodetyp": 149, "getvalu": [149, 210], "getvaluetyp": 149, "valuetyp": 149, "setleafvalu": 149, "setvalu": [149, 330], "abs2rel": 150, "ah": [150, 235], "humidity": [150, 162, 170, 200, 221, 229, 261, 262, 291, 293, 337, 371, 382, 479], "cm3": 150, "percent": [150, 165, 234, 258, 259, 293, 365, 370, 439, 532], "dewpoint": [150, 337, 664], "rf": [150, 277, 337, 511, 655], "dt2js": [150, 649, 667], "dt2ts": [150, 649, 667], "fetch_url": [150, 216, 665], "warn_no_connect": 150, "errorit": 150, "rel2ab": [150, 667], "becaus": [151, 211, 218, 221, 240, 278, 280, 288, 294, 595, 642, 643, 644, 645, 646, 649, 650, 651, 652, 654, 655, 691], "shortcut": 151, "rendering": 151, "initialize_translation": 151, "base_dir": [151, 288, 646], "fallback_language_ord": 151, "fallback": [151, 160, 513, 655], "langaug": 151, "komma": [151, 169, 333, 381, 599, 634], "seperated": [151, 274, 356, 357, 648, 653], "set_default_languag": 151, "set_fallback_language_ord": 151, "language_ord": 151, "load_translation": 151, "translation_typ": 151, "translation_id": 151, "reload_translation": [151, 653], "module_translation": 151, "additional_translation": 151, "contail": 152, "check_hashed_password": 152, "pwd_to_check": 152, "hashed_pwd": 152, "plaintext": 152, "rejected": [152, 227, 652], "create_hash": 152, "sha512": 152, "lowercas": [152, 315, 650, 654], "lett": [152, 278], "execute_subprocess": 152, "commandlin": [152, 225, 646, 648], "subprocess": [152, 278, 598, 651], "get_all_addresses_for_addressfamily": 152, "af": [152, 185, 395], "270745": 152, "nics": 152, "274644": 152, "get_all_local_ipv4_address": 152, "get_all_local_ipv6_address": 152, "get_local_ipv4_address": [152, 649], "suitabl": 152, "thie": 152, "deterministically": 152, "get_local_ipv6_address": 152, "get_typ": 152, "is_float": 152, "is_hash": 152, "is_hostnam": 152, "is_int": 152, "is_ip": 152, "is_ipv4": 152, "is_ipv6": 152, "is_knx_groupaddress": [152, 653], "groupaddress": [152, 646, 653], "goup": 152, "bit": [152, 239, 249, 306, 307, 308, 309, 310, 368, 434, 452, 453, 461, 494, 517, 597, 643, 688], "middl": 152, "subgroup": 152, "recognized": [152, 160], "is_mac": 152, "is_timefram": 152, "timefram": [152, 186, 189, 317, 655], "30m": [152, 326, 332], "string_to_list": [152, 675], "gest": [152, 189, 262, 337], "unchanged": 152, "strip_quotes_fromlist": 152, "qout": 152, "squar": 152, "strip_square_bracket": 152, "bracket": 152, "ignored": [152, 185, 186, 195, 227, 274, 290, 294, 368, 395, 646, 650], "allowed": [152, 211, 253, 297, 301, 512, 653, 655], "parsed": [152, 258, 312], "throws": [152, 652], "cant": 152, "to_timefram": 152, "check_list": [152, 681], "versl": 152, "classmethod": 152, "operator": [152, 169, 655], "condition": [152, 162, 186, 262, 329, 361, 365, 368, 573, 645, 646, 647, 649, 652, 655], "ver": [152, 155, 282, 304, 356, 357], "to_list": 152, "rid": [152, 652], "to_string": 152, "get_python_version": 152, "running_virtual": [152, 652], "platz": [153, 682], "5d": [154, 612], "carefull": [154, 612], "nor": [154, 185, 205, 359, 395, 612, 643, 644, 645, 646, 649, 650, 651, 691], "apis": [154, 162, 215, 227, 262, 594, 612, 653, 671], "einzel": [154, 226, 496, 612], "authentifiziert": [154, 241, 612], "authentication_needed": [154, 612], "confic": [154, 612], "sched": [154, 612], "serverinfo": [154, 612], "mod_admin": [154, 612], "anford": [155, 304], "cmd": [155, 156, 203, 248, 303, 304, 356, 357], "sendert": [155, 304], "kommata": [155, 304, 314], "hauswirtschaft": [155, 304, 356, 357], "deckenlicht": [155, 160, 294, 295, 304, 356, 357, 591, 683], "waschmaschin": [155, 304, 356, 357, 682], "ma": [155, 187, 281, 304, 356, 357], "trockn": [155, 244, 304, 356, 357], "antwortet": [155, 304, 338], "wertepaar": [155, 304, 380], "37": [155, 275, 304, 325, 356, 357, 365, 682], "pong": [155, 304, 356, 357], "mittelwert": [155, 184, 187, 189, 262, 268, 304, 323, 443, 526, 573], "48": [155, 226, 262, 273, 279, 283, 304, 356, 357, 381, 612], "verteil": [155, 304, 356, 357, 682], "zaehl": [155, 192, 304, 356, 357], "wirkleist": [155, 304, 356, 357], "avg": [155, 186, 187, 189, 262, 287, 304, 317, 356, 357, 506, 573, 632], "48h": [155, 304, 356, 357], "sum": [155, 186, 187, 235, 262, 304, 356, 357, 398, 506, 573, 632, 646, 671], "1460636598495": [155, 304, 356, 357], "1831": [155, 304, 356, 357], "97": [155, 304, 356, 357, 645], "1460637648422": [155, 304, 356, 357], "1458": [155, 304, 356, 357], "1460639298307": [155, 304, 356, 357], "757": [155, 304, 356, 357], "1460641098243": [155, 304, 356, 357], "577": [155, 304, 356, 357], "total": [155, 219, 234, 235, 284, 304, 305, 306, 307, 356, 357, 370, 521, 645, 652], "1460802051217": [155, 304, 356, 357], "61": [155, 160, 200, 254, 255, 304, 356, 357], "1460803884973": [155, 304, 356, 357], "637": [155, 304, 356, 357], "1460805521319": [155, 304, 356, 357], "744": [155, 304, 356, 357], "41": [155, 200, 210, 304, 356, 357, 381, 568, 570, 629], "1460807229532": [155, 304, 356, 357], "718": [155, 304, 356, 357], "1460808823757": [155, 304, 356, 357], "681": [155, 304, 356, 357], "1460809294663": [155, 304, 356, 357], "1728000": [155, 304, 356, 357], "16t21": [155, 304, 356, 357], "8227": [155, 304, 356, 357], "1460810141323": [155, 304, 356, 357], "711": [155, 219, 304, 356, 357], "1460811024119": [155, 304, 356, 357], "aboniert": [155, 304, 595], "websockethandl": [155, 304, 356, 357], "16t15": [155, 304, 356, 357], "53": [155, 304, 356, 357, 360, 599, 636, 682], "354815": [155, 304, 356, 357], "sonos": [155, 304, 356, 357, 545, 548, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674], "sonos_bo": [155, 304, 356, 357], "sonos_uid": [155, 304, 314, 356, 357], "rincon_b8e93792d35401400": [155, 304, 356, 357], "myradio": [155, 304, 356, 357], "980100": [155, 304, 356, 357], "mondaufgang": [155, 262, 304, 356, 357, 580, 599, 636], "76": [155, 304, 356, 357], "monduntergang": [155, 262, 304, 356, 357, 580, 599, 636], "285": [155, 304, 356, 357], "mysunmoon": [155, 304, 356, 357], "678330": [155, 304, 356, 357], "182": [155, 304, 356, 357], "12900": [155, 304, 356, 357], "006478": [155, 304, 356, 357], "mlgw": [155, 304, 356, 357, 545, 548, 646], "ml": [155, 304, 310, 356, 357], "22804066": [155, 304, 356, 357], "869275": [155, 304, 356, 357], "14t21": [155, 304, 356, 357], "248227": [155, 304, 356, 357], "bver": [155, 304, 356, 357], "113": [155, 198], "hauptseit": [156, 250, 303], "gesamtsystem": 159, "benutzerdokumentation": 159, "selt": [159, 187, 514], "stetig": 159, "skill": [160, 163], "amazon": [160, 163, 164, 374, 375, 376, 395, 545, 548, 558, 617, 644, 670], "voic": [160, 162], "directiv": [160, 162, 163, 353], "turnon": [160, 162, 360], "dim": [160, 193, 199, 200, 211, 654], "light": [160, 162, 179, 180, 185, 193, 200, 212, 213, 229, 232, 245, 247, 248, 266, 282, 315, 352, 355, 360, 419, 420, 448, 451, 562, 565, 590, 591, 648, 650, 653, 655, 665, 686], "understanding": 160, "shipped": [160, 234], "aws_lambda": 160, "forwarding": [160, 368], "fiv": 160, "steps": [160, 211, 254, 278, 667], "developing": [160, 218], "seamlessly": 160, "eu": [160, 210], "environmental": [160, 655], "strongly": 160, "recommended": [160, 205, 245, 247, 335, 361, 645], "proxy": [160, 161, 162, 441, 652, 688], "enforc": 160, "nginx": [160, 652], "lightweight": [160, 161], "service_host": 160, "service_port": [160, 162, 617], "9000": [160, 161, 162, 231, 238, 248, 319, 374, 375, 433, 441, 451, 507, 617], "exactly": 160, "turnoff": [160, 162, 360], "settargettemperatur": [160, 349], "incrementtargettemperatur": 160, "decrementtargettemperatur": 160, "setpercentag": [160, 162], "incrementpercentag": 160, "decrementpercentag": 160, "spac": [160, 643, 648, 655], "separated": [160, 185, 231, 650, 653], "diningroomlamp": 160, "alexa_nam": [160, 162, 164, 360], "diningroom": [160, 185], "alexa_action": [160, 162, 164, 360], "friendly": [160, 371, 511], "reus": 160, "item_only_on": 160, "item_only_off": 160, "deduced": 160, "explicitly": [160, 654], "alexa_devic": [160, 162], "applianceid": 160, "demand": [160, 189, 298], "alexa_description": [160, 162, 164], "pompous": 160, "dining": [160, 222, 427], "west": [160, 162, 325, 328, 502], "wing": 160, "applianc": [160, 162, 177, 208, 416], "categori": [160, 162], "paragraph": 160, "alexa_typ": 160, "scene_trigg": [160, 162], "activity_trigg": [160, 162], "furthermor": [160, 342, 356, 357], "appear": [160, 211, 352, 655], "spec": 160, "basics": [160, 278], "friendlydescription": 160, "exceed": 160, "friendlynam": [160, 170, 384], "interact": [160, 646, 659], "goal": [160, 258], "natural": 160, "guidelin": 160, "similar": [160, 175, 334, 646], "offered": [160, 183, 231, 240, 301, 305, 312], "preposition": 160, "punctuation": 160, "cozy": 160, "alexa_alias": 160, "clutt": 160, "shouldn": 160, "assign": [160, 305, 352, 645], "assigned": [160, 227, 262, 288, 305, 655, 670], "chandeli": 160, "defining": [160, 227, 352, 653, 655], "alexa_item_turn_on": [160, 162], "alexa_item_turn_off": 160, "combin": 160, "limiting": 160, "specifying": [160, 186, 227, 670], "percentag": [160, 162, 186, 218, 317, 356, 357], "alexa_item_rang": [160, 162], "explicit": [160, 368, 655], "dimming": [160, 651], "generally": [160, 199, 202], "dealing": 160, "the_light": 160, "centrally": [160, 262], "though": [160, 643, 645, 646], "livingroom_lamps": 160, "livingroom": [160, 278, 369], "couch": 160, "lamps": [160, 211, 247, 294, 295, 342], "ew": 160, "gemuet": 160, "ew_scene_gemuet": 160, "gemut": 160, "ess": [160, 162, 682], "ew_scene_ess": 160, "ew_scene_tv": 160, "fernseh": [160, 641], "ew_light_couch": 160, "sofa": 160, "wohnzimm": [160, 162, 163, 166, 194, 285, 287, 314, 338, 339, 340, 562, 682, 683], "deckenlamp": 160, "couch_fen": 160, "ew_light_couch_fen": 160, "nord": [160, 189, 325, 338], "fensterlaib": 160, "couch_stehlamp": 160, "ew_light_couch_stehlamp": 160, "stehlamp": [160, 683], "stehleucht": 160, "couch_regal": 160, "ew_light_couch_regal": 160, "regal": 160, "ew_light_mitt": 160, "esstisch": [160, 162], "ew_light_esst": 160, "esszimm": [160, 338], "esstischlamp": 160, "esstisch_fen": 160, "ew_light_esstisch_fen": 160, "sud": [160, 325, 502], "71": [160, 249], "70": [160, 334, 569, 592, 622, 638, 642], "esstisch_stehlamp": 160, "ew_light_esstisch_stehlamp": 160, "kuech": [160, 162, 219, 250, 275, 276, 314], "ew_light_kuech": 160, "kuch": [160, 162, 163, 164, 250, 275, 316, 682, 683], "arbeitsplatt": 160, "ew_light_kueche_arbeitsplatt": 160, "ew_temp": 160, "fussbodenheiz": 160, "specifically": 160, "443": [161, 162, 688], "tedious": 161, "termination": [161, 649, 655], "letting": 161, "including": [161, 186, 195, 221, 227, 248, 251, 253, 273, 305, 644, 646, 648, 655], "integration": [161, 162, 173, 176, 186, 200, 219, 227, 255, 275, 282, 353, 386, 429, 443, 482, 506, 529, 545, 548, 550, 554, 558, 641, 643, 655, 670, 671], "letsencrypt": [161, 688], "widely": 161, "perfectly": 161, "saf": [161, 660], "footprint": [161, 663], "worker_process": 161, "worker_connection": 161, "768": [161, 219], "multi_accept": 161, "sendfil": [161, 688], "tcp_nopush": [161, 688], "tcp_nodelay": [161, 688], "keepalive_timeout": [161, 688], "65": [161, 162, 247, 254, 255, 443, 638, 688], "types_hash_max_siz": [161, 688], "server_tok": [161, 688], "server_names_hash_bucket_siz": 161, "server_name_in_redirect": 161, "mim": 161, "default_typ": [161, 688], "octet": 161, "ssl_protocol": 161, "tlsv1": [161, 162], "dropping": 161, "sslv3": 161, "poodl": 161, "ssl_prefer_server_ciph": [161, 688], "access_log": 161, "error_log": 161, "gzip": 161, "gzip_disabl": 161, "msie6": 161, "gzip_vary": 161, "gzip_proxied": 161, "gzip_comp_level": 161, "gzip_buff": 161, "8k": [161, 328], "gzip_http_version": 161, "gzip_typ": 161, "plain": [161, 646, 655, 688], "rss": [161, 646], "shizzl": 161, "ssl_certificat": [161, 688], "dyndn": [161, 688], "fullchain": [161, 688], "ssl_certificate_key": [161, 688], "privkey": [161, 688], "ssl_stapling": 161, "ssl_stapling_verify": 161, "known": [161, 183, 186, 305, 306, 307, 646, 653, 656, 688], "renewal": [161, 649], "default_serv": [161, 688], "requested": [161, 202, 356, 357, 643, 649], "301": [161, 643, 688], "request_uri": [161, 688], "auth_basic_user_fil": [161, 688], "htpasswd": [161, 688], "add_head": [161, 688], "31536000": [161, 688], "includesubdomain": [161, 688], "server_nam": [161, 688], "proxy_pass": [161, 688], "proxy_set_head": [161, 688], "remote_addr": [161, 688], "forwarded": [161, 688], "proxy_add_x_forwarded_for": [161, 688], "symlink": [161, 192, 193, 194], "doctyp": 161, "ul": [161, 170], "certbot": [161, 688], "eff": 161, "certonly": [161, 688], "webroot": [161, 688], "serverfault": 161, "768509": 161, "784940": 161, "alexa4payloadv3": 162, "gewohnt": [162, 243, 263, 326], "weiterverarbeit": [162, 192], "ledig": [162, 219, 220, 237, 244, 313, 330, 331, 332, 359], "holl": 162, "deaktiviertwerd": 162, "discov": [162, 292, 314, 651], "payloadv2": 162, "payloadv3": 162, "schreibung": 162, "schuma": [162, 219, 545, 554, 558], "wertander": [162, 325, 326, 332, 360, 562, 567, 568, 570, 575, 576, 577, 591], "ubegeb": 162, "pr": [162, 210, 646, 650, 651, 652, 653, 654], "332": 162, "bux": 162, "utteranc": 162, "292": 162, "lautet": [162, 219, 262, 597], "authentifizierungsdat": 162, "credential": [162, 219, 234, 254, 282, 436, 652], "umbenn": 162, "beta": [162, 227, 479], "fertiggestellt": 162, "kameras": [162, 163], "doorlockcontroll": 162, "reportlockstat": 162, "pdf": [162, 163, 170, 183, 195, 262, 281, 334], "testfunktion": [162, 163, 164], "upload": [162, 195, 227, 232, 368, 646, 653], "fehlerhaft": [162, 232, 260, 306, 307, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 434, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 513, 514, 515, 518, 521, 526, 527, 532, 537, 538, 591, 652], "controll": [162, 218, 235, 240, 247, 258, 288, 290, 345, 346, 486, 487, 488, 518, 545, 550, 612, 652, 666], "mitkomm": 162, "aws": [162, 163], "alexa_v3_plugin": [162, 163], "Vielen": [162, 219], "alexa_icon": [162, 164], "watch": [162, 198, 288, 674], "netflix": 162, "pow": [162, 169, 170, 173, 176, 198, 200, 201, 205, 211, 229, 230, 234, 235, 236, 237, 258, 259, 265, 278, 291, 293, 300, 305, 306, 307, 319, 337, 341, 359, 369, 370, 378, 381, 382, 383, 406, 420, 465, 521, 535, 645, 646, 655], "hdmi1": 162, "camera": [162, 227, 248, 274], "video": [162, 198, 219, 227, 248], "photo": [162, 338], "mobil": [162, 170, 218, 359, 471, 662, 663, 665, 671], "contact_sensor": 162, "detect": [162, 195, 646, 653], "contact": [162, 170, 200, 251, 337, 368], "door": [162, 168, 200, 227, 257, 269, 274, 288, 293, 296, 592, 646], "doorbell": 162, "exterior_blind": 162, "covering": 162, "fan": 162, "game_consol": 162, "gam": [162, 169], "microsoft": [162, 205], "xbox": [162, 205], "nintendo": 162, "garage_door": 162, "garag": [162, 269, 296, 592], "modecontroll": 162, "interior_blind": 162, "laptop": [162, 599], "fixtur": 162, "microwav": 162, "oven": 162, "mobile_phon": 162, "phon": [162, 219, 227, 359, 642, 665], "motion_sensor": 162, "movement": [162, 200, 337, 573], "area": [162, 170, 262, 352, 367, 382, 533, 660, 686, 688], "music_syst": 162, "music": [162, 164, 248, 250, 314, 370, 453, 507, 545, 548, 617, 666], "network_hardwar": 162, "belong": [162, 288], "cooking": 162, "landlin": 162, "bedtim": 162, "thermostat": [162, 170], "screen": [162, 326, 645, 651, 671], "projector": [162, 230, 655], "security_panel": 162, "panel": [162, 183, 195, 196, 403, 646], "smartlock": [162, 257], "smartplug": 162, "plugged": 162, "electrical": 162, "outlet": 162, "plug": [162, 278, 292, 293, 649, 669], "variety": 162, "speak": [162, 164, 169, 227, 248, 275, 276, 314, 315, 504, 647, 648, 649, 651, 652, 653, 655], "streaming_devic": 162, "streaming": [162, 381], "appl": [162, 166, 184, 268, 378, 545, 550], "chromecast": 162, "roku": 162, "wired": 162, "tablet": [162, 646], "temperature_sensor": [162, 170, 200], "alon": [162, 165], "air": [162, 247, 262, 334, 509, 545, 550], "heat": [162, 183, 288, 341, 375, 651], "direct": [162, 169, 183, 205, 368, 646, 655], "television": 162, "wearabl": 162, "fitbit": 162, "samsung": [162, 301, 310, 495, 545, 550, 666], "gear": 162, "alexa_retrievabl": 162, "traffic": [162, 227, 248, 545, 558, 670], "flur": [162, 247, 294, 295, 682], "flur_obeschoss": 162, "spot": [162, 163, 164, 254, 255, 281], "licht_flur_og": 162, "107": [162, 187, 247, 312, 313], "adjustbrightness": 162, "setbrightness": 162, "trepp": 162, "p3_action": 162, "selbstregistrier": 162, "action_nam": [162, 330, 642], "directive_typ": 162, "response_typ": 162, "namespac": [162, 649, 652], "capabilti": 162, "theromcontroll": 162, "targettemperatur": [162, 244], "reportstat": 162, "solltemperatur": [162, 434, 622], "alexa_thermo_conf": 162, "cool": [162, 273], "eco": [162, 177, 265, 282, 283, 375, 465], "comfort": [162, 183, 265, 465, 487, 521, 545, 548], "economy": 162, "protection": [162, 652, 688], "theromstatconroll": 162, "schemas": [162, 170], "temperatursensor": [162, 170, 337, 483, 545, 548], "temperartursensor": 162, "thermostatconroll": 162, "reporttemperatur": 162, "erhoh": [162, 163, 169, 378, 682], "zweiundzwanz": 162, "setthermostatmod": 162, "heiz": [162, 289, 487, 622, 682], "cat_seperator": [162, 352, 496, 523, 686], "raumtemperatur": [162, 203, 207, 285, 289, 338, 526, 682], "thermo_kuech": 162, "sollbasis": 162, "mdt": [162, 339, 340], "glastron": 162, "parametrier": [162, 265], "plan": [162, 208], "actor_stat": 162, "ausgeschalt": 162, "105": [162, 164, 187, 198, 312, 313], "funfzig": 162, "licht_esst": 162, "energi": [162, 170, 192, 502], "achtzig": 162, "angesagt": [162, 189], "funktionsweis": [162, 262, 331, 347], "setpowerlevel": 162, "adjustpowerlevel": 162, "prozentwert": [162, 330], "eignet": [162, 329], "umsetz": [162, 170, 219, 237, 262, 382], "adjustpercentag": 162, "EIN": [162, 219], "zugefahr": 162, "AUS": [162, 219, 338], "aufgefahr": 162, "Zwar": 162, "rolllad": [162, 338], "rolladen_buero": 162, "mov": [162, 200, 318, 646, 649, 653, 655], "behob": [162, 249, 270, 271, 338], "unlock": [162, 257, 315], "tur": [162, 338, 380], "ruckmeldewert": [162, 169], "locked": [162, 257, 274, 331, 650], "ruckmeldng": 162, "unlocked": [162, 257], "haustur": 162, "sprachsteuer": [162, 316], "freigegeb": [162, 200, 688], "pin": [162, 204, 278, 297, 412, 476, 653], "vorgab": [162, 243, 329, 349, 412, 446, 463, 487, 592], "entsperr": [162, 324], "sperr": [162, 289, 324, 328, 329, 398, 487], "kanal": [162, 164, 167, 261, 379, 402, 417, 450, 491], "rucksetz": [162, 219], "aktorkanal": 162, "haustu": 162, "testzimm": [162, 164], "reportlockstatelexa_action": 162, "kanel": 162, "treppenlicht": 162, "selbststand": [162, 309], "cameracontroll": 162, "cameras": 162, "entwickelt": [162, 219, 223, 508, 560, 652, 653, 654, 655, 656], "einzubind": [162, 191, 201, 243, 264, 267, 333, 533, 536], "alexacamproxy4p3": 162, "doorcam": [162, 248], "hausturkamera": 162, "initializecamerastream": 162, "view0": [162, 338], "alexa_auth_cred": 162, "1920": 162, "1080": 162, "h264": 162, "audiocodecs": 162, "g711": 162, "alexa_stream_2": [162, 375], "aac": [162, 314], "alexa_stream_3": [162, 375], "alexatestcam": 162, "ddns": 162, "alexa_stream_x": 162, "untersutzt": [162, 693], "mpeg2": 162, "mjpeg": 162, "scene_komm": 162, "szene_komm": 162, "kuchenfen": 162, "reportcontactstat": 162, "kuechenfen": 162, "setcolor": 162, "alexa_color_value_typ": 162, "7138": 162, "6524": 162, "farbwechsel": 162, "beibehalt": [162, 325, 401, 446, 463, 490, 688], "r_wert": 162, "g_wert": 162, "b_wert": 162, "lampe_speich": 162, "dali_rgb_speich": 162, "farbwert_rgb": 162, "setrangevalu": 162, "adjustrangevalu": 162, "alexa_range_delta": 162, "einstellbar": [162, 347], "kelvin": [162, 170, 262, 337], "weissbereich": 162, "abdeck": [162, 306, 307], "weisswert": 162, "maximumwert": [162, 485], "setcolortemperatur": 162, "increasecolortemperatur": 162, "decreasecolortemperatur": 162, "warmweiss": 162, "kaltweiss": 162, "000": [162, 253, 337], "3000": [162, 192], "6500": [162, 269], "fahrend": 162, "angehalt": 162, "entfremded": 162, "stopbefehl": 162, "fastforward": 162, "rewind": [162, 198, 205, 248], "startov": 162, "zusammenfass": [162, 163, 328], "auswewahlt": [162, 163], "kommunikationsprotokoll": [162, 163, 552, 553], "endpunkt": [162, 163, 222, 460], "duch": [162, 163], "konnn": [162, 163], "interaktiv": [162, 163], "cut": [162, 163], "siebzig": 162, "zweckentfremdet": 162, "zuruckzusetz": [162, 283], "positionier": 162, "alexa_proactivelyreported": 162, "alexarc4shng": [162, 219, 545, 558, 644, 645, 646, 647, 654, 655], "sprachbefehl": [162, 316], "geschalt": [162, 338, 381], "raumabhang": 162, "pauschal": 162, "licht_pauschal": 162, "last_alexa": 162, "myalexa": 162, "get_last_alexa": 162, "triggeredit": [162, 219], "triggervalu": [162, 219, 589], "showkuech": 162, "spots_sued": 162, "spots_nord": 162, "verfugt": [163, 170, 179, 184, 187, 192, 200, 210, 212, 213, 220, 242, 243, 252, 255, 263, 265, 266, 268, 277, 289, 302, 311, 348, 357, 360, 366, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "beleucht": [163, 316, 682, 683], "kuchenlicht": 163, "farb": [163, 219, 220, 247, 263, 407, 419, 491], "hsv": [163, 170, 375, 382], "rosa": 163, "firetv": 163, "turkamera": 163, "kamera": [163, 338, 375], "fernzusteu": [164, 518, 545, 550], "tunein": [164, 314], "radio": [164, 200, 248, 290, 314, 318, 370, 381, 507, 536, 655], "text2speech": [164, 219, 376], "sitzung": 164, "base64": [164, 219, 376, 425], "gangig": 164, "webkonsol": 164, "exporti": [164, 187], "marki": 164, "textfeld": 164, "anzumeld": [164, 418], "login_update_cycl": 164, "zyklus": [164, 212, 299, 300, 313, 314, 377, 382, 389, 418, 437, 438, 452, 484, 494, 509, 533, 594], "nutzernam": [164, 218, 382, 383, 406, 518], "kodiert": [164, 376, 445], "b64encod": [164, 376], "gmail": [164, 241, 376, 672], "your_pwd": [164, 376], "cookiefil": 164, "item_2_enable_alexa_rc": 164, "alexa_credential": 164, "pwd": [164, 244, 375], "432000": [164, 376], "mfa_secret": 164, "mfa": [164, 376], "secret": [164, 168, 208, 215, 241, 244, 362, 376, 416, 422, 447], "scannt": 164, "alexa_cmd_01": 164, "befehlsnumm": 164, "fortlauf": 164, "comparison": [164, 646, 655], "echodevic": 164, "value_to_s": 164, "echodotkuech": 164, "starttuneinstation": 164, "s96141": 164, "geratenam": [164, 170, 371, 375], "guideid": 164, "stationsnam": 164, "fm": [164, 210], "station": [164, 169, 218, 227, 229, 260, 318, 336, 365, 370, 460, 545, 558, 646, 649, 655], "greif": [164, 328, 597], "tuneinstation": 164, "basier": [164, 189, 261, 262, 338, 383, 394, 431, 456, 468, 545, 550, 558, 599, 636, 641, 655, 671], "elementpfad": 164, "buro": [164, 591, 682], "alexa_cmd_02": 164, "hallo": [164, 256], "alexa_cmd_03": 164, "alexa_cmd_04": 164, "listeninformation": 164, "shopping": [164, 273, 376], "mylist": 164, "get_list": 164, "to_do": [164, 376], "completed": [164, 227, 645, 646, 653, 655], "control_clear": 164, "control_hom": 164, "fromtimestamp": [164, 184, 253, 262, 268], "updateddatetim": 164, "alexa_list": 164, "shopping_list": [164, 376], "jquery_shop": 164, "activelist": [164, 178, 262], "mvalu": [164, 243, 263, 575, 577], "nvalu": 164, "inserted": [164, 186, 353], "serialnumb": [164, 227, 300], "serialno": [164, 165], "familiy": 164, "devicetyp": [164, 210], "deviceownercustomerid": 164, "ownerid": 164, "kennzuzeichn": 164, "debugg": [164, 339, 340, 489, 508], "f12": 164, "netzwerkverkehr": 164, "beweg": [164, 200, 337, 421], "kenn": [164, 260, 460, 574], "herausfind": 164, "netzwerkbefehl": 164, "formulardat": 164, "customerid": 164, "deviceownercustomeridcustomerid": 164, "zugangsdat": [164, 219, 376, 425, 447], "echt": [164, 306, 307, 396], "selektiert": [164, 416, 419, 420, 479], "medium": [164, 183, 378], "sprachausgab": 164, "speech": [164, 314, 545, 558, 643, 646, 649], "synthesis": 164, "volumeadj": 164, "regelt": [164, 528], "lautstark": [164, 169, 192, 319, 367, 369, 370, 378, 381, 453, 475, 488, 507, 536], "medi": 164, "volumeset": 164, "testwert": 164, "einzubett": 164, "whispered": 164, "human": [164, 262], "believ": 164, "speechcon": 164, "say": [164, 288, 315, 653], "interjection": 164, "ach": 164, "lieb": 164, "alex": [164, 545, 550], "loetzimm": 164, "ingo": 164, "michael": [164, 182, 545, 550, 552], "openhab2": 164, "jonof": 164, "edomi": 164, "prim": 164, "produkt": [164, 179], "unternehm": [164, 224], "inhab": 164, "apcupsd": 165, "netserv": 165, "nis": 165, "laufzeitdat": 165, "apcaccess": [165, 377], "nisport": 165, "3551": [165, 377], "nisip": 165, "apc": [165, 377, 545, 550], "ups": [165, 259, 377, 545, 550, 649], "smartups": [165, 377, 545, 550], "statusabruf": 165, "statusnam": [165, 328, 377], "Dem": [165, 629], "050": 165, "1127": 165, "2017": [165, 182, 247, 274, 312, 313, 360, 413, 640], "59": [165, 187, 219, 325, 569, 592, 652], "0100": [165, 306, 307], "march": [165, 653], "2014": [165, 273, 341], "upsnam": 165, "ups_id": 165, "cabl": [165, 278], "ethernet": [165, 290, 649, 653, 655], "pcnet": 165, "upsmod": 165, "starttim": [165, 284, 422, 650, 652], "1400": 165, "linev": 165, "227": [165, 187], "volt": [165, 219, 337, 436], "loadpct": 165, "bcharg": 165, "timeleft": 165, "mbattchg": 165, "mintimel": 165, "maxtim": 165, "maxlinev": 165, "minlinev": 165, "226": 165, "outputv": 165, "dwak": 165, "dshutd": 165, "dlowbatt": 165, "lotran": 165, "hitran": 165, "253": 165, "retpct": 165, "itemp": 165, "alarmdel": 165, "battery": [165, 170, 229, 235, 245, 254, 255, 258, 259, 284, 291, 293, 359, 367, 371, 448, 458, 479, 533], "battv": 165, "linefreq": 165, "hz": [165, 235], "lastxf": 165, "voltag": [165, 170, 200, 234, 235, 258, 261, 281, 293, 337, 382, 383, 480, 646], "notch": 165, "spik": 165, "numxf": 165, "tonbatt": 165, "cumonbatt": 165, "xoffbatt": 165, "selft": 165, "stesti": 165, "336": 165, "statflag": 165, "0x05000008": 165, "reg1": 165, "0x00": [165, 200], "reg2": 165, "reg3": 165, "mandat": 165, "gs0034003173": 165, "battdat": 165, "06": [165, 234, 273, 294, 295, 328, 360, 363, 436, 545, 550, 569, 585, 592], "nomoutv": 165, "nombattv": 165, "extbatt": 165, "firmwar": [165, 170, 177, 207, 212, 218, 219, 227, 234, 235, 245, 248, 283, 312, 313, 448, 503, 511, 533, 537, 545, 548, 550, 645, 646, 650, 652, 653], "162": [165, 210], "typumwandl": 165, "abgeschnitt": 165, "235": 165, "serverroom": 165, "onbatt": 165, "simply": [165, 352, 355, 629], "revisionsstand": 165, "usv": [165, 259, 459], "eeprom": [165, 261], "direktiv": 165, "erstellungsdatum": 165, "kabel": 165, "upscabl": 165, "netzspann": 165, "geschatzt": 165, "prozentsatz": 165, "lastkapazitat": 165, "prozentual": [165, 207], "ladung": [165, 420], "batteri": [165, 170, 219, 257, 389, 420, 479, 481, 545, 550, 655], "restlaufzeit": [165, 207], "batterielad": 165, "fallt": [165, 599, 634], "batterylevel": [165, 244], "fahrt": [165, 328, 481], "herunt": [165, 187, 328, 628], "verbleib": [165, 170, 325, 331], "unterschreitet": [165, 189, 574, 577], "akkulaufzeit": 165, "uberschreitet": [165, 574], "zuruckgemeldet": 165, "spannung": [165, 170, 178, 192, 200, 207, 219, 229, 261, 306, 307, 337, 436, 461], "empfindlichkeitsgrad": 165, "schwankung": 165, "wartet": [165, 233, 505], "stromversorg": 165, "stromausfall": [165, 260], "wiederherstellt": 165, "ausschaltbefehl": 165, "einhalt": 165, "ausschaltet": 165, "unterschreit": [165, 328, 574, 577], "erzwingt": 165, "notabschalt": 165, "umschaltet": 165, "geliefert": [165, 192, 232, 293, 331, 337, 462, 530, 599, 634], "verzogerungszeit": [165, 326, 332], "batteriespann": [165, 337], "netzfrequenz": 165, "hertz": 165, "xonbatt": 165, "kumulativ": 165, "selbstt": 165, "bt": [165, 281, 297, 480], "unzureich": 165, "batteriekapazitat": 165, "fehlgeschlag": [165, 381, 641, 674], "uberlast": 165, "statusflagg": 165, "dipsw": 165, "dip": 165, "usvs": 165, "fehlerregist": 165, "hergestellt": [165, 212, 213, 289, 314, 363], "seriennumm": [165, 192, 299, 306, 307, 419, 420, 493, 537], "battdatum": 165, "ausgetauscht": [165, 622], "ausgangsspann": 165, "nominv": 165, "eingangsspann": 165, "nennspann": 165, "nompow": 165, "feuchtig": [165, 170, 261, 337, 461, 599], "gemess": [165, 289, 337, 632], "ambtemp": 165, "umgebungstemperatur": 165, "badbatt": 165, "defekt": [165, 414, 460], "akkus": [165, 219], "revisionsnumm": 165, "apcmodel": 165, "modellidentifikationscod": 165, "tvs": [166, 248, 266, 466, 495, 545, 550, 552], "pyatv": [166, 655], "pierr": 166, "st\u00e5hl": 166, "login_id": 166, "00000000": [166, 192, 200], "0580": 166, "3568": 166, "6c73": 166, "86bd9b834320": 166, "scan_timeout": 166, "einschaltzustand": 166, "playing": [166, 275, 318], "gespielt": [166, 314, 319, 453], "artist": [166, 250, 314, 370, 453, 674], "album": [166, 250, 318, 319, 370, 378, 453, 507, 674], "abspielmodus": [166, 314], "fernbedienungsfunktion": 166, "rol": [166, 253, 288, 294, 314], "collapsibl": [166, 253, 294, 314], "mini": [166, 253, 294, 314, 669], "collapsed": [166, 253, 294, 314], "h3": [166, 253, 294], "atv": [166, 378], "media_type_text": 166, "play_state_text": 166, "stateswitch": [166, 288, 294, 646, 682, 683], "rc_top_menu": [166, 378], "jquery_hom": 166, "rc_menu": [166, 378], "control_return": 166, "rc_up": [166, 378], "control_arrow_up": 166, "shuffl": [166, 314, 378, 643, 646], "audio_shuffl": 166, "audio_repeat": 166, "audio_repeat_song": 166, "icon0": [166, 294, 682], "icon1": [166, 288, 682], "rc_left": [166, 378], "control_arrow_left": 166, "rc_select": [166, 378], "control_ok": 166, "rc_right": [166, 378], "control_arrow_right": 166, "rc_down": [166, 378], "control_arrow_down": 166, "colspan": [166, 294], "genr": [166, 169, 319, 378], "slid": [166, 195], "position_percent": 166, "horizontal": [166, 227, 288], "controlgroup": [166, 288], "rc_previous": [166, 378], "audio_rew": 166, "rc_play": [166, 378], "audio_play": [166, 294], "rc_paus": [166, 378], "audio_paus": 166, "rc_next": [166, 378], "audio_ff": 166, "artwork_url": 166, "var1": [166, 347], "gekoppelt": [166, 554, 555], "abspielposition": [166, 378], "kunstl": [166, 378, 381, 453], "versteht": 167, "ola": 167, "radig": 167, "heranzuzieh": [167, 228], "artnet1": 167, "artnet_univers": 167, "artnet_net": 167, "artnet_subnet": 167, "6454": [167, 379], "update_cycl": [167, 192, 207, 235, 236, 297, 334], "kell": [167, 211], "lightbar": 167, "artnet_address": 167, "green": [167, 198, 200, 247, 248, 282], "blue": [167, 198, 200, 247, 248], "universum": 167, "dmx_chan": 167, "dmx_valu": 167, "dmx_value_list": 167, "33": [167, 292, 293, 638], "44": [167, 169, 221, 301, 381], "geschickt": [167, 168, 181, 256, 316, 338, 339, 340, 381, 393, 522, 652, 653, 655, 656], "aquivalent": [167, 263, 454, 463, 576], "itempfad": [167, 333, 398, 574, 575], "itemtyp": [167, 200, 255, 263, 347], "itemaktualisier": 167, "itemander": [167, 188, 243, 263], "telefonanlag": [168, 380, 545, 550], "vorausgesetzt": 168, "manag": [168, 688], "ami": 168, "funktionell": 168, "cdr": 168, "orginat": 168, "telefon": [168, 170, 382], "anruf": [168, 170, 380, 382], "sip": [168, 227, 380, 429, 545, 550], "geratebenenn": 168, "device22": 168, "databank": 168, "logic1": [168, 232], "ast_userevent": 168, "logic2": [168, 232], "_x": [168, 330], "userevent": 168, "jedesmal": [168, 508], "offic": [168, 180, 360, 599], "ast": 168, "extention": 168, "dnd": [168, 367], "mbc": 168, "wertetupel": 168, "old_messag": 168, "new_messag": 168, "rs232": [169, 183, 191, 201, 248, 264, 267, 281, 381, 403, 545, 550], "vielzahl": [169, 170, 189, 191, 267, 373, 381], "pione": [169, 381, 545, 550, 655, 671], "denon": [169, 264, 381, 545, 550, 655, 671], "epson": [169, 381, 545, 550, 655], "projektor": [169, 201, 230, 381, 432, 545, 550], "2010": [169, 368, 381], "oppo": [169, 381, 545, 550, 655], "uhd": [169, 264, 381, 464, 545, 550, 655], "sc": [169, 195, 196, 210, 267, 467], "lx86": 169, "pioneer_on": 169, "tcp_ip": 169, "tcp_port": 169, "tcp_timeout": 169, "rs232_port": 169, "ttyusb1": [169, 439], "rs232_baudrat": 169, "9600": [169, 192, 267, 337, 341, 381, 400, 408, 464, 467, 514], "rs232_timeout": 169, "ignorerespons": 169, "rgc": [169, 381], "rgd": [169, 381], "gbh": [169, 381], "ghh": [169, 381], "vta": [169, 381], "aua": [169, 381], "aub": [169, 381], "forcebuff": 169, "geh01020": [169, 381], "geh04022": [169, 381], "geh05024": [169, 381], "inputignoredisplay": 169, "dependson_it": [169, 646], "dependson_valu": 169, "errorrespons": 169, "e02": [169, 381], "e04": [169, 381], "e06": [169, 381], "resetonerror": 169, "depend0_power0": 169, "depend0_volume0": 169, "sendretri": 169, "resendwait": 169, "reconnectretri": 169, "reconnectcycl": 169, "secondstokeep": 169, "responsebuff": 169, "update_exclud": 169, "zonennumm": 169, "zon": [169, 173, 217, 275, 290, 314, 370, 381, 488, 504, 536, 644, 671], "avdevice_zone0": 169, "abzuspeich": 169, "codesatz": 169, "wiedergabemodus": 169, "attributw": 169, "statusupdat": [169, 381], "herzuschalt": 169, "spk1": 169, "spk2": 169, "avdevice_zone1": 169, "speakera": 169, "avdevice_zone1_speak": 169, "speakerb": 169, "abhangt": [169, 325], "momentan": [169, 306, 307, 313], "statusabfrag": [169, 282, 381, 674], "dependency": [169, 649, 652, 655], "vergleichsoperator": [169, 398], "disktyp": 169, "sof": [169, 196, 314, 322, 325, 328, 351, 371, 400, 441, 464, 467, 569, 592], "textfil": [169, 196, 490], "tonencoding": 169, "tracknumm": 169, "audiotyp": 169, "pcm": 169, "tracknam": 169, "disctpy": 169, "dvd": [169, 248], "audio": [169, 198, 227, 248, 250, 290, 314, 453, 488, 504, 545, 550, 617, 655, 665, 682], "cdda": 169, "disc": 169, "disctyp": 169, "avdevice_dep": 169, "audiolanguag": 169, "track": [169, 173, 250, 276, 294, 295, 314, 360, 370, 453, 490], "audiotrack": 169, "lev": 169, "schaltbar": [169, 277, 381], "steckdos": [169, 170, 277, 278, 292, 328, 381, 382, 383, 545, 550], "avdevice_init": 169, "avdevice_zone1_init": 169, "zone1": [169, 191, 264, 267], "mut": [169, 173, 198, 205, 231, 248, 250, 266, 276, 290, 301, 369, 370, 433, 453, 466, 488, 504, 535, 642, 653, 674], "zone2": [169, 191, 264, 267], "avdevice_zone2": 169, "avdevice_zone2_init": 169, "vsx": [169, 267, 467], "923": [169, 267, 467], "auszukommenti": 169, "menunavigation": [169, 381], "displayanzeig": 169, "song": [169, 173, 250, 314, 319, 453, 674], "lust": 169, "laun": 169, "functiontyp": 169, "lautstarkewert": 169, "schrittweis": [169, 314], "verring": [169, 378], "decreas": [169, 247], "gelass": [169, 289, 411, 520, 568, 570, 629], "pf": [169, 671], "verstark": [169, 191, 267, 381], "po": 169, "dazwisch": [169, 331, 347], "sendend": [169, 200, 272, 331, 337, 338, 381, 425, 434, 471, 504, 527], "vl": 169, "005vl": 169, "auszules": [169, 200, 244, 351, 384, 392, 434, 448, 492, 518, 536, 545, 550, 641], "ankommt": [169, 314], "readwrit": 169, "lesewert": 169, "wohingeg": 169, "schreibwert": 169, "zuverlass": [169, 287, 333, 642], "invertrespons": 169, "ganzlich": [169, 262], "unlog": 169, "dummheit": 169, "entgegengewirkt": 169, "minvalu": 169, "minimumwert": [169, 485], "limiti": [169, 528], "bass": [169, 290, 381, 488, 504], "versehent": 169, "limitiert": 169, "maxvalu": 169, "responsetyp": 169, "mischung": [169, 373], "antworttyp": 169, "pluginstart": [169, 347, 412, 507], "anlehn": 169, "translationfil": 169, "einex": 169, "pwr": 169, "volum": [169, 173, 205, 233, 248, 250, 262, 266, 276, 290, 369, 370, 381, 384, 453, 466, 488, 504, 507, 533, 535, 674], "vu": [169, 198], "vol": [169, 231, 433, 453], "185": 169, "spk": 169, "apo": 169, "ap": [169, 292, 642], "apf": 169, "pioneer_input": 169, "sr": 169, "pioneer_sr": 169, "playingmod": 169, "lm": 169, "pioneer_lm": 169, "noidea": 169, "cursorssteuer": 169, "neulad": 169, "speaker_selection": 169, "individual_volum": 169, "sound_setting": 169, "kompression": 169, "video_setting": 169, "aspect": 169, "ratio": 169, "monitorout": 169, "zone3": [169, 191, 264, 267], "denon_volum": 169, "textdatei": [169, 403, 490], "kommawert": [169, 191, 264, 267], "505": 169, "versark": 169, "hormodi": 169, "nutzerfreund": 169, "beheb": [169, 262], "phono": 169, "fn01": 169, "unbekannt": [169, 187, 200, 232, 241, 261, 262, 293, 351, 365, 371, 407, 545, 547, 548, 550, 552, 554, 558], "fragezeich": [169, 507], "buchstab": [169, 476, 477], "udp203": 169, "qat": 169, "aud": [169, 423], "qtk": 169, "uat": 169, "folglich": [169, 563], "hintereinand": [169, 381], "schragstrich": [169, 229, 431], "nochmal": [169, 187, 329, 331, 381, 396, 400, 441, 464, 467], "gesamtlang": 169, "erfahr": [169, 212, 213, 562, 567, 572, 591], "zugeordn": 169, "histori": [169, 187], "verbose1": 169, "verbose2": 169, "unklar": [169, 328], "unbestimmt": 169, "zweifelsfall": 169, "timerfunktion": 169, "fileadmin": 170, "user_upload": 170, "x_contactscpd": 170, "hostsscpd": 170, "wanipconnscpd": 170, "x_voipscpd": 170, "934835": 170, "telefonereignis": 170, "callmonitor": [170, 382, 641, 649, 653, 655], "isdn": 170, "96": [170, 219, 262, 382, 434], "v7": 170, "kennwort": [170, 382, 383, 456], "updatezykl": 170, "fritzdevic": [170, 382, 383, 655], "auslast": [170, 310], "nichterreichbar": 170, "updatezyklus": [170, 262], "beobachtet": [170, 642], "datapoint": [170, 646], "serial_numb": [170, 297, 382, 504], "serialnumm": 170, "software_version": [170, 297, 382, 504], "hardware_version": [170, 382, 504], "manufactur": [170, 183, 192, 235, 305, 337, 382, 383, 649], "product_class": [170, 382], "produktklass": 170, "manufacturer_oui": [170, 382], "oui": 170, "model_nam": [170, 382], "modellnam": 170, "modellbeschreib": 170, "device_log": [170, 382], "security_port": [170, 382], "myfritz_status": [170, 382], "myfritz": 170, "call_direction": [170, 382], "richtung": [170, 200, 262, 328, 361], "call_event": [170, 382], "monitor_trigg": [170, 382], "monitortrigg": 170, "is_call_incoming": [170, 339, 340, 382], "last_caller_incoming": [170, 339, 340, 382], "last_call_date_incoming": [170, 382], "call_event_incoming": [170, 339, 340, 382], "last_number_incoming": [170, 382], "last_called_number_incoming": [170, 382], "angeruf": [170, 382], "is_call_outgoing": [170, 382], "ausgeh": [170, 189, 454, 561], "last_caller_outgoing": [170, 382], "last_call_date_outgoing": [170, 382], "call_event_outgoing": [170, 382], "last_number_outgoing": [170, 382], "last_called_number_outgoing": [170, 382], "telefonnumm": [170, 382], "call_duration_incoming": [170, 382], "call_duration_outgoing": [170, 382], "tam": [170, 339, 340, 382, 646], "tam_nam": [170, 382], "tam_new_message_numb": [170, 339, 340, 382], "tam_old_message_numb": [170, 382], "tam_total_message_numb": [170, 382], "gesamtanzahl": [170, 641], "verbindungsstatus": 170, "wan_connection_error": [170, 382], "verbindungsfehl": 170, "wan_is_connected": [170, 382], "wan_uptim": [170, 382], "verbindungszeit": 170, "wan_ip": [170, 382], "wan_upstream": [170, 382], "upstream": [170, 688], "datenmeng": 170, "wan_downstream": [170, 382], "downstream": 170, "wan_total_packets_sent": [170, 382], "insgesamt": 170, "wan_total_packets_received": [170, 382], "wan_current_packets_sent": [170, 382, 670], "wan_current_packets_received": [170, 382, 670], "wan_total_bytes_sent": [170, 382], "wan_total_bytes_received": [170, 382], "wan_current_bytes_sent": [170, 382, 670], "bitrat": [170, 250, 453], "wan_current_bytes_received": [170, 382, 670], "wan_link": [170, 382], "wlanconf": [170, 382], "wlan": [170, 247, 265, 362, 382, 479, 545, 550, 669], "wlanconfig_ssid": [170, 382], "ssid": [170, 292], "wlan_guest_time_remaining": [170, 382], "gast": [170, 382, 682], "wlan_associat": [170, 382], "wps_activ": [170, 382], "wps": 170, "wps_status": [170, 382], "wps_mod": [170, 382], "wlan_total_associat": [170, 382], "hosts_count": [170, 382], "hosts_info": [170, 382], "mesh_topology": [170, 382], "topologi": [170, 382], "mesh": [170, 346, 382], "number_of_host": [170, 382], "network_devic": [170, 382], "hosts_url": [170, 382], "mesh_url": [170, 382], "device_ip": [170, 382, 518], "device_connection_typ": [170, 382], "verbindungstyp": [170, 400, 408, 467], "device_hostnam": [170, 382], "host_info": [170, 382], "number_of_deflection": [170, 382], "rufumleit": [170, 382], "deflections_detail": [170, 382], "deflection_detail": [170, 382], "avm_deflection_index": 170, "deflection_enabl": [170, 382], "deflection_typ": [170, 382], "deflection_numb": [170, 382], "umgeleitet": [170, 417, 688], "deflection_to_numb": [170, 382], "zielrufnumm": 170, "umleit": 170, "deflection_mod": [170, 382], "deflection_outgoing": [170, 382], "outgoing": [170, 199, 227], "deflection_phonebook_id": [170, 382], "phonebook_id": 170, "frompb": 170, "aha_devic": [170, 382, 651], "switch_stat": [170, 382, 383], "hkr_devic": [170, 382, 645], "hkr": [170, 171, 641, 645, 646], "set_temperatur": [170, 382, 383], "target_temperatur": [170, 382, 383], "current_temperatur": [170, 382], "set_temperature_reduced": [170, 382], "temperature_reduced": [170, 382], "set_temperature_comfort": [170, 382], "temperature_comfort": [170, 382], "firmware_version": [170, 382, 383], "fw_version": [170, 382], "device_id": [170, 205, 228, 273, 382, 472], "product_nam": [170, 382], "produktnam": 170, "device_nam": [170, 228, 382, 518], "tx_busy": [170, 382], "device_function": [170, 382], "set_target_temperatur": [170, 382], "reduziert": [170, 249, 396, 484, 495, 622, 635], "komfort": [170, 289, 434, 487], "temperature_offset": [170, 382], "set_window_op": [170, 382], "window_op": [170, 382, 383], "windowopenactiveendtim": [170, 382], "set_hkr_boost": [170, 382], "hkr_boost": [170, 382], "boost_activ": [170, 382], "boostactiveendtim": [170, 382], "summer_activ": [170, 382, 383], "somm": [170, 189], "holiday_activ": [170, 382, 383], "battery_low": [170, 382, 383], "battery_level": [170, 382, 383, 420], "tastensperr": 170, "device_lock": [170, 382, 383], "errorcod": [170, 382], "fehlercod": 170, "set_simpleonoff": [170, 382], "simpleonoff": [170, 382], "set_level": [170, 382], "niveau": [170, 260, 622], "set_levelpercentag": [170, 382], "levelpercentag": [170, 382], "set_hu": [170, 382], "wertebereich": [170, 200, 314, 569, 592], "359": 170, "set_saturation": [170, 382], "saturation": [170, 337, 382, 655], "set_colortemperatur": [170, 382], "2700k": 170, "6500k": 170, "colortemperatur": [170, 382], "unmapped_hu": [170, 382], "unmapped_saturation": [170, 382], "farbwert": [170, 219, 337], "color_mod": [170, 382], "farbmodus": [170, 337], "huesaturation": 170, "supported_color_mod": [170, 382], "fullcolorsupport": [170, 382], "setunmappedcolor": 170, "colordefault": 170, "schaltzustand": 170, "switch_mod": [170, 382], "zeitschalt": 170, "switch_toggl": [170, 382], "umschalt": [170, 338, 378], "energy": [170, 179, 200, 234, 235, 259, 291, 293, 298, 311, 337, 382, 383, 438, 493, 545, 550, 643, 646, 655, 670], "inbetriebnahm": [170, 284, 498, 499], "wh": [170, 234, 235, 236, 306, 307, 311, 502, 655], "fd440": 170, "alert_stat": [170, 382, 383], "alarmzustand": 170, "blind_mod": [170, 382], "endpositionsset": [170, 382], "endlag": [170, 337], "rollo": [170, 337], "statistics_temp": [170, 382], "wertestatist": 170, "statistics_hum": [170, 382], "statistics_voltag": [170, 382], "statistics_pow": [170, 382], "statistics_energy": [170, 382], "anrufbeantwort": [170, 339, 340, 382], "deflection": [170, 650, 653], "verbimd": 170, "netzwerkgerat": [170, 310], "210": 170, "440": [170, 337, 650], "comet": [170, 383, 545, 550, 649, 650], "aha_general": 170, "homeautomation": [170, 651], "aha_thermostat": 170, "aha_temperature_sensor": 170, "aha_humidity_sensor": 170, "feuchtigkeitssensor": 170, "humidity_sensor": 170, "aha_alert": 170, "alarmfunktion": 170, "aha_switch": 170, "aha_powermet": 170, "strommess": 170, "powermet": [170, 235, 649, 652], "aha_level": 170, "dimmfunktion": 170, "hohenverstell": 170, "dimmable_devic": 170, "aha_blind": 170, "blind": [170, 200, 210], "aha_on_off": 170, "on_off_devic": 170, "aha_button": 170, "aha_color": 170, "color_devic": 170, "rufumleitung_1": 170, "rufumleitung_2": 170, "connected_devic": 170, "mobile_1": 170, "avm_mac": [170, 646], "mobile_2": 170, "hkr_og_bad": 170, "avm_ain": [170, 171, 653], "xxxxx": [170, 219], "xxxxxxx": [170, 219, 338], "socket_3d_druck": 170, "zuschreib": 170, "gib": [170, 382], "phone_nam": 170, "fritzbox_7490": 170, "anyauth": 170, "49443": [170, 382], "upnp": [170, 649], "x_voip": 170, "charset": 170, "soapaction": 170, "urn": [170, 229], "dslforum": 170, "x_avm": 170, "de_dialgetconf": 170, "envelop": 170, "encodingstyl": 170, "xmlsoap": 170, "soap": 170, "xmlns": 170, "anruflist": [170, 382], "callednumb": [170, 382], "numbertyp": [170, 382], "durchsucht": [170, 316, 382, 678], "telefonbuch": [170, 382], "lua": [170, 382, 648], "mq_log": [170, 382], "interface_typ": 170, "is_activ": 170, "lease_time_remaining": 170, "zusammenfuhrt": [170, 677], "device_list": 170, "hosts_300": 170, "wlan_repeater_300": 170, "hosts_1750": 170, "wlan_repeater_1750": 170, "host_300": 170, "host_1750": 170, "device_string": 170, "deutlich": [170, 212, 219, 260, 321, 325, 326, 330, 381, 586, 589, 674], "ipaddress": [170, 211, 382], "macaddress": [170, 382], "interfacetyp": 170, "updateavailabl": 170, "updatesuccessful": 170, "infourl": 170, "macaddresslist": 170, "requestclient": 170, "vpn": [170, 221, 355, 688], "wanaccess": 170, "disallow": [170, 355], "ismeshabl": 170, "friendlynameiswriteabl": 170, "filter_dict": 170, "vorliegt": [170, 203, 262, 339, 340], "identifier_list": 170, "fb1": 170, "result_numb": 170, "mustermann": 170, "result_string": 170, "geschaft": 170, "fax_work": 170, "fax": 170, "h2": 170, "type_numb": 170, "tel": [170, 337], "weight": [170, 253, 362, 530], "general_item": 170, "number_search_result": 170, "prasenzerkenn": [170, 382], "getspecifichostentry": 170, "newmacaddress": 170, "telefoni": 170, "wahlhilf": 170, "0891234567": 170, "wakeonlan": [170, 382], "dect500": 170, "dives": 170, "gemeinsam": [170, 189, 224, 324, 328, 329, 332, 381], "whit": [170, 179, 200, 247, 259, 337, 371, 649, 655], "tabellar": 170, "anrufmonitor": 170, "listung": 170, "augrund": 170, "yam": [170, 189], "masterinformation": [170, 189], "skipt": 170, "item_attributes_mast": [170, 189, 655], "dect": [171, 382, 383, 545, 550, 645, 649, 650, 651, 669], "aha": [171, 382, 641, 648, 650, 651, 653, 655], "bilbliothek": 171, "pyfritzhom": 171, "handlich": 171, "installtion": 171, "hthiery": 171, "fritzhom": [171, 655], "avm_smarthome_data": 171, "hkr_bathroom_og": 171, "00000": [171, 278, 476, 477], "0000000": 171, "leerstell": 171, "hkr_bathroom_ug": 171, "temperatur_sensor": 171, "geratetyp": [171, 244, 351, 522], "alert": [171, 211, 212, 213, 218, 219, 243, 254, 255, 261, 262, 315, 359, 394, 419, 420, 456, 468, 646, 648, 649, 655], "7490": 171, "7530": [171, 650], "heizkorperthermostat": [171, 383, 545, 550], "alarmgerat": 171, "codierungskonzept": 172, "ineinandergreif": 172, "herzustell": [172, 212, 213], "blockly_compressed": 172, "blocks_compressed": 172, "python_compressed": 172, "demos": 172, "kernstuck": 172, "improved": [173, 176, 179, 247, 643, 646, 649, 650, 651, 652, 653, 655, 669], "integrat": [173, 186, 187, 227, 398, 641, 655], "infrastructur": 173, "artwork": [173, 378, 507], "limitation": [173, 176, 234, 257], "official": [173, 227, 257, 334, 667], "8090": [173, 256, 386], "cycle_tim": [173, 176, 288], "queried": [173, 186, 355, 370], "bose_soundtouch": [173, 545, 548, 643, 649], "bosesoundtouch": 173, "libsoundtouch": 173, "bos": [174, 184, 268, 386, 545, 548, 643], "soundtouch": [174, 386, 545, 548, 643], "fredlcor": 175, "boil": [175, 202, 521, 646, 656], "heating": [175, 176, 177, 240, 345, 350, 521, 622, 646, 652, 666], "elco": [175, 646], "brotj": [175, 646], "accessibl": [175, 356, 357], "revised": [175, 643, 646, 649, 655], "writing": [175, 202, 623, 642, 648, 652, 653], "bsblan_ip": 175, "komfortsollwert_hk1": 175, "bsb_lan": 175, "710": 175, "descr": 175, "vorlauftemperatur_hk1": 175, "8743": 175, "trinkwassertemperatur": 175, "8830": 175, "vorlauftemperatur_hk2": 175, "8773": 175, "heizkreispumpe_hk2_status": 175, "8760": 175, "status_brenn": 175, "8009": 175, "kesseltemperatur": [175, 351], "8310": 175, "kesselruecklauftemperatur": 175, "8314": 175, "wasserdruck": 175, "8327": 175, "status_trinkwass": 175, "8003": 175, "status_kessel": 175, "8005": 175, "logamatic": [176, 388, 545, 550], "km200": [176, 388, 545, 550], "disclaim": 176, "still": [176, 186, 280, 642, 643, 644, 645, 646, 649, 650, 651, 652, 655, 691], "presenc": [176, 212, 294, 368, 419, 420, 534, 545, 552, 573, 646], "detected": [176, 211, 227, 646], "circuit": [176, 177, 521], "modification": [176, 649, 650, 653, 655], "ocs": 176, "wohngebaeud": 176, "632270": 176, "km50": 176, "km300": 176, "tested": [176, 182, 186, 190, 198, 227, 231, 235, 239, 247, 269, 281, 294, 297, 301, 305, 314, 334, 341, 643, 646, 650, 655], "introduced": [176, 298, 643, 646, 648, 649, 651, 654, 655, 656], "eas": [176, 183, 646, 655], "beforehand": 176, "printed": 176, "easycontrol": [176, 207], "andreashahn": [176, 388], "fetched": [176, 655], "meaning": [176, 186, 305], "90ad52660ce1234551234579d89e25b70b5331ce0e82c5fd1254a317574ec807": 176, "heating_syst": 176, "heating_circuit_01": 176, "hot_water_circuit_01": 176, "hot": [176, 177], "wat": [176, 177, 200, 261, 262, 650, 651], "km_id": [176, 177], "iobrok": 176, "circuit1": 177, "solar": [177, 234, 235, 236, 258, 279, 298, 311, 436, 502, 545, 550, 646, 652], "didn": [177, 643, 650, 652], "brand": [177, 247, 335, 510, 545, 548, 550, 554], "systemtyp": 177, "minoutdoortemp": 177, "healthstatus": 177, "holidaymod": 177, "actualsupplytemperatur": 177, "powersetpoint": 177, "actualpow": 177, "chpumpmodulation": 177, "numberofstart": 177, "gasairpressur": 177, "systempressur": 177, "flamecurrent": 177, "chimneysweep": 177, "workingtim": 177, "nominalburnerload": 177, "hs1": 177, "hm1": 177, "hm2": 177, "hm3": 177, "hm4": 177, "hm5": 177, "outdoor_t1": 177, "supply_t1_setpoint": 177, "supply_t1": 177, "hotwater_t2": 177, "chimney": 177, "totalsyst": 177, "secondburn": 177, "centralheating": 177, "energyreservoir": 177, "reservoiralert": 177, "nominalfuelconsumption": 177, "fuelconsmptcorrfactor": 177, "actualmodulation": 177, "fuel": 177, "density": 177, "caloricvalu": 177, "startstop": 177, "assignedto": 177, "hcmod": 177, "dhwmod": 177, "uuid": [177, 358, 510], "userpassword": 177, "versionfirmwar": 177, "versionhardwar": 177, "boschshpassword": 177, "portalpassword": 177, "knxpassword": 177, "haipassword": 177, "instpassword": 177, "instaccess": 177, "instwriteaccess": 177, "actualchpow": 177, "actualdhwpow": 177, "burnermodulationsetpoint": 177, "burnerpowersetpoint": 177, "flamestatus": 177, "returntemperatur": 177, "supplytemperaturesetpoint": 177, "appliancesupplytemperatur": 177, "nominalchpow": 177, "nominaldhwpow": 177, "hc1": 177, "currentroomsetpoint": 177, "operationmod": 177, "temperatureroomsetpoint": 177, "manualroomsetpoint": 177, "temporaryroomsetpoint": 177, "roomtemperatur": 177, "activeswitchprogram": 177, "timetonextsetpoint": 177, "nextsetpoint": 177, "switchprogram": 177, "temperaturelevel": 177, "pumpmodulation": 177, "suwithreshold": 177, "designtemp": 177, "roomtempoffset": 177, "heatcurvemax": 177, "controltyp": 177, "roominfluenc": 177, "suwiswitchmod": 177, "currentopmodeinfo": 177, "comfort2": 177, "dhw1": 177, "currentsetpoint": 177, "actualtemp": 177, "waterflow": 177, "charg": [177, 218, 219, 235, 254, 255, 258, 259, 281, 293, 365, 479, 480, 481], "chargeduration": 177, "tdmod": 177, "tdsetpoint": 177, "cpstartph": 177, "singlechargesetpoint": 177, "byd": [178, 389, 545, 550, 655], "energiespeich": 178, "be_connect_plus": 178, "turm": 178, "batteriesystem": 178, "hvs": 178, "hvm": 178, "lvs": 178, "byd_struct": 178, "bsp": [178, 389, 398], "grunddat": [178, 265, 283], "diagnosedat": [178, 389], "diag_cycl": 178, "enable_connection": 178, "log_data": 178, "logdat": 178, "bmu_log": 178, "log_html": 178, "tower1_log": 178, "log_jsonlist": 178, "tageweis": 178, "byd_log": 178, "log_ag": 178, "temperaturwert": [178, 189, 262], "bitmap": 178, "bydvtx": 178, "heatmap": [178, 389], "bydvbtx": 178, "balkendiagramm": 178, "bydttx": 178, "imgpath": 178, "dhcp": [178, 211, 384], "matplotlib": 178, "3kwh": 178, "diagnos": [178, 622], "occhio": 179, "bluetooth": [179, 245, 371, 448, 480, 492, 671], "ble": 179, "verbaut": [179, 479], "lektur": [179, 311, 685], "mobilgerat": [179, 228], "tablett": 179, "hardwaregateway": 179, "enzusetz": 179, "beantragt": 179, "sento": 179, "dunkl": 179, "vertikal": 179, "readinglight": 179, "casambi_id": [179, 652], "backendstatus": 179, "casambi_rx_key": 179, "backend_online_stat": [179, 390], "casambi_tx_key": 179, "vertical": [179, 227, 390], "tunabl": [179, 649], "spotlight": 179, "tunablewhit": 179, "cct": [179, 390, 649], "resent": 179, "unjustified": [179, 649], "restrict": [180, 652], "entered": [180, 227, 315, 368, 612, 646], "very_secure_password": 180, "obtained": [180, 311, 365, 646], "commandgroup": 180, "belonging": 180, "commandgroups": 180, "manipulation": [181, 306, 307, 656], "akitviert": 181, "gebund": [181, 222, 522], "lausch": 181, "gupp": 181, "listet": [181, 187, 244], "dumpt": 181, "ausfuhrungszeit": 181, "triggert": [181, 314, 569, 592], "smaerthomeng": 181, "namenauf": 181, "ingestellt": 181, "dostmann": [182, 392, 545, 550], "tfa": [182, 392, 545, 550], "airco2ntrol": [182, 392, 545, 550], "1165010": 182, "supportthread": 182, "bcr": [182, 260], "adapted": [182, 195, 298, 645, 646, 649, 656], "heinemann": 182, "MIT": 182, "heinemml": 182, "hidraw0": [182, 392], "time_sleep": 182, "co2": [182, 207, 392, 414, 545, 550], "designed": [183, 227, 234, 623], "zehnd": [183, 393, 545, 550], "recovery": [183, 656], "primarly": 183, "solution": [183, 655], "protokollbeschreibung_comfoair": 183, "wernig": 183, "g90": 183, "380": [183, 646], "supposedly": 183, "paul": 183, "luftung": [183, 196, 403], "investigated": 183, "matsab": 183, "protokoll_ca500_avignon": 183, "acknowledg": 183, "commandset": 183, "rs485": [183, 306, 307], "cc": [183, 185, 210], "big": [183, 249, 270, 271, 452, 642], "troubl": [183, 278], "corrupt": 183, "worst": 183, "dependenci": [183, 231, 240, 312, 648, 655], "kwltyp": 183, "comfoair350": [183, 393], "comfoair500": [183, 393], "5555": 183, "serialport": [183, 191, 192, 193, 194, 200, 201, 264, 267, 305, 306, 307, 334, 351], "ttyusb0": [183, 191, 195, 196, 201, 206, 264, 267, 305, 306, 307, 334, 341, 351, 400, 408, 414, 464, 467, 497, 509, 514, 517, 538], "complemented": 183, "pre": [183, 185, 253, 305, 344, 355, 688], "writeventilationlevel": 183, "readventilationlevel": 183, "timespan": [183, 189, 227], "issued": [183, 199, 356, 357], "ventilator": 183, "rpm": [183, 207], "readsupplyairrpm": 183, "readextractairrpm": 183, "triggering": [183, 257, 288], "waited": 183, "readcurrentventilationlevel": 183, "extractair": 183, "readextractairpercentag": 183, "supplyair": 183, "readsupplyairpercentag": 183, "writefilterreset": 183, "writecomforttemperatur": 183, "readcomforttemperatur": 183, "freshair": 183, "readfreshairtemperatur": 183, "readsupplyairtemperatur": 183, "readextractairtemperatur": 183, "exhaustair": 183, "readexhaustairtemperatur": 183, "preheat": 183, "readpreheatingtemperatur": 183, "groundheat": 183, "readgroundheattemperatur": 183, "bypass": [183, 207, 270, 271, 334], "readbypasspercentag": 183, "readpreheatingstatus": 183, "operatinghour": 183, "away": [183, 288], "readoperatinghoursaway": 183, "readoperatinghourslow": 183, "readoperatinghoursmedium": 183, "readoperatinghourshigh": 183, "antifreez": 183, "readoperatinghoursantifreez": 183, "readoperatinghourspreheating": 183, "readoperatinghoursbypass": 183, "readoperatinghoursfilt": 183, "heatpreparationratio": 183, "wetterdat": [184, 219, 262, 268, 366, 394, 462, 468, 532, 545, 558], "marz": [184, 268, 526, 538, 585, 656, 657], "gekauft": [184, 268], "funktionert": 184, "wetter_darksky": [184, 268], "darky": 184, "time_epoch": [184, 268], "konvertier": [184, 191, 192, 264, 267, 268, 434, 522, 679], "umformatiert": [184, 268], "sonnenauf": [184, 268, 347], "untergang": [184, 268, 347], "originalantwort": [184, 268], "aufgedroselt": [184, 268], "daily": [184, 189, 235, 262, 268, 334, 347, 510, 643, 646], "day0": [184, 268], "day1": [184, 268], "hour0": [184, 268], "hour1": [184, 268], "abrufbar": [184, 207, 268, 688], "bewahr": [184, 268], "stundlich": [184, 189, 262, 268, 502], "day2": [184, 268], "erforsch": [184, 268], "stundenweis": [184, 268], "vorhersag": [184, 262, 268, 311, 361, 365, 502], "precipprobability_mean": [184, 268], "precipintensity_mean": [184, 268], "temperature_mean": [184, 268], "durchschnitt": [184, 189, 262, 268], "reg": [184, 218, 219, 262, 268, 326, 332, 338, 462], "temperaturvorhersag": [184, 268], "einzelwert": [184, 260, 268], "herangezog": [184, 262, 268, 322, 325, 326, 330, 332, 347, 441, 508, 618, 629, 671], "regenwahrschein": [184, 268], "heutig": [184, 189, 262, 268, 295], "wetter_ham": [184, 268, 365], "ham": [184, 268], "wetter_bos": [184, 268], "darksky_": 184, "rohdat": [184, 230, 268, 366], "cannot": [185, 218, 227, 254, 257, 645, 646, 648, 649, 654], "parental": 185, "policy": [185, 221, 222], "setcap": 185, "cap_net_raw": 185, "eip": 185, "re": [185, 205, 210, 240, 257, 325, 623, 645, 646, 647, 652, 653, 654, 655, 670, 674], "chos": [185, 193, 668], "dashbutton_valu": 185, "pressed": [185, 200, 211, 227, 281], "flipped": 185, "press": [185, 211, 248, 282, 283, 395, 655], "dashbutton_reset": 185, "neith": [185, 205, 359, 395, 643, 644, 645, 646, 649, 650, 651, 691], "dining_room": 185, "66": [185, 247, 254, 255, 638], "kitch": [185, 221, 248, 261, 315], "1021844": 186, "bundled": 186, "thier": 186, "incremented": 186, "microsecond": 186, "val_str": [186, 187, 222, 223], "val_num": [186, 187, 189, 222, 223, 398], "val_bool": [186, 187], "importing": [186, 638], "db_us": 186, "db_password": 186, "inital_valu": [186, 285], "sometim": [186, 334], "populat": 186, "reflect": [186, 211, 645, 646, 651, 653, 655], "retrieving": [186, 234], "rewritt": [186, 666], "matt": [186, 294], "behavior": [186, 294, 330, 649, 654], "monotonously": 186, "increasing": [186, 652], "rarely": 186, "rewrit": [186, 646, 652, 655], "averag": [186, 262, 317, 356, 357, 573], "countall": [186, 187, 203, 641], "great": [186, 317, 356, 357, 365, 566, 655], "summarized": 186, "discret": 186, "span": [186, 288], "1d": [186, 203, 287, 317, 645], "2w": [186, 287, 317], "1w": [186, 187, 287, 317, 645], "historical": 186, "aggregation": [186, 671], "finaliz": 186, "fetching": [186, 361, 655], "apply": [186, 227], "diff": [186, 187, 227, 646, 655, 671], "differenc": [186, 297], "locking": [186, 257, 351, 646, 651, 652, 655, 674], "restricted": [186, 688], "criteria": 186, "csv": [186, 188, 222, 223, 397, 585, 652, 653, 674], "12345": [186, 256], "newly": [186, 211, 643, 646, 651], "field": [186, 202, 222, 223, 428, 645, 646], "currenlty": 186, "bewar": 186, "peps": 187, "0249": [187, 368], "gebundeled": 187, "implementierungsmodul": 187, "KEIN": [187, 583], "systemdat": [187, 693], "produzi": 187, "standarmass": 187, "database_write_on_shutdown": [187, 652], "unterdruckt": [187, 232, 496, 641], "monoton": 187, "steigend": [187, 508], "zahlerstand": [187, 189, 655], "storend": 187, "database_": 187, "lup": 187, "kalend": [187, 217, 220, 423, 545, 558, 642], "gekehrt": 187, "item_nam": [187, 222, 223], "time_dat": 187, "changed_dat": 187, "kochfeldg": 187, "1606258889619": 187, "17998": 187, "217": [187, 334], "1606258947266": 187, "619000": 187, "266000": 187, "1606258907617": 187, "17993": 187, "216": [187, 334], "617000": 187, "1606258925610": 187, "5996": 187, "610000": 187, "1606258931606": 187, "18006": 187, "1606259007370": 187, "606000": 187, "370000": 187, "1606258949612": 187, "5993": [187, 341], "612000": 187, "1606258955605": 187, "30001": [187, 417], "605000": 187, "1606258985606": 187, "53991": 187, "1606259067523": 187, "523000": 187, "1606259039597": 187, "24006": 187, "597000": 187, "1606259063603": 187, "11984": 187, "1606259127224": 187, "603000": 187, "224000": 187, "abbild": 187, "begin": [187, 262, 281], "database_version": 187, "bigint": 187, "1518289184830": 187, "1518289184835": 187, "varchar": 187, "1518289184840": 187, "log_item_id_tim": 187, "1518289184845": 187, "log_item_id_changed": 187, "1518289184849": 187, "1518289184854": 187, "1669554322161": 187, "1669554363596": 187, "1669557938064": 187, "101": [187, 312, 313, 334], "527": 187, "1669557938992": 187, "1669557928298": 187, "1669557939008": 187, "1669557928356": 187, "1669557939032": 187, "1669557906685": 187, "1446": 187, "1669557939063": 187, "1669557906694": 187, "1447": 187, "1669557939071": 187, "verklein": 187, "inkrementiert": 187, "zeitstempel": [187, 188, 224, 263, 306, 307, 396, 446, 463, 527, 562, 567, 575, 591, 599, 635, 641], "mikrosekund": 187, "zeichenkett": [187, 192, 306, 307, 360, 401, 434, 514, 528, 532, 579], "wahrheitswert": [187, 579], "letz": [187, 200, 563], "begrenz": [187, 232, 314, 569, 592], "database_maxag": [187, 279, 650, 652, 655], "begrenzt": [187, 224, 263, 314, 329, 484], "zeitspann": [187, 262, 506, 568, 577], "datenbankwert": 187, "t_start": 187, "t_end": 187, "diskret": 187, "integral": [187, 288], "differentiat": [187, 655], "differential": 187, "differenz": [187, 189, 260, 332, 487, 599, 636, 671], "vorher": [187, 189, 212, 213, 265, 289, 314, 321, 325, 326, 330, 331, 378, 508, 512, 536, 594, 671], "monotoni": 187, "minimalwert": [187, 189, 287, 338, 374, 377, 379, 382, 390, 391, 396, 400, 401, 405, 407, 409, 410, 413, 417, 418, 419, 420, 426, 427, 428, 429, 431, 434, 440, 441, 442, 444, 445, 451, 452, 457, 459, 461, 464, 467, 469, 470, 471, 476, 477, 478, 480, 483, 487, 499, 502, 504, 507, 508, 509, 510, 511, 513, 518, 519, 520, 522, 524, 537, 573], "maximalwert": [187, 189, 262, 287, 338, 379, 382, 391, 407, 410, 413, 417, 426, 427, 428, 429, 434, 440, 442, 444, 445, 451, 452, 457, 459, 461, 470, 471, 476, 477, 487, 502, 504, 508, 509, 511, 518, 519, 520, 522, 537, 573], "prozentzahl": 187, "summ": [187, 189, 262, 341, 436, 453, 573], "rohwert": [187, 310], "zuruckzugeb": 187, "aufzuintegri": 187, "heut": [187, 189, 262, 311, 337, 338, 347, 361, 436, 502], "365d": 187, "auslag": 188, "itemdat": 188, "protokollmust": 188, "itemattribut": [188, 189, 196, 441, 641], "abbildbar": [188, 347], "benenn": [188, 263, 332, 585], "log_multi": 188, "log_csv": 188, "log_txt": 188, "enforce_chang": [188, 577, 645, 648], "log_text": [188, 243, 577, 655], "filepattern": [188, 641], "yearly": [188, 189, 235, 656], "logpattern": [188, 641], "zieldateinam": 188, "dateimust": 188, "dateierweiter": [188, 585], "standardvorgab": 188, "standardpfad": 188, "gefahr": [189, 200], "tageswechsel": 189, "wochenwechsel": 189, "monatswechsel": 189, "jahreswechsel": 189, "databaseaddon": [189, 398], "kindeskind": 189, "kindeskinderkind": 189, "db_addon_database_it": 189, "heute_min": 189, "gestern_max": 189, "heute_minus1_max": 189, "tagesmitteltemperatur_g": 189, "heute_minus1_avg": 189, "abgebund": 189, "startup_run_delay": 189, "startvorgang": 189, "beeinfluss": [189, 450], "db_addon_startup": [189, 655], "liegend": [189, 329, 561, 599, 634, 682], "eintreff": [189, 219, 256, 595], "reduktion": 189, "belast": [189, 396], "gecached": [189, 289], "use_oldest_entry": 189, "abfragezeitraum": [189, 398], "auszubl": 189, "ignore_0": 189, "pfadnam": [189, 223, 398, 528], "datenbankauswert": [189, 398], "db_addon_ignore_valu": 189, "logginginformation": 189, "unterbroch": [189, 440, 507, 508], "systembelast": 189, "cnf": 189, "mysqld": 189, "connect_timeout": 189, "net_read_timeout": 189, "wait_timeout": 189, "28800": 189, "interactive_timeout": 189, "berechnungszyklus": 189, "verbrauch_heut": [189, 398], "onchang": [189, 655], "verbrauch_tag": [189, 398], "verbrauch_woch": [189, 398], "verbrauch_monat": [189, 398], "verbrauch_jahr": [189, 398], "verbrauch_last_24h": [189, 398], "verbrauch_last_7d": [189, 398], "verbrauch_heute_minus1": [189, 398], "gestrig": [189, 262], "verbrauch_heute_minus2": [189, 398], "vorg": [189, 262], "verbrauch_heute_minus3": [189, 398], "verbrauch_heute_minus4": [189, 398], "verbrauch_heute_minus5": [189, 398], "verbrauch_heute_minus6": [189, 398], "verbrauch_heute_minus7": [189, 398], "verbrauch_heute_minus8": [189, 398], "verbrauch_tag_minus1": [189, 398], "verbrauch_tag_minus2": [189, 398], "verbrauch_tag_minus3": [189, 398], "verbrauch_tag_minus4": [189, 398], "verbrauch_tag_minus5": [189, 398], "verbrauch_tag_minus6": [189, 398], "verbrauch_tag_minus7": [189, 398], "verbrauch_tag_minus8": [189, 398], "verbrauch_woche_minus1": [189, 398], "vorwoch": 189, "weekly": [189, 510, 656], "verbrauch_woche_minus2": [189, 398], "verbrauch_woche_minus3": [189, 398], "verbrauch_woche_minus4": [189, 398], "verbrauch_monat_minus1": [189, 398], "vormonat": 189, "monthly": [189, 235, 510, 656], "verbrauch_monat_minus2": [189, 398], "verbrauch_monat_minus3": [189, 398], "verbrauch_monat_minus4": [189, 398], "verbrauch_monat_minus12": [189, 398], "verbrauch_jahr_minus1": [189, 398], "vorjahr": 189, "verbrauch_jahr_minus2": [189, 398], "verbrauch_rolling_12m_heute_minus1": [189, 398], "verbrauch_rolling_12m_tag_minus1": [189, 398], "verbrauch_rolling_12m_woche_minus1": [189, 398], "verbrauch_rolling_12m_monat_minus1": [189, 398], "verbrauch_rolling_12m_jahr_minus1": [189, 398], "verbrauch_jahreszeitraum_minus1": [189, 398], "verbrauch_jahreszeitraum_minus2": [189, 398], "verbrauch_jahreszeitraum_minus3": [189, 398], "zaehlerstand_heute_minus1": [189, 398], "zaehlerstand_heute_minus2": [189, 398], "zaehlerstand_heute_minus3": [189, 398], "vorvorletzt": 189, "zaehlerstand_tag_minus1": [189, 398], "zaehlerstand_tag_minus2": [189, 398], "zaehlerstand_tag_minus3": [189, 398], "zaehlerstand_woche_minus1": [189, 398], "zaehlerstand_woche_minus2": [189, 398], "zaehlerstand_woche_minus3": [189, 398], "zaehlerstand_monat_minus1": [189, 398], "zaehlerstand_monat_minus2": [189, 398], "zaehlerstand_monat_minus3": [189, 398], "zaehlerstand_jahr_minus1": [189, 398], "zaehlerstand_jahr_minus2": [189, 398], "zaehlerstand_jahr_minus3": [189, 398], "minmax_last_24h_min": [189, 398], "minmax_last_24h_max": [189, 398], "minmax_last_24h_avg": [189, 398], "minmax_last_7d_min": [189, 398], "minmax_last_7d_max": [189, 398], "minmax_last_7d_avg": [189, 398], "minmax_heute_min": [189, 398], "tagesbeginn": 189, "minmax_heute_max": [189, 398], "minmax_heute_avg": [189, 398], "durschnittswert": 189, "minmax_heute_minus1_min": [189, 398], "minmax_heute_minus1_max": [189, 398], "minmax_heute_minus1_avg": [189, 398], "durchschnittswert": [189, 287], "minmax_heute_minus2_min": [189, 398], "minmax_heute_minus2_max": [189, 398], "minmax_heute_minus2_avg": [189, 398], "minmax_heute_minus3_min": [189, 398], "minmax_heute_minus3_max": [189, 398], "minmax_heute_minus3_avg": [189, 398], "minmax_tag_min": [189, 398], "minmax_tag_max": [189, 398], "minmax_tag_avg": [189, 398], "minmax_tag_minus1_min": [189, 398], "minmax_tag_minus1_max": [189, 398], "minmax_tag_minus1_avg": [189, 398], "minmax_tag_minus2_min": [189, 398], "minmax_tag_minus2_max": [189, 398], "minmax_tag_minus2_avg": [189, 398], "minmax_tag_minus3_min": [189, 398], "minmax_tag_minus3_max": [189, 398], "minmax_tag_minus3_avg": [189, 398], "minmax_woche_min": [189, 398], "wochenbeginn": 189, "minmax_woche_max": [189, 398], "minmax_woche_minus1_min": [189, 398], "minmax_woche_minus1_max": [189, 398], "minmax_woche_minus1_avg": [189, 398], "minmax_woche_minus2_min": [189, 398], "minmax_woche_minus2_max": [189, 398], "minmax_woche_minus2_avg": [189, 398], "minmax_monat_min": [189, 398], "monatsbeginn": 189, "minmax_monat_max": [189, 398], "minmax_monat_minus1_min": [189, 398], "minmax_monat_minus1_max": [189, 398], "minmax_monat_minus1_avg": [189, 398], "minmax_monat_minus2_min": [189, 398], "minmax_monat_minus2_max": [189, 398], "minmax_monat_minus2_avg": [189, 398], "minmax_jahr_min": [189, 398], "jahresbeginn": 189, "minmax_jahr_max": [189, 398], "minmax_jahr_minus1_min": [189, 398], "minmax_jahr_minus1_max": [189, 398], "minmax_jahr_minus1_avg": [189, 398], "tagesmitteltemperatur_heut": [189, 398], "tagesmitteltemperatur_heute_minus1": [189, 398], "tagesmitteltemperatur_heute_minus2": [189, 398], "tagesmitteltemperatur_heute_minus3": [189, 398], "tagesmitteltemperatur_tag": [189, 398], "tagesmitteltemperatur_tag_minus1": [189, 398], "tagesmitteltemperatur_tag_minus2": [189, 398], "tagesmitteltemperatur_tag_minus3": [189, 398], "serie_minmax_monat_min_15m": [189, 398], "gleitend": 189, "serie_minmax_monat_max_15m": [189, 398], "serie_minmax_monat_avg_15m": [189, 398], "serie_minmax_woche_min_30w": [189, 398], "wochent": [189, 262], "serie_minmax_woche_max_30w": [189, 398], "serie_minmax_woche_avg_30w": [189, 398], "serie_minmax_tag_min_30d": [189, 398], "serie_minmax_tag_max_30d": [189, 398], "serie_minmax_tag_avg_30d": [189, 398], "serie_verbrauch_tag_30d": [189, 398], "serie_verbrauch_woche_30w": [189, 398], "serie_verbrauch_monat_18m": [189, 398], "serie_zaehlerstand_tag_30d": [189, 398], "tages": 189, "serie_zaehlerstand_woche_30w": [189, 398], "wochen": [189, 599, 634], "serie_zaehlerstand_monat_18m": [189, 398], "monats": 189, "serie_waermesumme_monat_24m": [189, 398], "serie_kaeltesumme_monat_24m": [189, 398], "serie_tagesmittelwert_0d": [189, 398], "tagesmittelwert": [189, 260], "serie_tagesmittelwert_stunde_0d": [189, 398], "stundenmittelwert": 189, "serie_tagesmittelwert_stunde_30_0d": [189, 398], "serie_tagesmittelwert_tag_stunde_30d": [189, 398], "general_oldest_valu": [189, 398], "general_oldest_log": [189, 398], "kaeltesumm": [189, 398, 656], "db_addon_param": 189, "waermesumm": [189, 398], "gruenlandtempsumm": [189, 398], "temperaturschwellenwert": 189, "schwellentemperatur": 189, "wuestentag": [189, 398], "wustentag": 189, "heisse_tag": [189, 398], "tropennaecht": [189, 398], "tropennacht": 189, "sommertag": [189, 398], "heiztag": [189, 398], "vegetationstag": [189, 398], "vegatationstag": 189, "frosttag": [189, 398], "eistag": [189, 398], "db_requ": [189, 398], "group2": 189, "verbrauchswert": 189, "db_version": 189, "suspend": [189, 233, 324, 325, 326, 328, 330, 332, 333, 378, 400, 408, 435, 441, 464, 467, 623, 645, 647, 649, 652, 655], "aktivitat": [189, 196, 215, 421, 422, 572], "recalc_all": [189, 398], "neuberechnungslauf": 189, "clean_cache_valu": [189, 398], "wasserzaehl": 189, "verbrauch_1": 189, "verbrauch_2": 189, "zaehlerstand_1": 189, "wasserzahlerstand": 189, "verbrauchsauswert": 189, "aussentemp": [189, 351], "nordseit": 189, "minmax_1": 189, "minmax_2": 189, "minmax_tag_minus1": 189, "db_addon_params_dict": 189, "eingerahmt": 189, "dicht": 189, "minmax_test_min_g": 189, "minmax_min_g": 189, "minmax_last_21": 189, "verbrauch_g": 189, "zaehlerstand_g": 189, "berechnungslauf": 189, "pausi": [189, 314, 329, 399, 519], "wiederaufnahm": 189, "vieler": [189, 219, 586, 671], "leseanfrag": 189, "grunland": 189, "loep": 189, "vegetationsbeginn": 189, "termin": 189, "dungungsmassnahm": 189, "aufsummier": 189, "januar": [189, 325, 526, 599, 634, 640, 657], "februar": [189, 526, 657], "75": 189, "gewichtet": 189, "dungung": 189, "jahreszahl": 189, "begriff": [189, 316, 632], "wgt": 189, "uberbegriff": 189, "lufttemperatur": 189, "schwellenwert": 189, "subtrahiert": 189, "fragestell": [189, 232], "pflanzenart": 189, "tagestemperatur": [189, 262], "maximaltemperatur": 189, "gekappt": 189, "zeitseri": [189, 223, 428], "aussag": [189, 339, 340], "pflanzenreif": 189, "hart": 189, "wint": 189, "folgejahr": 189, "ecovacs": [190, 399, 645], "seri": [190, 192, 203, 223, 282, 283, 284, 301, 347, 369, 427, 428, 481, 545, 550, 554, 643, 645, 646, 647, 649, 651, 652, 653, 656], "vaccum": [190, 645], "robot": [190, 280, 282, 367, 399, 456, 533, 643, 645, 646, 649, 653, 688], "recorded": [190, 227, 294], "obviously": 190, "deebotozmo": [190, 648], "supposed": 190, "deebot_ozmo": [190, 545, 550, 645, 648], "component": [190, 251, 262], "maps": [190, 215, 273, 282, 344, 421, 516, 545, 558, 652], "avr": [191, 267, 400], "x6300h": [191, 267, 400], "x4300h": [191, 400], "x3300w": [191, 400], "x2300w": [191, 400], "x1300w": [191, 400], "111": [191, 238, 264, 267, 334], "conn_typ": [191, 201, 238, 264, 267], "serial_async": [191, 201, 264, 267, 400, 408, 467], "command_class": [191, 201, 238, 264, 267], "sdpcommandparsestr": [191, 201, 238, 264, 267, 408, 622], "itembaum": [191, 201, 238, 264, 267], "angeschrieb": [191, 201, 264, 267], "aufzunehm": [191, 201, 207, 264, 267], "rucksprach": [191, 201, 264, 267], "einfliess": [191, 201, 264, 267], "commandy": [191, 264, 267], "abgedeckt": [191, 238, 264, 267, 328], "lautstarkeangab": [191, 264, 267], "ausles": [192, 200, 255, 345, 349, 351, 396, 424, 425, 448, 479, 484, 493, 497, 498, 499, 503, 517, 545, 548, 550, 558, 642, 674], "smartmet": [192, 306, 307, 401, 434, 498, 499, 511, 545, 548, 641, 643, 649, 653], "beherrsch": 192, "iec": [192, 254, 255, 401, 545, 548], "62056": [192, 401, 545, 548], "ir": [192, 237, 305, 306, 307, 351, 440, 545, 548, 671, 688], "lesekopf": [192, 306, 307, 337, 351, 522], "volkszaehl": [192, 545, 550, 645], "pyserial": [192, 306, 307, 334, 341, 351, 381, 653], "ausfuhrt": [192, 595], "berecht": [192, 302, 338], "udev": [192, 193, 194, 200, 261], "product": [192, 193, 194, 455], "subsyst": [192, 261], "tty": [192, 195, 196, 206, 306, 307], "idvendor": [192, 261], "10c4": 192, "idproduct": [192, 261], "ea60": 192, "0092c9fe": 192, "0666": 192, "dialout": [192, 200, 306, 307], "dlms0": 192, "rul": [192, 193, 194, 261, 315, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 508, 649, 655], "udevadm": 192, "landis": [192, 306, 307], "gyr": [192, 306, 307], "zmd120": 192, "e350": 192, "zmd310ct": 192, "elst": 192, "1440": 192, "pafal": 192, "12ec3g": 192, "itron": 192, "ace3000": 192, "sml": [192, 306, 307, 337, 498, 499, 511, 545, 548, 550, 645, 649, 653, 655], "e220": [192, 306, 307], "easymet": [192, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "q3ba1022": 192, "q3ma3120": 192, "emh": [192, 651], "ed300l": [192, 305, 306, 307, 651], "hag": [192, 305, 306, 307, 641], "363w5": 192, "ehz363wa": 192, "holley": [192, 643], "dtz541": [192, 643], "fehlerbehaftet": 192, "iskra": 192, "mt681": 192, "abstand": [192, 207, 347, 398, 401, 424, 425, 447, 449, 480, 483, 486, 498, 499, 501, 585], "variabel": [192, 575], "zahlerauswert": 192, "zahlerabfrag": 192, "abfragedau": 192, "systemauslast": [192, 580], "abfragezykl": [192, 461, 475], "update_crontab": 192, "anstoss": [192, 255, 562, 567, 591], "bedienungsanleit": [192, 200], "auskunft": [192, 685], "q3d": 192, "checksumm": [192, 306, 307, 498, 499], "aufforder": 192, "baud": 192, "aufgelist": [192, 617], "ableit": [192, 373], "get_manufacturer_id": 192, "exceldatei": 192, "openpyxl": 192, "excel": 192, "srv": 192, "export_flagid": 192, "ids": [192, 200, 202, 213, 254, 255, 257, 324, 330, 336, 338, 341, 409, 434, 460, 643, 645, 646, 647, 648, 651, 655, 674], "ausgabeinformation": 192, "anzureich": 192, "wertgrupp": 192, "datenelement": 192, "wertegrupp": 192, "ebenso": [192, 196, 263], "vorschrift": 192, "interpreti": 192, "belegt": [192, 289, 400, 408, 435, 441, 464, 467, 517, 566, 595], "wertezusammensetz": 192, "abstrakt": 192, "strom": [192, 292, 337, 436], "gas": [192, 521, 641, 669], "warm": [192, 330], "wasserbezog": 192, "elektrizitat": 192, "kanalnumm": 192, "messung": [192, 222, 224, 306, 307, 461, 632], "datenkonzentrator": 192, "registrierungsein": 192, "physisch": [192, 331, 548, 549], "informationsquell": 192, "hang": [192, 227, 381], "vermess": 192, "tarifabwickl": 192, "datenspeicherungsmethod": 192, "codefeld": 192, "zutreff": [192, 573], "algorithm": [192, 306, 307], "bedarfsmeng": 192, "tarif": [192, 306, 307], "messergebnis": 192, "klassifizier": [192, 556, 557, 671], "abrechnungszeitraum": 192, "vorstell": [192, 370], "zmd": 192, "310": 192, "industriell": 192, "50871031": 192, "155420": 192, "170214": 192, "0000": [192, 297, 306, 307, 492], "170201": 192, "0451": 192, "kw": [192, 298, 351, 502], "0060": [192, 368], "1702090945": 192, "74": [192, 638], "1701121445": 192, "1612081030": 192, "1611291230": 192, "00051206": 192, "kwh": [192, 234, 305, 306, 307, 337, 341, 436], "00049555": 192, "00045862": 192, "72044837": 192, "paf": 192, "000783": 192, "000045": 192, "000000000000": 192, "g11": 192, "offensicht": [192, 262], "dlms_obis_cod": [192, 648], "zaehler_unit": 192, "stromzaehl": 192, "dlms_obis_readout": 192, "ables": [192, 200], "z6": [192, 401], "d6": [192, 255, 401], "datum_aktueller_abrechnungsmonat": 192, "monatszaehl": 192, "billing": 192, "energie_ein": 192, "liefer": 192, "my_it": [192, 561], "value_oder_unit": 192, "wertetyps": 192, "hhmmss": [192, 401], "z4": [192, 401], "hhmm": [192, 401], "yymmdd": [192, 401], "zst10": [192, 401], "yymmddhhmm": [192, 401], "zst12": [192, 401], "yymmddhhmmss": [192, 401], "fliesskommazahl": [192, 232, 261, 401, 434], "wertetyp": 192, "impliziert": [192, 313, 434], "dlms_": 192, "nanodmx": [193, 194, 402, 545, 548], "dmxking": [193, 194, 402, 545, 548], "enttec": [193, 194, 402], "usbtty": [193, 194], "subsystem": [193, 194], "kernel": [193, 194], "ttyacm": [193, 194], "consult": [193, 365], "living_room": [193, 194, 232, 247, 590], "dimlight": [193, 194], "dimlight_reading": [193, 194], "living": [193, 248, 269, 272, 355, 496, 524, 562, 590], "dimlightreading": [193, 194], "kompatibl": [194, 230, 268, 370, 406, 545, 550, 669], "treib": [194, 396, 496, 524, 621, 622, 690, 693], "erleicht": [194, 223], "wohnzimmerlicht": [194, 590], "leselicht": 194, "modbusadapt": [195, 196], "damaged": [195, 649], "damag": 195, "improv": [195, 644, 646, 648, 649, 650, 652, 653, 654, 655, 656, 665], "ending": [195, 565, 591, 646], "pcb": [195, 210, 235, 646], "minor": [195, 644, 646, 649, 650, 651, 652, 653, 654, 655, 656], "aerosilent": [195, 196], "exos": [195, 196], "duw": 195, "division": 195, "x2": 195, "hp": 195, "6667_00_ti_modbus_parameter_v4": 195, "01_de": 195, "fixed": [195, 216, 251, 365, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663], "bianco": [195, 196], "business": [195, 196], "centro": [195, 196], "micro": [195, 196], "primus": [195, 196], "stratos": [195, 196], "topo": [195, 196], "aerosmart": [195, 196], "mono": [195, 196], "xls": [195, 196], "termosmart": [195, 196], "x\u00b2": [195, 196], "drexelundweiss": [195, 545, 550, 641, 646, 655], "lu_id": [195, 196], "wp_id": [195, 196], "140": [195, 196, 292, 403], "retrylimit": [195, 196], "modbus": [195, 196, 207, 300, 334, 345, 437, 438, 452, 470, 494, 509, 517, 545, 548, 550, 643, 649, 653, 670], "6666_00_ti_modbus_parameter_d": 195, "wp": [195, 196], "attempt": [195, 655, 663, 665], "regarding": [195, 211, 655], "divisor": [195, 196], "betriebsart": [195, 196, 207, 338, 351, 443, 522, 622], "5002": [195, 196], "far": [195, 198, 247, 280, 652, 669, 670], "drexel": [196, 403, 545, 550], "warmepump": [196, 403, 443, 514, 526, 545, 550, 642, 647], "vorsicht": [196, 203, 292, 396], "beschadigt": [196, 591], "garanti": 196, "schad": 196, "pluginkonfiguration": [196, 237, 327, 330, 362, 423, 457, 507], "panel_id": 196, "debugmodus": 196, "duw_lu_regist": 196, "duw_wp_regist": 196, "duw_panel_regist": 196, "wandpanel": 196, "schreibversuch": 196, "registerspann": 196, "vaillant": 197, "wolf": [197, 405, 545, 550], "kromschroed": [197, 405, 545, 550], "ebus_geraet": 197, "hk_pumpe_perc": 197, "110": [197, 328, 334], "ebus_cmd": 197, "cir2": [197, 405], "heat_pump_curr": [197, 405], "ebus_typ": 197, "pwm": 197, "heizkreizpump": 197, "ernergie_summ": 197, "yield_sum": [197, 405], "energieertrag": [197, 311], "speicherlad": 197, "hw_load": [197, 405], "ww": [197, 622], "satellit": 198, "openwebif": [198, 406, 545, 550, 669], "943871": 198, "vusolo2": [198, 406], "vusolo4k": 198, "vti": 198, "dreambox": [198, 406], "8000": 198, "7020hd": 198, "81": [198, 229, 261, 638], "fast_cycl": 198, "rating": 198, "consequenc": 198, "accessibility": 198, "reduced": [198, 288, 334, 521, 643, 645, 646, 648, 649, 650, 652, 655], "carefully": 198, "worked": [198, 218], "typically": [198, 227, 260, 262], "timeperiod": [198, 239], "enigma2devic": 198, "disc_model": 198, "enigma2_data_typ": [198, 566], "e2hdd": 198, "e2model": 198, "enigma2_pag": [198, 566], "deviceinfo": 198, "disc_capacity": 198, "e2capacity": 198, "disc_free_spac": 198, "e2fre": 198, "e2ip": 198, "e2dhcp": 198, "e2mac": 198, "e2gateway": 198, "e2netmask": 198, "e2enigmaversion": 198, "e2imageversion": 198, "e2webifversion": 198, "e2apid": 198, "e2vpid": 198, "e2instandby": 198, "e2videowidth": 198, "e2videoheight": 198, "eventtitl": 198, "current_eventtitl": 198, "complex": 198, "behind": [198, 273], "eventdescription": 198, "current_eventdescription": 198, "eventdescriptionextended": 198, "current_eventdescriptionextended": 198, "currentvolum": 198, "current_volum": 198, "e2servicenam": 198, "subservic": 198, "servicereferenc": 198, "e2servicereferenc": 198, "servicestream": 198, "_enigma2_devic": 198, "get_host": [198, 655], "get_port": [198, 616], "m3u": 198, "corn": 198, "mjpgimag": 198, "grab": 198, "720": 198, "daserste_hd": 198, "sref": 198, "283d": 198, "3fb": 198, "c00000": 198, "zdf_hd": 198, "2b66": 198, "3f3": 198, "drei_sat": 198, "2b8e": 198, "3f2": 198, "phoenix": 198, "285b": 198, "401": [198, 227], "283e": 198, "kika": [198, 301], "2b98": 198, "2855": 198, "einsplus": 198, "2889": 198, "40f": 198, "zdfneo": 198, "2b7a": 198, "servustv": 198, "1332": 198, "3ef": 198, "dream": 198, "reichholf": 198, "remotecontrol": 198, "enigma2_remote_command_id": [198, 646], "388": 198, "398": 198, "399": 198, "yellow": [198, 218, 248], "119": [198, 240, 443], "207": [198, 334], "ff": 198, "159": [198, 443], "116": [198, 312, 313], "352": [198, 227], "exit": [198, 199, 231, 248, 278, 433, 649, 677, 688], "174": 198, "392": 198, "393": 198, "epg": [198, 231, 433], "358": 198, "139": 198, "subtitl": 198, "370": 198, "108": [198, 312, 313], "106": [198, 312, 313], "volup": 198, "115": 198, "voldown": 198, "114": 198, "407": 198, "412": 198, "key_0": [198, 301], "key_1": [198, 301], "key_2": [198, 301], "key_3": [198, 301], "key_4": [198, 301], "key_5": [198, 301], "key_6": [198, 301], "key_7": [198, 301], "key_8": [198, 301], "key_9": [198, 301], "e2audiotrackdescription": [198, 406], "e2audiotrackid": [198, 406], "e2audiotrackpid": [198, 406], "e2audiotrackactiv": [198, 406], "stay": [198, 294, 329, 332, 574], "testnachricht": [198, 406], "deepstandby": [198, 406], "wakeup": [198, 406], "answered": [198, 227], "ref_level": [199, 200], "switched": [199, 205, 247, 278, 644, 646, 648, 649, 652, 655, 668], "learning": [199, 218], "subscribed": [199, 356, 357], "tought": 199, "procedur": [199, 218], "actor": [199, 200, 646], "manual": [199, 200, 219, 254, 255, 290, 341, 368, 645, 649, 655], "detailed": [199, 206, 278, 298, 645], "interactiv": [199, 211, 635, 641, 643, 649, 652, 663, 667], "send_learn_protocol": 199, "id_offset": 199, "vary": [199, 370], "actuator": [199, 200, 288], "eltako": [199, 200, 646, 671], "fsr61": [199, 200], "fsva": [199, 200, 407], "230v": [199, 200, 210, 407], "fsud": [199, 200, 407], "fhk61ssr": 199, "eep": [199, 200, 407, 650, 653], "a5": 199, "frgbw71l": [199, 200], "3f": 199, "7f": [199, 297], "radiator": [199, 649], "valv": 199, "shutt": [199, 200, 646], "fsb61np": [199, 200], "fsb14": [199, 200], "fsb61": [199, 200], "fsb71": [199, 200, 646], "respect": [199, 650], "strg": 199, "applied": [199, 227], "enocean_tx_id_offset": [199, 200], "uni": 199, "bidirectional": [199, 235], "d4": [199, 255], "prior": [199, 308, 649], "activation": [199, 227, 655], "enabling": 199, "achieved": [199, 355], "start_ute_learnmod": 199, "funksensor": 200, "gira": 200, "peha": [200, 671], "transceiv": [200, 646], "fam4pi": 200, "868": 200, "funk": 200, "zugriffsrecht": [200, 338, 496], "gpasswd": 200, "stellglied": 200, "angelert": 200, "anlernvorgang": 200, "statusinformation": [200, 306, 307, 310, 351, 367, 384, 390, 466, 521, 536], "rfc2217": [200, 407, 655], "ser2net": 200, "ts4telnet": 200, "connector": 200, "serialdev": 200, "57600n81": 200, "hardwareadapt": 200, "tx_id": 200, "transmitt": [200, 278, 440], "achtstell": [200, 362], "hexadezimalwert": 200, "sendebefehl": [200, 511], "absetz": [200, 491], "aktuator": 200, "chip": [200, 461, 646], "knowledg": [200, 641, 668], "enoceansystemspecification": 200, "3aissu": 200, "3awhat_is_a_base_id": 200, "Wege": [200, 495], "baseid": [200, 646, 649], "rect": [200, 247], "ligg": 200, "0xyyyyzzzz": 200, "enocean_rx_id": [200, 221], "enocean_rx_eep": [200, 221], "hexadezimal": 200, "aufkleb": 200, "enoc": 200, "datenblatt": 200, "verrat": 200, "batteriestatus": 200, "schaltstatus": 200, "zuzuordn": 200, "enocean_rx_key": [200, 221], "nachrichtentyp": 200, "hor": [200, 328], "transmitting": 200, "encoean": 200, "standardisiert": [200, 622], "allianc": 200, "a5_02_01": 200, "a5_02_0b": 200, "40\u00e2": 200, "overall": [200, 211, 218], "6\u00e2": 200, "resolution": [200, 227], "a5_02_10": 200, "a5_02_1b": 200, "80\u00e2": 200, "3\u00e2": 200, "a5_02_20": 200, "2\u00e2": 200, "20\u00e2": 200, "a5_02_30": 200, "62": [200, 254, 255, 260, 279], "10\u00e2": 200, "a5_04_02": 200, "a5_07_03": 200, "occupancy": 200, "nodon": [200, 407], "pir": 200, "0x": [200, 511], "a5_08_01": 200, "a5_11_04": 200, "a5_12_01": 200, "a5_0g_03": 200, "reaching": 200, "his": [200, 214, 215, 275, 294, 353], "a5_30_01": [200, 650], "fsm60b": [200, 407], "leak": [200, 261, 642, 646, 650], "a5_30_03": [200, 650], "d2_01_07": 200, "electronic": 200, "d2_01_12": 200, "channel": [200, 205, 247, 248, 266, 290, 296, 358, 453, 466, 660, 663, 664], "wall": [200, 281, 480], "d5_00_01": 200, "ftk": 200, "ftkb": 200, "f6_02_01": 200, "rock": 200, "f6_02_02": 200, "f6_02_03": [200, 407], "ft55": 200, "f6_10_00": [200, 653], "mechanical": 200, "tilted": 200, "f6_0g_03": 200, "endposition": 200, "motor": [200, 257], "detalliert": 200, "tast": [200, 292, 314, 324, 328, 329, 331, 337, 339, 340, 378, 440, 495, 511, 513, 545, 554], "a0": 200, "rauf": 200, "bi": 200, "f6_10_0": 200, "turstatus": 200, "a5_02_05": 200, "aussentemperatur": [200, 207, 338, 351, 526, 622], "bri": [200, 211, 212, 213, 247, 419, 420], "a5_06_01": 200, "ill": 200, "lux": [200, 261, 291, 293, 325, 328], "svc": 200, "hum": [200, 221, 337, 371, 398, 667], "eng": [200, 554, 555], "powerstatus": 200, "di_0": 200, "a5_3f_7f": 200, "dimmewert": 200, "di_1": 200, "di_2": 200, "di_3": 200, "wasseralarm": 200, "a5_38_08_01": 200, "a5_38_08_02": 200, "a5_38_08_03": 200, "sendemodus": 200, "ute": 200, "anlernmodus": [200, 417], "schaltflach": 200, "anler": 200, "angelernt": [200, 210], "gebracht": [200, 643, 644, 645, 646, 678, 691], "transmit": [200, 337], "tx": [200, 210, 218, 654], "aktortyp": [200, 328], "lerntelegram": 200, "anlern": [200, 210, 674], "anlerntelegram": 200, "quitti": 200, "enocean_it": 200, "outside_temperatur": 200, "0180924d": 200, "01234567": [200, 221], "ft55switch": 200, "012345aa": 200, "bo": 200, "brightness_sensor": 200, "brightness_sensor_east": 200, "remark": [200, 205, 229, 247, 248, 262, 263, 277, 301, 325, 328, 339, 340, 577], "fah60": [200, 671], "01a51de6": 200, "dimmer1": [200, 566], "fdg14": 200, "00112233": 200, "enocean_tx_eep": 200, "dim_speed": 200, "block_dim_valu": 200, "actor1": 200, "ffaabbcc": 200, "actor1b": 200, "fsr61np": 200, "fsr61g": 200, "fsr61ln": 200, "flc61np": 200, "ligth": 200, "1a794d3": [200, 407], "block_switch": 200, "actor_d2": 200, "vld": 200, "ffdb7381": 200, "pulsewith": 200, "actord2_01_12": 200, "050a2ff4": 200, "stat_a": 200, "enocean_channel": 200, "awning": 200, "1a869c3": 200, "enocean_rtim": 200, "0029894a": 200, "short_800ms_directly_to_knx": 200, "enocean_rocker_action": 200, "enocean_rocker_sequenc": 200, "long_800ms_directly_to_knx": 200, "rocker_double_800ms_to_knx_send_1": 200, "occupancy_sensor": 200, "power_status": [200, 420], "sunblind": 200, "tgt_position": 200, "act_position": 200, "fahrzeit": 200, "rtim": 200, "ansteuerbefehl": 200, "0x01": 200, "0x02": 200, "rollad": [200, 338, 674], "rgbdimm": 200, "07_3f_7f": 200, "water_sensor": 200, "theoret": [201, 331, 561], "tw": [201, 210, 408, 650], "179": 202, "8080": [202, 215, 257, 276, 409, 537], "setpath": 202, "setnam": [202, 528], "usally": 202, "presaved": 202, "organis": 202, "unified": [202, 670], "repli": 202, "112": [202, 283, 334], "10021": 202, "12162": 202, "strvalu": [202, 409], "decplac": [202, 409], "scalefactor": [202, 409], "advtextoffset": [202, 409], "262": 202, "calc": [202, 409], "reply": [202, 234, 623, 661], "scale_factor": 202, "adv_text_offset": 202, "changeabl": 202, "touch": [202, 403, 651, 688], "eta_pu_uri": 202, "discription": 202, "requesting": [202, 645, 646], "eta_pu_typ": 202, "eta_pu_error": 202, "eta_unit": 202, "emission_temperatur": 202, "warmwat": 202, "10111": 202, "12129": 202, "extra_loading_button": 202, "12134": 202, "seien": 203, "bewusst": [203, 326, 332, 576], "sicherheitsrisiko": 203, "biest": 203, "kontrolli": [203, 432, 453, 535, 545, 550, 561, 641], "pfadangab": [203, 229, 410, 561, 630], "listbox": [203, 410, 653], "doppelklick": 203, "eingabebox": 203, "ergebniskast": 203, "ruckfrag": [203, 260], "ide": 203, "debugmeld": 203, "myconvert": 203, "isinstanc": 203, "__str__": [203, 650], "mund": 203, "arbeitszimmerog": 203, "09": [203, 270, 271, 273, 306, 307, 338, 360, 569, 592, 682], "205668": 203, "1573317598203": 203, "864000": 203, "1573231198203": 203, "1573232535421": 203, "datenbankattribut": 203, "myfill": 203, "allitem": 203, "hasattr": [203, 596], "continu": [203, 248, 274, 282, 283, 668], "mycount": 203, "rpi": [204, 277, 285, 309, 412, 483, 484], "reedkontakt": [204, 412], "initialisierungszeit": 204, "IN": 204, "sleekxmpp": [205, 413, 646], "smarthomng": 205, "get_conf": 205, "located": [205, 315], "harmony_hub_ip": 205, "shield": [205, 262], "24569980": 205, "12345678": 205, "filmsz": 205, "12345123": 205, "50pfl7956k": 205, "31913922": 205, "poweron": [205, 244], "powertoggl": 205, "numericbasic": 205, "volumedown": 205, "volumeup": 205, "pac": [205, 312, 313], "201": 205, "31914808": 205, "channelprev": 205, "channeldown": 205, "channelup": [205, 290], "navigationbasic": 205, "directiondown": 205, "directionleft": 205, "directionright": 205, "transportbasic": 205, "31907101": 205, "harmony_ip": 205, "78": [205, 314, 338, 638], "harmony_port": 205, "5222": [205, 368, 413, 534], "sleekxmpp_debug": 205, "vou": 205, "harmony_command_0": 205, "activity_id": 205, "harmony_command_1": 205, "togeth": [205, 294, 312, 315, 352, 353, 413, 644], "vic": [205, 413, 623], "versa": [205, 413, 623], "2s": 205, "yourself": [205, 281], "heavily": [205, 370], "command1": 205, "command2": 205, "command3": 205, "mix": [205, 365], "activity1": 205, "42282391": 205, "indicat": [205, 305], "highly": 205, "twic": [205, 227], "delays": [205, 342], "harmony_command": 205, "chain": 205, "everytim": 205, "blow": 205, "harmony_it": 205, "current_activity_id": 205, "current_activity_nam": [205, 413], "simultaneously": 205, "influenc": 205, "inputbd": 205, "powered": [205, 282, 283, 654], "bluray": 205, "instantly": [205, 623], "rtl": 205, "inputsat": 205, "cbl": 205, "movi": 205, "committed": [205, 668], "badil": [206, 545, 550], "helios_logics": 206, "ttyama0": [206, 407], "ex": 206, "fanspeed_uzsu_logic": 206, "fanspeed": [206, 265, 367, 465, 533, 622], "fanspeed_uzsu": 206, "booster_logic": 206, "booster_mod": 206, "troubleshooting": [206, 673], "show_widget": 206, "ec300pro": 206, "wohnraumluft": 206, "use_uzsu": 206, "enjoy": 206, "luftungsanlag": [207, 415], "firma": [207, 223, 265, 377, 545, 550], "helios": [207, 227, 415, 545, 550, 642, 643, 645, 646, 653, 655, 670], "ausgestattet": [207, 363, 511, 545, 548], "pymodbus3": 207, "helios_ip": 207, "luftungsgerat": [207, 415], "gefullt": 207, "zulufttemperatur": 207, "incoming_temp": [207, 415], "schreibbar": 207, "outside_temp": [207, 415], "aussenluft": [207, 414], "exhaust_temp": [207, 415], "abluft": 207, "inside_temp": [207, 415], "fortluft": 207, "zuluft": [207, 443], "pre_heating_temp": [207, 415], "vhz": 207, "kanalful": 207, "t5": 207, "post_heating_temp": [207, 415], "nhz": 207, "kanalfuhl": 207, "t6": 207, "post_heating_reflux_temp": [207, 415], "rucklauffuhl": 207, "warmwass": [207, 308, 309, 338, 443, 526, 622], "t7": 207, "error_count": [207, 415], "warning_count": [207, 415], "warnungenint": 207, "info_count": [207, 415], "fan_in_rpm": [207, 415], "fan_out_rpm": [207, 415], "internal_humidity": [207, 415], "luftfeuchtigkeitsfuhl": 207, "sensor1_humidity": [207, 415], "fuhl": 207, "ftf": 207, "feucht": 207, "sensor2_humidity": [207, 415], "sensor3_humidity": [207, 415], "sensor4_humidity": [207, 415], "sensor5_humidity": [207, 415], "sensor6_humidity": [207, 415], "sensor7_humidity": [207, 415], "sensor8_humidity": [207, 415], "sensor1_temperatur": [207, 415], "sensor2_temperatur": [207, 415], "sensor3_temperatur": [207, 415], "sensor4_temperatur": [207, 415], "sensor5_temperatur": [207, 415], "sensor6_temperatur": [207, 415], "sensor7_temperatur": [207, 415], "sensor8_temperatur": [207, 415], "sensor1_co2": [207, 415], "sensor2_co2": [207, 415], "sensor3_co2": [207, 415], "sensor4_co2": [207, 415], "sensor5_co2": [207, 415], "sensor6_co2": [207, 415], "sensor7_co2": [207, 415], "sensor8_co2": [207, 415], "sensor1_voc": [207, 415], "voc": [207, 461], "sensor2_voc": [207, 415], "sensor3_voc": [207, 415], "sensor4_voc": [207, 415], "sensor5_voc": [207, 415], "sensor6_voc": [207, 415], "sensor7_voc": [207, 415], "sensor8_voc": [207, 415], "filter_remaining": [207, 415], "boost_remaining": [207, 415], "partybetrieb": 207, "restzeit": 207, "sleep_remaining": [207, 415], "ruhebetrieb": 207, "fan_level_percent": [207, 415], "lufterstuf": 207, "bypass_op": [207, 415], "humidity_control_status": [207, 415], "humidity_control_target": [207, 415], "sollwert": [207, 289, 328, 330, 351], "co2_control_status": [207, 415], "co2_control_target": [207, 415], "voc_control_status": [207, 415], "voc_control_target": [207, 415], "comfort_temperatur": [207, 383, 415], "behaglichkeitstemperatur": 207, "fan_in_voltage_level1": [207, 415], "fan_out_voltage_level1": [207, 415], "fan_in_voltage_level2": [207, 415], "fan_out_voltage_level2": [207, 415], "fan_in_voltage_level3": [207, 415], "fan_out_voltage_level3": [207, 415], "fan_in_voltage_level4": [207, 415], "fan_out_voltage_level4": [207, 415], "manual_mod": [207, 415, 645], "handbetrieb": 207, "filter_chang": [207, 415], "filterwechselbool": 207, "filter_changeinterval": [207, 415], "wechselintervall": 207, "bypass_roomtemperatur": [207, 415], "bypass_minoutsidetemp": [207, 415], "fan_level": [207, 415], "fan_in_level": [207, 415], "fan_out_level": [207, 415], "180": [207, 325, 349, 351, 502, 504, 655], "boost_level": [207, 415], "boost_on": [207, 415], "abbrech": 207, "sleep_duration": [207, 415], "sleep_level": [207, 415], "sleep_on": [207, 415], "preheating_status": [207, 415], "vorheiz": 207, "dokument": [207, 232], "auffindbar": 207, "varlist": 207, "retreiv": [208, 648], "bsh": [208, 416, 545, 558, 649], "siem": [208, 239, 308, 309, 416, 500, 545, 550, 558, 642, 647, 649], "obtain": [208, 254], "working": [208, 218, 227, 234, 257, 288, 334, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 691], "davidmstraub": 208, "thank": [208, 221, 275, 294, 315, 643, 646, 665], "pointing": 208, "oauth2": [208, 254, 255, 266, 349, 362, 416, 521, 530, 545, 558, 641, 646, 649], "acquired": 208, "offlin": [208, 216, 217, 247, 254, 314, 321, 362, 368, 527, 642, 652], "expir": [208, 688], "home_connect": 208, "client_id": [208, 293, 362], "client_secret": 208, "testing": [208, 243, 273, 646, 651, 654], "oauth": [208, 266, 368, 456, 674], "retrieval": [208, 234, 245, 335, 346, 368, 643, 649, 653], "pyhton": 209, "pyhomematic": [209, 210, 647, 674], "ccu2": [209, 210, 417, 545, 548, 674], "explained": [209, 288, 315], "hierin": 210, "fehlemed": 210, "hmgeneric": 210, "duty_cycl": 210, "0007d7099d0552": 210, "fault": 210, "verschwind": [210, 339, 340], "statuswechsel": [210, 219], "homematic_": 210, "ermangel": 210, "hm": 210, "lc": [210, 681], "bl1": 210, "bl1pbu": 210, "pb": 210, "ja1pbu": 210, "zel": 210, "stg": 210, "fep": 210, "263": 210, "146": 210, "147": [210, 247, 282], "blx": 210, "hmip": 210, "broll": 210, "ipkeyblind": 210, "bbl": 210, "ipkeyblindtilt": 210, "dim1l": 210, "cv": 210, "dim1t": 210, "dr": 210, "dim1pwm": 210, "dim1tpbu": 210, "dim2l": 210, "dim2t": 210, "hss": 210, "dx": 210, "dis": [210, 632], "ou": 210, "cf": 210, "cm": 210, "cfm": 210, "sw1": 210, "dn": 210, "r1": 210, "r3": 210, "r4": 210, "r5": 210, "om54": 210, "ba": [210, 294], "atmega168": 210, "sw1pbu": 210, "sw2": 210, "sw2pbu": 210, "sw4": 210, "wm": 210, "131": 210, "fzs": 210, "swx": 210, "rev": [210, 400, 408, 435, 441, 464, 467, 642], "ritt": 210, "ES": 210, "pmsw1": 210, "switchpowermet": 210, "pmswx": 210, "hmw": 210, "sw7": 210, "ioswitch": 210, "sw14": 210, "hmwioswitch": 210, "keyblind": 210, "keydimm": 210, "ipswitch": 210, "psm": 210, "ipswitchpowermet": 210, "fsm": 210, "bsm": 210, "bdt": 210, "ipkeydimm": 210, "keymatic": 210, "sen": 210, "rd": 210, "rain": [210, 218, 262, 462], "st6": 210, "ecologic": 210, "sir": 210, "rfsir": 210, "shuttercontact": 210, "sco": 210, "ffk": 210, "bc": 210, "maxshuttercontact": 210, "sci": [210, 281], "ipshuttercontact": 210, "swdo": 210, "srh": 210, "rotaryhandlesensor": 210, "rhs": 210, "fdk": 210, "wds": 210, "watersensor": 210, "powermetergas": 210, "gongsensor": 210, "smok": 210, "smokev2": 210, "swsd": 210, "ipsmok": 210, "mdir": 210, "wm55": 210, "remotemotion": 210, "motion": [210, 227], "motionv2": 210, "smi": 210, "motionip": 210, "smo": 210, "spi": 210, "presenceip": 210, "luxsensor": 210, "ep": 210, "impulsesensor": 210, "ash550i": 210, "areathermostat": 210, "ash550": 210, "wds10": 210, "wds20": 210, "wds40": 210, "157": 210, "158": 210, "wds100": 210, "c6": 210, "weathersensor": 210, "ks550": 210, "ks888": 210, "ks550tech": 210, "ks550lc": 210, "swo": 210, "ipweathersensor": 210, "ws550": 210, "weatherstation": [210, 365], "ws888": 210, "ws550tech": 210, "ws550lcb": 210, "ws550lcw": 210, "wdc7000": 210, "tis": 210, "tiltsensor": 210, "scd": 210, "co2sensor": 210, "160": [210, 227], "wds30": 210, "ot2": 210, "temperaturediffsensor": 210, "temperaturesensor": 210, "s550ia": 210, "wa": 210, "fillinglevel": 210, "wiredsensor": 210, "valvedriv": 210, "fsa": 210, "tiltip": 210, "stho": 210, "ipareathermostat": 210, "vg": 210, "thermostatgroup": 210, "tc": [210, 293], "thermostatwall": 210, "thermostatwall2": 210, "fwt": 210, "trx": 210, "cyg": 210, "maxthermostat": 210, "cyn": 210, "maxwallthermostat": 210, "etrv": 210, "ipthermostat": 210, "sthd": 210, "ipthermostatwall": 210, "sth": 210, "wth": 210, "bwth": 210, "rcv": 210, "remotevirtual": 210, "rc": [210, 278, 477], "pbu": 210, "sec3": 210, "sec4": 210, "p1": 210, "sb": 210, "remotepress": 210, "pbi": 210, "brc": 210, "atent": 210, "wt": 210, "hs": [210, 419, 577], "fst": 210, "up4": 210, "145": 210, "135": [210, 301, 495], "led16": 210, "4dis": 210, "wrc2": 210, "wrc6": 210, "swi": 210, "fss": 210, "up3": 210, "144": [210, 227], "rc8": 210, "developng": 211, "mworion": [211, 545, 548], "typical": [211, 247, 358], "38f625a739562a8bd261ab9c7f5e62c8": 211, "hexadecimal": [211, 227], "authorized": 211, "authoriz": [211, 244, 296], "notification": [211, 219, 269, 274, 296, 368, 469, 471, 545, 550], "polling": [211, 498, 655], "attached": [211, 274], "lgroup": 211, "garamut": 211, "bulb": [211, 247, 651], "livingcolor": 211, "bloom": 211, "aura": 211, "iris": 211, "specs": 211, "meethu": 211, "besid": [211, 290], "153": 211, "lselect": [211, 419, 420], "colorloop": [211, 419, 420], "col_r": 211, "col_g": 211, "col_b": 211, "xy": [211, 212, 213, 419, 420], "colordisc": 211, "modelid": [211, 212, 213, 337, 419, 420], "swversion": [211, 212, 213, 227, 419, 420], "bridge_nam": 211, "swupdat": 211, "whitelist": 211, "apiversion": 211, "bridge_swversion": 211, "linkbutton": 211, "netmask": 211, "portalservic": 211, "portalconnection": 211, "portalstat": 211, "localtim": 211, "zigbeechannel": 211, "hy": 211, "scheduled": [211, 227, 294, 652, 655], "interpolation": [211, 643, 652, 655], "dimmed": [211, 247], "avoided": [211, 294], "nevertheless": 211, "equally": 211, "interpolat": 211, "transition": 211, "making": [211, 653], "searched": [211, 318, 365], "modeltyp": 211, "lampnam": 211, "drops": 211, "neuentwickl": [212, 223, 271, 289], "retired": [212, 213, 689, 693], "authorisier": 212, "webinferfac": 212, "verfahr": [212, 213, 260, 266, 331, 349, 521, 678], "anwendungsschlussel": [212, 213, 419, 420], "light_ww": [212, 213], "warmwhit": [212, 213, 648], "light_xy": [212, 213], "light_extended": [212, 213], "light_ww_extended": [212, 213], "light_xy_extended": [212, 213], "steuernd": [212, 213, 265, 621, 626], "hue2_id": 212, "test_leucht": [212, 213], "wirkung": [212, 213, 256], "hue2_resourc": 212, "hue2_function": [212, 653], "light_nam": [212, 213], "colormod": [212, 213, 337, 419], "light_typ": [212, 213], "resouc": [212, 419, 420], "nachgeseh": [212, 213], "bri_inc": [212, 213, 419, 420], "activate_sc": [212, 213, 419, 420], "modify_sc": [212, 213, 419, 420, 653], "lightlevel": [212, 419, 420], "pullrequ": 212, "590": 212, "leuchten_nam": [212, 213], "brigd": [212, 213], "funft": [212, 213], "secht": 212, "apps": [212, 213, 296, 315], "signify": [213, 419, 420, 545, 548, 649], "irgendwann": 213, "rund": [213, 376], "2915002c": 213, "6c8f": 213, "4d9b": 213, "9134": 213, "6b1a8ded4be3": 213, "konzentration": 213, "farbsyst": [213, 375], "untersutz": 213, "deconz": [213, 648, 651, 653], "default_transitiontim": 213, "hue3_id": 213, "d299371e": 213, "098d": 213, "4836": 213, "9669": 213, "d8ad3b5043c0": 213, "hue3_resourc": 213, "hue3_function": 213, "hue3_transition_tim": 213, "device_pow": [213, 420], "beospiel": 213, "hue3_": 213, "siebt": 213, "husqvarna": [214, 215, 280, 421, 422, 545, 550, 645, 649, 651], "automow": [214, 215, 421, 422, 479, 545, 550, 649, 651], "amc": 214, "smartphon": [214, 228, 315, 316, 671], "am315x": [214, 215], "userid": [214, 612], "mysecret": [214, 215], "christoph": 214, "carr\u00e9": 214, "crisz": 214, "chrisz": 214, "pyhusmow": 214, "david": 214, "karlsson": 214, "dinmammas": 214, "homebridg": [214, 262], "robonect": [214, 545, 550, 645, 646, 649, 651, 656], "jak": 214, "forr": 214, "rannmann": 214, "nextdom": 214, "benutzerkonto": 215, "husqvarnagroup": 215, "aioautomow": [215, 652, 654], "verwund": 215, "apikey": [215, 228, 272, 335, 344, 361], "mykey": [215, 563], "apisecret": [215, 652], "husky_stat": 215, "20description": 215, "20and": 215, "20error": 215, "20cod": 215, "going_hom": 215, "unterweg": 215, "ladestation": [215, 219, 367, 399], "gehandhabt": 215, "mah": [215, 220], "fuer": [215, 344, 389, 390, 407, 456, 466, 478, 517, 545, 548, 550, 671], "testzweck": [215, 229], "gpspoint": [215, 422, 652], "mapskey": 215, "zoomlevel": 215, "pathcolor": 215, "mow": [215, 218, 219, 220, 479, 649, 652], "4addsf665dsf53fdg5dgdasfg43sdf51": 215, "3afd02": 215, "Ihn": 215, "park": [215, 652], "pet": 215, "protzn": 215, "thomas55555": 215, "handle_login": 216, "robust": 216, "break": [216, 253, 278], "kalenderdatei": [217, 423], "ics": [217, 545, 558], "calendarit": 217, "ical_calendar": 217, "test_downloaded": 217, "calendarfil": 217, "cal": [217, 423], "folloging": 217, "extract": [217, 288, 641], "summary": [217, 344, 521, 655], "cal_class": 217, "testword": 217, "tommorrow": 217, "trough": [218, 281, 301, 365], "bosch": [218, 220, 424, 425, 545, 550, 558, 642], "lawn": [218, 262], "gsm": [218, 219], "800": [218, 219], "1200": [218, 219, 328], "mowing": [218, 219], "moving": 218, "considering": [218, 655], "frequency": [218, 235, 365, 622, 652], "gard": [218, 219, 262, 424, 425], "visualization": [218, 294, 352, 355, 356, 357, 650], "mowed": [218, 219], "accurat": 218, "docked": [218, 219], "planned": [218, 253], "occurred": [218, 653, 655], "forecast": [218, 262, 311, 365, 394, 468, 502, 652, 665, 666, 670], "four": [218, 257, 361], "exp": 218, "sunshin": 218, "daytim": 218, "grauonlin": 218, "alexwww": 218, "loos": 218, "authenticat": [218, 219], "avoid": [218, 222, 231, 298, 645, 646, 649, 650, 653, 655, 656], "feel": [218, 251], "chao": 218, "restclient": 218, "966612": 218, "zazaz": 218, "blob": 218, "myindego": 218, "30second": 218, "annoyed": 218, "img_pfad": [218, 219], "mapfil": 218, "car": [218, 227, 253, 260, 335, 344, 681], "parent_it": [218, 219, 288], "relating": 218, "dropin": [218, 219, 220, 253, 314, 653, 687], "affecting": 218, "1144945": 218, "bcrzlich": 218, "hinzugef": 218, "bcgte": 218, "statecod": 218, "state_str": 218, "stateerror": 218, "config_chang": 218, "indego_add_key": 218, "mow_trig": 218, "statelevel": 218, "mowedpercent": 218, "mapsvgcachedat": 218, "mapupdateavailabl": 218, "moweddat": 218, "xpos": [218, 219], "ypos": [218, 219], "svg_xpos": [218, 219], "svg_ypos": [218, 219], "mowmod": [218, 219], "next_tim": 218, "runtimetotaloperationmin": 218, "runtimetotalchargemin": 218, "runtimesessionoperationmin": 218, "runtimesessionchargemin": 218, "indego_smart": 218, "frequenz": 218, "indego_frequency": 218, "indego_command": 218, "returntodock": [218, 219, 425], "alm_sn": [218, 219], "alm_nam": [218, 219], "service_count": [218, 219], "needs_servic": [218, 219], "alm_mod": [218, 219], "baretoolnumb": [218, 219], "alm_firmware_version": [218, 219], "alert_messag": 218, "alert_id": [218, 219], "alert_id_s": 218, "alert_flag": 218, "alert_headlin": 218, "alert_dat": 218, "int_0": 218, "wwsymbol_mg2008": 218, "tt": [218, 219, 657], "wwtext": 218, "rrr": 218, "prrr": 218, "intervallength": 218, "spell": 218, "wolk": 218, "gewitt": 218, "int_1": 218, "int_2": 218, "int_3": 218, "int_4": 218, "int_5": 218, "int_6": 218, "int_7": 218, "int_8": 218, "int_9": 218, "int_10": 218, "int_11": 218, "int_12": 218, "int_13": 218, "int_14": 218, "int_15": 218, "int_16": 218, "int_17": 218, "int_18": 218, "int_19": 218, "day_0": 218, "tn": 218, "day_1": 218, "day_2": 218, "day_3": 218, "day_4": 218, "gartenkart": [219, 220], "engineering": [219, 247], "marcov": [219, 545, 550], "ersteinricht": 219, "toll": 219, "entwicklungsphas": 219, "unzahl": 219, "geduld": [219, 222, 223], "bmx": [219, 545, 548, 550, 554], "psilo": [219, 545, 550, 558], "erlaubnis": 219, "grafik": 219, "arbeit": [219, 622, 629, 643], "odvarko": 219, "jscolor": 219, "opensourc": 219, "gplv3": 219, "endpoit": 219, "sonnenstund": 219, "entf": 219, "messerzahl": 219, "code64": 219, "wintermodus": 219, "stillgelegt": 219, "mahkalenderverwalt": 219, "smartmow": 219, "vektor": [219, 220], "mahspurdarstell": 219, "indegoconnect": 219, "maherposition": 219, "netz": 219, "updatefunktion": [219, 381], "sensorempfind": 219, "popup": [219, 220], "chart": [219, 645], "maheffizienz": [219, 220], "ladezeit": [219, 220], "maherfarb": 219, "kartenkart": [219, 220], "wahlbar": [219, 362, 531], "1300": 219, "erlautert": [219, 224, 287, 313, 324, 331, 332, 577, 587, 597, 622], "ladezustand": 219, "abfall": 219, "langzeitbeobacht": 219, "unterstellt": 219, "akkuladestand": 219, "netznutz": 219, "gemaht": 219, "mowtrack": 219, "path_2_weather_pics": 219, "pics": [219, 425], "indego_credential": 219, "abruf": [219, 249, 262, 362, 411, 490, 519, 520, 545, 558, 641], "erststart": 219, "abgeschalt": 219, "verzeichn": 219, "raumseit": [219, 220, 496, 523], "deinnam": 219, "raumnavigation": [219, 682], "colour": 219, "originalkart": 219, "map_2_show": 219, "aufhubsch": 219, "breitengrad": [219, 502, 510, 599, 636], "vorgeschlag": 219, "gardenmap": 219, "999999": 219, "state_trigger_": 219, "alarm_trigger_": 219, "kommunikationsanfrag": 219, "trigger_state_trigger_1": 219, "trigger_alarm_trigger_1": 219, "wechsel": [219, 220, 562, 572, 641], "indego2alexa": 219, "state_trigger_1": 219, "state_trigger_2": 219, "getan": 219, "state_trigger_3": 219, "state_trigger_4": 219, "alarm_trigger_1": 219, "wartung": [219, 262, 644, 645, 651, 652, 653, 654, 656], "alarm_trigger_2": 219, "mess": [219, 306, 307], "alarm_trigger_3": 219, "alarm_trigger_4": 219, "send_cmd": 219, "wetterstation": [219, 323, 325, 326, 328, 330, 338, 339, 340, 532], "schick": [219, 228, 641], "verlass": [219, 325, 326, 327, 328, 329, 330, 331, 332, 508, 588, 629], "indego_rc": 219, "vgl": [219, 412], "konfig": [219, 249, 452], "eingezeichnet": 219, "hinzugelad": 219, "wahlt": [219, 338, 480], "circl": 219, "svg_8": 219, "cy": 219, "792": 219, "cx": 219, "fill": [219, 652, 655], "fff601": 219, "strok": 219, "888888": 219, "gelb": [219, 263], "textarea": 219, "legacy": [219, 368, 646, 655], "gardening": 219, "extrahi": 219, "mahertyps": 219, "authorization": [219, 296, 646], "bear": 219, "_bear": 219, "agent": [219, 297, 688], "connect_4": 219, "12253": 219, "zugriffspunkt": 219, "alm": 219, "automaticupdat": 219, "supp": 219, "alm_serial": 219, "user_id": [219, 362, 655], "00647": 219, "01043": 219, "159551": 219, "3600ha2300": 219, "xxxxxxxxxx": [219, 298], "accessori": 219, "operatingdata": 219, "predictiv": 219, "lastcutting": 219, "nextcutting": 219, "accessory_cod": 219, "autolock": 219, "exclusion_days": 219, "slot": [219, 339, 340], "sthr": 219, "enmin": 219, "enhr": 219, "stmin": 219, "ttd": 219, "schedule_days": 219, "34352": 219, "193907": 219, "89": [219, 230], "mapsvgcache_t": 219, "1573585675296": 219, "64513": 219, "map_update_availabl": 219, "resource_id": 219, "470": 219, "optinapp": 219, "display_nam": 219, "xxxxxxxxx": 219, "xxxxxxxx": 219, "optin": 219, "country_cod": 219, "mowertyp": 219, "facebook": 219, "requestposition": 219, "process_id": 219, "dateandtim": 219, "reinitializ": 219, "resetpassword": 219, "indego": [220, 425, 545, 550, 558, 642, 645, 653], "rasenmah": [220, 479], "wetterinformation": [220, 262, 532], "akku": [220, 299], "encodi": 220, "eingeloggt": 220, "tsdb": [221, 426, 545, 554], "graphing": 221, "grafana": [221, 426, 545, 554], "chronograf": [221, 426, 545, 554], "sgtseppel": 221, "latency": 221, "blocked": [221, 257], "rthill": [221, 269, 545, 550, 554, 558], "8089": [221, 222, 426, 427], "retention": [221, 222], "batching": 221, "metrics": [221, 337], "poor": 221, "buff": 221, "batch": 221, "flush": 221, "buffered": 221, "pending": 221, "1s": 221, "hit": 221, "write_protocol": 221, "influx_host": 221, "influx_port": 221, "influx_keyword": 221, "influx": [221, 225], "relevanc": 221, "gf": [221, 269, 288, 360], "1234567": 221, "a5_04_01": 221, "peopl": [221, 668], "pushed": [221, 646], "webui": 221, "1451897887326109961": 221, "92": 221, "1451897887305586638": 221, "800000000000004": 221, "geschutzt": [222, 232, 338, 688], "udp_port": [222, 645], "value_field": [222, 223], "write_http": 222, "http_port": [222, 645], "8086": [222, 223, 225, 427, 428], "some_it": 222, "ersatz": [222, 223, 302, 585], "einschliess": [222, 262, 396], "dining_temp": 222, "influxdb_nam": 222, "influxdb_tag": 222, "protokollier": [222, 287, 396, 508], "zeitseriendatenbank": 222, "fork": [222, 284, 668], "influxdata": [222, 223, 224, 225, 427, 428, 545, 554, 651, 653, 670], "namensgeb": 222, "zuruckzugreif": [222, 333, 688], "messungsnam": 222, "mitprotokolliert": 222, "zuruckgreif": 222, "uberfluss": [222, 674], "kodi": [222, 269, 545, 550, 642, 645, 646, 648, 649, 655], "kodier": 222, "messnam": 222, "concept": 222, "schema_and_data_layout": 222, "piec": 222, "influxdb2": [222, 225, 226, 256, 545, 554, 651, 652, 653, 655], "influxdb1": [222, 223], "adaptiert": [222, 223, 688], "pandas": [222, 223], "influxdb_client": [222, 223], "zugriffsparamet": [222, 223], "cvs": [222, 223], "gefragt": [222, 223], "influxdbclient": [222, 223], "write_api": [222, 223], "synchronous": [222, 223], "pd": [222, 223], "bucket": [222, 223], "str_value_field": [222, 223], "str_valu": [222, 223, 428], "csvfil": [222, 223], "smarthomeng_dump": [222, 223], "write_option": [222, 223], "df": [222, 223], "read_csv": [222, 223], "reset_index": [222, 223], "num_rows": [222, 223], "last_progress_percent": [222, 223], "iterrows": [222, 223], "progress_percent": [222, 223], "1000000": [222, 223, 279], "datenbankmanagementsyst": 223, "dbms": 223, "zeitreih": [223, 224, 226, 260, 287], "engl": 223, "vertrieb": 223, "aufsetzt": 223, "fungi": 223, "migration": [223, 646, 655, 667, 670], "_measurement": 223, "influxdb2_nam": 223, "_tim": [223, 655], "synchonisation": 223, "speichernd": 223, "zusatzdat": 223, "betracht": [223, 321], "spezialisiert": 224, "relational": 224, "mariadb": [224, 287], "redis": 224, "effizienz": 224, "komplexitat": [224, 329], "merkmal": 224, "spezialisier": 224, "Sehr": 224, "arbeitsbereich": 224, "dashboard": [224, 362, 692], "speicherort": [224, 432], "aufbewahrungsfrist": 224, "datenpunkt": [224, 229, 232, 262, 306, 307, 351, 371, 388, 434, 485, 522, 525, 579], "gehort": [224, 293, 434, 451, 505, 622], "feldwert": 224, "feldschlussel": 224, "_field": 224, "installationsdokumentation": 225, "tar": [225, 309, 628, 677], "gz": [225, 309, 677, 688], "xvzf": 225, "aufbewahrungsdau": [226, 389], "72": [226, 262, 638], "zuordn": [226, 241, 263, 566], "endlos": [226, 328], "aufgehob": 226, "speicherziel": 226, "aufbewahrt": [226, 263, 381], "autorisi": 226, "anchliess": 226, "clipboard": [226, 228, 273], "eigerichtet": 226, "distributor": 227, "keil": 227, "telecom": 227, "verso": 227, "helio": 227, "enhanced": [227, 649, 652, 653, 655], "licenc": 227, "shop": [227, 305], "privileg": 227, "system_info": 227, "system_status": 227, "system_restart": 227, "firmware_upload": 227, "firmware_apply": 227, "config_get": 227, "config_upload": 227, "factory_reset": 227, "switch_caps": 227, "switch_status": 227, "switch_control": 227, "io_caps": 227, "io_status": 227, "io_control": 227, "phone_status": 227, "call_status": 227, "call_dial": 227, "call_answ": 227, "call_hangup": 227, "camera_caps": 227, "camera_snapshot": 227, "display_caps": 227, "display_upload_imag": 227, "log_caps": 227, "log_subscrib": 227, "log_unsubscrib": 227, "log_pull": 227, "audio_t": 227, "email_s": 227, "pcap": 227, "pcap_restart": 227, "pcap_stop": 227, "edit": [227, 278, 334], "intercom_2n": [227, 545, 550, 655], "intercom_ip": 227, "auth_typ": 227, "my_us": 227, "my_pass": 227, "dig": [227, 429, 688], "despit": 227, "fact": [227, 364], "consistent": 227, "wondering": 227, "unauthorized": 227, "2n_intercom": 227, "integrated": [227, 294, 341, 646], "renewing": [227, 655], "devicestat": 227, "event_2n": 227, "device_stat": 227, "signalled": 227, "ever": [227, 288], "event_data_2n": 227, "audioloopt": 227, "callstatechanged": 227, "cardentered": 227, "tapping": 227, "rfid": 227, "card": [227, 641], "equipped": [227, 280, 645, 650], "codeentered": 227, "keypad": 227, "dooropentoolong": 227, "excessively": 227, "opening": [227, 356, 357], "closing": [227, 647, 652], "digital": [227, 278, 412], "inputchanged": 227, "keypressed": 227, "pressing": [227, 301], "dial": 227, "keyreleased": 227, "releasing": 227, "loginblocked": 227, "temporary": [227, 649, 653, 655], "motiondetected": 227, "detection": [227, 261, 649, 655, 656], "noisedetected": 227, "increased": [227, 263, 647, 652], "nois": [227, 642], "microphon": [227, 315], "outputchanged": 227, "registrationstatechanged": 227, "registration": [227, 274, 368, 655], "switchstatechanged": 227, "tamperswitchactivated": 227, "tamp": 227, "unauthorizeddoorop": 227, "unauthorised": 227, "userauthenticated": 227, "subsequent": [227, 294, 647, 653], "command_2n": 227, "vario": 227, "1240": 227, "1138": 227, "hwversion": 227, "535v1": 227, "buildtyp": 227, "devicenam": 227, "documented": [227, 240, 248, 298, 355, 643, 645, 670], "explanatory": 227, "audio_test_result": 227, "accomplished": 227, "carried": 227, "loudspeak": 227, "detector": 227, "key_cod": 227, "dialling": 227, "validity": [227, 646, 649, 670], "direction": [227, 262, 278, 344, 361, 455, 516, 545, 558, 670], "arrival": 227, "departur": [227, 253], "passag": 227, "wiegand": 227, "modular": [227, 622], "uid": [227, 504], "phonebook": 227, "caps": 227, "inactiv": [227, 294, 323, 508], "switchstat": 227, "callstat": 227, "ringing": 227, "terminated": 227, "busy": [227, 254, 255], "noansw": 227, "norespons": 227, "completed_elsewh": 227, "peer": 227, "hangup": [227, 664], "sipaccount": 227, "unregistering": 227, "unregistration": 227, "cov": [227, 507], "deactivation": 227, "dooropentoo": 227, "repeated": 227, "repeatedly": 227, "regardless": 227, "1860": 227, "0035": 227, "systemtim": 227, "1418225091": 227, "190524": 227, "helps": [227, 649], "confirm": [227, 651], "fw": 227, "firmware_fil": 227, "downgrad": 227, "confirmation": [227, 342], "commmand_2n": 227, "config_fil": [227, 315], "uploaded": 227, "factoryreset": 227, "factory": 227, "monostabl": 227, "switchonduration": 227, "controlled": [227, 240, 247, 278], "relay1": 227, "relay2": 227, "sipnumb": 227, "5046": 227, "registertim": 227, "1418034578": 227, "telephon": 227, "seem": [227, 240, 646, 651, 655], "your_numb": 227, "rejection": 227, "signalling": 227, "jpeg": 227, "downloaded": [227, 646, 649, 650], "jpegresolution": 227, "176": 227, "320": 227, "272": 227, "288": 227, "640": 227, "480": 227, "snapshot_fil": 227, "1970": [227, 306, 307, 516], "displays": [227, 339, 340, 513, 545, 554, 654], "gif_fil": 227, "gif": 227, "display_delete_imag": 227, "subset": 227, "intecom": 227, "built": 227, "authetication": 227, "smtp": [227, 445, 545, 558, 665], "correctly": [227, 312, 318, 645, 646, 649, 650, 652, 653, 655], "delivery": [227, 305, 368], "subject": 227, "picture_count": 227, "enclosed": [227, 398], "pcap_fil": 227, "saved": [227, 247, 655], "recording": [227, 294, 649], "deviceid": [228, 244, 447], "api_key": 228, "smallicon": 228, "sound": [228, 248, 504, 653, 655], "callnumb": 228, "smsnumb": 228, "smstext": 228, "mmsfil": 228, "wallpap": 228, "lockwallpap": 228, "interruptionfilt": 228, "mediavolum": 228, "ringvolum": 228, "alarmvolum": 228, "0123456789": 228, "hello": [228, 243, 296, 338, 368, 534, 683], "world": [228, 243, 338, 368, 534, 683], "sms": 228, "zielgerat": 228, "01234567892": 228, "benachricht": [228, 272, 369, 419, 420, 527, 641], "abfrageanweis": 229, "jq": [229, 431, 545, 558, 641], "london": 229, "appid": 229, "b6907d289e10d714a6e88b30761fae22": 229, "dateiquell": 229, "jsonreadlon": 229, "jsonreadcair": 229, "2172797": 229, "cairn": 229, "coord": [229, 262], "drizzl": 229, "intensity": 229, "09d": 229, "280": 229, "1012": 229, "temp_min": [229, 262], "279": 229, "temp_max": [229, 262], "281": 229, "visibility": [229, 240, 262], "10000": [229, 361, 476], "1485789600": 229, "5091": 229, "0103": 229, "gb": 229, "1485762037": 229, "1485794875": 229, "2643743": 229, "jsonread_filt": 229, "instanznam": [229, 262, 309], "itembefull": 229, "kompliziert": [229, 326], "entwickeln": 229, "lohnt": 229, "tutorial": 229, "eindruck": [229, 685], "myreserv": 229, "bmsdata": 229, "shtml": 229, "receivebl": 229, "solarwatt": 229, "fdata": 229, "ipv": 229, "vbat": 229, "vpv": 229, "418": 229, "pgrid": 229, "ibat": 229, "91": [229, 396], "sdata": 229, "acs": 229, "u_l2": 229, "239": [229, 298], "soc": [229, 235], "ladestrom": 229, "ladeleist": 229, "mathemat": [229, 347, 573], "swem": 229, "kiwigrid": 229, "wizard": 229, "datenpaket": [229, 232, 256, 531], "4500": 229, "tagvalu": 229, "poweracout": 229, "2419": 229, "tagnam": 229, "ausgangsleist": 229, "arrays": 229, "ubereinstimmt": [229, 241, 326], "blockstil": 229, "grid": [229, 235, 645, 646], "devicemodel": 229, "deviceclass": 229, "myreservepowermet": 229, "powerout": 229, "powerin": 229, "abfragesyntax": 229, "jvc": [230, 432, 545, 550, 674], "ila": [230, 432, 545, 550, 674], "jvcprojectortool": [230, 432, 545, 550], "gammatabell": 230, "eingangssignal": 230, "roh": [230, 392, 434], "gamma": [230, 260, 432, 460, 545, 558], "projektorengeneration": 230, "x3": 230, "x7": 230, "x9": 230, "x5900": 230, "x7900": 230, "x9900": 230, "sicherlich": 230, "gammaconf_dir": 230, "57": [230, 443], "0a": [230, 337], "2189015057310a": 230, "objektivspeich": 230, "objektivmask": 230, "mem219": 230, "4e": 230, "4d": 230, "4c": [230, 337, 355], "21890149534d41300a": 230, "gammaslot": 230, "gammadat": [230, 432], "custom1": 230, "custom2": 230, "custom3": 230, "hex": [230, 254, 255, 305, 306, 307, 310, 351, 407, 434, 456, 478, 497, 501, 522, 651, 655], "hdrmid": 230, "gammatabl": 230, "jvc_gamma_hdr_middynamic": 230, "hdrhigh": 230, "jvc_gamma_hdr_highdynamic": 230, "projektorseri": 230, "rs": [230, 402, 545, 548, 688], "232": [230, 247, 402, 434, 545, 548], "befehlslist": 230, "betriebsbefehl": 230, "variiert": 230, "pw": 230, "datenwert": [230, 427], "149": 231, "nonstandard": [231, 240, 301], "identify": [231, 261, 305, 653], "kahtreinid": 231, "possibiliti": [231, 281, 301, 670], "consid": [231, 301, 653], "tvr": [231, 433], "fav": [231, 433], "opt": [231, 433], "fback": [231, 433], "fforward": [231, 433], "rec": [231, 294, 433], "busmonitor_fil": 232, "bbbbb20000": 232, "knx_poll": [232, 670], "paketquell": 232, "zeitfunktion": 232, "data_ga": [232, 434], "03_07_02_datapoint": 232, "v02": 232, "zugelass": 232, "nan": [232, 517], "statistikfunktion": [232, 434], "leseanforder": [232, 434, 442], "abfragt": [232, 262], "schreibanforder": 232, "beantwortet": [232, 406], "absetzt": 232, "schlagt": [232, 255], "absend": [232, 241, 256], "empfangeradress": 232, "dateninformation": 232, "merkt": 232, "taucht": 232, "leseflag": 232, "projektdatei": [232, 434], "exportdatei": 232, "ets5": 232, "knxproj": [232, 434, 646, 649], "ets4": 232, "esf": 232, "opc": [232, 646], "vorbelegt": [232, 272, 292], "suchmog": 232, "einh": 233, "old_control": 233, "old_info": 233, "kodi_it": [233, 646], "kodi_command": 233, "kodi_read": 233, "kodi_writ": 233, "suspend_it": [233, 326, 655], "aufzubau": [233, 354, 440, 507], "retry_susp": [233, 655], "resum": [233, 249, 254, 255, 284, 400, 422, 435, 441, 464, 467, 482, 623, 655], "piko": [234, 235, 436, 545, 550], "board": [234, 278, 412], "1109697": 234, "wechselricht": [234, 249, 299, 300, 436, 437, 492, 494, 545, 550], "kommunikationsboard": 234, "comminication": 234, "firmwareversion": 234, "electric": [234, 235, 236, 436, 545, 550], "produkte_servic": 234, "wechselrichter_neue_generation": 234, "ship": 234, "wechselrichter_bewaehrte_generation": 234, "kostal_pv": 234, "pvserv": [234, 436], "pvwr": [234, 436], "plant": [234, 245, 262, 670], "establishing": 234, "datasructur": 234, "requred": 234, "phas": [234, 235, 284, 436, 643, 646, 650, 652, 665], "dc": [234, 235, 363, 436], "dc2": [234, 235], "dc3": [234, 235], "ac2": 234, "ac3": 234, "operation_status": [234, 436], "dcpow": [234, 436], "dc1_v": [234, 436], "dc3_v": [234, 436], "dc1_a": [234, 436], "dc3_a": [234, 436], "amp": [234, 337, 436], "dc1_w": [234, 436], "dc3_w": [234, 436], "actot_w": [234, 436], "actot_cos": [234, 436], "cos": [234, 235, 436], "\u03c6": [234, 235, 436], "actot_limitation": [234, 436], "ac1_v": [234, 436], "ac3_v": [234, 436], "ac1_a": [234, 436], "ac3_a": [234, 436], "ac1_w": [234, 436], "ac3_w": [234, 436], "yield_day_kwh": [234, 436], "yield_tot_kwh": [234, 436], "operationtime_h": [234, 436], "yield_today": 234, "divid": 234, "dctot_w": 234, "dc2_v": [234, 436], "dc2_a": [234, 436], "dc2_w": [234, 436], "phi": 234, "ac2_v": [234, 436], "ac2_a": [234, 436], "ac2_w": [234, 436], "pymodbus": [235, 236, 270, 271, 299, 300, 517, 653, 655], "plenticor": 235, "iq": [235, 688], "kostalmodbus": [235, 545, 550, 645, 653], "inverter_ip": 235, "modbus_port": [235, 236], "1502": 235, "kostal_item_templat": [235, 236], "dailyyield": 235, "kostal_322": 235, "totaldcpow": 235, "kostal_100": 235, "dec": [235, 236, 341, 569, 592, 643], "kostal_06": 235, "articl": [235, 344, 643, 646, 649], "kostal_14": 235, "kostal_30": 235, "u16": [235, 494], "kostal_32": 235, "kostal_34": 235, "kostal_36": 235, "kostal_38": 235, "maincontroll": [235, 612], "mc": 235, "kostal_46": 235, "ioc": 235, "kostal_54": 235, "kostal_56": 235, "state2": 235, "kostal_98": 235, "kostal_104": 235, "manager3": 235, "u32": [235, 236, 299, 300, 494], "kostal_106": 235, "consumption": [235, 305, 337, 521], "kostal_108": 235, "kostal_110": 235, "kostal_112": 235, "kostal_114": 235, "kostal_116": 235, "kostal_118": 235, "kostal_120": 235, "isolation": [235, 653], "resistanc": 235, "ohm": 235, "kostal_122": 235, "evu": 235, "kostal_124": 235, "kostal_144": 235, "worktim": 235, "kostal_150": 235, "kostal_152": 235, "kostal_154": 235, "kostal_156": 235, "kostal_158": 235, "kostal_160": 235, "kostal_162": 235, "kostal_164": 235, "kostal_166": 235, "kostal_168": 235, "kostal_170": 235, "kostal_172": 235, "kostal_174": 235, "reactiv": [235, 236], "kostal_178": 235, "apparent": [235, 236], "kostal_190": 235, "kostal_194": 235, "kostal_200": 235, "discharg": 235, "kostal_202": 235, "pssb": 235, "fus": 235, "state5": 235, "kostal_208": 235, "kostal_210": 235, "act": [235, 627, 630], "kostal_214": 235, "kostal_216": 235, "kostal_218": 235, "kostal_220": 235, "kostal_222": 235, "kostal_224": 235, "kostal_226": 235, "kostal_228": 235, "kostal_230": 235, "kostal_232": 235, "kostal_234": 235, "kostal_236": 235, "kostal_238": 235, "kostal_240": 235, "kostal_242": 235, "kostal_244": 235, "kostal_246": 235, "kostal_248": 235, "kostal_250": 235, "kostal_252": 235, "kostal_254": 235, "kostal_256": 235, "kostal_258": 235, "dc1": 235, "kostal_260": 235, "kostal_266": 235, "kostal_268": 235, "kostal_270": 235, "kostal_276": 235, "kostal_278": 235, "kostal_280": 235, "kostal_286": 235, "kostal_320": 235, "kostal_324": 235, "kostal_326": 235, "kostal_384": 235, "kostal_420": 235, "kostal_428": 235, "subnetmask": 235, "kostal_436": 235, "kostal_446": 235, "dns1": 235, "kostal_454": 235, "dns2": 235, "kostal_512": 235, "capacity": [235, 281, 480], "kostal_514": 235, "kostal_515": 235, "kostal_517": 235, "kostal_525": 235, "kostal_529": 235, "kostal_531": 235, "kostal_535": 235, "kostal_559": 235, "kostal_575": 235, "s16": [235, 494], "kostal_577": 235, "kostal_582": 235, "kostal_586": 235, "kostal_588": 235, "type6": 235, "kostal_768": 235, "productnam": [235, 383], "kostal_800": 235, "kostal_1056": 235, "kostal_1058": 235, "pv1": [235, 279], "kostal_1060": 235, "pv2": [235, 279], "kostal_1062": 235, "pv3": [235, 279], "kostal_1064": 235, "kostal_1066": 235, "ksemmodbus": [236, 545, 550, 643, 653, 656], "ksem_ip": 236, "502": [236, 249, 299, 300, 470, 494, 517, 651], "ksem_beszug": 236, "ksem": [236, 653], "ksem_0": 236, "ksem_einspeis": 236, "ksem_2": 236, "ksem_4": 236, "ksem_6": 236, "ksem_16": 236, "ksem_18": 236, "ksem_24": 236, "factor": [236, 262, 305, 306, 307], "ksem_512": 236, "u64": [236, 494], "ksem_516": 236, "ksem_520": 236, "varh": 236, "ksem_524": 236, "ksem_544": 236, "vah": 236, "ksem_548": 236, "infrared": 237, "fernbedien": [237, 440], "programmbefehl": 237, "infrarot": 237, "hifisyst": 237, "lirc_host": 237, "lirc_port": 237, "6610": 237, "remote_dvdlivingroom": 237, "dvdlivingroom_pow": 237, "lirc_remot": 237, "philipsdvd": 237, "lirc_key": 237, "logitech": [238, 319, 441, 507, 545, 550, 655, 670], "mediaserv": [238, 441, 545, 550, 655], "recursive_custom": 238, "message_timeout": 238, "message_retri": 238, "9090": [238, 319, 435, 441, 507], "web_port": [238, 319], "net_tcp_client": [238, 400, 408, 467], "selten": 238, "durft": 238, "abspielgerat": 238, "sqb_custom1": 238, "squeezebox": [238, 545, 548, 642, 643, 645, 646, 649, 655, 667, 670, 674], "sdp_squeezebox": 238, "squeezebox_player1": 238, "squeezebox_player2": 238, "plc": [239, 308, 309, 500, 545, 550, 642], "libnodav": 239, "s7": 239, "plcs": 239, "sourceforg": [239, 309, 440], "snap7": [239, 308], "36372": 239, "0ba7": [239, 308, 309, 442, 500], "0ba8": [239, 308, 309, 442, 500], "io_wait": 239, "logo2": [239, 308, 309], "i1": [239, 249, 298, 309, 461], "i2": [239, 298, 308, 309, 461], "i24": [239, 308, 309], "q1": [239, 308, 309], "q2": [239, 308, 309, 651], "q3": [239, 308, 309, 643], "q16": [239, 308, 309], "oba8": [239, 308, 309], "q20": [239, 308, 309], "m1": [239, 249, 308, 309], "m2": [239, 308, 309, 338], "m3": [239, 309], "m27": [239, 308, 309], "m64": [239, 308, 309], "ai1": [239, 249, 308, 309], "ai2": [239, 308, 309], "ai3": [239, 308, 309], "ai8": [239, 308, 309], "aq": [239, 308, 309], "aq1": [239, 308, 309], "aq2": [239, 308, 309], "aq8": [239, 308, 309], "AM": [239, 308, 309], "am1": [239, 249, 308, 309], "am2": [239, 308, 309], "am3": [239, 308, 309], "am16": [239, 308, 309], "am64": [239, 308, 309], "ni1": [239, 308, 309], "ni2": [239, 308, 309], "ni64": [239, 308, 309], "nai": [239, 308, 309], "nai1": [239, 308, 309], "nai2": [239, 308, 309], "nai32": [239, 308, 309], "nq": [239, 308, 309], "nq1": [239, 308, 309], "nq2": [239, 308, 309], "nq64": [239, 308, 309], "naq": [239, 308, 309], "naq1": [239, 308, 309], "naq2": [239, 308, 309], "naq16": [239, 308, 309], "vm0": [239, 249, 308, 309], "vm1": [239, 308, 309], "vm3": [239, 308, 309], "vm850": [239, 308, 309], "vmx": [239, 308, 309], "vmw": [239, 308, 309], "vmw0": [239, 308, 309], "vm2": [239, 308, 309], "vmw4": [239, 308, 309], "vm849": [239, 308, 309], "myroom": [239, 314], "status_i1": 239, "lightm1": 239, "m4": 239, "temp_measur": 239, "temp_set": [239, 289, 487], "vm4": 239, "8888": [240, 256, 405, 443, 457], "luxtronic": [240, 443, 545, 550, 666], "ouput": 240, "knwon": 240, "java": 240, "applet": 240, "realy": 240, "151": [240, 443], "152": [240, 443], "divided": [240, 670], "ten": 240, "writeabl": [240, 334], "temp_outsid": [240, 261, 265], "state_numeric": 240, "imap": [241, 444, 545, 558, 646, 649, 665], "absenderadress": [241, 445], "myaccount": 241, "sicherheitsgrund": [241, 382, 383, 406, 688], "herausfilt": 241, "my_trusted_mail": 241, "archivi": 241, "infrastruktur": 241, "mailserv": 241, "posteingang": 241, "sauna": 241, "mailbox": [241, 665], "loggingvariant": 243, "arbeitsspeich": [243, 422], "absatz": [243, 260, 573], "memorylog": [243, 263], "memory_info": [243, 263], "logiknam": [243, 263, 326, 332, 593], "sourceit": [243, 263], "log_rul": [243, 263, 577, 655], "itemvalu": [243, 256, 263, 655], "protokollmeld": 243, "speicherintern": 243, "protokolleintrag": 243, "memlog_messag": 243, "speicherprotokoll": 243, "threading": [243, 642, 646], "current_thread": 243, "my_memlog": 243, "my_personal_memlog": 243, "log_id": 243, "resultiert": [243, 263], "miel": [244, 447, 545, 548, 654], "gestutz": 244, "trennung": 244, "abreisst": 244, "gefrierschrank": 244, "programphas": 244, "programtyp": 244, "remainingtim": 244, "signalinfo": 244, "signalfailur": 244, "signaldoor": 244, "dryingstep": 244, "elapsedtim": 244, "ecofeedback": 244, "processaction": 244, "start_superfreezing": 244, "stop_superfreezing": 244, "start_supercooling": 244, "stop_supercooling": 244, "smartgrid": 244, "smartstart": 244, "mielegerat": 244, "registri": [244, 336, 339, 340, 362], "freischalt": 244, "merk": [244, 500], "swagg": 244, "erteil": 244, "aufgefordert": 244, "miele_cycl": 244, "miele_client_id": 244, "miele_client_secret": 244, "miele_client_country": 244, "miele_us": 244, "miele_pwd": 244, "fuhrend": [244, 573], "mieledevic": 244, "freez": 244, "miele_deviceid": 244, "xxxxxxxxxxx": 244, "dryer": 244, "yyyyyyyyyyy": 244, "herausles": 244, "verknupft": [244, 262, 286, 314, 325, 331, 333, 349, 508, 569, 570, 577, 592], "einblick": 244, "temperatureinstell": 244, "kuhlschrank": 244, "bluepy": [245, 448, 643], "pygatt": [245, 448], "1027133": 245, "xiaomi": [245, 359, 448, 533, 545, 550, 641, 643, 670, 674], "mi": [245, 448, 545, 550, 643, 645, 670], "flow": [245, 334], "bt_library": 245, "bt_addr": [245, 297], "c4": 245, "7c": 245, "f3": 245, "2b": [245, 285], "hcitool": [245, 297, 448, 492], "lescan": [245, 448], "gatttool": [245, 448], "moistur": [245, 448], "conductivity": [245, 448], "sensor_offic": 245, "littl": [247, 249, 270, 271, 452, 652], "although": 247, "populated": 247, "bett": [247, 248, 643, 645, 646, 649, 653, 670], "ghz": 247, "wifi": [247, 281, 282, 284, 292, 646, 649], "reported": 247, "esp8266": 247, "hub": [247, 363, 413, 545, 550], "sidoh": 247, "esp8266_milight_hub": 247, "hackaday": 247, "5888": 247, "sold": 247, "easybulb": 247, "limitlessled": 247, "recently": [247, 646, 653], "posted": 247, "formerly": [247, 655], "excluded": [247, 646], "archvi": 247, "bkrajancic": 247, "devapi": 247, "8899": [247, 450], "impact": 247, "lum": 247, "calibrating": [247, 257], "wheel": [247, 629, 630, 655], "005": 247, "clockwis": 247, "recalculated": 247, "dpt5": 247, "complianc": [247, 368], "ring": [247, 253, 339, 340, 513], "luminanz": 247, "disco": [247, 450], "mylight": 247, "wohn": [247, 277, 347, 428, 682, 683], "discospeedup": 247, "discospeeddown": 247, "knx_sent": 247, "coupled": [247, 653], "selection": [247, 248, 646, 655], "construction": [247, 315], "autogeneration": [247, 353], "ecan": 247, "produc": [248, 356, 357], "originat": 248, "beo4": 248, "pict": 248, "snd": 248, "mlns": 248, "cinema": 248, "beosyst": 248, "corrected": [248, 643, 645, 646, 647, 648, 649, 651, 652, 653, 654, 655, 656], "tcpip": 248, "24a": 248, "beolink": [248, 545, 548, 651, 653, 655], "log_mlgwtelegram": 248, "looking": [248, 260], "tries": [248, 648, 655], "fie": 248, "quiet": [248, 635], "alternatively": [248, 260, 670], "preconfigured": 248, "conjunction": 248, "dtv2": 248, "aux_a": 248, "dtv": 248, "pc": [248, 688], "cd2": 248, "step_up": 248, "step_dw": 248, "cinema_on": 248, "cinema_off": 248, "cursor_up": 248, "cursor_down": 248, "cursor_left": 248, "cursor_right": 248, "mln": [248, 451], "readability": [248, 653, 670], "occurrenc": 248, "originated": 248, "illustrat": 248, "someroom": [248, 285, 347], "bv10": [248, 451], "beovision": 248, "digit_1": 248, "living_light0": 248, "living_lightup": 248, "living_control0": 248, "modbustcp": [249, 649], "solaredg": 249, "logomb": 249, "multiinstanz": [249, 308, 309], "se6000": 249, "mydevic": 249, "modbusobjecttyp": 249, "inputregist": [249, 452], "holdingregist": [249, 452], "modbusaddress": 249, "modbusdatatyp": 249, "int16": [249, 452], "uint16": [249, 452], "modbusbyteord": 249, "endian": [249, 452], "modbuswordord": 249, "modbusdirection": 249, "read_writ": [249, 452], "modbusunit": 249, "slaveunit": [249, 650], "modbusfactor": 249, "528": 249, "coil": [249, 452], "8256": 249, "discreteinput": [249, 452], "geraetenam": 249, "40030": 249, "string16": [249, 452], "40052": 249, "float32": [249, 452], "verbindungsproblem": [249, 270, 271, 381], "verbindungstop": 249, "supend": 249, "steuerbar": [249, 338], "verbesser": [249, 270, 271, 309, 642, 643, 644, 645, 646, 674, 691], "wordord": [249, 270, 271], "mindestversion": 249, "di": 249, "halt": [249, 285, 331, 483, 590, 643, 644, 645, 646, 691], "caeruleusaqua": [249, 545, 548], "bmxp": [249, 545, 548, 550, 552, 554, 558], "typestr": [249, 652], "bitstr": 249, "objecttyp": 249, "_regtoread": [249, 650], "detailiert": 250, "badezimm": [250, 275], "mpd_bad": 250, "6601": 250, "mpd_kuech": 250, "6602": 250, "anlegt": [250, 693], "musik": [250, 275, 453, 617], "mpd_status": 250, "mpd_command": 250, "setvol": [250, 453], "playpaus": [250, 453], "playlist": [250, 276, 318, 319, 453, 507, 643, 671], "playlistlength": [250, 453], "songid": [250, 453], "nextsongid": [250, 453], "xfad": [250, 453], "crossfad": [250, 453], "mixrampdb": [250, 453], "mixrampdelay": [250, 453], "updating_db": [250, 453], "mpd_songinfo": 250, "mpd_statistic": 250, "db_playtim": [250, 453], "db_updat": [250, 453], "playtim": [250, 453], "playid": [250, 453], "seek": [250, 453, 504], "seekid": [250, 453], "seekcur": [250, 453], "rawcommand": 250, "mpd_rawcommand": 250, "radio1": 250, "mpd_url": 250, "streamurlofradio1": 250, "radio2": 250, "streamurlofradio2": 250, "plradio1": 250, "mpd_localplaylist": 250, "plradio2": 250, "playlist1": 250, "playlist2": 250, "updatedatabas": 250, "mpd_databas": 250, "rescandatabas": 250, "rescan": [250, 319, 453, 646, 674], "extensiv": [251, 646], "deliv": [251, 353, 643], "interested": 251, "mqtt_": 252, "pymvgliv": 253, "mvv": 253, "muench": 253, "1108867": 253, "travel_info": [253, 344], "mvg_station": 253, "mvgwatch": 253, "wikimedia": 253, "bcnchen_u": 253, "bahn": 253, "uselang": 253, "category": [253, 352, 368, 496, 523, 671, 682, 686], "line_numbers_of_munich_s": 253, "mygliv": 253, "muenchen_": 253, "s8": 253, "u3": [253, 298], "inputted": 253, "mvg_info": 253, "html_string": 253, "linesymbolurl": [253, 455], "sv_dyndns_url": 253, "mvgliv": 253, "dir_info": 253, "line_string": 253, "10px": 253, "15px": 253, "bold": [253, 296], "25px": 253, "calculated_delay": 253, "fff": 253, "120px": 253, "frankfurt": 253, "hauptbahnhof": 253, "karlsplatz": 253, "stachus": 253, "marienplatz": 253, "neatorobotics": 254, "cleaning": [254, 255, 367, 643, 648, 649, 652, 655], "sendtobas": 254, "findm": 254, "techniqu": 254, "account_email": [254, 255], "your_neato_account_email": [254, 255], "account_pass": [254, 255], "your_neato_account_password": [254, 255], "robot_vendor": [254, 255], "mykobold": [254, 456, 646], "hex_ascii_tok": [254, 255], "request_oauth2_cod": [254, 255], "reception": 254, "request_oauth2_tok": [254, 255], "neato_attribut": [254, 255], "stateaction": [254, 255], "state_action": [254, 255, 456], "isdocked": [254, 255], "is_docked": [254, 255, 456], "isscheduleenabled": 254, "is_schedule_enabled": [254, 255, 456], "ischarging": 254, "is_charging": [254, 255, 456], "chargepercentag": [254, 255], "charge_percentag": [254, 255, 456, 646], "gotobaseavailabl": 254, "command_gotobaseavailabl": [254, 255, 456], "robotnam": [254, 255, 282], "robotstat": [254, 255], "robotstateaction": [254, 255], "docking": [254, 255], "robotdockingstatus": [254, 255], "robotbatterystat": [254, 255], "paused": [254, 255], "hous": [254, 255, 352, 368, 592, 686], "suspended": [254, 255, 623], "copying": [254, 255, 647, 651], "recovering": [254, 255], "exploring": [254, 255], "persistent": [254, 255, 266, 278, 349, 368, 589, 622, 632, 652, 671], "acquiring": [254, 255], "uploading": [254, 255], "exploration": [254, 255], "robotbutton_start": [254, 255], "midi": [254, 255, 284], "robotbutton_stop": [254, 255], "robotbutton_paus": [254, 255], "robotbutton_resum": [254, 255], "robotbutton_find": [254, 255], "vorwerk": [255, 456, 545, 550, 643, 646, 649], "saugrobot": [255, 367, 533, 545, 550], "en_us": 255, "reconfigur": 255, "botvac": 255, "d3": 255, "d5": 255, "d7": 255, "vr300": 255, "emailadress": [255, 390], "nutzerkontos": 255, "mykobol": 255, "kompfortabel": 255, "angefragt": [255, 501, 510], "emaildress": 255, "hexadezimalformat": 255, "lesend": [255, 314, 391, 443, 452, 470, 489, 511, 537, 563, 567, 591], "clean_room": [255, 456, 649], "roboterstatus": 255, "einnehm": 255, "roboterzustand": 255, "dezimal": [255, 502], "authentifizierungsverfahr": [255, 266], "alarmmeld": 255, "raumid": 255, "boundardyid": 255, "einzelraumrein": 255, "mapid": [255, 655], "extrahiert": [255, 628], "horend": 256, "portangab": 256, "1024": [256, 498, 499, 504, 646, 688], "1025": 256, "verbindungenanfrag": 256, "einzuschrank": 256, "http_acl": 256, "atribut": [256, 646], "ubersteuert": [256, 682], "verbindungskombination": 256, "herkoemm": 256, "7777": [256, 457], "7778": 256, "datenpaketinhalt": 256, "teststring": 256, "nc": [256, 282], "benutzerdatenstring": 256, "paketformat": 256, "logic_nam": 256, "uw": 256, "sag": 256, "welt": 256, "verlor": [256, 381, 519, 594, 596, 642], "9999": [256, 365], "integrating": [257, 335], "facilitating": 257, "paired": 257, "bridge_ip": 257, "bridge_port": 257, "bridge_api_tok": 257, "q1w2e3": 257, "authentification": [257, 612], "configuring": [257, 352], "figured": 257, "declar": [257, 325, 326], "unlatch": 257, "uncalibrated": 257, "unlocking": 257, "unlatched": 257, "unlatching": 257, "254": [257, 298, 389, 419, 420], "hold": [257, 282, 283, 315, 378], "soon": 257, "mynukilock": 257, "mylockstat": 257, "123456789": 257, "mylockbattery": 257, "mylockaction": 257, "primary": 258, "uninterruptibl": [258, 259], "suppli": 258, "transf": [258, 368, 655], "upsc": 258, "your_ups_nam": 258, "networkupstool": [258, 459, 545, 550], "upsd": 258, "3493": [258, 459], "ups_it": 258, "nut_var": [258, 259], "variable_name_from_upsc": 258, "ol": [258, 259], "OB": [258, 259, 261, 461], "lb": [258, 259], "lowbattery": 258, "on_battery": [258, 259], "low_battery": [258, 259, 566], "diskstation": [258, 259], "distribut": 258, "engery": 258, "authenticated": [258, 259], "unterbrechungsfrei": 259, "stromversorgun": 259, "anwendungsbeispiel": 259, "deamon": [259, 405, 545, 550], "charging": [259, 367, 646], "chrg": 259, "vertrauenswurd": [259, 512], "ips": [259, 504, 524], "ortsdosisleist": [260, 460, 545, 558], "odl": [260, 460, 545, 558, 649], "\u00b5sv": [260, 460, 545, 558], "measuring": 260, "bfs": [260, 460, 545, 558, 649], "novel": 260, "datenschnittstell": [260, 460, 649], "datenschnittstelle_nod": [260, 460, 649], "imis": [260, 460, 545, 558], "geoportal": [260, 460, 545, 558], "sitepolicy": [260, 460, 545, 558], "986480": 260, "strahlungsdat": 260, "selecting": 260, "86949": 260, "windach": 260, "messstell": [260, 460], "091811461": 260, "international": [260, 460], "dez1419": 260, "copyrighted": 260, "bundesamt": [260, 460, 545, 558], "strahlenschutz": [260, 460, 545, 558], "willy": 260, "brandt": 260, "strass": 260, "38226": 260, "salzgitt": [260, 460], "deutschland": [260, 262, 460, 545, 558], "context": [260, 315, 643, 645], "downloadbereich": 260, "downloadbereich_nod": 260, "urheb": 260, "messnetz": 260, "vorsorg": 260, "urheberrechtsgesetz": 260, "urhg": 260, "hingewies": 260, "verbot": 260, "urheberbezeichn": 260, "allein": [260, 561], "beruh": 260, "anerkenn": 260, "urheberschaft": 260, "nichteinhalt": 260, "urheberrecht": 260, "durchsetz": 260, "massnahm": [260, 688], "ergreif": 260, "erkennt": 260, "nutzungsbeding": [260, 460, 545, 558], "internetangebot": 260, "technisch": [260, 319], "vorankund": 260, "angesicht": 260, "sensibilitat": 260, "themas": 260, "bittet": 260, "darum": 260, "sachlich": 260, "fachlich": 260, "erklar": [260, 323], "wissenschaft": [260, 262], "hintergrundwiss": 260, "originalitat": 260, "verifiziert": [260, 423], "betriebsbereit": [260, 289], "unplausibl": 260, "messwert": [260, 306, 307, 313, 460, 530], "luck": [260, 295], "qualitatssicherungsmess": 260, "radioaktiv": [260, 670], "befestigt": 260, "storung": 260, "benachbart": 260, "industrieanlag": 260, "peak": [260, 502, 655], "amplitud": 260, "bewirk": 260, "menupunkt": 260, "messwertinterpretation": 260, "langfrist": 260, "wartungsarbeit": 260, "sondentausch": 260, "sprung": [260, 314], "erdarbeit": 260, "umgebungsbeding": 260, "verursacht": 260, "messnetzpfleg": 260, "verleg": 260, "sondenstandort": 260, "abrupt": 260, "wessling": 260, "odl_station": 260, "091881441": 260, "odl_data_typ": 260, "radiation_terrestrial": 260, "value_terrestrial": [260, 460], "radiation_cosmic": 260, "dez1453": 260, "value_cosmic": [260, 460], "plz": [260, 460], "site_status": [260, 460], "site_status_text": [260, 460], "kid": [260, 460], "height_above_sea": [260, 460], "start_measur": [260, 460], "end_measur": [260, 460], "validated": [260, 460], "nuclid": [260, 460], "010620461": 260, "meddewad": 260, "radiaton": 260, "station_data": 260, "eindraht": 261, "einzelad": 261, "parasitar": [261, 461], "adern": 261, "zusatzspann": 261, "5v": [261, 278], "temperaturmess": 261, "feuchtigkeitsmes": 261, "akkuuberwach": 261, "kostengunst": 261, "ds2490": 261, "devtyp": 261, "usb_devic": 261, "04fa": 261, "2490": 261, "0660": 261, "flash": [261, 282, 652], "Sicher": 261, "busmast": [261, 461], "ds18b20": [261, 285, 337, 483, 545, 548, 643], "elabnet": 261, "bms": 261, "ths": 261, "lichtsensor": 261, "ams": 261, "ds2406": 261, "fach": 261, "ds2438": 261, "10v": 261, "datanab": 261, "d2pc": 261, "zweistell": 261, "orientiert": 261, "fc": [261, 363], "xxxxxxxxxxxx": 261, "8deaaa030000": 261, "busteilnehm": 261, "ow_alias": 261, "bathroom": 261, "gibtm": 261, "datenumwandl": 261, "alterbnativ": 261, "t9": [261, 461], "t10": [261, 461], "t11": [261, 461], "t12": [261, 461], "abfragezeit": [261, 461], "lichtintensitat": 261, "ix": 261, "ia": [261, 461, 646], "ox": 261, "oa": [261, 461], "vdd": [261, 461], "sensorversorg": 261, "ibutton": [261, 461], "bm": [261, 461], "2406": 261, "ibutton_hook": [261, 663], "onewiresampl": 261, "bm_ibutton": 261, "detektiert": [261, 314, 484], "geleert": [261, 330, 359], "sabotagealarm": 261, "ibutton_id": 261, "take_pictur": 261, "75172d000000": 261, "ib_gu": 261, "787d58130000": 261, "lux_outsid": 261, "lightintensity": 261, "8dd76b010000": 261, "humidity_outsid": 261, "input_water_leak": 261, "c6cc07000000": 261, "output_led1": 261, "led1": 261, "voltage_sensor": 261, "a9d76b010000": 261, "gerateklass": 261, "gecacht": [261, 460], "uvi": 262, "onecall": [262, 462], "airpollution": [262, 650], "kostenfrei": [262, 366], "datenabruf": 262, "altitud": [262, 321, 325, 599, 636], "hohenangab": 262, "meeresniveau": 262, "eto": 262, "klickt": [262, 289, 597, 638, 674], "zoom": [262, 652, 655], "prazis": 262, "softfail_precipitation": 262, "softfail_wind_gust": 262, "niederschlag": [262, 361, 365], "snow": 262, "windbo": [262, 462], "wind_gust": 262, "wind_speed": [262, 462], "kartenelement": 262, "owm_coord_x": 262, "owm_coord_y": 262, "owm_coord_z": 262, "match_string": 262, "grnd_level": 262, "sea_level": 262, "luftdruck": [262, 338, 365], "uvi_valu": 262, "datenfeld": 262, "bevorzugt": 262, "metrisch": 262, "hpa": [262, 338], "identifizi": [262, 512, 632], "kompletter_onecall_json": 262, "owm_raw_fil": 262, "past24h": 262, "gesamtmeng": 262, "morgig": 262, "vorhergesagt": [262, 311], "3h": [262, 288, 645], "uv": [262, 365], "textuell": [262, 674], "feels_lik": 262, "gefuhlt": [262, 338], "meereshoh": 262, "rh": [262, 337], "dew_point": 262, "taupunkt": [262, 337, 365, 599], "bewolk": 262, "regenmeng": 262, "schneemeng": 262, "niederschlagswahrschein": 262, "propability": 262, "precipitation": [262, 365], "sichtweit": [262, 365], "wind_deg": 262, "wetterbeding": 262, "gruppennam": 262, "extrem": [262, 653], "wetterbeschreib": 262, "nachttemperatur": 262, "moonris": [262, 360, 569, 580, 592, 599, 636], "moonset": [262, 360, 569, 580, 592, 599, 636], "morn": 262, "morgentemperatur": 262, "eve": 262, "abendtemperatur": 262, "realtiv": 262, "vorhersagedat": [262, 532], "kombini": 262, "durchnitt": 262, "pollution": [262, 653], "aqi": 262, "airqualityindex": 262, "no2": 262, "o3": [262, 461], "ozonwert": 262, "so2": 262, "pm2_5": 262, "partikel": 262, "5\u00b5m": 262, "pm10": 262, "10\u00b5m": 262, "nh3": 262, "_new": 262, "bereitet": 262, "clouds_new": [262, 462], "precipitation_new": [262, 462], "pressure_new": 262, "wind_new": 262, "temp_new": 262, "ortsdat": 262, "abfragezeitpunkt": 262, "gust": 262, "wetterkondition": 262, "adressiert": [262, 576], "listenelement": 262, "aggregiert": 262, "addiert": [262, 323], "zeitraum": [262, 418, 461, 475, 671], "zusammengesetzt": 262, "inkl": [262, 338, 347, 641, 674], "next6d": 262, "vorschau": 262, "next48h": 262, "past4d": 262, "ruckschau": 262, "past96h": 262, "minimalrw": 262, "next24h": 262, "next12h": 262, "12h": 262, "tageseintrag": 262, "rain_overview": 262, "as_of": 262, "owm_matchstring": 262, "rain_past_12h": 262, "past12h": 262, "rain_next_12h": 262, "visual_id": 262, "tagesangab": 262, "ubermorg": [262, 599, 634], "aggregierungsfunktion": 262, "sonneneinstrahl": 262, "rechnung": 262, "verlust": 262, "bod": 262, "relation": [262, 650], "bewasserungsbedarf": 262, "mtry": 262, "irrigation": 262, "edis": 262, "ifas": 262, "ufl": 262, "edu": 262, "pdffil": 262, "ae": 262, "ae45900": 262, "fao": 262, "x0490e": 262, "x0490e00": 262, "htm": [262, 688], "formel": [262, 573, 577], "sonnenstrahl": 262, "freien": 262, "anzuseh": 262, "nichtsdestotrotz": [262, 314], "sicht": 262, "behord": 262, "wetterdien": [262, 532, 545, 558, 665, 674], "landessprach": 262, "zugefugt": [262, 270, 271], "placebo": 262, "wurzel": 262, "entlang": 262, "schreibfehl": 262, "regnet": [262, 326], "schneit": 262, "schneien": 262, "zusatzinformation": [262, 285, 371], "owm_match_prefix": 262, "forecast_daily1_no_prefix": 262, "adressing": [262, 643, 654], "tomorrows": 262, "forecast_daily1_with_prefix": 262, "compiled": [262, 278, 309], "temp_night": 262, "inheriting": 262, "currently_plus_1h": 262, "forecast_hourly": 262, "currently_plus_2h": 262, "currently_plus_3h": 262, "currently_plus_4h": 262, "currently_plus_5h": 262, "currently_plus_6h": 262, "currently_plus_7h": 262, "currently_plus_8h": 262, "currently_plus_9h": 262, "currently_plus_10h": 262, "currently_plus_11h": 262, "currently_plus_12h": 262, "currently_plus_13h": 262, "currently_plus_14h": 262, "currently_plus_15h": 262, "currently_plus_16h": 262, "currently_plus_17h": 262, "currently_plus_18h": 262, "currently_plus_19h": 262, "currently_plus_20h": 262, "currently_plus_21h": 262, "currently_plus_22h": 262, "currently_plus_23h": 262, "currently_plus_24h": 262, "currently_plus_25h": 262, "currently_plus_26h": 262, "currently_plus_27h": 262, "currently_plus_28h": 262, "_openweathermap": 262, "currently_plus_29h": 262, "currently_plus_30h": 262, "currently_plus_31h": 262, "currently_plus_32h": 262, "forecast_daily": 262, "today_plus_1d": 262, "today_plus_2d": 262, "today_plus_3d": 262, "today_plus_4d": 262, "today_plus_5d": 262, "today_plus_6d": 262, "today_plus_7d": 262, "historics": 262, "historical_daily": 262, "today_minus_1d": 262, "today_minus_2d": 262, "today_minus_3d": 262, "today_minus_4d": 262, "today_minus_5d": 262, "currently_minus_1h": 262, "forecasted": [262, 655], "astimezon": 262, "metric": [262, 462], "imperial": [262, 462], "perception": 262, "atmospheric": 262, "varying": 262, "droplet": 262, "condens": 262, "dew": [262, 599], "unitsdefault": 262, "cloudiness": 262, "metr": 262, "meteorological": 262, "weather_id": 262, "weather_main": 262, "weather_description": 262, "weather_icon": [262, 479], "bedarfsgerecht": 262, "bewassert": 262, "wasserbedarf": 262, "bewasserungsventil": 262, "abgab": 262, "tageswassermeng": 262, "abzuschalt": 262, "logischerweis": 262, "gut_feeling_for_irrigation": 262, "ranging": 262, "irrigation_valve1": 262, "evaporation": 262, "exposure_factor": 262, "lightly": 262, "shady": 262, "greenhous": 262, "half": 262, "covered": 262, "roof": [262, 645], "flowrate_l_per_min": 262, "area_in_sqm": 262, "crop_coefficient": 262, "crop": 262, "plant_density": 262, "planted": 262, "apart": 262, "gut_feeling": 262, "schedule_second": 262, "todays_water_demand_in_l": 262, "remaining_tim": 262, "exposur": 262, "shading": 262, "reflection": 262, "droughty": 262, "areas": 262, "past_12h": 262, "next_12h": 262, "bush": 262, "drain": 262, "transported": 262, "irrigated": 262, "effectivity": 262, "coefficient": 262, "dens": 262, "tweak": [262, 318, 645, 646, 651], "feeling": 262, "yard": 262, "valve_1": 262, "irrigation_weekly": 262, "bewassungsventil": 262, "automt": 262, "irrigation_valve2": 262, "weeks_water_demand_in_l": 262, "day_past3": 262, "day_past2": 262, "day_past1": 262, "day_past0": 262, "day_next1": 262, "day_next2": 262, "day_next0": 262, "past_4d": 262, "next_3d": 262, "next3d": 262, "valve_2": 262, "backyard": 262, "dazustell": 262, "conditions_as_of": 262, "zeitversatz": 262, "mez": 262, "mesz": 262, "abfragewert": 262, "standardwidget": 263, "intstamp": [263, 585, 655], "logrotation": [263, 585], "data_fil": [263, 294], "_at_": 263, "lowlimit": [263, 577, 655], "highlimit": [263, 577, 655], "exclud": [263, 655, 677], "exclude_valu": [263, 575], "mylogname1": 263, "logtofil": 263, "filepatt": 263, "mylogname2": 263, "yearly_log": 263, "auswirk": [263, 265, 289, 566, 573], "schreibvorgang": [263, 351, 393, 522], "systemlogg": 263, "olog": 263, "olog_rul": 263, "olog_txt": 263, "olog_level": 263, "text1": 263, "text2": 263, "grossschreib": 263, "loggend": [263, 583], "untensteh": 263, "kompatibilitatsgrund": [263, 323], "lowlim": [263, 655], "highlim": [263, 655], "pnam": [263, 575, 577, 655], "aktuel": 263, "ssssss": 263, "grenzwert": [263, 328, 347, 575], "logtext": [263, 593, 641, 648], "bar1": 263, "bar2": 263, "bar3": 263, "t1": 263, "t2": 263, "doesnotexist": 263, "bar4": 263, "decreased": 263, "bar5": 263, "datalog": [263, 463, 545, 554, 585, 641, 646, 655, 671], "logleveleintrag": 263, "some_logic": 263, "level_keyword": 263, "farbmarkier": 263, "autoblind": [263, 338, 545, 554, 641], "inspiriert": 263, "sourcecod": [263, 645, 671], "klimaanlag": [265, 465, 545, 548], "panasonic": [265, 465, 545, 548], "etherea": 265, "gestell": 265, "pcomfortcloud": 265, "releast": [265, 354], "aktuelll": 265, "anmeldeverfahr": [265, 456], "unterververzeichnis": 265, "air_condition": 265, "anlag": [265, 414, 630], "pcc_index": 265, "numerier": 265, "temp_insid": 265, "swing_hor": 265, "swing_vert": 265, "hal": [265, 566], "identifizier": [266, 349, 351, 632], "kopplung": [266, 349], "kopplungsprozess": 266, "anmeldedat": 266, "philips_tv_rx_key": 266, "philips_tv_tx_key": 266, "ambilightstat": 266, "ambilight_stat": [266, 466], "powerstate_info": 266, "powerstateinfo": [266, 466], "power_off": [266, 281], "ambilight": [266, 655], "ambiant": 266, "ambilight_hu": [266, 466], "lx87": [267, 467], "lx77": [267, 467], "lx57": [267, 467], "1223": [267, 467], "1123": [267, 467], "baudrat": [267, 334, 341, 381, 517, 650], "bytesiz": [267, 334], "parity": [267, 334], "stopbit": [267, 334], "8102": [267, 467], "pirateweath": [268, 468, 545, 558, 655], "pirat": [268, 468], "abzuruf": [268, 313, 434, 536], "wetter_piratewthr": 268, "piratewthr_": 268, "rasplex": [269, 469, 545, 550], "openelec": 269, "xbmc": [269, 646, 666, 671], "frodo": 269, "displaytim": 269, "6000": [269, 469, 622], "plex_host": 269, "plex_port": 269, "3005": [269, 298, 469], "informational": [269, 296], "dong": [269, 296], "nfront": 269, "ap310": [270, 271, 470, 545, 550], "interfall": 270, "bytord": [270, 271], "korrrigiert": [270, 271], "versionspruf": [270, 271], "curentunitmod": [270, 271], "manualbypass": [270, 271], "currentunitmod": [270, 271], "awaymod": [270, 271], "repariert": [270, 271], "pluggit_convert": [270, 271], "sodass": [270, 271, 333, 412, 594], "vernunft": [270, 271], "wochenprogramm": [270, 271], "prowl_event": 272, "prowl_text": 272, "typ2": 272, "prowl_valu": 272, "typ3": 272, "prowl_swap": 272, "wertbezog": 272, "mitgeb": 272, "abweicht": [272, 679], "intrusion": [272, 663], "yourvisu": 272, "tumbl": 272, "qwerqw": 272, "instruction": [273, 335, 650], "magic": [273, 363], "migrated": [273, 644, 646, 649], "convention": [273, 353, 651, 652, 656], "dependecy": 273, "globally": [273, 274, 645, 653], "defaul": [273, 274], "desired": [273, 296, 623], "myself": 273, "moth": 273, "x28d7ajfx13": 273, "teddy": 273, "eifel": 273, "tow": 273, "eiffelturm": 273, "85837": 273, "294481": 273, "17z": 273, "3m1": 273, "4b1": 273, "4m2": 273, "1s0x47e66e2964e34e2d": 273, "0x8ddca9ee380ef7e0": 273, "milk": 273, "egg": 273, "salt": 273, "iden": 273, "ios": 274, "attach": 274, "emergency": 274, "retried": 274, "ton": [274, 282, 283, 381, 527], "choic": [274, 645], "supplementary": 274, "attachment": 274, "e6653": 274, "tfeldmann": 275, "prototyp": [275, 474, 545, 548], "teufel": [275, 276, 474, 475, 545, 548], "compontent": 275, "mp3": [275, 314], "bremenvi": 275, "akacast": 275, "akamaistream": 275, "234437": 275, "gnl": 275, "horzon": 275, "raumfeld": [276, 475, 545, 548, 645, 649, 655], "raumserv": [276, 475, 545, 548], "multiraum": 276, "chrid": 276, "rf_hostip": 276, "rf_hostport": 276, "rf_power_state_kuech": 276, "rf_renderer_nam": 276, "rf_attr": [276, 649], "power_stat": [276, 475], "rf_scop": 276, "rf_volume_kuech": 276, "set_volum": [276, 475], "unmut": 276, "togglemut": 276, "rf_set_mute_kuech": 276, "set_mut": [276, 475], "zone_kuech": 276, "rf_play_state_kuech": 276, "play_stat": [276, 475], "tracknum": 276, "rf_load_playlist_kuech": 276, "load_playlist": [276, 475], "rf_load_track_kuech": 276, "load_track": [276, 475], "mediainfo": 276, "rf_mediainfo_kuech": 276, "get_mediainfo": [276, 475, 649], "spiel": [276, 314, 331, 504, 688], "auseinandergehalt": 276, "speaker1": 276, "rfpower_stat": 276, "speaker2": 276, "rf_power_stat": 276, "rf_zone_nam": 276, "rf_room_nam": 276, "rf_scoop": 276, "rf_volume_level": 276, "volume_level": 276, "zone_bad_kuech": 276, "rf_media_uri": 276, "loaduri": 276, "rf_media_playlist": 276, "loadplaylist": 276, "hanrdwar": 277, "433": [277, 278, 476, 477, 545, 548, 653], "mhz": [277, 278, 476, 477, 545, 548, 653], "brennenstuhl": [277, 278, 476, 477, 545, 548, 648, 653], "rcs": [277, 278, 476, 477, 545, 548, 648, 653], "rcs1000": 277, "rcs1000n_gpio": 277, "rcs1000n_sendduration": 277, "schaltsteckdose1": 277, "funkstedos": 277, "rcs_systemcod": 277, "11010": 277, "rcs_buttoncod": 277, "433mhz": 278, "setups": [278, 331, 649], "vcc": 278, "gnd": 278, "ground": 278, "atad": 278, "recomm": 278, "ant": 278, "drogon": 278, "raspiprojekt": 278, "showall": 278, "r10r": 278, "slightly": [278, 646, 655], "cpp": 278, "wiringpisetup": 278, "wiringpisetupsys": 278, "our": [278, 288], "systemcod": [278, 476], "argv": 278, "unitcod": 278, "atoi": 278, "printf": [278, 367, 586], "myswitch": 278, "enabletransmit": 278, "switchon": 278, "switchoff": 278, "schaltung": [278, 347, 519], "funksteckdos": [278, 476, 477, 545, 548], "granted": 278, "11111": [278, 476, 477], "proceeding": 278, "exportgpio17": 278, "gpio17": 278, "666": 278, "executabl": 278, "rcswitch_dir": 278, "rcswitch_sendduration": 278, "rcswitch_host": [278, 643], "rcswitch_us": 278, "rcswitch_password": 278, "intended": 278, "shooting": 278, "switching": [278, 301, 342, 646], "reliabl": 278, "gap": 278, "serval": 278, "gernerating": 278, "jam": 278, "rc_devic": 278, "rc_cod": 278, "basement": 278, "rcpowerplug": 278, "misconfiguration": 278, "discussion": 278, "39094": 278, "howto": [278, 325], "datenlogg": 279, "frischwasserwarmetausch": 279, "cosmo": 279, "solarregel": 279, "resol_sourc": 279, "0x7821": 279, "resol_destination": 279, "0x0010": 279, "resol_command": 279, "0x0100": 279, "temperature_soll": 279, "resol_offset": 279, "resol_bitus": 279, "resol_factor": 279, "temperatur_2": 279, "waermemeng": 279, "256": [279, 500], "256000": 279, "256000000": 279, "0x7721": 279, "sensordefektmask": 279, "temperatur_1": 279, "kollektor": 279, "resol_issigned": [279, 651], "daniel": [279, 667], "wippermann": 279, "bitmask": 279, "rsc": 279, "install_dir": 279, "servicecent": 279, "vbus": [279, 478, 545, 550], "resol_2": 279, "0xaa": 279, "0x10": 279, "0x20": 279, "0x30": 279, "0x1047": 279, "renamed": [280, 341, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 656, 691], "remotestart_1": [280, 656], "rstart_path": [280, 656], "collission": 280, "gardena": [280, 645], "flymo": [280, 645], "mcculloch": [280, 645], "robotic": [280, 645], "lawnmow": [280, 645], "hx": [280, 479, 545, 550, 645], "robo": 281, "bluez": [281, 297], "operating": [281, 521, 598], "socket_typ": 281, "socket_addr": 281, "socket_port": 281, "doocumentation": 281, "roombas": 281, "robotiklubi": 281, "_media": 281, "kursused": 281, "roomba_sumo": 281, "failid": 281, "hacking_roomba": 281, "diy": 281, "buy": 281, "ft41": 281, "blueroom": 281, "fussel": 281, "tronic": 281, "77": [281, 314], "wich": 281, "roomba_cmd": 281, "driving": [281, 344, 516], "forward": 281, "100mm": 281, "spin_left": 281, "spin_right": 281, "roomba_get": 281, "think": 281, "explaining": 281, "roomba_raw": 281, "test_sc": 281, "spin": 281, "137": 281, "button_clean": 281, "buttons_clean": [281, 480], "angl": [281, 480, 655], "buttons_max": [281, 480], "buttons_spot": [281, 480], "buttons_pow": [281, 480], "remote_opcod": [281, 480], "dirt_detect_right": [281, 480], "dirt_detect_left": [281, 480], "motor_overcurrent_side_brush": [281, 480], "motor_overcurrent_vacuum": [281, 480], "motor_overcurrent_main_brush": [281, 480], "motor_overcurrent_drive_left": [281, 480], "virtual_wall": [281, 480], "cliff_right": [281, 480], "cliff_front_right": [281, 480], "cliff_front_left": [281, 480], "cliff_left": [281, 480], "bumps_wheeldrops_bump_right": [281, 480], "bumps_wheeldrops_bump_left": [281, 480], "bumps_wheeldrops_wheeldrop_right": [281, 480], "bumps_wheeldrops_wheeldrop_left": [281, 480], "bumps_wheeldrops_wheeldrop_cast": 281, "irobot": [282, 283, 284, 480, 481, 482, 545, 550], "roomba": [282, 283, 481, 482, 545, 550, 643, 655], "980": 282, "nickwaterton": [282, 284], "roomba980": [282, 284], "verzeichniss": 282, "herrunterlad": 282, "rooomba_980": 282, "getpassword": [282, 481, 482], "robii": 282, "plays": [282, 294], "sku": [282, 283], "r980040": 282, "123456789013456": 282, "f0": 282, "8c": 282, "b5": 282, "cap": 282, "carpetboost": 282, "pp": 282, "langota": 282, "binfulldetect": 282, "ota": [282, 283], "multipass": 282, "edg": 282, "svcconf": [282, 283], "abcd": 282, "efggdban": 282, "staubsaug": [282, 283, 367, 456, 480, 481, 482, 533, 545, 550], "roombapassword": [282, 283], "status_batteri": [282, 284, 482], "status_bin_full": 282, "status_cleanmissionstatus_phas": 282, "status_cleanmissionstatus_error": 282, "roomba_uzsu": 282, "urlaub": 282, "uzsu_start": 282, "uzsu_stop": 282, "uzsu_dock": 282, "pschmitt": [283, 284], "roombapy": [283, 284, 655], "31f4072471914530": 283, "e7": 283, "DA": 283, "b2": 283, "robot_nam": 283, "harry": [283, 284], "e619240": 283, "capabiliti": [283, 368, 655], "31xxxxxxxxxxxxxx": 283, "bildschirm": [283, 527, 632], "hear": 283, "wi": [283, 292, 359], "fi": [283, 292, 359], "flashing": 283, "1yyyyyyyyyyyyyyyyyyyyyyyyyy": 283, "baut": 283, "eingeleitet": 283, "Ich": [283, 370], "yyy": 283, "zzz": 283, "staubsaugrobot": 284, "m6": 284, "mop": 284, "paho": [284, 656], "orjson": 284, "pacifica15": [284, 545, 550], "e6": 284, "roombapysh": [284, 545, 550, 655], "isconnected": 284, "clienterror": 284, "client_error": [284, 482], "missionerror": 284, "error_cod": [284, 482], "missionerrormessag": 284, "error_messag": [284, 482], "mission_stat": [284, 482], "evac": [284, 482], "locat": [284, 482], "battery_cycl": 284, "bat_ccount": [284, 482], "Bin": 284, "bin_present": [284, 482], "bin_full": [284, 482], "dock_known": [284, 482], "missionstatus": 284, "missionstatus_cycl": [284, 482], "missionstatus_phas": [284, 482], "missionstatus_error": [284, 482], "missionstatus_starttim": [284, 482], "expiretim": 284, "missionstatus_expiretim": [284, 482], "initiator": 284, "missionstatus_initiator": [284, 482], "missionstatus_runtim": [284, 482], "cliff": 284, "run_ncliff": [284, 482], "panics": 284, "run_npanics": [284, 482], "scrub": 284, "run_nscrub": [284, 482], "run_tim": [284, 482], "mission": 284, "mission_total": [284, 482], "mission_ok": [284, 482], "err": [284, 649], "mission_err": [284, 482], "lastcommand": 284, "lastcommand_command": [284, 482], "lastcommand_tim": [284, 482], "lastcommand_initiator": [284, 482], "scene_robo_vac_clean": 284, "text_question_mark": 284, "scene_robo_vac_cleaner_charging": 284, "scene_robo_vac_cleaner_activ": 284, "scene_robo_vac_cleaner_paused": 284, "scene_robo_vac_cleaner_dock": 284, "scene_robo_vac_cleaner_attention": 284, "766": 284, "f00": [284, 294], "ff0": 284, "0f0": 284, "3b": [285, 310], "verkabel": 285, "leitungsanschluss": 285, "activating": [285, 629], "pullup": [285, 412, 645], "dtoverlay": 285, "w1": [285, 483, 585], "gpiopin": 285, "therm": 285, "kompf": 285, "pionewiremini": 285, "konfigruation": 285, "dirnam": 285, "rpi1wire_id": 285, "sensoradress": [285, 461, 483], "yyyyyyyyyyyy": [285, 461, 483], "rpi1wire_sys": 285, "triggerit": 285, "someit": [285, 347], "somelist": 285, "somecount": 285, "someupdat": 285, "mytemperatur": 285, "rpi_temp1": 285, "0215018970ff": 285, "sensor_list": 285, "sensor_count": 285, "pluginparamet": 286, "weitverbreitet": 287, "aufzuzeichn": [287, 295, 490], "weiterzugeb": 287, "librrd": [287, 667], "libpython3": 287, "werkzeug": 287, "datenprotokollier": 287, "grafiktool": 287, "stattgefund": [287, 330], "anderungszeit": [287, 326, 332, 396], "analysefunktionalitat": 287, "datenbankfunktion": [287, 674], "datenaufbereit": 287, "zeitintervall": [287, 396, 434, 443, 504], "endzeitpunkt": [287, 347, 460], "verschieb": [287, 450, 569, 592], "intervallein": 287, "rrd_min": 287, "rrd_max": 287, "rrd_typ": 287, "durchschnittstemperatur": [287, 573], "regulator": [288, 646], "default_kp": 288, "proportional": 288, "gain": [288, 355, 453], "default_ki": 288, "defaultboosttim": 288, "defaultonexpiredtim": 288, "lot": [288, 298, 643, 653, 670], "custumiz": 288, "measured": 288, "floor": 288, "setpoint": [288, 643], "mulipl": 288, "imagin": 288, "predefinied": 288, "finding": [288, 646, 655], "enough": [288, 294], "reduction": 288, "importent": 288, "survic": 288, "achiev": [288, 294], "contin": 288, "52734a030000": 288, "frontdoor": 288, "room1": 288, "52432a030000": 288, "triggerd": [288, 650], "src_it": 288, "src_item_nam": 288, "extracted": [288, 649], "src_item_part": 288, "isnumeric": 288, "edt": 288, "sv_img": [288, 566, 682, 683], "sani_heating": [288, 682], "sv_overview": 288, "sv_heading_left": 288, "bz1": 288, "boost_all_3h": 288, "sani_heating_temp": 288, "bz2": 288, "boost_all_5h": 288, "5h": 288, "sv_heading_cent": 288, "nz1": 288, "default_all_0h": 288, "sv_heading_right": 288, "dz1": 288, "drop_all_3h": 288, "dz2": 288, "drop_all_5h": 288, "0d": [288, 329], "0m": 288, "elso": 288, "abgestimmt": 289, "rtr2_id": 289, "test_rtr": 289, "dusch": 289, "hierdurch": 289, "ist_temp": [289, 338], "stellwert": [289, 487, 653], "5001": [289, 434], "soll_temp": [289, 338], "frost": [289, 487, 652], "vielmehr": 289, "Wegen": 289, "heizenergi": 289, "spar": [289, 329], "griff": 289, "rtr2_function": 289, "comfort_mod": [289, 487], "standby_mod": [289, 487], "night_mod": [289, 487, 504], "frost_mod": [289, 487], "hvac_mod": 289, "heating_status": [289, 487], "lock_status": [289, 487], "temp_actual": [289, 487], "control_output": [289, 487], "setting_temp_comfort": [289, 487], "setting_temp_standby": [289, 487], "setting_temp_night": [289, 487], "setting_night_reduction": [289, 487], "setting_standby_reduction": [289, 487], "setting_fixed_reduction": [289, 487], "setting_temp_frost": [289, 487], "heizt": [289, 682], "rtr_setting": 289, "rtr2_controller_setting": [289, 653], "erledigt": 289, "rtr2_setting": 289, "temperaturreduktion": [289, 487], "fixed_reduction": 289, "weglass": [289, 589], "bedien": [289, 294, 328, 622], "greift": [289, 314], "schrittgross": 289, "verstell": 289, "visu_heiz": 289, "raumtemperaturregl": 289, "kurv": 289, "beschrift": 289, "ist_estrich": 289, "estrich": 289, "rtrs": [289, 653], "rio": [290, 665], "trebl": [290, 488, 504], "turnonvolum": [290, 488], "currentsourc": [290, 488], "loudness": [290, 488, 504], "partymod": [290, 488, 504], "donotdisturb": [290, 488], "disturb": 290, "keyreleas": 290, "aditional": 290, "dg": 290, "bedroom": 290, "gen1": [291, 293, 489], "mpatibility": 291, "relays": [291, 293, 337], "tilt": [291, 293], "vibration": [291, 293, 527], "illumination": [291, 293], "flood": [291, 293], "temperature_f": [291, 293], "vebund": [291, 337], "accesspoint": 292, "versetz": 292, "steck": [292, 331], "versetzt": [292, 406], "xxxxxx": 292, "hauptmenu": 292, "connectivity": [292, 420, 623, 649], "rekonfiguration": 292, "shelly": [293, 545, 548, 643, 645, 648, 649, 655, 656, 693], "shelly1": [293, 489], "pm": [293, 489], "shelly2": [293, 489], "shelly4pro": [293, 489], "shelly_id": 293, "shelly_typ": 293, "shelly_attr": 293, "experimentell": 293, "gen3": 293, "mini1g3": 293, "2pm": 293, "button1": 293, "window2": 293, "durchgeh": [293, 490], "batteriebetrieb": 293, "schlaf": [293, 682], "leg": [293, 323], "devicess": 293, "shelly_group": 293, "ubermitteln": 293, "vorgegang": [293, 306, 307], "besitzt": 293, "test_it": [293, 638], "shelly_list_attr": 293, "zusatzinfo": 293, "schweig": 293, "shellyplus": 293, "list_attr": 293, "80646fe38450": 293, "apow": 293, "energy_by_minut": 293, "temp_f": 293, "485519db1e1d": 293, "act_reason": 293, "input_event": [293, 489], "bezeichn": [293, 306, 307, 407, 496, 523], "unterschid": 293, "vereinheitlich": 293, "shellyplusht": 293, "80646fcbb6c8": 293, "beobacht": [293, 328], "unbehandelt": 293, "snsn": 293, "0013a": 293, "plusht": 293, "devicepow": 293, "handle_gen2_device_status": 293, "ds1": 293, "gepostet": [293, 491], "attribt": 293, "shellyplug_s": 293, "shellyht": [293, 489], "shellyflood": [293, 489], "shellyplusplug_s": 293, "shally_id": 293, "plug1": 293, "Mein": 293, "040bd0": 293, "energieverbrauch": [293, 337], "simulating": 294, "constantly": [294, 652], "upon": [294, 352, 649], "someon": [294, 368], "sim": [294, 295, 360], "tracked": 294, "supportet": 294, "adminstrativ": 294, "tank": [294, 295, 338, 490], "grow": 294, "15th": 294, "advanc": 294, "gaps": 294, "changing": [294, 341, 355, 646, 648, 653, 655], "stamps": 294, "anwesenheitssimulation": 294, "lamp_sim": 294, "0b0": 294, "a4a4a4": 294, "fa3": 294, "bf00ff": 294, "rowspan": 294, "p_tank1": 294, "cylind": 294, "0c0": 294, "audio_stop": 294, "audio_rec": 294, "h1": 294, "time_clock": 294, "p_sim01": 294, "zf": 294, "lamp_gre": 294, "p_sim02": 294, "lamp_off": 294, "p_sim03": 294, "p_sim04": 294, "p_sim05": 294, "p_sim_t": 294, "p_sim06": 294, "p_sim07": 294, "p_sim08": 294, "lamp_orang": 294, "p_sim09": 294, "lamp_red": 294, "p_sim10": 294, "lamp_purpl": 294, "p_simbtn04": 294, "p_simbtn05": 294, "p_simbtn06": 294, "p_simstat": 294, "tue": [294, 295, 569, 592], "tobias": [294, 295], "nextday": [294, 295, 642], "depenging": [294, 295], "aufnahm": [295, 545, 554], "aktionsreihenfolg": [295, 545, 554], "eventfil": 295, "stopp": [295, 328], "visualier": 295, "betragt": [295, 322, 328, 351], "uhrzeitmass": 295, "eventprotokoll": 295, "stoppt": [295, 314, 416, 453, 479, 481], "aufzeichnungsdatei": 295, "abgespielt": [295, 314, 453, 504, 527], "zuend": 295, "VOR": 295, "springt": [295, 453], "schaubild": 295, "statusander": 295, "diagram": 295, "slackinstanc": 296, "ghi": 296, "posting": 296, "workspac": [296, 491], "your_team": 296, "webhook": 296, "slackinstance_1": 296, "workspaceyourteam": 296, "slackinstance_2": 296, "workspaceanotherteam": 296, "jkl": 296, "mno": 296, "pqr": 296, "another_team": 296, "a0f7xduaz": 296, "front": [296, 305], "otherchannel": 296, "differentchannel": 296, "underlin": 296, "emojis": 296, "multilin": [296, 643], "visit": [296, 312, 352, 353, 355, 356, 357], "sufficient": 296, "plugn": 296, "gobject": 297, "dbus": 297, "scanning": 297, "sma001d": 297, "213000xxxx": 297, "sn213000xxxx": 297, "hci0": 297, "requestpincod": 297, "3070": 297, "dev_bt_addr_underscor": 297, "trusted": 297, "sunnyboy": [297, 492, 545, 550], "5000tl": [297, 492, 545, 550], "sunny": [297, 299, 300, 492, 545, 550], "tripow": [297, 492, 545, 550], "8000tl": [297, 492, 545, 550], "12000tl": [297, 492, 545, 550], "58": 297, "allowed_timedelta": 297, "accessing": [297, 643], "plugin_activ": [297, 492], "feeding_power_in_w": 297, "ac_p_total": [297, 492], "daily_yield_in_wh": 297, "e_day": [297, 492], "total_yield_in_wh": 297, "e_total": [297, 492], "inv_serial": [297, 492], "mac_address": [297, 504], "inv_address": [297, 492], "last_update_of_data": 297, "dc_power_string1_in_w": 297, "dc_string1_p": [297, 492], "dc_power_string2_in_w": 297, "dc_string2_p": [297, 492], "dc_voltage_string1_in_v": 297, "dc_string1_u": [297, 492], "dc_voltage_string2_in_v": 297, "dc_string2_u": [297, 492], "dc_current_string1_in_a": 297, "dc_string1_i": [297, 492], "dc_current_string2_in_a": 297, "dc_string2_i": [297, 492], "operating_time_in_s": 297, "operating_tim": [297, 492], "feeding_time_in_s": 297, "feeding_tim": [297, 492], "grid_frequency_in_hz": 297, "grid_frequency": [297, 492], "inverter_status": 297, "relais_status": 297, "grid_relay": [297, 492], "sw_version": [297, 492], "agreement": 298, "florian": 298, "weng": 298, "datenschuft": [298, 545, 550], "1030610": 298, "sma_": [298, 545, 550, 643, 646], "datagram": 298, "eb": 298, "page_id": 298, "smaem": 298, "speedwire_version": 298, "speedwir": [298, 300, 494, 545, 550, 649], "sma_em_data_typ": 298, "psupply": 298, "supply_unit": 298, "psupplyunit": 298, "pconsum": 298, "consume_unit": 298, "pconsumeunit": 298, "supply_count": 298, "psupplycount": 298, "supply_counter_unit": 298, "psupplycounterunit": 298, "consume_count": 298, "pconsumecount": 298, "consume_counter_unit": 298, "pconsumecounterunit": 298, "cosphi": [298, 493, 674], "cosphi_unit": 298, "cosphiunit": 298, "consume_activ": 298, "supply_activ": 298, "ssupply": 298, "ssupply_unit": 298, "ssupplyunit": 298, "ssupply_count": 298, "ssupplycount": 298, "ssupply_counter_unit": 298, "ssupplycounterunit": 298, "sconsum": 298, "sconsume_unit": 298, "sconsumeunit": 298, "sconsume_count": 298, "sconsumecount": 298, "sconsume_counter_unit": 298, "sconsumecounterunit": 298, "qsupply": 298, "qsupply_unit": 298, "qsupplyunit": 298, "qsupply_count": 298, "qsupplycount": 298, "qsupply_counter_unit": 298, "qsupplycounterunit": 298, "qconsum": 298, "qconsume_unit": 298, "qconsumeunit": 298, "qconsume_count": 298, "qconsumecount": 298, "qconsume_counter_unit": 298, "qconsumecounterunit": 298, "p1supply": 298, "p1supply_unit": 298, "p1supplyunit": 298, "p1supply_count": 298, "p1supplycount": 298, "p1supply_counter_unit": 298, "p1supplycounterunit": 298, "p1consum": 298, "p1consume_unit": 298, "p1consumeunit": 298, "p1consume_count": 298, "p1consumecount": 298, "p1consume_counter_unit": 298, "p1consumecounterunit": 298, "s1supply": 298, "s1supply_unit": 298, "s1supplyunit": 298, "s1supply_count": 298, "s1supplycount": 298, "s1supply_counter_unit": 298, "s1supplycounterunit": 298, "s1consum": 298, "s1consume_unit": 298, "s1consumeunit": 298, "s1consume_count": 298, "s1consumecount": 298, "s1consume_counter_unit": 298, "s1consumecounterunit": 298, "q1supply": 298, "q1supply_unit": 298, "q1supplyunit": 298, "q1supply_count": 298, "q1supplycount": 298, "q1supply_counter_unit": 298, "q1supplycounterunit": 298, "q1consum": 298, "q1consume_unit": 298, "q1consumeunit": 298, "q1consume_count": 298, "q1consumecount": 298, "q1consume_counter_unit": 298, "q1consumecounterunit": 298, "i1_unit": 298, "i1unit": 298, "u1": 298, "u1_unit": 298, "u1unit": 298, "cosphi1": [298, 493, 674], "cosphi1_unit": 298, "cosphi1unit": 298, "p2supply": 298, "p2supply_unit": 298, "p2supplyunit": 298, "p2supply_count": 298, "p2supplycount": 298, "p2supply_counter_unit": 298, "p2supplycounterunit": 298, "p2consum": 298, "p2consume_unit": 298, "p2consumeunit": 298, "p2consume_count": 298, "p2consumecount": 298, "p2consume_counter_unit": 298, "p2consumecounterunit": 298, "s2supply": 298, "s2supply_unit": 298, "s2supplyunit": 298, "s2supply_count": 298, "s2supplycount": 298, "s2supply_counter_unit": 298, "s2supplycounterunit": 298, "s2consum": 298, "s2consume_unit": 298, "s2consumeunit": 298, "s2consume_count": 298, "s2consumecount": 298, "s2consume_counter_unit": 298, "s2consumecounterunit": 298, "q2supply": 298, "q2supply_unit": 298, "q2supplyunit": 298, "q2supply_count": 298, "q2supplycount": 298, "q2supply_counter_unit": 298, "q2supplycounterunit": 298, "q2consum": 298, "q2consume_unit": 298, "q2consumeunit": 298, "q2consume_count": 298, "q2consumecount": 298, "q2consume_counter_unit": 298, "q2consumecounterunit": 298, "i2_unit": 298, "i2unit": 298, "u2": 298, "u2_unit": 298, "u2unit": 298, "cosphi2": [298, 493, 674], "cosphi2_unit": 298, "cosphi2unit": 298, "p3supply": 298, "p3supply_unit": 298, "p3supplyunit": 298, "p3supply_count": 298, "p3supplycount": 298, "p3supply_counter_unit": 298, "p3supplycounterunit": 298, "p3consum": 298, "p3consume_unit": 298, "p3consumeunit": 298, "p3consume_count": 298, "p3consumecount": 298, "p3consume_counter_unit": 298, "p3consumecounterunit": 298, "s3supply": 298, "s3supply_unit": 298, "s3supplyunit": 298, "s3supply_count": 298, "s3supplycount": 298, "s3supply_counter_unit": 298, "s3supplycounterunit": 298, "s3consum": 298, "s3consume_unit": 298, "s3consumeunit": 298, "s3consume_count": 298, "s3consumecount": 298, "s3consume_counter_unit": 298, "s3consumecounterunit": 298, "q3supply": 298, "q3supply_unit": 298, "q3supplyunit": 298, "q3supply_count": 298, "q3supplycount": 298, "q3supply_counter_unit": 298, "q3supplycounterunit": 298, "q3consum": 298, "q3consume_unit": 298, "q3consumeunit": 298, "q3consume_count": 298, "q3consumecount": 298, "q3consume_counter_unit": 298, "q3consumecounterunit": 298, "i3_unit": 298, "i3unit": 298, "u3_unit": 298, "u3unit": 298, "cosphi3": [298, 493, 674], "cosphi3_unit": 298, "cosphi3unit": 298, "uninstall": 299, "plugin_yaml": 299, "smamodbus1": 299, "sma_mb": [299, 545, 550, 649, 653, 656], "si44": [299, 300], "reinschreib": [299, 300], "ladestand": [299, 456], "smamb_regist": [299, 300], "30005": 299, "30845": 299, "island": 299, "sma": [300, 493, 494, 545, 550, 646, 649, 655, 667, 670, 671, 674], "feldbus": [300, 494, 545, 550], "modbusprotokol": 300, "standardeinstell": [300, 314, 496, 595, 690], "herstellerseit": 300, "boy": 300, "sb3000tl": 300, "smamodbus": 300, "30057": 300, "smamb_datatyp": 300, "30201": 300, "30225": 300, "relais": [300, 334, 337, 489, 511, 646], "30217": 300, "ac_energy_total": 300, "30529": 300, "ac_energy_day": 300, "30535": 300, "time_work": 300, "30541": 300, "30775": 300, "s32": [300, 494], "smarttvs": 301, "25545": 301, "55000": [301, 495], "tv_version": 301, "classic": [301, 495, 641, 643, 644, 645, 649, 681, 691], "smarttv1": 301, "samsung_m_seri": [301, 495], "8001": [301, 495], "reduc": [301, 663], "instance_nam": [301, 669], "smarttv_id": 301, "separeted": 301, "key_mut": 301, "kikatv": 301, "key_ent": 301, "tv2": 301, "smarttv2": 301, "key_menu": 301, "key_up": 301, "key_down": 301, "key_left": 301, "key_right": 301, "key_volup": 301, "key_voldown": 301, "key_chdown": 301, "key_chup": 301, "key_prech": 301, "key_gre": 301, "key_yellow": 301, "key_cyan": 301, "key_adddel": 301, "key_sourc": 301, "key_info": 301, "key_pip_onoff": 301, "key_pip_swap": 301, "key_plus100": 301, "key_caption": 301, "key_pmod": 301, "key_ttx_mix": 301, "key_tv": 301, "key_picture_siz": 301, "key_ad": 301, "key_pip_siz": 301, "key_magic_channel": 301, "key_pip_scan": 301, "key_pip_chup": 301, "key_pip_chdown": 301, "key_device_connect": 301, "key_help": 301, "key_antena": 301, "key_convergenc": 301, "key_11": 301, "key_12": 301, "key_auto_program": 301, "key_factory": 301, "key_3speed": 301, "key_rsurf": 301, "key_aspect": 301, "key_topmenu": 301, "key_gam": 301, "key_quick_replay": 301, "key_still_pictur": 301, "key_dtv": 301, "key_favch": 301, "key_rewind": 301, "key_stop": 301, "key_play": 301, "key_ff": 301, "key_rec": 301, "key_paus": 301, "key_tool": 301, "key_instant_replay": 301, "key_link": 301, "key_ff_": 301, "key_guid": 301, "key_rewind_": 301, "key_angl": 301, "key_reserved1": 301, "key_zoom1": 301, "key_program": 301, "key_bookmark": 301, "key_disc_menu": 301, "key_print": 301, "key_return": 301, "key_sub_titl": 301, "key_clear": 301, "key_vchip": 301, "key_repeat": 301, "key_door": 301, "key_op": 301, "key_wheel_left": 301, "key_pow": 301, "key_sleep": 301, "key_dma": 301, "key_turbo": 301, "key_fm_radio": 301, "key_dvr_menu": 301, "key_mt": 301, "key_pcmod": 301, "key_ttx_subfac": 301, "key_ch_list": 301, "key_red": 301, "key_dni": 301, "key_sr": 301, "key_convert_audio_mainsub": 301, "key_mdc": 301, "key_seffect": 301, "key_dvr": 301, "key_dtv_signal": 301, "key_liv": 301, "key_perpect_focus": 301, "key_hom": 301, "key_esaving": 301, "key_wheel_right": 301, "key_content": 301, "key_vcr_mod": 301, "key_catv_mod": 301, "key_dss_mod": 301, "key_tv_mod": 301, "key_dvd_mod": 301, "key_stb_mod": 301, "key_caller_id": 301, "key_scal": 301, "key_zoom_mov": 301, "key_clock_display": 301, "key_av1": 301, "key_svideo1": 301, "key_component1": 301, "key_setup_clock_tim": 301, "key_component2": 301, "key_magic_bright": 301, "key_dvi": 301, "key_hdmi": 301, "key_w_link": 301, "key_dtv_link": 301, "key_app_list": 301, "key_back_mhp": 301, "key_alt_mhp": 301, "key_dns": 301, "key_rss": 301, "key_entertainment": 301, "key_id_input": 301, "key_id_setup": 301, "key_anynet": 301, "key_poweroff": 301, "key_poweron": 301, "key_anyview": 301, "key_m": 301, "key_mor": 301, "key_pannel_pow": 301, "key_pannel_chup": 301, "key_pannel_chdown": 301, "key_pannel_volup": 301, "key_pannel_voldow": 301, "key_pannel_ent": 301, "key_pannel_menu": 301, "key_pannel_sourc": 301, "key_av2": 301, "key_av3": 301, "key_svideo2": 301, "key_svideo3": 301, "key_zoom2": 301, "key_panorama": 301, "key_4_3": 301, "key_16_9": 301, "key_dynamic": 301, "key_standard": 301, "key_movie1": 301, "key_custom": 301, "key_auto_arc_reset": 301, "key_auto_arc_lna_on": 301, "key_auto_arc_lna_off": 301, "key_auto_arc_anynet_mode_ok": 301, "key_auto_arc_anynet_auto_start": 301, "key_auto_format": 301, "key_dnet": 301, "key_hdmi1": 301, "key_auto_arc_caption_on": 301, "key_auto_arc_caption_off": 301, "key_auto_arc_pip_doubl": 301, "key_auto_arc_pip_larg": 301, "key_auto_arc_pip_small": 301, "key_auto_arc_pip_wid": 301, "key_auto_arc_pip_left_top": 301, "key_auto_arc_pip_right_top": 301, "key_auto_arc_pip_left_bottom": 301, "key_auto_arc_pip_right_bottom": 301, "key_auto_arc_pip_ch_chang": 301, "key_auto_arc_autocolor_success": 301, "key_auto_arc_autocolor_fail": 301, "key_auto_arc_c_force_aging": 301, "key_auto_arc_usbjack_inspect": 301, "key_auto_arc_jack_ident": 301, "key_nine_seperat": 301, "key_zoom_in": 301, "key_zoom_out": 301, "key_mic": 301, "key_hdmi2": 301, "key_hdmi3": 301, "key_auto_arc_caption_kor": 301, "key_auto_arc_caption_eng": 301, "key_auto_arc_pip_source_chang": 301, "key_hdmi4": 301, "key_auto_arc_antenna_air": 301, "key_auto_arc_antenna_cabl": 301, "key_auto_arc_antenna_satellit": 301, "key_ext1": 301, "key_ext2": 301, "key_ext3": 301, "key_ext4": 301, "key_ext5": 301, "key_ext6": 301, "key_ext7": 301, "key_ext8": 301, "key_ext9": 301, "key_ext10": 301, "key_ext11": 301, "key_ext12": 301, "key_ext13": 301, "key_ext14": 301, "key_ext15": 301, "key_ext16": 301, "key_ext17": 301, "key_ext18": 301, "key_ext19": 301, "key_ext20": 301, "key_ext21": 301, "key_ext22": 301, "key_ext23": 301, "key_ext24": 301, "key_ext25": 301, "key_ext26": 301, "key_ext27": 301, "key_ext28": 301, "key_ext29": 301, "key_ext30": 301, "key_ext31": 301, "key_ext32": 301, "key_ext33": 301, "key_ext34": 301, "key_ext35": 301, "key_ext36": 301, "key_ext37": 301, "key_ext38": 301, "key_ext39": 301, "key_ext40": 301, "key_ext41": 301, "bindeglied": 302, "austauscht": 302, "generi": [302, 338, 354, 496, 507, 523, 682, 688, 689, 693], "nutzdatenprotoll": [302, 689], "zusammenspiel": [302, 573], "cleint": 302, "genri": 302, "az_licht": [304, 356, 357], "informmation": 304, "querydef": [304, 356, 357], "amgegeb": 304, "gz_licht": [304, 356, 357], "optical": [305, 653], "casis": 305, "ehz363z5": [305, 306, 307], "ehz363w5": [305, 306, 307], "ehm": [305, 306, 307], "ehz": [305, 306, 307, 641], "gw8": [305, 306, 307], "e2a": [305, 306, 307], "al1": [305, 306, 307], "few": 305, "consisting": 305, "sml_publicop": 305, "sml_getlist": 305, "consumed": 305, "obis": [305, 306, 307, 401, 497, 498, 499, 545, 548, 643, 649], "differently": 305, "knows": [305, 355, 512], "artikeldetail": 305, "metering": [305, 641], "129": [305, 306, 307, 434, 641], "199": [305, 306, 307], "serverid": [305, 306, 307], "tariff": 305, "assigning": [305, 644], "explicitely": 305, "unset": [305, 407], "objnam": [305, 306, 307, 497, 498, 499], "valtim": [305, 306, 307, 497, 498, 499], "signatur": [305, 306, 307, 497, 498, 499], "protect": 305, "valuereal": [305, 306, 307, 497, 498, 499], "unitnam": [305, 306, 307, 497, 498, 499], "kennzahl": [306, 307], "pycrc": [306, 307], "dlms": [306, 307, 545, 548, 641, 645, 648, 649, 650, 653, 655, 667, 671, 675], "crc": [306, 307, 498, 499, 643, 651, 652], "smlx": [306, 545, 548, 643, 649, 651, 652, 653, 655], "poly": [306, 307], "0x1021": [306, 307], "reflect_in": [306, 307], "xor_in": [306, 307], "0xffff": [306, 307], "reflect_out": [306, 307], "swap_crc_byt": [306, 307], "date_offset": [306, 307], "8210754": [306, 307], "integerzahl": [306, 307], "1839364": [306, 307], "560445": [306, 307], "56044": [306, 307], "fri": [306, 307, 569, 592], "oct": [306, 307], "1571384075": [306, 307], "1563173321": [306, 307], "nutzlos": [306, 307], "sml_obis": [306, 307], "einspeis": [306, 307], "anstatt": [306, 307, 323, 326, 641], "sml_prop": [306, 307], "statuswert": [306, 307, 375], "skalierungsfaktor": [306, 307, 478], "actualtim": [306, 307, 498, 499, 643], "dekodiert": [306, 307, 443], "statrun": [306, 307, 498, 499], "stillstand": [306, 307], "statfraudmagnet": [306, 307, 498, 499], "magnet": [306, 307], "statfraudcov": [306, 307, 498, 499], "statenergytotal": [306, 307, 498, 499], "energiefluss": [306, 307], "statenergyl1": [306, 307, 498, 499], "statenergyl2": [306, 307, 498, 499], "statenergyl3": [306, 307, 498, 499], "l3": [306, 307], "statrotaryfield": [306, 307, 498, 499], "drehfeld": [306, 307], "statbackstop": [306, 307, 498, 499], "backstop": [306, 307], "statcalfault": [306, 307, 498, 499], "kalibrationsfehl": [306, 307], "statvoltagel1": [306, 307, 498, 499], "statvoltagel2": [306, 307, 498, 499], "statvoltagel3": [306, 307, 498, 499], "iefert": [306, 307], "prufsummenbild": [306, 307], "holleydtz541": [306, 307], "buffersiz": [306, 307], "1500": [306, 307, 325, 652], "0x0000": [306, 307], "xor_out": [306, 307], "1563173307": [306, 307], "readthedocs": [308, 309], "tsap_serv": [308, 309], "0x200": [308, 309], "tsap_client": [308, 309], "0x100": [308, 309], "heizraum": [308, 309], "ist_temperatur": [308, 309], "logoheizraum": [308, 309], "soll_temperatur": [308, 309], "durchflusswaecht": [308, 309], "zirkulation_pump": [308, 309], "testlogo": [308, 309], "logot": [308, 309], "kompaktsteuer": 309, "plungin": 309, "beutzt": 309, "zxvf": 309, "arm_v7_linux": 309, "mk": 309, "arm_v7": 309, "libsnap7": 309, "logo1": 309, "logo_read": 309, "logo_writ": 309, "kosmet": 309, "hinzugefuegt": 309, "puresnmp": [310, 654], "anbeitet": 310, "gestestet": 310, "qnap": 310, "ts": [310, 434, 646], "2070": 310, "community": [310, 501, 651, 652, 654, 655, 656], "snmp_community": 310, "nas1": 310, "verknupf": [310, 325, 339, 340], "oid": [310, 501], "textstring": [310, 622], "bitstring": 310, "postion": 310, "adressenformat": 310, "cpu_temp": 310, "24681": 310, "cpu_usag": 310, "gebot": [310, 351], "befehlssatz": [310, 351], "solaretrag": 311, "solarforecast_attribut": 311, "energy_today": [311, 502], "date_today": [311, 502], "energy_tomorrow": [311, 502], "date_tomorrow": [311, 502], "niko": [312, 313, 665, 666, 667], "bernd": [312, 313, 355, 356, 357], "Meiners": [312, 313, 355, 356, 357], "klab": [312, 313], "christian": [312, 313], "michel": [312, 313], "fw2x": [312, 313], "photonensamml": [312, 313], "solarlog_datenformat": [312, 313], "sit": [312, 313, 334, 518, 612, 649, 688], "pdc": [312, 313], "_invert": 312, "_string": 312, "clarify": 312, "kwp": [312, 313], "anlagenkwp": [312, 313], "sollyearkwp": [312, 313], "inverter1": [312, 313], "isonlin": [312, 313], "inverter1_pac": [312, 313], "pac_0": [312, 313], "out_0": [312, 313], "string1": [312, 313], "string1_pdc": [312, 313], "pdc_0_0": [312, 313], "string1_udc": [312, 313], "udc_0_0": [312, 313], "string2": [312, 313], "string2_pdc": [312, 313], "pdc_0_1": [312, 313], "string2_udc": [312, 313], "udc_0_1": [312, 313], "w_gesamt_zaehl": [312, 313], "w_gesamt": [312, 313], "spannung_ac": [312, 313], "spannung_dc1": [312, 313], "wh_heut": [312, 313], "wh_gest": [312, 313], "wh_monat": [312, 313], "wh_jahr": [312, 313], "wh_gesamt": [312, 313], "109": [312, 313], "wp_generatorleist": [312, 313], "impli": 312, "confgured": 312, "protokolliergerat": 313, "zuruckgeb": 313, "umgebaut": 313, "geparst": [313, 401], "aufbereit": 313, "analysiert": [313, 316, 423], "variablennam": [313, 596], "sekundenstring": 313, "xmltodict": [314, 647], "tinytag": 314, "gtts": [314, 648], "basisframework": 314, "soco": [314, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655], "ifaddr": [314, 648], "appdir": [314, 652], "lxml": [314, 647, 652, 654, 655], "softwareversion": 314, "search_uid": 314, "aussgab": 314, "rincon_000f448c3392a01411": 314, "rincon_c7e91735d19711411": 314, "kinderzimm": [314, 339, 340], "rincon_xxxxxxxxxxxxxx": 314, "detektion": 314, "speaker_ips": 314, "performancegrund": 314, "strapaziert": 314, "discover_cycl": [314, 646], "basslautstark": 314, "group_command": 314, "koordinator": 314, "cross": 314, "indexposition": 314, "spiellang": 314, "x_dlna_seektim": 314, "x_dlna_seektracknr": 314, "abspielmodi": 314, "Einer": 314, "playbar": 314, "bestat": [314, 688], "household": 314, "kommendos": 314, "angewandt": 314, "start_aft": [314, 504], "sonos_attrib": 314, "clear_queu": [314, 504], "ladend": 314, "start_track": [314, 504], "lautstarkeabsenk": 314, "abgesenkt": 314, "erzwung": [314, 326, 332, 572], "play5": 314, "lautlos": 314, "nachtmodus": 314, "ungetestet": 314, "fort": 314, "repeat_all": 314, "shuffle_norepeat": 314, "shuffle_repeat_on": 314, "repeat_on": 314, "audiodateinam": 314, "tts": [314, 642], "local_webservice_path": 314, "audiodatei": 314, "local_webservice_path_snippet": 314, "mp4": 314, "ogg": 314, "wav": [314, 538, 545, 548], "snippet_volum": [314, 504], "laustark": [314, 453], "gewechselt": [314, 325], "snippet_fade_in": [314, 504], "tts_languag": [314, 504], "spracheinstell": 314, "tts_volum": [314, 504], "ansag": [314, 367, 504], "tts_fade_in": [314, 504], "potentiell": 314, "radiostation": [314, 381], "suchbegriff": 314, "treff": 314, "sharelink": [314, 653], "spotify": [314, 653], "premium": 314, "86399": 314, "echtzeit": 314, "touchbedien": 314, "audioeingang": 314, "albumtitel": 314, "albumcov": 314, "wiedergegeb": [314, 672], "hoheneinstell": 314, "entkoppelt": 314, "entkoppl": 314, "lautstarkepegel": 314, "max_volum": [314, 504], "betrifft": 314, "volume_dpt3": 314, "favorit": [314, 536], "favoritenlist": 314, "radiofavoritenlist": 314, "wdr2": 314, "namederplaylist": 314, "angerat": 314, "mysonosplay": 314, "do_something": 314, "vol_dpt3": [314, 504], "sonos_dpt3_step": 314, "sonos_dpt3_tim": 314, "dpt3_help": [314, 504], "sonos_s": [314, 646], "laustarkeinkrement": 314, "inkrement": [314, 504], "rincon_000e58cxxxxxxxxx": 314, "sonos_recv": [314, 646], "mysonos": 314, "verwendbar": [314, 338], "widget_sonos": 314, "sonos_kuech": 314, "autovoic": [315, 316], "analys": 315, "speech_pars": 315, "2788": [315, 505], "default_access": 315, "customized": 315, "dicterror": 315, "varpars": 315, "analyz": [315, 362], "searchstring": 315, "varxyz": 315, "word1": 315, "varwxy": 315, "appli": 315, "numbering": [315, 645], "varlight": 315, "varroom": 315, "varswitch": 315, "replaced": [315, 646, 649, 651, 654, 655], "wish": 315, "searchstring1": 315, "varexampl": 315, "return_valu": 315, "searchstring2": 315, "searchstring3": 315, "profil": [315, 368, 407, 494], "avcommsencod": 315, "avcomm": 315, "finally": [315, 668], "httpd": 315, "knxfriend": 315, "wrot": [315, 645], "automagic": 315, "dinglisch": 315, "taskerm": 315, "joaomgcd": 315, "gridvision": 315, "ppam": 315, "androidautomagic": 315, "spracherkenn": 316, "gegenzug": 316, "sprachdat": 316, "wortkombination": 316, "beilieg": 316, "betat": [316, 324, 329, 331, 495], "mikrofon": 316, "tritt": [316, 576, 632], "zutrifft": 316, "dumpfil": 317, "smarthomedb": 317, "orphaned": [317, 653], "playerid": [318, 319, 507], "umlaut": 318, "player_id": 318, "komfortabel": 319, "squeezebox_wohn": 319, "squeezebox_playerid": 319, "yy": [319, 411, 520, 599, 634], "statistikabfrag": [319, 453], "alb": [319, 453], "alarmplaylist": 319, "abspiel": [319, 378, 453, 490, 504, 545, 554, 642], "skip": 319, "spul": 319, "abspiellist": 319, "abspeich": 319, "squeezeboxserv": 319, "regelwerk": [320, 324, 325, 326, 328, 329, 330, 331, 332, 333], "ubersichtsinformation": 320, "logverzeichnis": 320, "startverzoger": [320, 508], "suspendzeit": [320, 328, 329, 331, 508], "se_it": [320, 325, 326, 328, 329, 649, 655], "bedingungsset": [320, 325, 326, 333, 642], "detailansicht": 320, "lupensymbol": 320, "eingenomm": [320, 321, 325, 326, 328, 329, 330, 331, 332, 333, 508], "sicherheitsrelevant": [321, 330], "hochfahr": [321, 328, 381], "windalarm": 321, "sperrfunktionalitat": 321, "jalousieaktor": [321, 328, 331], "blogeintrag": 321, "zustandsautomat": [321, 324, 328, 329, 508, 545, 554], "einstiegsbeding": [321, 328], "standardzustand": [321, 328], "eingangsbeding": 321, "bedingungsgrupp": [321, 324, 326, 328, 330, 333, 508, 642], "tageszeit": 321, "azimut": [321, 325, 580, 599, 636, 638, 669], "zufallszahl": [321, 325, 330], "zustandsermittl": [321, 325, 328, 331, 508], "optimiert": [321, 671], "cachefil": 321, "umbenennt": 321, "visuell": [321, 343, 508, 671], "farbkodier": 321, "hoherrang": 321, "hakch": 321, "farbkodiert": [321, 347], "schwarz": 321, "warnsignal": 321, "se_plugin": [322, 323, 328, 329], "raffstore1": [322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332], "se_log_level": [322, 323], "notfound": 322, "stateengine_licht_fil": 322, "stateengine_licht": 322, "stateengine_all_fil": 322, "unabhanging": 322, "standardloglevel": 322, "se_stateord": [323, 324, 333, 655], "aussenhell": 323, "se_item_": [323, 325, 326, 329, 332], "bedingungsnam": [323, 325, 326, 329], "aktionsnam": [323, 326, 329, 330, 332], "se_status_": [323, 325, 326], "se_eval_": [323, 325, 326, 329], "se_status_eval_": 323, "se_eval_height": [323, 329], "get_relative_it": [323, 329, 330, 642], "kapiteln": [323, 328], "se_item_height": [323, 326, 332], "hoeh": [323, 326, 328, 329, 332], "se_item_brightness": [323, 325, 328, 330], "ubersteigt": 323, "on_enter_or_stay": [323, 326, 327, 328, 330, 331], "se_action_height": [323, 326], "enter_toodark": 323, "se_max_brightness": [323, 328, 330], "jalousiehoh": 323, "se_status_height": 323, "ruckmeldestatus": 323, "se_mindelta_height": [323, 332], "helligkeitswert": [323, 325], "geteilt": [323, 622], "helligkeit_sued": [323, 325], "helligkeit_ost": 323, "se_eval_brightness": 323, "get_relative_itemvalu": [323, 325, 326, 328, 330, 332], "zustand_ein": [323, 325, 330], "sued": [323, 325, 328, 330, 589], "verand": [324, 328, 573, 576], "aussetz": [324, 329], "suspendfunktion": 324, "ausstatt": [324, 424, 425, 545, 550, 558], "abgedunkelt": 324, "se_us": [324, 326, 328, 329, 331, 333, 648, 649, 655], "state_releas": [324, 328, 329, 331], "neuevaluier": [324, 326, 332], "state_lock": [324, 328, 329, 331], "zustandsevaluier": [324, 325, 328, 330, 508], "sperrit": [324, 331], "state_susp": [324, 328, 329, 331, 333], "bestuckt": 324, "zustandsvorlag": [324, 329], "daemmer": [325, 326, 332], "se_status_brightness": 325, "se_min_brightness": 325, "se_": [325, 332], "bedingungsitem": 325, "vergleichsit": 325, "zustandsnam": [325, 508], "499": 325, "ost": [325, 328, 330, 638], "zustand_zwei": [325, 330], "betrag": 325, "se_eval": [325, 326, 328, 329, 330, 332, 642, 655], "helligkeit_": [325, 326], "get_variabl": [325, 330], "state_nam": [325, 326, 328, 330, 332, 338, 646, 655], "bedinungsgrupp": 325, "enter_zuhell": 325, "irgendwelch": 325, "angegegeb": [325, 326, 332], "helligkeitsschwellwert": [325, 326], "fullmatch": [325, 645], "se_template_t": [325, 326], "max_bright": [325, 330], "se_item_specialit": [325, 326], "meinit": [325, 326], "state_on": [325, 326], "enter_testlast": 325, "se_value_laststat": [325, 328, 330, 331], "laststat": [325, 642, 652], "conditionnam": 325, "enter_testoth": 325, "se_value_specialit": 325, "declared": [325, 654], "herhalt": 325, "se_eval_berechn": 325, "se_value_berechn": 325, "eingetroff": 325, "nachfuehr": [325, 326, 328], "laststate_id": 325, "se_minage_": 325, "novalu": 325, "se_maxage_": 325, "meinwert": [325, 563], "einzweitesit": 325, "einzweitesi": 325, "se_min_": 325, "se_max_": 325, "se_value_": 325, "wert1": 325, "wert2": 325, "wertn": 325, "negi": 325, "se_negate_": 325, "negiert": 325, "se_updatedby_": 325, "se_updatedbynegate_": 325, "se_changedby_": 325, "se_changedbynegate_": 325, "se_triggeredby_": 325, "se_triggeredbynegate_": 325, "mindestalt": 325, "se_agemin_": 325, "hochstalt": 325, "se_agemax_": 325, "altersbeding": 325, "se_agenegate_": 325, "uhreit": 325, "se_value_tim": 325, "se_min_tim": [325, 328], "se_max_tim": [325, 328], "zeitformat": 325, "hochkommas": [325, 326], "montag": [325, 328, 351, 479, 585, 599, 634], "donnerstag": [325, 479], "samstag": [325, 328, 479], "sonntag": [325, 328, 479, 569, 585, 592, 599, 634], "sun_azimut": 325, "horizontalwinkel": [325, 580], "kompassricht": 325, "sonnenposition": [325, 328], "beispielwert": 325, "270": [325, 328], "sun_altitud": 325, "vertikalwinkel": 325, "vertikalwikel": 325, "winkel": [325, 434], "aquatorial": 325, "se_laststate_item_id": [325, 328], "condition_ag": 325, "se_lastconditionset_item_id": 325, "zufall": [325, 332], "passi": [325, 328, 329, 688], "se_max_random": 325, "zustandsitem": 325, "enter_stay": [325, 330, 331], "uberspr": [325, 331, 573], "lastconditionset_id": 325, "lastconditionset": [325, 652], "primar": [325, 326, 641], "zustandsbestimm": 325, "previousconditionset_id": 325, "vorhergeh": [325, 453, 573, 682], "bedinungsset": 325, "enter_manuell": [325, 330, 331], "se_value_previousconditionset_nam": 325, "hochstwahrschein": [325, 330], "previousstat": 325, "se_value_previousstat": 325, "normalfall": [325, 508, 585, 592], "zustandsabfolg": 325, "enter_ab": [325, 326], "state_id": [325, 326, 328, 330, 331, 646, 655], "se_negate_previousstat": 325, "previousstate_conditionset_id": 325, "sperrzustand": 325, "se_value_previousstate_conditionset_nam": 325, "trigger_it": [325, 326, 589], "trigger_call": 325, "trigger_sourc": 325, "trigger_d": 325, "abgepruft": [325, 328], "original_it": 325, "original_call": 325, "original_sourc": 325, "zustandsermitt": 325, "original_": 325, "zuruckverfolgt": [325, 331], "kett": [325, 331, 561], "aktionsangab": 326, "se_action_": [326, 330], "herangehensweis": [326, 362], "se_mindelta_": [326, 332], "mindelta": [326, 332], "lamellenwert": 326, "lamell": [326, 328, 329, 330, 332, 508, 638], "bruchteil": 326, "gesondert": [326, 622], "se_repeat_action": [326, 646], "raffstor": [326, 331, 332], "lamellendreh": 326, "sonnenausricht": 326, "mindestander": 326, "se_item_lamella": [326, 329, 332], "se_status_lamella": [326, 332], "statusitem": [326, 332, 370, 453], "se_mindelta_lamella": [326, 332], "se_action_lamella": 326, "sun_tracking": [326, 328, 330, 332, 508, 649], "se_action_logic1": 326, "aufzahlungszeich": 326, "untereinand": [326, 332], "detailparamet": 326, "conditionset": [326, 330, 645, 649, 652], "gesezt": [326, 332], "listenit": [326, 332], "logikausfuhr": [326, 332], "byattr": [326, 332], "herausgesucht": [326, 332], "dummy1": 326, "dummy2": [326, 332], "rum": [326, 332], "sondervorgang": [326, 332], "manuell_it": 326, "retrigg": [326, 642, 655], "gleichart": [326, 332], "abzubrech": [326, 332], "ungewunscht": [326, 332, 373, 641], "instanteval": [326, 332], "get_relative_itemid": [326, 330, 332], "erwunscht": [326, 332, 682], "dezidiert": [326, 585], "einzelfall": [326, 332, 337], "aufsteig": 326, "enter_": [326, 330], "_test": 326, "itemx": 326, "angefuhrt": [326, 330, 332], "hochkomma": [326, 376], "conditionset_to_check": 326, "osten_s1": 326, "pack": 326, "zielfuhr": 326, "se_action_hoeh": [326, 328], "_reg": 326, "se_action_hoehe_reg": 326, "enter_reg": 326, "enter_normal": [326, 330], "previousconditionset": 326, "previousstate_conditionset": 326, "next_conditionset": 326, "leave_action": [326, 330], "minagedelta": [326, 332], "uberdauert": [326, 332, 596], "wertdeklaration": 326, "on_ent": [326, 327, 330, 332], "se_action_specialit": 326, "state1": 327, "on_stay": [327, 332], "zuvor": [327, 328, 330, 331], "on_leav": [327, 330, 331, 332], "instant_leaveaction": [327, 330, 655], "statusevaluier": [327, 330, 508], "se_instant_leaveaction": [327, 330], "zeitweis": [328, 329], "sonnenschutz": 328, "nachfuhr": 328, "nachh": [328, 688], "mindesthell": 328, "herauss": 328, "verdeckt": 328, "50000": 328, "demozweck": 328, "gt43k": 328, "klux": 328, "43000": 328, "gt35k": 328, "35000": 328, "gt25k": 328, "25000": 328, "gt20k": 328, "20000": [328, 396], "automatisi": 328, "simpel": 328, "stateengine_default_raffstor": [328, 329], "importi": [328, 598, 688], "uberschritt": [328, 370, 532], "mindestdauer_hell": 328, "se_item_temperatur": [328, 329], "25klux": 328, "se_item_brightnessgt25k": 328, "43klux": 328, "se_item_brightnessgt43k": 328, "behanghoh": 328, "se_item_hoeh": 328, "se_mindelta_hoeh": 328, "lamellenwinkel": 328, "se_item_lamell": 328, "se_mindelta_lamell": 328, "se_item_himmelsricht": 328, "gebaudeseit": 328, "nachfuehren_ost": 328, "behang": 328, "ausricht": [328, 508], "se_action_lamell": 328, "se_value_brightnessgt43k": 328, "se_agemin_brightnessgt43k": 328, "sonnenhoh": 328, "se_min_sun_altitud": 328, "se_min_sun_azimut": 328, "se_max_sun_azimut": 328, "drauss": 328, "se_min_temperatur": [328, 329], "gen": 328, "gerichtet": 328, "se_value_himmelsricht": 328, "hysteres": [328, 577, 693], "enter_hysteres": 328, "se_value_brightnessgt25k": 328, "temperaturschwank": 328, "abfahr": 328, "ausstieg": 328, "enter_delay": 328, "se_agemax_brightnessgt25k": 328, "nachfuehren_sued": 328, "vorgabezustand": [328, 329, 508], "addressier": 328, "sonnenwinkel": 328, "220": 328, "340": 328, "se_negate_tim": 328, "hochst": 328, "sowieso": 328, "aufab": [328, 329], "erled": 328, "vorhin": [328, 330], "manual_exclud": [328, 642, 655], "se_manual_exclud": [328, 329, 331], "se_startup_delay": 328, "statusermittl": 328, "zustandseintrag": 328, "bedingungslos": 328, "veranschaulicht": 328, "helllig": 328, "diesmal": 328, "untertag": 328, "min_altitud": 328, "max_azimut": 328, "god": 328, "sonnenstandzustand": 328, "trotz": [328, 401], "helligkeitsverringer": 328, "15000": 328, "unwahr": 328, "unterschritt": 328, "suspend_tim": [328, 330, 331], "suspendduration": [328, 329, 331], "abgelauf": [328, 330, 331, 453, 486, 573, 574], "raffstore2": 328, "niemal": 328, "wiederaufruf": 328, "gewertet": [328, 331], "se_laststate_item_nam": [328, 333], "se_item_anwes": 328, "35klux": 328, "se_item_brightnessgt35k": 328, "20lux": 328, "se_item_brightnessgt20k": 328, "vorgabeeinstell": 328, "enter_anwes": 328, "se_value_anwes": 328, "se_value_brightnessgt35k": 328, "se_agemin_brightnessgt35k": 328, "enter_anwesend_hysteres": 328, "20klux": 328, "se_value_brightnessgt20k": 328, "enter_anwesend_delay": 328, "se_agemax_brightnessgt20k": 328, "enter_schlafenszeit_woch": 328, "se_min_weekday": 328, "se_max_weekday": 328, "enter_schlafenszeit_wochen": 328, "se_value_weekday": 328, "setzend": [328, 332, 563, 570], "zustandsvorgab": 328, "lichtmodus": 328, "einnimmt": 328, "dieselb": 328, "vornimmt": [328, 685], "aktionsvorlag": 328, "licht_rules_action": 328, "se_action_sollwert": 328, "se_action_prio": 328, "zuruckgegriff": 328, "licht_settings_dimmbar": 328, "licht_settings_schaltbar": 328, "licht_settings_activ": 328, "lichtkurv": [328, 347, 519], "heimkino": 328, "licht_condition_lichtkurv": 328, "se_item_lichtkurve_activ": 328, "se_value_lichtmodus": 328, "se_value_lichtkurve_activ": 328, "licht_condition_heimkino": 328, "se_item_heimkino_activ": 328, "se_value_heimkino_activ": 328, "sa": [328, 347, 593, 599, 634], "licht_settings_bwm": 328, "licht_settings_dimmbar_dual": 328, "licht_rules_heimkino": 328, "licht_rules_lichtkurv": 328, "settings_edited": 328, "additional_state1": 329, "kumuliert": 329, "instant": [329, 653], "leaveaction": 329, "codeblock": 329, "tatig": 329, "automatich": [329, 653], "baumstruktur": 329, "vorubergeh": [329, 488], "automatisier": 329, "pausier": 329, "angesiedelt": [329, 333], "duration_format": [329, 646], "minutenangab": 329, "0h": 329, "5i": 329, "suspend_start": [329, 646], "unix_timestamp": [329, 646], "countdown": [329, 508, 646], "suspend_activ": [329, 623], "suspendmodus": [329, 333], "suspendvariant": [329, 331], "additionalus": 329, "letztlich": [329, 339, 340, 573], "anzulei": 329, "praktisch": [329, 347], "zusammenzufass": 329, "itemangab": 329, "angegb": [329, 376], "geschachtelt": 329, "zirkelbezug": 329, "tief": [329, 333], "define_us": 329, "mittag": [329, 361], "se_item_hell": 329, "se_min_hell": 329, "se_max_hell": 329, "4000": 329, "se_set_height": [329, 332], "se_set_lamella": [329, 332], "se_max_temperatur": 329, "5900": 329, "enter_additional": 329, "negat": 329, "perform": 329, "lamella": [329, 332, 649], "sestructmain": 329, "12000": 329, "itemdeklaration": 329, "standarditem": 329, "garantiert": 329, "se_set_": [330, 332], "se_run_": [330, 332], "sonnenstandsabhang": [330, 347], "lamellenausricht": [330, 508], "neigung": [330, 622], "auszugleich": 330, "lamella_offset": 330, "auswirkt": 330, "dreh": [330, 508], "vorrang": [330, 537, 575, 689], "lamellenart": [330, 508], "lamella_open_valu": 330, "grosst": [330, 359], "get_random_int": 330, "varnam": 330, "subitem_id": 330, "get_attribute_valu": 330, "some_special_attribut": 330, "suspend_text": 330, "insert_suspend_tim": 330, "suspend_item_id": 330, "vorzuseh": 330, "get_relative_itemproperty": [330, 642], "relevanz": 330, "last_change_ag": [330, 567, 591], "se_suspend_tim": [330, 331], "regelit": 330, "suspend_remaining": 330, "suspendzustand": [330, 331, 333], "regelwerkit": 330, "schafft": 330, "licht1": 330, "irgendeinit": 330, "kalt": [330, 526], "sollwert_warm": 330, "sollwert_kalt": 330, "wasauchimm": 330, "se_item_sollwert_warm": 330, "se_item_sollwert_kalt": 330, "se_item_wasauchimm": 330, "se_template_setvalu": 330, "zustand1": 330, "se_action_sollwert_warm": 330, "se_action_sollwert_kalt": 330, "se_action_wasauchimm": 330, "_or_stay": 330, "abgeg": 330, "settingit": 330, "evalui": [330, 573], "conditionset_id": [330, 642], "conditionset_nam": 330, "windzustand": 330, "enter_after_x": 330, "enter_stayafter_x": 330, "se_item_wind": 330, "sicherheit": 330, "se_action_y": 330, "se_value_wind": 330, "stateengine_eval": [330, 642], "se_value_lastconditionset_nam": 330, "eintret": [330, 508], "gewes": 330, "state_conditionset_id": 330, "state_conditionset_nam": 330, "zustandswechsel": [330, 642], "can_be_released_by": 330, "berein": 330, "se_released_by": [330, 333, 648, 655], "was_released_by": 330, "can_releas": 330, "schnee": [330, 331, 462], "will_releas": 330, "scharf": 330, "has_released": 330, "jen": [330, 333], "getrost": 331, "priorisiert": [331, 423, 513], "jalousie1": 331, "se_item_lock": 331, "se_value_lock": 331, "aussetzenzustand": 331, "stateenging": 331, "einzustell": [331, 475, 682], "vorzeit": 331, "kapseln": 331, "se_manual_logit": [331, 647], "schlicht": 331, "se_manual_invert": 331, "taster1": 331, "taster2": 331, "inverti": [331, 412], "se_manual_includ": 331, "festgestellt": [331, 484], "gegenstell": 331, "sonderaktion": 331, "se_special_susp": 331, "zurucksetz": [331, 381], "se_set_susp": 331, "se_value_trigger_sourc": 331, "se_agemax_manuell": 331, "se_value_susp": 331, "vorrn": 331, "manuellbetrieb": 331, "zugeh": 331, "betatigt": [331, 333], "burgerpatty": 331, "se_releasedby": [331, 333], "suspenddau": 331, "state_suspend_dynamic": [331, 647], "duration1": 331, "duration2": 331, "dauerangab": 331, "suspendstatus": 331, "beschattung_se_state_ab": 331, "beschattung_se_state_nacht": 331, "beschattung_se_state_schne": 331, "beschattung_se_state_standard": 331, "se_set_suspendvariant": 331, "einzelvariant": 332, "se_force_": 332, "zielwert": [332, 515], "se_trigger_": 332, "meinelog": 332, "se_byattr_": 332, "mein_eigenes_attribut": 332, "se_add_": 332, "se_remove_": 332, "se_mod": 332, "se_special_": 332, "minimumabweich": 332, "se_minagedelta_": 332, "se_delay_": 332, "se_repeat_": 332, "se_order_": 332, "se_order_aktion1": 332, "se_order_aktion2": 332, "se_order_aktion3": 332, "se_order_aktion4": 332, "se_instanteval": 332, "se_instanteval_": 332, "se_trigger_logic1": 332, "se_delay_logic1": 332, "zustandskonfiguration": 333, "zustandsit": 333, "stateengine_default": 333, "zustandserweiter": 333, "structnam": 333, "ermogicht": 333, "irgendein": [333, 381], "zustandseinstell": 333, "hierarchiefolg": 333, "neuordn": 333, "listenangab": 333, "pluginversion": 333, "released_by": [333, 648], "uberarbeitet": 333, "nachzustand": 333, "se_nam": 333, "eine_funktion": 333, "helligkeitsbeding": 333, "debuggingzweck": 333, "se_list": 333, "se_detail": 333, "residential": [334, 509, 545, 550], "vr400": 334, "vr700": 334, "vr700dk": 334, "vr400de": 334, "vtc300": 334, "vtc700": 334, "vtr150k": 334, "vtr200b": 334, "vsr300": 334, "vsr500": 334, "vsr150": 334, "vtr300": 334, "vtr500": 334, "vsr300de": 334, "vtc200": 334, "minimalmodbus": 334, "easy_setup": 334, "ttyvusb0": 334, "serialposix": 334, "605": 334, "_update_dtr_stat": 334, "fcntl": 334, "ioctl": 334, "tiocmbis": 334, "tiocm_dtr_str": 334, "ioerror": 334, "_serialport": 334, "rtscts": 334, "dsrdtr": 334, "vtr": 334, "harm": 334, "risk": 334, "globalasset": 334, "40903": 334, "slave_address": 334, "30sec": 334, "mod_writ": 334, "lueftergeschwind": 334, "langsam": [334, 381], "systemair_regaddr": 334, "luefterdrehzahl_zuluft": 334, "umdreh": 334, "luefterdrehzahl_abluft": 334, "frostschutzlevel": 334, "frotschutzlevel": 334, "206": 334, "sollwerttemperatur_heizregist": 334, "sollwerttemperatur": 334, "heizregist": 334, "temperaturlevel1_heizregist": 334, "temperaturlevel5_heizregist": 334, "temperaturlevel2_heizregist": 334, "isttemperatur_heizregist": 334, "temperatursensor_1": 334, "214": [334, 638], "temperatursensor_2": 334, "215": [334, 580], "temperatursensor_3": 334, "temperatursensor_4": 334, "temperatursensor_5": 334, "218": 334, "wochenprogramm_aktiv": 334, "coil_regaddr": 334, "6401": 334, "filter_wechselzeitraum": 334, "601": [334, 651], "filter_verbrauchte_zeit": 334, "602": 334, "defroster_status": 334, "defrosting": 334, "ongoing": 334, "651": 334, "alarm_filt": 334, "systemair_coiladdr": 334, "12801": 334, "alarm_lueft": 334, "12802": 334, "alarm_rotor": 334, "12804": 334, "alarm_frost": 334, "12805": 334, "alarm_pcu": 334, "12806": 334, "alarm_temperatursensor": 334, "12807": 334, "alarm_notfallthermostat": 334, "12808": 334, "alarm_lueftungsklapp": 334, "12809": 334, "alarm_relais_aktiv": 334, "12817": 334, "codec": 334, "xcf": 334, "ordinal": 334, "handle_local_echo": 334, "938924": 335, "benzinpreis": [335, 510, 545, 558], "creativecommon": [335, 336, 510, 545, 558], "techinfo": [335, 510, 545, 558], "statically": 335, "get_petrol_station_pric": 335, "responsibl": 335, "telling": 335, "storag": [335, 368, 655], "personal": [335, 344, 368], "petrol_station": 335, "isop": [335, 510], "demobavariapetrol": 335, "tankerkoenig_id": 335, "a07b7f50": 335, "6e6f": 335, "4e6": 335, "9bce": 335, "17d79bf0778c": 335, "diesel": [335, 510], "around": [335, 648], "coordinat": [335, 344], "radius": 335, "_lat": [335, 344], "_long": 335, "geocoordinat": 335, "_lon": [335, 344], "housenumb": [335, 510], "street": [335, 510], "lng": [335, 510, 652], "postcod": [335, 510], "get_petrol_station_detail": 335, "e5": [335, 510], "e10": [335, 510], "tankerkon": [336, 510, 545, 558, 674], "tankstell": [336, 510], "preis": [336, 510, 586], "offnungszeit": 336, "am2301": 337, "sht3x": [337, 653], "adc": 337, "esps": 337, "esp32": [337, 653], "rgbw": [337, 434, 649], "h801": 337, "sonoff": 337, "tasmota_topic": 337, "tasmota_attr": 337, "delock_switch2": 337, "zigbeebridg": 337, "tasmota_zb_devic": 337, "tasmota_zb_group": 337, "tasmota_zb_attr": [337, 653], "sonoff_zb1": 337, "snzb02_01": [337, 371], "tasmota_sml_devic": 337, "tasmota_sml_attr": 337, "smartmeter_1": 337, "tasmota_sml2mqtt": 337, "mt631": 337, "volt_p1": 337, "total_in": 337, "sensornam": 337, "27t17": 337, "0001": 337, "sensor53": 337, "77070100010800ff": 337, "gesamtverbrauch": 337, "77070100100700ff": 337, "power_curr": 337, "sendezykus": 337, "decimal": [337, 647, 648], "teleperiod": 337, "power_total": 337, "power_yesterday": 337, "power_today": 337, "rf_recv": 337, "sendemog": 337, "rf_send": 337, "rfsync": 337, "12220": 337, "rflow": 337, "rfhigh": 337, "1210": 337, "rfcod": 337, "f06104": 337, "rf_key_send": 337, "rf_key_recv": 337, "rf_key": 337, "zb_permit_join": 337, "pairing": 337, "zb_forget": 337, "zb_ping": 337, "gesamtenergieverbrauch": 337, "analog_temp": 337, "analogeingang": 337, "analog_temp1": 337, "analogeingang1": 337, "analog_a0": 337, "analog_rang": 337, "esp32_temp": 337, "zb": [337, 381], "gerate_id": 337, "360": [337, 434], "sattig": [337, 419], "farbtemperatur": 337, "mired": 337, "ct_k": 337, "6700": 337, "batterypercentag": 337, "batteriefull": 337, "batterylastseenepoch": 337, "batteriemeld": 337, "lastse": 337, "lastseenepoch": 337, "linkquality": [337, 371], "verbindungsqualitat": 337, "ieeeaddr": 337, "ieee": 337, "zonestatus": 337, "zonenstatus": 337, "colortempstepup": 337, "colortempstepdown": 337, "dimmerstepup": 337, "dimmerstepdown": 337, "dimmermov": 337, "aqaravibrationmod": 337, "aqaravibration505": 337, "batteryvoltag": 337, "shutterclos": 337, "shutterop": 337, "huemov": 337, "farbbeweg": 337, "0300": [337, 368], "0006": 337, "0008": 337, "zigbeedevic": [337, 655], "jeweilg": 337, "bot": [338, 512, 653], "botfath": 338, "newbot": 338, "mybot": 338, "chatpartn": 338, "adminif": 338, "los": [338, 370], "tuerklingel": 338, "turklingel": 338, "entprellt": 338, "klingelt": 338, "testnum": [338, 359], "testbool": [338, 359], "3234123342": 338, "versand": [338, 674], "tastaturmenu": 338, "kommandonam": 338, "wind_kmh": 338, "rtr_ist": 338, "textnachricht": 338, "partn": [338, 530], "john": 338, "ergab": 338, "umgeschltet": 338, "sicherheitsabfrag": 338, "20sekund": 338, "beregnungzone1": 338, "beregnungz1": 338, "beregnungzone2": 338, "beregnungz2": 338, "ventil": [338, 622], "gartentor": 338, "dachfen": 338, "chat_id": [338, 674], "autorisiert": 338, "path_or_url": 338, "caption": [338, 596], "local_prepar": 338, "webcam": 338, "entlastet": 338, "nutzungsmog": 338, "telegram_plugin": 338, "cdn": 338, "pixabay": 338, "3735336_960_720": 338, "my_webcam_url": 338, "vorbereit": [338, 674], "prepared": [338, 651], "local_fil": 338, "bool2str": 338, "typus": 338, "message_us": 338, "message_chat_id": 338, "message_text": [338, 339, 340], "custom_keyboard_ubersicht": 338, "verkehr": 338, "resize_keyboard": 338, "one_time_keyboard": 338, "yyyyyyy": 338, "ebene2": 338, "custom_keyboard_wett": 338, "custom_keyboard_schalt": 338, "nisch": 338, "wz": [338, 451], "ez": [338, 451], "custom_keyboard_heiz": 338, "hk_2": 338, "bewohnt": 338, "unbewohnt": 338, "AN": 338, "custom_keyboard_verkehr": 338, "arbeitsweg": 338, "heimweg": 338, "custom_keyboard_rollad": 338, "parse_mod": 338, "reply_markup": 338, "raumtemp": 338, "froggit": 338, "feelslikec": 338, "hum_ist": 338, "hourlyrainmm": 338, "m\u00b2": [338, 367], "dailyrainmm": 338, "diel": 338, "2f": [338, 586], "windgustkmh_max10m": 338, "spitz": 338, "maxdailygust": 338, "bislang": 338, "temperatur_soll": 338, "temperatur_ist": 338, "pump": [338, 341, 521, 622], "speicherladepumpe_knx": 338, "a1": 338, "heizkreis_a1m1": [338, 351, 522], "betriebsart_str": 338, "heizkreis_m2": 338, "hk_pumpe_knx": 338, "anwesend_eg_og": 338, "ug": 338, "vorsatz_n": 338, "nischenbeleucht": 338, "tv_wand_nisch": 338, "verkehrsinfo": 338, "calculate_way_work": 338, "travel_summary": [338, 344], "calculate_way_hom": 338, "kellertur": 338, "fenster_tuer_kontakt": 338, "kellertu": 338, "garagentur": 338, "seitentuer_garag": 338, "garagentor": 338, "garagentor_link": 338, "garagentor_recht": 338, "beschattungsautomat": [338, 589], "fahrautomat": 338, "umbau": 338, "v20": [338, 646], "begruss": 338, "verabschiedungsnachricht": 338, "beitrag": 338, "senk": [339, 340, 513], "anzeigegerat": [339, 340], "nachrichtenring": [339, 340, 513], "verankert": [339, 340], "textwert": [339, 340], "standardring": [339, 340], "erzwungenermass": [339, 340], "verdeck": [339, 340, 513], "zuruckgesetzt": [339, 340, 381], "hardwareunabhang": [339, 340], "verschluckt": [339, 340], "instantiier": [339, 340], "auslosbar": [339, 340], "instantiiert": [339, 340], "versteh": [339, 340], "EINE": [339, 340], "innentemperatur": [339, 340], "wichtiger_als_fen": [339, 340], "anruft": [339, 340], "anruflog": [339, 340], "text_display_": 339, "konstruktion": [339, 340], "booleanwert": [339, 340], "informationsgehalt": [339, 340], "nachrichtentext": [339, 340, 445], "angereichert": [339, 340], "glastast": [339, 340], "rtr": [339, 340, 487, 513, 545, 554, 643, 645, 646, 652, 670, 687], "text_display_default_messag": [339, 340], "text_display_sink_for_ring": [339, 340], "text_display_sink_rings_with_prio": [339, 340], "schlafzimm": [339, 340, 641], "temperatur_im_schlafzimm": [339, 340], "anzeige_string": [339, 340], "schlazi": [339, 340], "1f": [339, 340, 344], "display_is_relevant": [339, 340], "irgendein_fenster_im_schlafzimmer_off": [339, 340], "text_display_target_ring": [339, 340], "text_display_content_source_it": [339, 340], "fenster_zur_strass": [339, 340], "fenster_zum_gart": [339, 340], "luft_temperatur": [339, 340], "herkommt": [339, 340], "message_string": [339, 340], "og_bad": [339, 340], "eg_bad": [339, 340], "new_message_present": [339, 340], "message_number_new": [339, 340], "ab_pruefen_text": [339, 340], "bau": [339, 340, 373, 586], "nachr": [339, 340], "last_call": [339, 340], "nachvollzieh": [339, 340], "daruberhinaus": [339, 340], "verbesserungsfah": [339, 340], "stiebel": [341, 514, 545, 550, 642], "eltron": [341, 514, 545, 550, 642], "tecalor": [341, 514, 545, 550, 642], "heatpumps": 341, "lwz": [341, 642], "30x": [341, 642], "40x": [341, 642], "wiring": 341, "robert": [341, 545, 548, 550, 666, 667], "penz": 341, "sol": 341, "7278": 341, "303i": 341, "fhem": 341, "13132": 341, "heatpump": 341, "303": 341, "304": 341, "403": [341, 688], "serial_port": 341, "115200": [341, 514], "poll_period": 341, "min_update_period": 341, "max_update_period": 341, "43200": [341, 514], "bps": [341, 514], "57600": [341, 514], "frequently": 341, "infrequent": 341, "pxx": 341, "literalinclud": 341, "linenos": 341, "overhauled": 341, "beta1": 341, "iconcooling": 341, "iconservic": 341, "p32hystdhw": 341, "p34boosterdhwtempact": 341, "p35pasteurisationinterval": 341, "p35pasteurisationtemp": 341, "p76roomthermcorrection": 341, "p77outthermfiltertim": 341, "p89dhweco": 341, "p99dhwmaxflowtemp": 341, "p99startunschedvent": 341, "pclockday": 341, "pclockmonth": 341, "pclockyear": 341, "pclockhour": 341, "pclockminut": 341, "p99coolingrtday": 341, "p01": 341, "p03": 341, "p99coolingrtnight": 341, "alpha6": 341, "aug": 341, "p99coolingswitch": 341, "inputventspeed": 341, "outputventspeed": 341, "inputairflow": 341, "outputairflow": 341, "alpha5": 341, "alpha4": 341, "alpha3": 341, "alpha2": 341, "alpha1": 341, "blinking": 342, "pattern": [342, 641], "sos": 342, "understand": 342, "guidanc": 342, "ausschaltverzoger": [343, 515, 545, 554, 649], "blinkmust": 343, "ruckmeldungsfunktion": 343, "some_lamp": 343, "timmy_blink_target": 343, "timmy_blink_loops": 343, "blinker_2": 343, "timmy_blink_cycl": 343, "timmy_blink_patt": 343, "sun_protect_needed": 343, "defined_limit": 343, "timmy_delay_target_it": 343, "post_hysteresis": 343, "timmy_delay_off_delay_second": 343, "1800": [343, 460, 622, 649], "timmy_delay_on_delay_second": 343, "1048446": 344, "2500": 344, "intro": [344, 516, 545, 558], "hl": [344, 516, 545, 558], "staualarm": 344, "geozon": 344, "egigeozon": [344, 688], "travel_tim": 344, "in_traffic": 344, "travel_distanc": 344, "html_instruction": 344, "html_warning": 344, "start_address": 344, "start_location": 344, "end_address": 344, "end_location": 344, "0f": 344, "duration_in_traffic": 344, "start_location_lat": 344, "start_location_lon": 344, "end_location_lat": 344, "end_location_lon": 344, "samson": [345, 517, 545, 550, 642, 653], "trovis": [345, 517, 545, 550, 642, 646, 653], "557x": [345, 517, 545, 550, 642, 653], "automationssystem": 345, "heizungsregl": [345, 517, 545, 550, 642], "5571": 345, "5573": 345, "5576": 345, "5578": 345, "5579": 345, "automation": 345, "cooling": 345, "synology": [346, 649], "uap": 346, "longrang": 346, "60w": 346, "unifi_us": 346, "ubnt": 346, "unifi_password": 346, "unifi_controller_url": 346, "8443": [346, 518], "poll_cycle_tim": 346, "unifi_switch_port_profile_on": 346, "unifi_switch_port_profile_off": 346, "interpolationsfunktion": [347, 519], "errechn": [347, 519], "schaltzeit": [347, 351, 519], "tagesverlauf": [347, 519], "remove_duplicat": 347, "popups": [347, 646], "uzsuicon": 347, "uzsu1": 347, "varuzsua": 347, "var2": 347, "schaltend": [347, 489, 511, 519], "expert": 347, "serienmodus": 347, "sonnenbasiert": 347, "wiederkehr": 347, "startzeitpunkt": [347, 460], "tagesgrenz": 347, "kontinui": 347, "abnehm": [347, 599, 636], "linear": [347, 519], "cubic": [347, 519], "interpoliert": [347, 519], "initag": 347, "versaumt": [347, 519], "initizialized": 347, "itemfunktion": 347, "uzsus": 347, "inaktiv": [347, 508], "N\u00e4chster": [347, 378], "geplant": [347, 519, 638, 641], "n\u00e4chster": [347, 536], "N\u00e4chstes": 347, "last_valu": [347, 567, 573, 576, 591], "interpolationstyp": [347, 519], "rrul": [347, 656], "freq": 347, "suncalculated": 347, "tu": [347, 646], "su": 347, "kumm": 347, "dtstart": 347, "startwert": [347, 412, 577], "algorithmus": 347, "minutely": 347, "wiederholungsregeln": 347, "feriendat": 348, "pluggin": 348, "bedat": 348, "anmeldeprozess": 349, "accesstok": [349, 688], "authlib": 349, "vitod": 349, "vitocal": 349, "200s": 349, "kopfzeil": 349, "onlinestatus": [349, 521], "clientid": [349, 688], "geratemodell": 349, "heizgerat": 349, "oautch2": 349, "authentifizierungsvorgang": 349, "geratelist": 349, "featurelist": 349, "featurenam": 349, "vicare_rx_key": 349, "vicare_tx_key": 349, "vicare_path": 349, "vicare_tx_path": 349, "optolink": 351, "nachbaut": 351, "openv": 351, "p300": [351, 522, 622], "gwg": 351, "entwicklungsarbeit": 351, "heizungstyps": 351, "refaktorisiert": 351, "behandl": [351, 563], "geratekonfiguration": 351, "v200ko1b": 351, "v200ho1c": 351, "v200kw2": 351, "v200wo1c": 351, "befehlsadress": 351, "heating_typ": 351, "ttyusb_optolink": 351, "verknufp": 351, "heizungsparamet": 351, "raumtemperatur_soll_normalbetrieb_a1m1": 351, "lesevorgang": [351, 401], "betriebsmodus": [351, 479], "wassertemperatur": 351, "betriebsart_a1m1": 351, "raumtemperatur_soll": 351, "wassertemperatur_soll": 351, "tagestim": 351, "heizungstyp": 351, "heizen_ba_it": 351, "ba_list": 351, "auswahllist": [351, 400, 408, 435, 441, 464, 467], "viessmann_updat": 351, "aussentemp_gedaempft": 351, "aussentemperatur_tp": 351, "kessel": 351, "kesseltemperatur_ist": 351, "kesseltemperatur_soll": 351, "kesselsolltemperatur_soll": 351, "kesselsolltemperatur": 351, "abgastemperatur": 351, "betriebsart_aktuell": 351, "aktuelle_betriebsart_a1m1": 351, "sparbetrieb": 351, "sparbetrieb_a1m1": 351, "timer_a1m1_mo": 351, "timer_a1m1_di": 351, "ferienprogramm": 351, "ferienprogramm_a1m1": 351, "starttag": 351, "ferien_abreisetag_a1m1": 351, "ferien_ruckreisetag_a1m1": 351, "stosst": [351, 522], "vierstell": [351, 522], "heizungsgerat": 351, "beschad": 351, "00f8": 351, "tabellenzeil": 351, "_custom": 351, "datenlang": 351, "identizifi": 351, "geratedatei": [351, 538], "dateimodus": 351, "gmx": [352, 353, 355, 356, 357], "2012": [352, 353, 355, 356, 357, 368, 639], "marcus": [352, 353, 355, 356, 357, 667], "mx": [352, 353, 355, 356, 357], "visa": 352, "subdirectory": 352, "startement": 352, "sv_": [352, 566, 686], "beneath": 352, "seperator": [352, 496, 523, 686], "cat_overview": [352, 686], "room_lit": [352, 496, 523], "vervollstand": [352, 635], "encapsulated": [352, 646], "collapsabl": [352, 686], "aligned": 352, "heading": [352, 682, 686], "sv_heading_": 352, "tpldir": 352, "menu_divid": [352, 686], "sleeping": [352, 355, 643, 686], "scene_sleeping": [352, 686], "sleep_temp_id": [352, 686], "giving": [352, 655, 686], "distinct": [352, 686], "easily": [352, 686], "generating": [353, 646, 688], "widget_": [353, 687], "followed": [353, 356, 357], "widget_hu": [353, 646], "control_group": 353, "isfil": 353, "sh_widget": [353, 687], "invasiv": [353, 687], "forked": [353, 655, 656], "_sh_widget": 353, "root_mast": [353, 687], "framework": [355, 381, 647, 649, 650, 651, 652, 653, 655, 663, 665], "extending": [355, 655], "encryption": [355, 368], "turned": [355, 356, 357], "accessed": 355, "philosophy": 355, "sett": 355, "aka": 355, "io_smarthom": [355, 356, 357, 496, 524, 670, 690], "instruct": [355, 356, 357], "instructed": [355, 356, 357], "apartement": [355, 496, 524], "unless": [356, 357], "ommitted": 357, "s0count": 358, "b5706f60": 358, "e26c": 358, "11e1": 358, "8992": 358, "cff551322819": 358, "2c67c500": 358, "8cbc": 358, "11e3": 358, "8a46": 358, "0d477fb1562c": 358, "versend": [359, 445, 512, 527, 545, 558, 595, 671, 674], "standardbrows": 359, "mibrows": 359, "firefox": 359, "zugestellt": 359, "mozilla": [359, 688], "fenix": 359, "19152": 359, "pywebpush": 359, "vapid": 359, "grouplist": 359, "varpath": [359, 654], "sendpushnotification": 359, "requireinteraction": 359, "badg": [359, 655], "silent": 359, "vibrat": 359, "ttl": [359, 655], "604800": 359, "highpriority": 359, "returnval": 359, "testboolupdat": 359, "testnumchang": 359, "rfc": 359, "rfc8030": 359, "serviceworkerregistration": 359, "shownotification": 359, "push_api": 359, "scenario": 359, "advertisement": 359, "publickey": [359, 527], "fromclient": [359, 527], "buttontext": 359, "comunication": 359, "abonnent": 359, "http_modul_services_port": 360, "1896": 360, "412548": 360, "bound": [360, 645, 663], "simulation": [360, 545, 554, 642, 646, 649, 652, 656, 669, 671, 674], "310862": 360, "previous_ag": 360, "previous_valu": 360, "u00fcro": 360, "previous_chang": 360, "911165": 360, "lightchecklogic": 360, "webservices_data": [360, 641], "angeht": 360, "dageg": 360, "postman": 360, "itemlist": 360, "itemgrupp": 360, "systemitem": 360, "effektiv": 360, "illustri": 360, "a_crontab": 360, "onebool": 360, "113731": 360, "985496": 360, "361957": 360, "333481": 360, "webservices_set": 360, "itemset": [360, 528, 641], "zeichenkettendarstell": 360, "hochkommata": 360, "item_pfad": 360, "ganzzahlwert": 360, "smarthomeng_ip": 360, "http_modul_port": 360, "additional_fil": 361, "frueh": 361, "spaet": 361, "uebermorg": 361, "filled": [361, 646], "cyclic": [361, 649, 655, 656], "900s": 361, "city": [361, 365], "appropriately": 361, "citycod": 361, "d0": 361, "d1": 361, "relativedelta": 361, "d2": [361, 671], "typeerror": 361, "attributeerror": 361, "exc_info": 361, "condensation": 361, "probability": 361, "withing": [362, 530, 641, 646, 649, 655], "ehemal": [362, 545, 554, 641], "nokia": [362, 416, 530, 545, 558, 641, 646, 671, 674], "health": [362, 416, 479, 530, 545, 558, 671, 674], "waag": 362, "weboberflach": [362, 479], "access_tok": [362, 530, 641], "token_expiry": [362, 530, 641], "token_typ": [362, 530, 641], "refresh_tok": [362, 530, 641], "verfall": 362, "consumer_secret": 362, "korpermassindex": 362, "korpergross": 362, "namlich": 362, "withings_typ": [362, 641, 646], "bmi": [362, 530, 646, 674], "bmi_text": [362, 530], "fat_ratio": [362, 530], "fat_free_mass": [362, 530], "fat_mass_weight": [362, 530], "heart_rat": [362, 530], "1995": 363, "amd": 363, "zusammenarbeit": 363, "hewlett": 363, "packard": 363, "netzwerkkart": 363, "vorab": [363, 409, 685], "uberhaupt": [363, 369], "weiterleitet": 363, "anderenfall": [363, 595], "aufweck": [363, 378, 531], "aufweist": 363, "wakeonlan_it": 363, "wol_mac": 363, "aa": 363, "wol_ip": [363, 649], "knopfdruck": 363, "aufzuweck": [363, 531], "1059124": 364, "ibm": 364, "pressure_tr": 365, "trend": 365, "minimalistic": [365, 648], "wug_xmlstring": 365, "pricing": 365, "mind": [365, 682], "collect": 365, "weather_somewh": 365, "xxxxyyyyxxxxyyyy": 365, "hamburg": 365, "forcast": 365, "french": [365, 645], "san_francisco": 365, "60290": 365, "zipcod": 365, "australia": 365, "sydney": 365, "122": 365, "kjfk": 365, "pws": 365, "kcasanfr70": 365, "autoip": 365, "geo_ip": 365, "136": 365, "138": 365, "waeth": 365, "unnecessary": 365, "intersect": 365, "maxed": 365, "wug_": 365, "commonly": 365, "uesd": 365, "filtered": 365, "nev": [365, 650, 668], "current_observation": 365, "display_location": 365, "ort_wetterstation": 365, "observation_location": 365, "lokale_zeit": 365, "local_time_rfc822": 365, "beobachtungszeitpunkt": 365, "observation_time_rfc822": 365, "beobachtungszeitpunkt_datetim": 365, "observation_epoch": 365, "wetter_icon": 365, "temp_c": 365, "temperatur_gefuehlt": 365, "feelslike_c": 365, "rel_luftfeucht": 365, "relative_humidity": 365, "dewpoint_c": 365, "pressure_mb": 365, "luftdruck_tr": 365, "visibility_km": 365, "niederschlag_1std": 365, "precip_1hr_metric": 365, "niederschlag_heut": 365, "precip_today_metric": 365, "wind_dir": 365, "windrichtung_grad": 365, "wind_degre": 365, "wind_kph": 365, "windboe": 365, "wind_gust_kph": 365, "simpleforecast": 365, "forecastday": 365, "temperatur_min": 365, "temperatur_max": 365, "niederschlag_ganzertag_mm": 365, "qpf_allday": 365, "niederschlag_tag_mm": 365, "qpf_day": 365, "niederschlag_nacht_mm": 365, "qpf_night": 365, "verhaeltnis": 365, "maxwindspeed": 365, "maxwind": 365, "kph": 365, "maxwinddir": 365, "maxwinddegre": 365, "avgwindspeed": 365, "avewind": 365, "avgwinddir": 365, "avgwinddegre": 365, "vorhersage1": 365, "vorhersage2": 365, "vorhersage3": 365, "wunderground_": 366, "miio": [367, 533, 649], "offenbart": 367, "xxd": 367, "mirobo_ip": 367, "mirobo_tok": 367, "euertok": 367, "mirobo": 367, "cleaned": [367, 645, 646, 648, 652, 653], "in_cleaning": 367, "spotrein": 367, "luftergeschwind": 367, "gereinigt": 367, "reinigungszeit": 367, "slixmpp": [368, 646], "recevied": 368, "otr": 368, "omemo": 368, "groupchat": [368, 534], "xmpploghandl": 368, "xmpp_plugin": 368, "xmpp_receiv": 368, "conferenc": 368, "xmpp_receiver_typ": 368, "operationlog": [368, 545, 554, 585, 641, 646, 648, 655], "jid": 368, "skend": [368, 534, 545, 552], "somexmppserv": 368, "use_ipv6": [368, 641], "xep_0199": 368, "muc": 368, "xep_0045": 368, "jabb": 368, "0004": 368, "0009": 368, "rpc": [368, 622, 646], "0012": 368, "0013": 368, "0016": 368, "privacy": 368, "0020": 368, "negotiation": 368, "0027": 368, "openpgp": 368, "0030": 368, "0033": 368, "stanza": 368, "addressing": [368, 670], "0045": 368, "0047": 368, "band": 368, "bytestream": 368, "0048": 368, "bookmark": 368, "0049": 368, "0050": 368, "hoc": 368, "0054": 368, "vcard": 368, "0059": 368, "0065": 368, "socks5": 368, "0066": 368, "0070": 368, "verifying": 368, "0071": 368, "xhtml": 368, "IM": 368, "0077": 368, "0078": 368, "sasl": 368, "0079": 368, "0080": 368, "0082": 368, "0084": 368, "avatar": 368, "0085": 368, "0086": 368, "0091": 368, "delayed": [368, 646, 655], "0092": 368, "0095": 368, "initiation": 368, "0096": 368, "0106": [368, 622], "escaping": 368, "0107": 368, "mood": 368, "0108": 368, "0115": 368, "entity": 368, "0118": 368, "0122": 368, "validation": 368, "0128": 368, "0131": 368, "0133": 368, "0138": 368, "compression": 368, "0152": 368, "reachability": 368, "0153": 368, "0163": 368, "eventing": 368, "0172": 368, "nicknam": 368, "0184": 368, "receipt": 368, "0186": 368, "invisibl": [368, 652], "0191": 368, "0196": 368, "gaming": 368, "0198": 368, "0199": 368, "0202": 368, "0203": 368, "0221": 368, "0222": 368, "0223": 368, "0224": 368, "0231": 368, "0235": 368, "0242": 368, "2009": 368, "invitation": 368, "0256": 368, "0257": 368, "0258": 368, "label": 368, "0270": 368, "suit": 368, "0279": 368, "0280": 368, "carbon": 368, "0297": 368, "cryptographic": 368, "0302": 368, "0308": 368, "correction": [368, 645, 651, 655], "0313": 368, "0319": 368, "interaction": 368, "0323": 368, "0325": 368, "0332": 368, "0333": 368, "0334": 368, "0335": 368, "0352": 368, "0363": 368, "0380": 368, "0394": 368, "mto": 368, "whom": 368, "haxhimolla": [368, 534, 545, 552], "msgsend": 368, "mtyp": 368, "athom": 368, "rx": [369, 370, 535, 545, 550], "stumm": 369, "s600": 369, "v475": 369, "eingangskanal": 369, "stummschalt": [369, 536], "ync": 369, "datenaustausch": 369, "ereignisbenachricht": 369, "ssdp": 369, "subnetz": [369, 384, 531], "hauptzon": 369, "v4xx": 369, "v5xx": 369, "v6xx": 369, "v7xx": 369, "sxxx": 369, "rxs": 369, "602d": 369, "musiccast": [369, 370, 536, 545, 550, 643], "yamahaxyc": [369, 655], "yamaha_host": 369, "186": 369, "yamaha_cmd": 369, "kollidi": 369, "yamaha": [370, 536, 545, 550, 643, 646, 648, 655, 670], "streaminglautsprech": 370, "eingangswahl": 370, "schamlos": 370, "raoul": 370, "thill": 370, "geklaut": 370, "yxc": 370, "v483": 370, "isx": 370, "18d": 370, "wx": 370, "010": 370, "austausch": 370, "abonniert": [370, 454, 595], "statusmeld": [370, 422], "versorgt": 370, "yamahayxc_cmd": 370, "gerateitem": 370, "sorry": 370, "abonnement": [370, 595], "netusb": [370, 536], "testhardwar": 370, "weckerfunktion": 370, "arch": 370, "pacman": 370, "fedora": 370, "dnf": 370, "wx010": 370, "yamahayxc_host": 370, "211": 370, "yamahayxc_zon": 370, "playback": 370, "dependent": 370, "net_radio": 370, "supplied": 370, "hosted": 370, "albumart": 370, "total_tim": 370, "play_pos": 370, "play_tim": 370, "totaltim": 370, "arbitrary": [370, 651], "discretion": 370, "passthru": 370, "alarm_on": 370, "beep": 370, "solo": 370, "alarm_beep": 370, "alarm_tim": 370, "setpow": 370, "1430": 370, "gelog": 370, "weck": [370, 536], "zigbe": [371, 511, 537, 545, 548, 650, 653], "ambianc": 371, "e27": 371, "800lm": 371, "e26": 371, "ikea": 371, "tradfri": 371, "led1924g9": 371, "led1949c5": 371, "angebund": 371, "ggfs": 371, "zigbee2mqtt_foo": 371, "z2m_foo": 371, "lampe1": 371, "light_white_ambient": 371, "z2m_topic": 371, "friendlyname1": 371, "light_rgb": 371, "friendlyname2": 371, "z2m_attr": 371, "level_2": 371, "permit_join": 371, "health_check": 371, "networkmap_raw": 371, "device_remov": 371, "device_configur": 371, "device_option": 371, "device_renam": 371, "device_configure_reporting": 371, "last_se": 371, "did": [372, 646, 655], "navigationsleist": [373, 496, 523], "repositori": [373, 641], "einklink": 373, "nachfolgelos": [374, 381, 383, 394, 397, 421, 426, 446, 463, 474, 497, 506, 523, 524, 532], "fussnot": [374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "anzusprech": [375, 384, 472, 500, 536, 537, 561], "kamerastream": 375, "standbild": 375, "stream1": 375, "stream2": 375, "stream3": 375, "indentifizi": 375, "wertbereich": 375, "streamdefinition": 375, "codecs": 375, "aufloes": 375, "moeglich": 375, "alexa_stream_1": 375, "raumthermostat": 375, "otp": 376, "ergebnistyp": [376, 378, 380, 382, 391, 394, 396, 398, 399, 406, 411, 416, 423, 425, 430, 433, 434, 445, 449, 455, 456, 460, 462, 468, 471, 472, 479, 484, 488, 491, 502, 504, 506, 510, 512, 516, 519, 520, 522, 530, 531], "textblock": 377, "einschaltstatus": 378, "playing_app_identifi": 378, "applikationsidentifikation": 378, "playing_app_nam": 378, "applikationsnam": 378, "playing_stat": 378, "abspielstatus": 378, "playing_state_text": 378, "playing_fingerprint": 378, "fingerprint": 378, "playing_genr": 378, "playing_artist": 378, "playing_album": 378, "playing_titl": 378, "playing_typ": 378, "medientyp": 378, "playing_type_text": 378, "playing_position": 378, "zeitposition": 378, "playing_total_tim": 378, "gesamtspielzeit": 378, "playing_position_percent": 378, "playing_repeat": 378, "wiederholmodus": 378, "playing_repeat_text": 378, "playing_shuffl": 378, "playing_shuffle_text": 378, "artwork_width": 378, "artwork_height": 378, "artwork_mimetyp": 378, "mimetyp": 378, "artork": 378, "artwork_base64": 378, "topmenu": 378, "rc_hom": 378, "rc_home_hold": 378, "rc_stop": 378, "rc_play_paus": 378, "hinunt": 378, "hinauf": 378, "rc_set_position": 378, "rc_set_repeat": 378, "rc_set_shuffl": 378, "rc_skip_backward": 378, "ruckwart": 378, "spring": 378, "rc_skip_forward": 378, "vorwart": 378, "rc_volume_down": 378, "rc_volume_up": 378, "rc_suspend": 378, "rc_wakeup": 378, "netwerk": [379, 545, 548], "univers": 379, "lichtsituation": 379, "vollstanding": 379, "wertemeng": 379, "kanalwert": 379, "startadress": 379, "startkanal": 379, "5038": 380, "geratekenn": 380, "tupel": 380, "smartdevic": [381, 545, 550, 655], "verbindungsaufbauversuch": 381, "dependson": 381, "poweritem": 381, "wohl": 381, "musiktitel": 381, "defaultwert": 381, "lcd": 381, "mitunt": 381, "scrollend": 381, "songtiteln": 381, "zeichnfolg": 381, "rn": 381, "pluginunterordn": 381, "resend": [381, 650], "sendeversuch": [381, 400, 441, 464, 467, 512], "attributangab": 381, "puff": 381, "ofmal": 381, "endgerat": [381, 642, 671], "zulasst": 381, "8002": 381, "itemupdat": 381, "vollzog": 381, "textkonfiguration": 381, "ausbess": 381, "zonenbezug": 381, "monitoringservic": [382, 674], "rufnumm": 382, "filterstring": 382, "12234": 382, "anschlussnumm": 382, "49000": 382, "tr064": [382, 653], "abfrageergebnis": [382, 398], "2x": 382, "blacklisted": [382, 653], "aktoridentifikationsnumm": 382, "datentyps": 382, "lesekommando": [382, 393, 522], "schreibkommando": [382, 393, 522], "ger\u00e3": 382, "4ghz": 382, "5ghz": 382, "geh\u00e3\u0192\u00e2": 382, "ren": 382, "nachgeschlag": 382, "identifikator": 382, "064": [382, 655], "friendynam": 382, "anteil": 382, "610": 382, "dect301": [383, 545, 550, 649], "updatelauf": [383, 394, 406, 460, 462, 468, 479, 503, 518], "identifikationsnumm": [383, 525], "has_switch": 383, "has_temperature_sensor": 383, "has_thermostat": 383, "has_alarm": 383, "eco_temperatur": 383, "set_switch_state_on": 383, "set_switch_state_off": 383, "set_switch_state_toggl": 383, "bang": [384, 451, 545, 548, 651], "olufs": [384, 451, 545, 548, 651], "netlink": [384, 545, 548, 651], "wg": [384, 641], "scannend": 384, "audiomod": 384, "videomod": 384, "muted": 384, "producttyp": 384, "sektionsnam": 385, "vorangstellt": 385, "blockly_": 385, "datenabfrag": [387, 443, 545, 550], "bsb": [387, 545, 550, 646, 649], "heizkesseln": [388, 545, 550], "60s": 389, "geraet": [390, 407, 452], "unterbleib": 391, "duchfuhr": 391, "messgerat": [392, 545, 550], "datenanfrag": 392, "netzwerverbind": 393, "kommand": 393, "lesekommandos": [393, 522], "registrier": [394, 462, 468, 472, 510], "alerts_string": [394, 468], "verbindungsparamet": 396, "maxag": [396, 645, 652, 653], "datenbestand": 396, "datenbanktabell": 396, "smartnomeng": 396, "unbegrenzt": 396, "aender": [396, 432], "fand": 396, "unterdrueckt": 396, "aufraum": 396, "ungenutzt": 396, "lowlevel": 396, "datenbankeintrag": [396, 641], "eingeschrank": 396, "endzeit": [396, 423, 479], "datenbankcursor": 396, "extenstion": 397, "datenauswert": [398, 545, 554], "beispieleintrag": 398, "optimier": [398, 632, 671], "wertefilt": 398, "datenbankabfrag": 398, "worterbuch": 398, "auswertefunktion": 398, "verbrauch_jahr_minus3": [398, 655], "wachstumsgradtag": [398, 656], "tagesmitteltemperatur": 398, "minmax": 398, "minmax_last": 398, "zaehlerstand": 398, "abfragefunktion": 398, "sum_max": 398, "sum_avg": 398, "sum_min_neg": 398, "diff_max": 398, "zeitinkrement": [398, 504], "gruppier": 398, "deebot": [399, 545, 550, 645], "ozmo": [399, 545, 550, 645], "920": [399, 545, 550], "950": [399, 545, 550], "960": [399, 545, 550], "kontinent": 399, "autodetect": 399, "lifespan": 399, "zuruckkehr": 399, "reinig": [399, 456, 481], "geputzt": 399, "lokalisi": 399, "fortfuhr": 399, "saugstark": 399, "quantitat": 399, "quanittat": 399, "neuverbind": [400, 408, 435, 441, 464, 467], "ubertragungsgeschwind": [400, 408, 464, 467], "ubertragungsmodus": [400, 408, 464, 467], "datenbit": [400, 408, 464, 467], "wart": [400, 441, 464, 467, 628], "netzwerkziel": [400, 408, 435, 441, 464, 467], "modellauswahl": [400, 408, 464, 467], "paritat": [400, 408, 464, 467], "verbindungsabbruch": [400, 408, 435, 441, 464, 467], "sekundentakt": [400, 441, 464, 467], "com1": [400, 408, 464, 467], "antwortbegrenz": [400, 408, 441, 464, 467], "gerateantwort": [400, 408, 435, 441, 464, 467, 501, 522], "fwd": [400, 408, 435, 441, 464, 467, 623], "rci": [400, 408, 435, 441, 464, 467], "lesebefehl": [400, 442], "schreibbefehl": [400, 442], "anderungsanforder": 401, "unteradress": 401, "abfragecod": 401, "quer": 401, "prufsumm": 401, "konvertierungsart": 401, "auslesepuff": 401, "development_only": 402, "touchpanel": 403, "vailant": [405, 545, 550], "ebusd": [405, 545, 550, 667], "geupdated": 406, "eingegang": 406, "anzeigedau": [406, 469], "ffff4680": 407, "blockiert": [407, 688], "verstellt": 407, "dimmgeschwind": 407, "geraetetyp": 407, "fud61npn": 407, "fld61": 407, "fud70s": 407, "fbh63tf": 407, "stp": 407, "secusignal": 407, "tasteraktion": 407, "tastersequenz": 407, "rolladenverstellzeit": 407, "a5_38_08": 407, "referenzwert": [407, 419], "sdpcommand": [408, 622], "eta": [409, 545, 550], "pellet": 409, "bedarfsfall": 410, "statist": [411, 545, 558, 622], "pulswert": [411, 545, 558], "garmin": [411, 545, 558, 643], "china": 411, "pul": 411, "prufend": [411, 520], "ddd": [411, 520], "posteinwurferkenn": 412, "basteln": 412, "gpios": 412, "distanzsensor": 412, "umweg": 412, "abgegriff": 412, "prellzeit": 412, "zuweisungsmethod": 412, "pinbeleg": 412, "bcm": 412, "pulldown": 412, "systemweit": 412, "ausgabewert": 412, "voreinstell": [412, 496, 524, 690], "septemb": [413, 526, 639, 646, 647, 648, 649, 650], "ec": [414, 545, 550], "x00": [414, 545, 550], "vallox": [414, 545, 550, 670], "fortluftsensor": 414, "zuluftsensor": 414, "aussenluftsensor": 414, "abluftsensor": 414, "frostwarn": 414, "smathomeng": 414, "frquenz": [416, 448, 492, 530, 532], "simulationsmodus": 416, "haid": 416, "homematicip": [417, 545, 548, 674], "homematric": 417, "30000": 417, "uberzugeh": [419, 420], "dpt3": [419, 504, 648, 651, 665], "helligkeitsverander": [419, 420], "farbton": [419, 450], "leuchtmittel": [419, 420], "lichteffekt": [419, 420], "tageslicht": [419, 420], "sunriseoffset": [419, 420], "sunsetoffset": [419, 420], "hue2_recourc": 419, "gebend": 419, "initial_press": 420, "short_releas": 420, "long_releas": 420, "hue3_recourc": 420, "mahrobot": [421, 422, 424, 425, 479, 545, 550, 558], "arbeitsdat": 421, "benutzkonto": 422, "gpsoint": 422, "parkpermanent": 422, "parktim": 422, "parknext": 422, "cuttingheight": 422, "headlight": 422, "errormessag": 422, "batterypercent": 422, "onlinefeed": 423, "onlinekal": 423, "sternch": 423, "aktualisierungsintervall": 423, "beduetet": 423, "arraywert": 423, "eventkategori": 423, "eventzusammenfass": 423, "notiz": 423, "startend": 423, "analysier": 423, "kalendereintrag": 423, "wievielt": [423, 599, 634], "kartendatei": [424, 425], "servicezugriff": [424, 425], "elt": [424, 425, 566], "reaagiert": [426, 427], "Diesem": [426, 427], "aufzeichnet": 427, "zugr": 428, "organisation": 428, "influxdb": [428, 545, 554, 644, 645, 651, 653, 655], "2n": [429, 545, 550, 670], "tursprechanlag": [429, 545, 550], "intercom": [429, 670], "joaoapps": [430, 545, 558], "pyjq": 431, "webprotokoll": 431, "dateiadapt": 431, "gammakurv": [432, 545, 550], "uebertrag": [432, 545, 550], "muess": 432, "aufgefuehrt": 432, "gammaspeich": 432, "bussystem": [434, 545, 548], "startverzeichnis": 434, "zwangssteuer": 434, "4002": 434, "8859_1": 434, "002": 434, "relativwert": 434, "5003": [434, 655], "003": 434, "5999": [434, 646], "spezial": [434, 632], "tebis": [434, 646], "32768": 434, "32767": [434, 517], "gleitkomma": 434, "671088": 434, "670760": 434, "4294967295": 434, "2147483648": 434, "2147483647": 434, "gleitkommazahl": 434, "16000": 434, "16001": 434, "17001": 434, "18001": 434, "hvac": [434, 487], "unlimitiert": 434, "229": [434, 641], "tripel": 434, "275": [434, 641], "quadrupel": 434, "nachtabsenk": [434, 487], "frostschutz": [434, 487], "winkhaus": [434, 651], "schliesssystem": 434, "pollintervall": 434, "ubermittl": 434, "objektwert": 434, "codier": 434, "datenpunkttyp": 434, "ereignisgesteuert": 434, "sendewiederhol": 435, "protokolleb": [435, 621], "moduln": [436, 545, 550], "limitier": 436, "betriebszeit": 436, "kostal": [437, 438, 545, 550, 643, 653, 655, 667, 670], "regenwass": [439, 545, 550], "fuellstandsanzeig": [439, 545, 550], "projet": [439, 545, 550, 651], "19200": [439, 517], "sek": [439, 622], "eigeles": 439, "outflag": 439, "lircd": [440, 545, 548, 671], "remotecod": 440, "befehel": 440, "simulier": 440, "irrecord": 440, "vererb": [441, 564], "coverarturl": 441, "coverart": 441, "wiedergabegerat": 441, "sps": [442, 545, 550], "kommunikationsport": 442, "heissgas": 443, "SOLL": 443, "betriebsstund": [443, 526], "verdicht": [443, 526, 622], "impuls": 443, "zusatzheiz": 443, "postfach": 444, "fal": 444, "993": 444, "trash": 444, "2525": 445, "465": 445, "587": 445, "testmail": 445, "mailtext": 445, "bordmittel": [446, 545, 554], "ersetzbar": [446, 545, 554], "zuordnungswert": [446, 463], "item_c": [446, 463], "item_d": [446, 463], "kommagetrennt": [446, 463], "landerkenn": 447, "flora": [448, 545, 550, 670], "pflanzensensor": [448, 545, 550], "routeros": [449, 545, 550, 655], "8729": 449, "poe": 449, "gerateanschluss": 449, "ether1": 449, "switchport": 449, "aktivierungsstatus": 449, "leuchtmitteln": [450, 545, 548], "hue_and_lum": 450, "schwell": 450, "sinkt": 450, "feinkalibration": 450, "farbkreis": 450, "weisspunkt": 450, "vermindert": 450, "masterlink": [451, 545, 548], "bv9": 451, "blactiv": 451, "befehlstyp": 451, "slav": [452, 509], "int32": 452, "uint32": 452, "stringnn": 452, "datenricht": 452, "multipliziert": 452, "2a": 453, "6600": [453, 617], "musikstuck": 453, "abzuspiel": [453, 671], "einzelwiedergab": 453, "pausenstatus": 453, "songpos": 453, "uberblend": 453, "uberbl": 453, "uberlapp": 453, "abgezog": 453, "replay_gain_mod": 453, "replay": 453, "musikdatenbank": 453, "spielend": 453, "datenbankupdat": 453, "lautsark": 453, "unsigned": 453, "mixramp": 453, "musikstucknumm": 453, "kbps": 453, "decod": [453, 643, 649, 651, 655], "apiel": 453, "samplerat": 453, "nextsong": 453, "reatin": 454, "abfahrt": [455, 545, 558], "munchn": [455, 545, 558], "verkehrsbetrieb": [455, 545, 558], "mvg": [455, 545, 558, 655], "verkehrverbind": 455, "productsymbol": 455, "linesymbol": 455, "linenam": 455, "productsymbolurl": 455, "haltestell": 455, "robotor": [456, 545, 550], "angedockt": 456, "reinigungsplan": 456, "laed": 456, "verfuegbar": [456, 517], "einzelraum": 456, "command_startavailabl": 456, "online_status": 456, "reinigunsplan": 456, "loescht": 456, "verfuebar": 456, "raeum": 456, "zimm": 456, "netzwerkanfrag": [457, 545, 552], "dediziert": 457, "zielsyst": 457, "kommunikaton": 458, "bridget": 458, "herausgefund": [458, 688], "doorstat": 458, "lesezyklus": 459, "messstellenkenn": 460, "messstation": 460, "postleitzahl": 460, "ortsnam": 460, "testbetrieb": 460, "messnetzknot": 460, "freiburg": 460, "munch": 460, "bonn": 460, "rendsburg": 460, "nn": 460, "messperiod": 460, "gesenkt": 461, "stromverbrauch": 461, "destabilisi": 461, "sensorauflist": 461, "heruntergezahlt": 461, "pei": 461, "busspann": 461, "regeneri": 461, "aufeinanderfolg": 461, "lesefehl": 461, "use_ow_alias": 461, "sensortyp": 461, "lichtstark": 461, "i0": 461, "i4": 461, "i5": 461, "i6": 461, "i7": 461, "o0": 461, "o1": 461, "o2": 461, "o4": 461, "o5": 461, "o6": 461, "o7": 461, "dezimalstell": [462, 519], "niederschlagswert": 462, "no_updat": 462, "log_info": 462, "beschreibened": 462, "caching": [463, 649], "namensformat": 463, "vorgehalt": 463, "temperatureinsid": 465, "temperatureoutsid": 465, "airswinghorizontal": 465, "airswingvertical": 465, "bindungsvorgang": 466, "geraetss": 466, "plax": 469, "biled": 469, "dialgo": 469, "wandelt": [470, 599, 634], "differenzi": 471, "expizit": 472, "nodered": [475, 545, 548], "kennzeichnet": [475, 508, 517, 561, 563, 566], "plpaylist": 475, "lautstarkeeinstell": 475, "buttoncod": 476, "01000": 476, "00100": 476, "00010": 476, "00001": 476, "zeigenm": 477, "dl2": 478, "7053": 478, "bitus": 478, "vorzeich": [478, 494], "behaftet": 478, "robonect_id": 479, "robonect_version": 479, "robonect_version_comment": 479, "robonect_version_compiled": 479, "hardware_serial": 479, "production_dat": 479, "msw_titl": 479, "msw_version": 479, "msw_compiled": 479, "wlan_at": 479, "wlan_sdk": 479, "remotestart_nam": 479, "remotestart_visibl": 479, "remotestart_path": 479, "remotestart_proportion": 479, "remotestart_distanc": 479, "status_text_translated": 479, "mode_text_translated": 479, "statistic": 479, "blades_quality": 479, "blades_hour": 479, "blades_days": 479, "error_dat": 479, "error_tim": 479, "error_unix": [479, 649], "rssi": 479, "climat": 479, "battery_id": 479, "battery_charg": 479, "battery_voltag": 479, "battery_current": 479, "battery_temperatur": 479, "battery_capacity_full": 479, "battery_capacity_remaining": 479, "motor_drive_left_pow": 479, "motor_drive_left_speed": 479, "motor_drive_left_current": 479, "motor_drive_right_pow": 479, "motor_drive_right_speed": 479, "motor_drive_right_current": 479, "motor_blade_speed": 479, "motor_blade_current": 479, "motor_blade_averag": 479, "weather_location_zip": 479, "weather_location_country": 479, "weather_rain": 479, "weather_temperatur": 479, "weather_humidity": 479, "weather_sunris": 479, "weather_sunset": 479, "weather_day": 479, "weather_condition_toorainy": 479, "weather_condition_toocold": 479, "weather_condition_toowarm": 479, "weather_condition_toodry": 479, "weather_condition_toowet": 479, "weather_condition_day": 479, "weather_condition_night": 479, "weather_dat": 479, "weather_tim": 479, "weather_unix": 479, "fernstart": 479, "remotestart_": 479, "eod": 479, "fernstartpunkt": 479, "mahauftrag": 479, "zeitdau": 479, "fernstartabstand": 479, "homebas": 481, "ladewert": 481, "auffangbehalt": 481, "fehlernumm": 481, "stock": 481, "statusobjekt": 482, "sensorlist": 483, "zielort": 483, "uptime_string": 484, "cpu_temperatur": 484, "taktrat": 484, "temperaturlimit": 484, "gedrosselt": 484, "unterspann": 484, "robin": [485, 545, 554, 665], "rrdtool": [485, 545, 554, 667], "datenquellennam": 485, "gaug": 485, "ventilschutz": [486, 487], "voreingestellt": 486, "integralfaktor": 486, "verstarkungsfaktor": 486, "ordnet": 486, "stellgross": 486, "mint": 486, "absenk": [486, 487], "gebauch": 487, "wasserheiz": 487, "fussbodenheitz": 487, "inital": 487, "setting_min_output": 487, "setting_max_output": 487, "fortsetz": [488, 519], "soundquell": 488, "ausgabeunterdruck": 488, "schliesst": 488, "shelly1pm": 489, "shellyswitch": 489, "shellyswitch25": 489, "shellydw2": 489, "simuli": 490, "niemand": 490, "zuhaus": 490, "bewerkstell": 490, "aufzeichn": 490, "datenfil": 490, "datenhalt": 490, "unterstuzt": 490, "messaging": [491, 534, 545, 552, 558], "zeitunterschied": 492, "systemzeit": 492, "pregard": [493, 674], "pregardcount": [493, 674], "psurplus": [493, 674], "psurpluscount": [493, 674], "sregard": [493, 674], "sregardcount": [493, 674], "ssurplus": [493, 674], "ssurpluscount": [493, 674], "qregard": [493, 674], "qregardcount": [493, 674], "qsurplus": [493, 674], "qsurpluscount": [493, 674], "p1regard": [493, 674], "p1regardcount": [493, 674], "p1surplus": [493, 674], "p1surpluscount": [493, 674], "s1regard": [493, 674], "s1regardcount": [493, 674], "s1surplus": [493, 674], "s1surpluscount": [493, 674], "q1regard": [493, 674], "q1regardcount": [493, 674], "q1surplus": [493, 674], "q1surpluscount": [493, 674], "thd1": [493, 674], "p2regard": [493, 674], "p2regardcount": [493, 674], "p2surplus": [493, 674], "p2surpluscount": [493, 674], "s2regard": [493, 674], "s2regardcount": [493, 674], "s2surplus": [493, 674], "s2surpluscount": [493, 674], "q2regard": [493, 674], "q2regardcount": [493, 674], "q2surplus": [493, 674], "q2surpluscount": [493, 674], "thd2": [493, 674], "p3regard": [493, 674], "p3regardcount": [493, 674], "p3surplus": [493, 674], "p3surpluscount": [493, 674], "s3regard": [493, 674], "s3regardcount": [493, 674], "s3surplus": [493, 674], "s3surpluscount": [493, 674], "q3regard": [493, 674], "q3regardcount": [493, 674], "q3surplus": [493, 674], "q3surpluscount": [493, 674], "thd3": [493, 674], "s64": 494, "str08": 494, "str12": 494, "str16": 494, "eingeht": [495, 545, 550], "standardport": 495, "nachgedacht": 495, "masterit": 496, "blk": [496, 523, 682, 684], "zentriert": [496, 523], "ausgerichtet": [496, 523, 686], "umschliess": 496, "meher": 496, "eigenschaftstyp": 497, "scalar": 497, "lesepuff": [498, 499], "nachrichtenlang": [498, 499], "polynom": [498, 499], "4129": [498, 499], "umkehr": [498, 499], "bitreihenfolg": [498, 499], "xor": [498, 499], "bytereihenfolg": [498, 499], "tausch": [498, 499], "dezimalzahl": 500, "161": 501, "solaretragsvorhersag": [502, 545, 558], "azimutwinkel": 502, "panelausricht": 502, "south": [502, 649], "deklinationswinkel": 502, "solaranlag": 502, "langengrad": [502, 510, 599, 636], "leistungcheck": 502, "watts_hourly": 502, "gefordert": [502, 526], "hostadress": [503, 525], "variablendefinition": 503, "netzwerkzugriff": 504, "23500": 504, "emfang": 504, "is_initialized": 504, "is_coordiantor": 504, "track_titl": 504, "track_artist": 504, "track_uri": 504, "track_album": 504, "track_album_art": 504, "play_mod": 504, "radio_show": 504, "radio_station": 504, "additional_zone_memb": 504, "is_coordinator": 504, "tts_local_mod": 504, "dialog_mod": 504, "buttons_enabled": 504, "cross_fad": 504, "coordinator": 504, "snooz": 504, "status_light": 504, "zone_group_memb": 504, "player_nam": 504, "household_id": 504, "streamtyp": 504, "current_track": 504, "number_of_track": 504, "current_transport_action": 504, "current_valid_play_mod": 504, "sonos_playlist": 504, "stream_content": 504, "current_track_duration": 504, "sonos_favorit": 504, "favorite_radio_station": 504, "play_tunein": [504, 652], "play_url": 504, "play_sharelink": [504, 653], "load_sonos_playlist": 504, "play_snippet": [504, 648, 649, 653], "play_tt": [504, 648, 655], "unjoin": 504, "volume_up": 504, "volume_down": 504, "playmod": 504, "get_playlist": 504, "set_playlist": 504, "switch_linein": 504, "switch_tv": 504, "play_favorite_titl": [504, 653], "play_favorite_numb": [504, 653], "play_favorite_radio_titl": [504, 653], "play_favorite_radio_numb": [504, 653], "play_sonos_radio": 504, "untermeng": [504, 630], "volumenlevel": 504, "tracklang": 504, "ansteig": 504, "textpaket": 505, "speechpars": 505, "verwaist": 506, "benennt": [506, 585], "squeezelit": 507, "9002": 507, "grand": 507, "aktualisierenn": 507, "wegfall": 507, "prefset": 507, "playernam": 507, "graphviz": 508, "pydotplus": 508, "sonnenstandsbezog": 508, "waagrecht": 508, "protokolldatei": 508, "smarthome_base_directory": 508, "standardlevel": 508, "protokollverzeichnis": 508, "uberaltert": 508, "loschfunktionalitat": 508, "vorgabezeit": 508, "unterbrech": 508, "86400": 508, "visualisierungszweck": 508, "zustandset": 508, "displayzweck": 508, "zustandsset": 508, "neuermittl": 508, "abzuweich": 508, "eingeordnet": 508, "standarddau": 508, "einbezug": 508, "enthehm": 509, "preisaktualisier": 510, "anzufrag": 510, "performanzgrund": 510, "umkreis": 510, "mittelpunkt": 510, "benzin": 510, "sortierreihenfolg": 510, "pric": [510, 669], "suchradius": 510, "telemetri": 511, "delete_retained_messag": 511, "key16": 511, "clust": [511, 653], "0x9cb9": 511, "gruppennachricht": 511, "messeng": [512, 545, 558], "endenachricht": 512, "auswahlbar": 512, "trust": 512, "unternomm": 512, "willkommensnachricht": 512, "lesezugriff": 512, "wertaktualisier": 512, "mitteilungstext": 512, "57483": 514, "comportstatus": 514, "logregist": 514, "logfullscan": 514, "geblinkt": 515, "endlosschleif": 515, "einschaltverzoger": [515, 574], "reisezeit": [516, 545, 558], "routinganweis": 516, "fahrtrout": 516, "geokoordinat": 516, "abfahrtszeit": 516, "travel": 516, "walking": 516, "bicycling": 516, "ausleseintervall": 517, "duchgefuhrt": 517, "rtu": [517, 653], "socat": 517, "mbusd": 517, "ttytrovis": 517, "pa6": 517, "stationsadress": 517, "nr": [517, 671], "247": 517, "buswert": 517, "umgerechnet": 517, "listentext": 517, "stufenweis": 517, "ap_": 518, "client_": 518, "device_": 518, "switch_": 518, "selektier": 518, "portprofil": 518, "client_present": 518, "client_ip": 518, "client_hostnam": 518, "client_present_at_ap": 518, "switch_port_enabled": 518, "switch_port_profil": 518, "ap_enabled": 518, "standardmaximalalt": 519, "nachzuhol": 519, "standardintervall": 519, "sonnenstandbezug": 519, "interpolationseinstell": 519, "zwischenberechn": 519, "splin": 519, "verlangsam": 519, "interpolationswert": 519, "abruft": 519, "aktualisierungszeitpunkt": 519, "fortzusetz": 519, "schulferi": [520, 545, 558], "21600": 520, "2592000": 520, "feri": [520, 646, 652], "developp": 521, "portal": [521, 649], "boilerserial": 521, "dhw": 521, "circulation": 521, "onetimecharg": 521, "dhwcylind": 521, "hotwaterstorag": 521, "commonsupply": 521, "sendekommandos": 521, "zeitbegrenz": 522, "einheitencod": 522, "protokollkonfiguration": 522, "unitset": 522, "gelauscht": 524, "crt": [524, 688], "volkszahl": [525, 545, 550], "entgegennimmt": 525, "substituiert": 525, "middlewar": 525, "ecotouch": [526, 545, 550, 651], "temp_auss": 526, "temp_aussen_1h": 526, "temp_aussen_24h": 526, "temp_quelle_ein": 526, "temp_quelle_aus": 526, "temp_verdampf": 526, "verdampf": 526, "temp_sauggas": 526, "sauggas": 526, "druck_verdampf": 526, "temp_soll": 526, "temp_ruecklauf": 526, "rucklauf": 526, "temp_vorlauf": 526, "vorlauf": [526, 622, 639], "temp_kondensation": 526, "kondensation": 526, "druck_kondensation": 526, "temp_speich": 526, "temp_raum": 526, "temp_raum_1h": 526, "temp_ww": 526, "temp_sk": 526, "pow_comp": 526, "kompressor": 526, "pow_therm": 526, "thermisch": 526, "pow_cool": 526, "cop_comp": 526, "cop": 526, "cop_cool": 526, "kuhlung": 526, "temp_hk": 526, "heizkreis": [526, 622], "temp_gefordert_hk": 526, "temp_gefordert_ww": 526, "temp_soll_ww": 526, "rpm_hk": 526, "drehzahl": 526, "heizkreispump": [526, 622], "rpm_sol": 526, "quellenpump": 526, "valve_exp": 526, "expansionsventil": 526, "offnung": 526, "jaz_wp": 526, "jahresarbeitszahl": 526, "oh1_verdicht": 526, "oh2_verdicht": 526, "oh1_heizstab": 526, "heizstab": 526, "oh2_heizstab": 526, "oh1_heizpump": 526, "oh2_heizpump": 526, "oh1_solepump": 526, "oh2_solepump": 526, "cop_jan": 526, "cop_feb": 526, "cop_mar": 526, "cop_apr": 526, "april": [526, 639, 640, 657], "cop_may": 526, "cop_jun": 526, "cop_jul": 526, "cop_aug": 526, "cop_sep": 526, "cop_oct": 526, "cop_nov": 526, "cop_dec": 526, "f121": 526, "webadress": 527, "20sek": 527, "ausgeblendet": 527, "voransicht": 527, "statusleist": 527, "nachrichteninhalt": 527, "vibrationsmust": 527, "nachrichteneingang": 527, "vibriert": 527, "300ms": 527, "100ms": 527, "400ms": 527, "zuzustell": 527, "urgency": 527, "steigt": 527, "ruckgabedat": 528, "metainformation": 528, "bundeln": 528, "projektnam": 529, "dashboard_oauth2": 530, "geheimnis": 530, "nomral": 530, "einloggt": 530, "nh_typ": [530, 646], "diastolic_blood_pressur": 530, "systolic_blood_pressur": 530, "body_temperatur": 530, "skin_temperatur": 530, "spo2": 530, "heart_puls": 530, "hydration": 530, "bone_mass": 530, "pulse_wave_velocity": 530, "aufgeweckt": 531, "trennzeich": 531, "ip4": [531, 649], "tagesmeng": 532, "gebuhrenfrei": 532, "franzos": 532, "herauszufilt": 532, "mactchstring": 532, "valetudo": [533, 545, 550], "bespiel": [533, 545, 550], "befolg": 533, "localsecret": 533, "gchq": 533, "cyberchef": 533, "recip": 533, "to_hex": 533, "saug": 533, "standart": 533, "set_start": 533, "set_stop": 533, "set_paus": 533, "set_hom": 533, "set_spot": 533, "set_find": 533, "reset_filtertim": 533, "disable_dnd": 533, "set_dnd": 533, "dnd_status": 533, "dnd_start": 533, "dnd_end": 533, "dnd_onoff": 533, "clean_zon": 533, "zone_cleaning": 533, "segment_clean": 533, "segment_status": 533, "go_to": 533, "create_nogo_zon": 533, "clean_tim": 533, "carpet_mod": 533, "carpetmode_high": 533, "carpetmode_integral": 533, "carpetmode_low": 533, "carpetmode_enabled": 533, "carpetmode_stall_tim": 533, "is_error": 533, "clean_total_count": 533, "clean_total_area": 533, "clean_total_duration": 533, "clean_id": 533, "clean_details_last0": 533, "last0_area": 533, "last0_complet": 533, "last0_duration": 533, "last0_start_dat": 533, "last0_start_tim": 533, "last0_end_dat": 533, "last0_end_tim": 533, "clean_details_last1": 533, "last1_area": 533, "last1_complet": 533, "last1_duration": 533, "last1_start_dat": 533, "last1_start_tim": 533, "last1_end_dat": 533, "last1_end_tim": 533, "clean_details_last2": 533, "last2_area": 533, "last2_complet": 533, "last2_duration": 533, "last2_start_dat": 533, "last2_start_tim": 533, "last2_end_dat": 533, "last2_end_tim": 533, "clean_details_last3": 533, "last3_area": 533, "last3_complet": 533, "last3_duration": 533, "last3_start_dat": 533, "last3_start_tim": 533, "last3_end_dat": 533, "last3_end_tim": 533, "side_brush": 533, "side_brush_left": 533, "main_brush": 533, "main_brush_left": 533, "filter_left": 533, "sensor_dirty": 533, "sensor_dirty_left": 533, "extensibl": [534, 545, 552], "zt": [534, 545, 552], "gruppenchat": 534, "betret": 534, "xep": [534, 641], "messga": 534, "wen": 534, "steuerungsmog": 536, "wiedergabequell": 536, "gerateabhang": 536, "netradio": 536, "streamingdien": 536, "wiedergabesteuer": 536, "zuruckspul": 536, "lautstarkesteuer": 536, "anwahl": 536, "geratestatus": 536, "wiedergabestatus": 536, "quellenabhang": 536, "wiedergabeposition": 536, "coverbild": 536, "ersetzungwert": 537, "0xdeadbeef": 537, "friendly_nam": 537, "openzwav": [538, 651], "konfiuration": 538, "garat": 538, "ozw": 538, "sicherheitsstrategi": 538, "hotz": [545, 558], "psilo909": [545, 548, 550, 552, 554, 558], "andrek": [545, 554, 558], "cannon": [545, 548, 550, 558], "assr85": [545, 558], "juerg": [545, 558], "apcups": [545, 550, 643, 645, 655], "sandman60": [545, 548, 550, 554, 558], "appletv": [545, 550, 645, 646, 652, 655], "foxi352": [545, 550, 554, 558], "artnet": [545, 548, 642, 655, 667, 671], "mode2k": [545, 548], "jentz1986": [545, 548, 550, 554, 558], "ohinckel": [545, 548, 550, 552, 554], "asterisk": [545, 550, 646, 650, 660, 663, 664, 665, 666, 667], "nobody": [545, 548, 550, 554], "sisamiw": [545, 548, 550, 554, 558, 643], "aschwith": [545, 548, 550, 552, 554, 558], "avm_smarthom": [545, 550, 649], "wenzel": [545, 550, 552], "sebastianfaulha": [545, 548, 550], "bsblan": [545, 550, 646, 649], "hengsberg": [545, 550], "thengsty": [545, 550], "buderus": [545, 550, 645, 646], "byd_bat": [545, 550, 655], "matthias": [545, 550, 666, 667], "manhart": [545, 550], "casambi": [545, 548, 645, 646, 647, 649, 650, 652, 653, 655], "macflei": [545, 548], "co2met": [545, 550, 644], "comfoair": [545, 550, 644, 649, 651, 655, 671, 673], "svstefan": [545, 550], "pfischi": [545, 548, 550], "db_addon": [545, 554, 653, 654, 655, 656], "ebus": [545, 550, 641, 649, 655], "z1marco": [545, 550], "enigma2": [545, 550, 566, 644, 646, 648, 669, 673, 685], "budd": [545, 548, 550, 667], "eta_pu": [545, 550, 667], "brootux": [545, 550], "garminconnect": [545, 558, 643, 646, 649, 650, 655], "rasberry": [545, 550], "cmalo": [545, 548, 550, 554, 558], "harmony": [545, 550, 651, 653, 670], "bombadil": [545, 550], "helios_tcp": [545, 550, 643, 645, 646, 653], "freget": [545, 550], "thilo": [545, 550], "schneid": [545, 550], "homeconnect": [545, 558, 649, 653, 655], "hue3": [545, 548, 618], "husky": [545, 550, 649], "gama": [545, 550], "scaramangas": [545, 550], "manhartm": [545, 550], "manu241": [545, 550], "husky2": [545, 550, 651, 652, 653, 654, 655], "gruberth": [545, 550, 558], "mknx": [545, 558], "indego4shng": [545, 558, 653, 654, 655], "kai": [545, 554], "med": [545, 554], "chrisr79": [545, 554], "knx_fan": [545, 558], "jvcproj": [545, 550, 655], "nportz": [545, 550], "kathrein": [545, 550, 643, 645], "mayrjohann": [545, 550], "waldmeister68": [545, 550], "leveljet": [545, 550, 651], "knatt": [545, 550], "blobo": [545, 550], "lirc": [545, 548, 645, 646, 654, 655, 673], "e3eat": [545, 548], "lms": [545, 550, 655], "ivand": [545, 548, 550], "luxtronic2": [545, 550, 646, 647, 655, 666, 671], "2ndsky": [545, 550], "mailrcv": [545, 558, 641, 643, 644, 645, 646, 649, 655, 691], "mailsend": [545, 558, 641, 643, 644, 645, 649, 655, 691], "mieleathom": [545, 548, 654, 655], "sippl": [545, 548, 550], "andrek01": [545, 548], "miflora": [545, 550, 641, 643, 674], "mikrot": [545, 550, 655], "milight": [545, 548, 643], "modbus_tcp": [545, 548, 649, 650, 652, 653, 654, 655], "mpd": [545, 548, 617, 645, 646, 648, 649, 650, 651, 652, 666, 671, 674], "beavon": [545, 548], "knxms": [545, 548], "mvg_liv": [545, 558, 655, 670], "neato": [545, 550, 643, 646, 647, 649, 652, 653, 654, 655, 656], "nuki": [545, 550, 641, 643, 646, 649, 655, 656, 670], "fuppy": [545, 550], "nut": [545, 550, 649, 652, 655, 670], "4d4mu": [545, 550], "odlinfo": [545, 558, 643, 646, 649, 655, 670], "chester4444": [545, 548], "panasonic_ac": [545, 548], "philips_tv": [545, 552, 649, 650, 653, 655], "plex": [545, 550, 655], "pluggit": [545, 550, 652, 653, 655], "pushbullet": [545, 558, 641, 642], "lbernau": [545, 558, 667], "pushov": [545, 558, 645, 655, 671], "creutz": [545, 548, 554, 558], "hholl": [545, 548], "raumfeld_ng": [545, 548, 645, 649], "rcs1000n": [545, 548, 653, 655], "hasenradball": [545, 548], "rcswitch": [545, 548, 643, 644, 648, 673], "dafra": [545, 548], "resol": [545, 550, 646, 647, 649, 651, 652, 653, 655], "khom": [545, 550, 646], "stoepf": [545, 550], "roomba_980": [545, 550, 655], "zapfen83": [545, 550], "rpi1wir": [545, 548, 643, 646, 649, 650], "elektrorudi": [545, 548], "rpi_info": [545, 550, 652, 655], "rtr2": [545, 554, 646, 648, 652, 653, 687], "russound": [545, 550, 643, 644, 645, 646, 649, 652, 665], "michaelbu": [545, 554], "slack": [545, 558, 641, 645], "maddinador": [545, 558], "kla": [545, 550], "hochpass": [545, 550], "smarttv": [545, 550, 645, 655, 666], "wvhn": [545, 554], "sml2": [545, 548, 653, 655], "snap7_logo": [545, 550, 642, 645, 650], "solarforecast": [545, 558, 652, 653, 655, 656], "alexand": [545, 558, 665, 666], "schwithal": [545, 558], "haiphong": [545, 558], "morg42": [545, 550, 554, 558], "solarlog": [545, 550, 643, 646, 666], "softwareplay": [545, 548], "systemair": [545, 550, 655, 670], "tankerkoen": [545, 558, 646, 653, 655, 669], "gamad": [545, 558], "ivan73": [545, 558, 649], "text_display": [545, 554, 649], "thz": [545, 550, 642, 643, 646], "zittho": [545, 550], "arnix": [545, 550], "timmy": [545, 554, 649], "trovis557x": [545, 550, 642, 643, 653], "unifi": [545, 550, 642, 646, 649, 655], "vacation": [545, 558, 643, 646, 651, 652, 655], "marc": [545, 558], "ren\u00e9": [545, 558], "friess": [545, 558], "vicar": [545, 548, 655, 656], "tcr82": [545, 550], "waterkott": [545, 550, 651], "tkastn": [545, 550], "webpush": [545, 558, 653, 654], "wettercom": [545, 558, 667], "klug": [545, 558, 667], "withings_health": [545, 558, 641, 642, 645, 646, 649, 650, 651], "wunderground": [545, 558, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 674, 691], "xiaomi_vac": [545, 550, 644, 645, 646, 649, 652, 653, 655], "bonz": [545, 550], "yamahayxc": [545, 550, 643, 644, 645, 646, 647], "zigbee2mqtt": [545, 548, 650, 651, 654, 655, 656], "sebastian": [545, 548], "helm": [545, 548], "zwav": [545, 548, 651], "programmi": 560, "hilfsfunktion": [560, 638], "hinzukomm": 561, "vermind": 561, "fehleranfall": 561, "grandparent": [561, 566, 655, 674], "adressierbar": 561, "item_tre": 561, "grandchild": 561, "sist": 561, "dreifach": 561, "notation": 561, "begin_tag": 561, "end_tag": 561, "attibut": 561, "woran": 561, "id_schreibtischleucht": 561, "visu_smart_visu": 561, "sv_widget2": 561, "sv_nav_asid": [561, 566, 682], "sv_nav_aside2": [561, 566, 682], "vergeh": [562, 599, 634], "wirkungsweis": 562, "blendet": 562, "schrittweit": 562, "zeitdelta": 562, "herunterregeln": 562, "abzuwart": 562, "hinweist": [562, 567, 591], "decrement": 562, "stepping": 562, "myvar": [563, 596], "nament": 563, "vergrossert": 563, "anzufug": 563, "ineressant": 563, "Meine": 563, "typspezif": 563, "nachbildet": 563, "syntaxgrund": 563, "fehlerbehandl": 563, "obliegt": 563, "baz": 563, "leert": 563, "umgebungsbezog": 564, "mondlicht": 564, "configattribut": 564, "parentit": 564, "weitergefuhrt": [565, 591], "dirket": [565, 591], "first_floor": [565, 591], "bath": [565, 591], "my_special_attribut": [565, 591], "elternitem": [565, 591], "knx_": 566, "hm_": 566, "hm_address": 566, "hm_function": 566, "hue_": 566, "hue_lamp_id": 566, "hue_lamp_typ": 566, "hue_list": 566, "hue_send": 566, "avm_": 566, "avm_identifi": 566, "enigma2_": 566, "standardmechanismus": 566, "selektiv": 566, "erb": 566, "grosselt": 566, "urgrosselt": 566, "uberomm": 566, "geerbt": 566, "erbend": 566, "dementsprech": 566, "fenstergriff_kuech": 566, "oeq1234567": 566, "sabotag": 566, "low_bat": 566, "fenstergriff_bad": 566, "hm_adress": 566, "abzuand": 566, "hirarchi": 566, "my_attribut": 566, "my_attribute_": 566, "my_valu": 566, "name_": 566, "struct_knx": 566, "_maingroup": 566, "_devic": 566, "knx_send_": 566, "knx_cache_": 566, "testitem": 566, "switch1": 566, "hauptgrupp": 566, "zugreifbar": [567, 591, 596], "_by": [567, 591, 650], "_ag": [567, 591, 650], "testit": [567, 591], "spezfisch": [567, 591], "defined_in": [567, 591], "eval_unexpanded": [567, 591], "last_change_by": [567, 573, 591], "last_trigger_ag": [567, 591], "last_trigger_by": [567, 573, 591], "last_update_ag": [567, 591], "last_update_by": [567, 573, 591], "on_change_unexpanded": [567, 591], "on_update_unexpanded": [567, 591], "prev_change_ag": [567, 591], "prev_change_by": [567, 591], "prev_trigger_by": [567, 591], "prev_update_by": [567, 591], "trigger_unexpanded": [567, 591], "dynamic": [567, 591, 643, 649], "stutzt": [567, 591], "sendeadress": [567, 591], "treppenhauslicht": 568, "2h30m45s": 568, "delimit": [568, 570], "semikolon": [568, 570], "aufgang": [569, 592], "angelehnt": [569, 592], "parameteranzahl": [569, 592], "mon": [569, 592], "thu": [569, 592], "zeitein": [569, 592], "triggerpunkt": [569, 592], "fruhest": [569, 592], "zusatzangab": [569, 592], "leerschritt": [569, 592], "triggerzeitpunkt": [569, 592], "listenbild": [569, 592], "mitgesendet": [569, 592], "minutentakt": [569, 592], "verscharft": 571, "geblieb": [571, 641], "erzwing": 571, "bestand": 571, "verstandnis": 572, "informiert": 572, "irgendwoh": 572, "zwischendurch": 572, "verschick": [572, 671], "runterfahr": 572, "erlauterug": 573, "voran": 573, "auszuwert": 573, "room_a": 573, "room_b": 573, "praesenz": 573, "oneit": 573, "sprachumfang": 573, "vefug": 573, "datumsfunktion": 573, "auszulag": 573, "conditional": 573, "temperaturfahr": 573, "temperaturcelsius": 573, "generalisiert": 573, "kinderitem": 573, "temperatur2": 573, "anzumerk": 573, "triggeritem": 573, "abfragemog": 573, "War": 573, "eingabewert": [574, 577], "uberscheit": [574, 577], "unterscheit": [574, 577], "hysterese_input": 574, "hysterese_it": 574, "beschatt": [574, 589, 638, 682], "mindestdau": 574, "glied": [574, 693], "beschattung_2": 574, "einschalthell": 574, "tv_verbrauch": 574, "tv_status": 574, "lvalu": [575, 577], "mlvalu": [575, 577], "variab": 575, "geschwung": 575, "Eins": 575, "gemappt": 575, "mappend": 575, "anzuw": [575, 583], "low_limit": 575, "lognachricht": 575, "adressi": 576, "ungewollt": 576, "auslost": 576, "itema1": 576, "itemb": 576, "itema2": 576, "itemc": 576, "itemd": 576, "permanentspeich": 577, "besipiel": 577, "evaluation": [577, 645, 646, 653, 655], "hysteresis_input": 577, "hysteresis_upper_threshold": 577, "hysteresis_lower_threshold": 577, "k1": [577, 579, 641], "k2": [577, 579, 641], "log_mapping": 577, "schwellwertbereich": 577, "verlasst": 577, "betritt": 577, "stuktur": 578, "treee": 578, "fliesskomma": 579, "arbeitsspeicherauslast": 580, "garbag": [580, 632], "moonphas": 580, "mondphas": [580, 599, 636], "moonlight": 580, "hohenwinkel": 580, "bogenmass": [580, 599, 636], "sun_position": [580, 638, 669], "zugriffsbeispiel": 580, "diskspeich": 580, "diskfre": 580, "freier": 580, "laufwerk": 580, "disksiz": 580, "diskusagepercent": 580, "ephem_version": 580, "facility": [582, 584], "verworf": 583, "unterdruck": 583, "cherrypy_filt": 583, "manchmal": 583, "lautend": 583, "aufeinand": 583, "darauffolg": 583, "listenform": 583, "examplefilt": 583, "kompromiss": 584, "detailreichtum": 584, "supportanfrag": 584, "datumsformat": 584, "verliert": 585, "w0": 585, "w6": 585, "jann": 585, "dran": 585, "1699220771": 585, "133886": 585, "jahr_stund": 585, "csv_fil": 585, "test_": 585, "xten": 585, "txt_fil": 585, "losgelost": 585, "memory_heiz": 585, "mem_heiz": 585, "gefugt": 585, "shng_heizung_fil": 585, "vorkommnis": 586, "festzuhalt": 586, "befass": 586, "artikelmeng": 586, "stil": 586, "sprintf": 586, "variableninhalt": 586, "uneingeschrankt": [586, 622], "formatierungsoption": 586, "pythom": 587, "prinzipi": 587, "logik_be": 588, "importier": [589, 598], "verfuf": 589, "uberleb": 589, "myvar1": 589, "myvar2": 589, "func1": 589, "func2": 589, "init_valu": 589, "_last_valu": 589, "newvalu": 589, "freigabe_sued": 589, "laufed": 589, "existert": 589, "mis": [589, 653], "defnini": 590, "wartbar": 590, "einschaltet": 590, "neuer_wert": 591, "check_item": [591, 649, 654], "vorhandensein": 591, "wiederherzustell": 591, "propery": 591, "variablenzuweis": 591, "testlogik1": 591, "ausfuhrungsumstand": 592, "logicnameh": 592, "pfadbestandteil": 592, "hallway": 592, "prioritatsangab": 592, "standardlogg": 593, "logikobjekt": 594, "logisch": [594, 671], "unterbund": 594, "persisti": 594, "infromation": 594, "laufzeitumgeb": 594, "source_detail": [594, 641], "241": 594, "teit": 594, "objet": [595, 612], "source_logic": 595, "typenwandl": 595, "mqtt_demo": 595, "logic_publish_topic": 595, "inspect": 595, "logic_subscribe_topic": 595, "mydict": 595, "accessabl": 595, "test_mqtt": 595, "topic2": 595, "sub2": 595, "definier": 596, "persistenz": 596, "ubersteht": 596, "persist": 596, "eins": 597, "anbietet": 597, "plugin_konfiguration": 597, "local_knxd": 597, "use_project_fil": 597, "pluginfunktion": 597, "miscellaneous": 598, "pseudo": [598, 643], "synchronized": 598, "planet": 598, "star": 598, "folgeversion": 598, "feriertag": [599, 634], "geleifert": [599, 634], "feiertagsnam": [599, 634], "fromdat": [599, 634], "ferientag": [599, 634], "zeitdifferenz": [599, 634], "wochenstart": [599, 634], "jahresstart": [599, 634], "ward": [599, 634], "vorberechnet": [599, 634], "integerwert": [599, 634], "startdatum": [599, 634], "5989481": [599, 636], "0459898": [599, 636], "meeresspiegel": [599, 636], "sonnenstandsberechn": [599, 636], "ergbnis": [599, 636], "sonnenuntergangsberechn": [599, 636], "sunset_tw": [599, 636], "abenddammer": [599, 636], "sonnenaufgangsberechn": [599, 636], "sunrise_tw": [599, 636], "morgendammer": [599, 636], "mondstandsberechn": [599, 636], "monduntergangsberechn": [599, 636], "moonset_tw": [599, 636], "mondaufgangsberechn": [599, 636], "moonrise_tw": [599, 636], "beleuchtet": [599, 636], "neumond": [599, 636], "vollmond": [599, 636], "halbmond": [599, 636], "taupunktberechn": 599, "zeituberschreit": 599, "feuchtigkeitswert": 599, "konfigurationszeit": 601, "angular": [612, 643], "manipuli": 612, "restresourc": 612, "mixin": 612, "dispatching": 612, "rough": 612, "usercontroll": 612, "postcontroll": 612, "as_html": 612, "expose_resourc": 612, "destroyself": 612, "rest_instantiat": 612, "slug": 612, "rest_creat": 612, "rest_childr": 612, "extra_action": 612, "byusernam": 612, "bob": 612, "joe": 612, "owned": 612, "pluginscontroll": 612, "pluginsinstalledcontroll": 612, "pluginsconfigcontroll": 612, "pluginsinfocontroll": 612, "shng_url_root": 612, "blog_url": 612, "pluginsapicontroll": 612, "pluginslogicparameterscontroll": 612, "plugincontroll": 612, "jwt_secret": 612, "get_body": 612, "test_for_old_conf": 612, "get_config_filenam": 612, "handle_plugin_action": 612, "url_root": 612, "plgsection": 612, "administrationinterfac": 612, "ce": 612, "impl\u00e9ment": 612, "ablaufdau": 612, "loginzeitpunkt": 612, "expiration": [612, 652], "counting": 612, "temps": [612, 653], "heur": 612, "partir": 612, "d\u00e9lai": 612, "attent": 612, "obtenir": 612, "donn\u00e9": 612, "chemin": 612, "compl\u00e8t": 612, "arborescenc": 612, "searching": [612, 655], "caract\u00e8r": 612, "entr\u00e9s": 612, "d\u00e9marr": 612, "recherch": 612, "utilis": 612, "displaying": [612, 653], "larg": [612, 643, 654], "taill": 612, "morceaux": 612, "lus": 612, "lor": 612, "affichag": 612, "journaux": 612, "volumineux": 612, "on_off": 612, "admit": [614, 619], "initialize_payload_protocol": 616, "get_payload_protocol_by_id": 616, "get_tls_port": 616, "get_use_tl": 616, "ws_serv": 616, "ssl_context": 616, "handle_new_connection": 616, "unregist": 616, "log_connection_event": 616, "disconnection": 616, "client_address": 616, "get_payload_us": 616, "protocol_path": 616, "encrypted": 616, "geoffenet": 617, "zunehm": [618, 622, 641, 692], "tirvial": 618, "voraussetzt": [618, 638], "standardisi": 618, "elch": 619, "genmeinsam": 619, "klassisch": 621, "rahmencod": 621, "erfind": [621, 622, 693], "plugintyp": 621, "idealfall": [621, 681, 685], "intelligent": [621, 622], "auskommt": 621, "konversion": 621, "gebor": [622, 693], "fasst": 622, "transformiert": 622, "datentransformation": 622, "geratespezif": 622, "sdpprotocol": 622, "binarprotokoll": 622, "sdpconnection": 622, "verbindungseb": 622, "kommunikationsmodul": 622, "pluginspezif": 622, "protokolldefinition": 622, "standarddatei": 622, "sdp_viessmann": 622, "naiv": 622, "intelligenz": 622, "item_attr": 622, "opcod": 622, "0101": 622, "reply_patt": 622, "dev_datatyp": 622, "mult": 622, "gettempa": 622, "anlagenstatus": 622, "b000": 622, "operatingmod": 622, "md_read_initial": 622, "lookup_it": 622, "getbetriebsart": 622, "hk1": 622, "b020": 622, "cmd_setting": 622, "force_min": 622, "force_max": 622, "getmanuell": 622, "setmanuell": 622, "heizbetrieb": 622, "1x": 622, "temp2": 622, "outdoor_fanspeed": 622, "1a52": 622, "getspdfanout": 622, "outdoor": 622, "status_fanspeed": 622, "1a53": 622, "getspdfan": 622, "lueft": 622, "kompressor_freq": 622, "1a54": 622, "getspdkomp": 622, "compressor": 622, "sollleistungverdicht": 622, "5030": 622, "getpwrsollverdicht": 622, "anlagenuebersicht": 622, "sekunda": 622, "0484": 622, "returnstatus": 622, "getstatussekp": 622, "sekundaerpump": 622, "048d": 622, "getstatuspump": 622, "zirkulation": 622, "0490": 622, "getstatuspumpezirk": 622, "zirkulationspump": 622, "gettempraumsollnormal": 622, "raumsolltemperatur": 622, "soll_reduziert": 622, "2001": 622, "gettempraumsollred": 622, "soll_party": 622, "gettempraumsollparty": 622, "0105": 622, "gettempsekvl": 622, "vorlauftemperatur": 622, "gettempvlsoll": 622, "vorlaufsolltemperatur": 622, "16b2": 622, "gettempsekvlmittel": 622, "energiebilanz": 622, "ruecklauf": 622, "gettempsekrl": 622, "ruecklauftemperatur": 622, "16b3": 622, "gettempsekrlmittel": 622, "rl1": 622, "heizkennlini": 622, "2006": 622, "gethklniveau": 622, "2007": 622, "gethklneig": 622, "010d": 622, "gettempwwistob": 622, "warmwassertemperatur": 622, "gettempwwsoll": 622, "betriebsdat": 622, "warmwassersolltemperatur": 622, "0494": 622, "getstatusventilww": 622, "waermepump": 622, "ww1": 622, "werttransformation": 622, "sample_smartdevice_plugin": 622, "transparent": 622, "protokollklass": 622, "sdpprotocoljsonrpc": 622, "datenformatier": 622, "protokolltyp": 622, "kw2": 622, "handshak": 622, "verbindungsschicht": 622, "wahlweis": 622, "netzwerkbasiert": 622, "verbindungsklass": 622, "sdpconnectionnettcprequ": 622, "sdpconnectionnettcpclient": 622, "sendeverbind": 622, "asnychron": 622, "datenempfang": 622, "sdpconnectionnetudprequ": 622, "sdpconnectionserial": 622, "sdpconnectionserialasync": 622, "dt_non": 622, "testklass": 622, "datenweitergab": 622, "dt_raw": 622, "dt_bool": 622, "dt_int": 622, "dt_num": 622, "dt_str": 622, "dt_list": 622, "dt_dict": 622, "dt_tupl": 622, "dt_byt": 622, "dt_bytearray": 622, "dt_json": 622, "dt_webservic": 622, "typecast": 622, "strukturi": 622, "standardklass": 622, "sdpcommandstr": 622, "textbasiert": 622, "textprotokoll": 622, "datenextraktion": 622, "sdpcommandjson": 622, "sdpcommandviessmann": 622, "functional": [623, 649, 655], "converting": [623, 655, 679], "easi": 623, "update_plugin_conf": 623, "resumed": 623, "on_susp": 623, "on_resum": 623, "set_susp": 623, "recall": 623, "send_command": 623, "return_result": 623, "on_data_received": 623, "dispatch_data": 623, "read_all_command": 623, "is_valid_command": 623, "nonetyp": [623, 653, 655], "get_lookup": 623, "has_recursive_custom_attribut": 623, "set_custom_it": 623, "parse_item": 623, "xx_custom": 623, "on_connect": 623, "on_disconnect": 623, "read_initial_valu": 623, "_read_initial_valu": 623, "hieraus": 625, "uberfuhr": 625, "sptzen": 625, "vertief": 627, "make_venv": [627, 630], "environement": 627, "auspack": 627, "compili": 628, "gcc": 628, "vorinstalliert": 628, "libssl": 628, "libffi": 628, "libsqlite3": 628, "libreadlin": 628, "libncursesw5": 628, "tk": 628, "libgdbm": 628, "libc6": 628, "libbz2": 628, "zlib1g": 628, "xz": 628, "compressed": [628, 648], "tarball": 628, "traget": 628, "verzeichnisrecht": 628, "archivs": 628, "xf": 628, "konfigurationsskript": 628, "navigi": 628, "fortfahr": 628, "altinstall": 628, "pflicht": 629, "py_3": [629, 630], "nu": 629, "ergebiss": 629, "wirk": 629, "schaff": 630, "erweiterbar": 630, "vorzug": 630, "virtuall": 630, "norwend": 630, "rekirsiv": 630, "py_310": 630, "stadium": 632, "initialisert": 632, "umkopiert": 632, "konfigurationsdateienb": 632, "konfiguriet": 632, "daemonized": 632, "versionsinformation": 632, "plausibl": 632, "speicherstruktur": 632, "_init_prerun": 632, "berech": [632, 638], "watch_item": [632, 641], "gc": 632, "pip3_command": [635, 646], "autmat": 635, "einspiel": 635, "_logg": 638, "leveln": 638, "lamellen_oeffnung_ost": 638, "beschattungssteuer": 638, "stellung": 638, "wohnbereich": 638, "schliessung": 638, "87": 638, "84": 638, "weitergab": 638, "lamellen_oeffnung_sued": 638, "69": 638, "usewrfunction": 638, "reload_all": 638, "eingibt": 638, "14th": 639, "6th": 639, "january": 639, "31st": 639, "27th": 639, "21th": 639, "octob": 639, "10th": 639, "2011": 639, "21st": 639, "09th": 639, "buxfix": [641, 649, 671, 672, 674, 675], "belass": 641, "malformed": 641, "heraufgesetzt": 641, "cve": 641, "18074": 641, "deep": [641, 655], "langerfrist": 641, "confattribut": 641, "korrigiert": [641, 672, 673, 674], "webfont": 641, "ablos": 641, "vorwarn": 641, "sin": 641, "gehandled": 641, "ruckwartskompatibel": 641, "searchabl": 641, "conversation": 641, "konversation": 641, "programmierbar": 641, "arbeitsgrupp": 641, "codekommentar": 641, "trigger1": 641, "6er": 641, "fritzdect301": 641, "autocomplet": [641, 653, 655, 671], "pluginmethod": 641, "auswahlt": 641, "map_icon": 641, "gemapped": 641, "scapy": [641, 643], "beerbt": 641, "vermeidet": 641, "cleanups": 641, "konvertierungsfunktion": 641, "bereinigt": 641, "required_package_imported": 641, "funkumsetz": 641, "dpt_temproomsetpsetf16": 641, "mutlitpl": 641, "initialisation": 641, "nowait": 641, "schaltfunktion": 641, "503er": 641, "pretty_thread_nam": 641, "cryptic": 641, "id_0": 641, "id_1": 641, "id_2": 641, "id_3": 641, "nokia_health": 641, "ruckubernahm": 641, "neuimplementier": 641, "webgui": [641, 674], "xiaomi_data_typ": 641, "miflora_data_typ": 641, "beigetret": 641, "kennzeich": 641, "tellstick": [641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "netio230b": [641, 643, 644, 645, 646, 649, 667, 691], "smawb": [641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "boxcar": [641, 643, 644, 645, 646, 649, 667, 691], "openenergymonitor": [641, 643, 644, 645, 646, 649, 670, 691], "neubau": [641, 675], "requiremment": [641, 675], "installationsanleit": [641, 675], "rasenmahrobot": 642, "ansteuerng": 642, "ubiquiti": 642, "netzwerkkomponent": 642, "rework": [642, 646, 649, 653, 654, 655, 674], "book": 642, "get_calllist": 642, "get_contact_name_by_phone_numb": 642, "get_phone_numbers_by_nam": [642, 670], "7ms": 642, "adjusted": [642, 643, 644, 645, 646, 647, 648, 649, 651, 652, 653, 655], "doman": 642, "playerinformation": 642, "befehlsabfolg": 642, "hardcoded": [642, 646], "warteschlang": 642, "abwart": 642, "kodigerat": 642, "verbindungshandling": 642, "wouldn": 642, "callersourc": 642, "abfragbar": 642, "get_attributevalu": 642, "gegang": [643, 644, 645, 646, 647, 648, 649, 650, 691], "interessant": [643, 644, 645, 646, 691], "einzug": [643, 644, 645, 646, 691], "335": 643, "keeping": [643, 655], "backed": 643, "national": 643, "nesting": [643, 655], "expand": [643, 646], "parapet": 643, "ignoring": [643, 655], "subnod": 643, "updata": 643, "chartjs": [643, 649], "npm": 643, "sticky": 643, "scroll": [643, 651], "heart": 643, "vacuum": [643, 655], "school": 643, "federat": 643, "xioami_vac": 643, "hkrt": 643, "patch": 643, "compact": 643, "buggy": 643, "raspis": [643, 652], "recurring": 643, "continued": 643, "unpacking": 643, "trashfold": 643, "instantiat": 643, "miflorapoll": 643, "mqtt1": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 656, 691], "reimplemented": [643, 649, 653], "readout": [643, 646, 656], "reworked": [643, 644, 645, 655], "stop_controll": 643, "stop_it": 643, "319": 643, "faulty": [643, 646], "misinterpretation": 643, "upgraded": [643, 647, 648, 654], "optimization": 643, "stateening": 643, "immediat": 643, "leaving": [643, 653], "prettify": [643, 674], "welcome_msg": 643, "bye_msg": 643, "sv": [643, 645, 646, 648, 650, 651, 652, 653, 654], "lastvalu": [643, 649], "configued": 643, "developed": [643, 644, 645, 646, 649, 650, 651, 691], "succeeding": [643, 644, 645, 646, 649, 650, 651, 691], "survey": [643, 644, 645, 649, 691], "ecmd": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "elro": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "iaqstick": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "snom": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 665, 691], "vr100": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "nma": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "moreov": [643, 644, 645, 646, 649, 650, 651, 691], "sample_modul": 643, "enhancement": [643, 649, 653, 654], "hotfix": 644, "showed": [644, 645], "gitignor": [644, 650, 655], "aris": 644, "mandantory": 644, "passing": [644, 654], "extraction": [644, 655], "incomplet": [644, 646, 652, 681], "docu": [644, 646, 648, 649, 650, 651, 652, 653, 655, 656], "enfoce_chang": 645, "swap": 645, "pluguin": 645, "fit": [645, 646, 653], "ipad": [645, 653], "landscap": 645, "layout": [645, 651, 652, 655], "placed": 645, "contol": 645, "UNDER": 645, "get_param_valu": 645, "169": 645, "redesigned": 645, "iteration": [645, 646, 649, 653], "isolated": [645, 646], "database_acl": 645, "thw": 645, "counted": 645, "clarified": 645, "skipping": 645, "2y": 645, "39i": 645, "15s": 645, "inth": 645, "insteead": 645, "gpio_init": 645, "gpio_invert": 645, "reporting": 645, "streamlined": [645, 646, 653], "assignment": [645, 649], "icalupdat": 645, "get_paramet": 645, "conformanc": 645, "_update_status": 645, "adjustment": [645, 649, 651, 653], "stal": 645, "submodel": 645, "multisensor": 645, "xf7": 645, "typo": [645, 646, 648, 651, 652, 653, 656, 671], "386": 645, "_decod": 645, "playstop": 645, "optimiz": [645, 652, 655], "series_cancel": [645, 646], "segment": 645, "conform": [645, 649, 656], "sidebar": [645, 682], "arbeitsstand": [646, 656, 691], "eingefror": 646, "ensured": 646, "stays": 646, "usind": 646, "grandpartent": 646, "_learned": 646, "catching": [646, 649, 653], "temporarily": [646, 649, 653, 655], "calulating": 646, "experimental": 646, "portalock": 646, "independant": 646, "exitcod": [646, 649], "isolating": 646, "refactored": 646, "greatgrandparent": 646, "shng_status": 646, "previous_change_by": 646, "previous_update_by": 646, "itemprefixdefinition": 646, "insensitiv": [646, 651], "iowait": 646, "portabl": 646, "deadlock": 646, "__file__": 646, "threadinfo": 646, "cwd": [646, 654], "dedicated": [646, 651], "pip_log_nam": 646, "waiting": [646, 655], "restarting": [646, 652, 653], "pyjwt": [646, 648, 649], "incompatibiliti": 646, "upcoming": 646, "spinn": 646, "viewport": 646, "cheroot": [646, 655], "incompatibility": 646, "janus": 646, "create_task": 646, "hickups": 646, "test_smarthom": 646, "mocksmarthom": 646, "lpb": 646, "1coderooki": 646, "brid": 646, "aciv": 646, "color_control": 646, "freshwat": 646, "compared": 646, "simplified": 646, "viesmann": 646, "alexap3": 646, "zone4": 646, "avm_wlan_index": 646, "cit": 646, "widget_avm": 646, "occurring": [646, 649, 652], "stall": 646, "greyed": 646, "padded": 646, "mous": 646, "x2_plus": 646, "lineending": 646, "widget_enigma2": 646, "eeppars": 646, "eeps": 646, "acc": 646, "struc": 646, "visu_cal": 646, "runtimeerror": 646, "weekdays": 646, "get_process_info": 646, "dpts": [646, 663], "reordered": 646, "442": 646, "usability": 646, "metadatalirc": 646, "major": [646, 650, 654, 655], "imap4rev1": 646, "refactoring": [646, 655], "robustness": [646, 649, 651, 656], "preliminary": 646, "dustbin": [646, 649], "gotobas": 646, "availability": [646, 652], "libconnection": 646, "optimized": [646, 653], "rain_lay": 646, "cloud_lay": 646, "refined": [646, 655], "scaffold": 646, "robonect_remote_index": 646, "robonect_data_typ": 646, "get_mower_information_from_api": 646, "alread": 646, "reformatted": 646, "snipped": 646, "scantyp": 646, "attribute_prefix": 646, "se_delay": 646, "changedby": 646, "updatedby": 646, "mixed": 646, "incorrect": 646, "suspend_": 646, "supsendduration": 646, "telemetry": 646, "enrgy": 646, "time_period": 646, "v12": 646, "jobqueu": 646, "unifi_client_mac": 646, "consecutiv": 646, "scipy": [646, 650, 652, 653, 655], "sv_blocksiz": [646, 682], "discoverabl": 646, "robovac": 646, "revert": [646, 655], "unabl": 646, "_data": 646, "_connected": 646, "xeps": 646, "preceding": [646, 649, 650], "resid": [646, 649, 650, 655], "plugin_archiv": [646, 649, 650, 652, 653, 655, 656], "jointspac": 646, "_pv_1_3_4": 646, "modbus_shng_1_2": 646, "visu_shng_1_2": 646, "_pv_1_1_3": 646, "_pv_1_4_5": 646, "listing": [646, 655], "comply": 646, "tanslat": 646, "tried": 647, "1005": 647, "serialization": 647, "occasion": 647, "terminating": 647, "alexa_cmd_xx": 647, "rearranged": 647, "networkid": 647, "storm": 647, "unreach": 647, "dpt5999": 647, "lux2": 647, "27461": 647, "alphainnotec": 647, "1604934": 647, "post1604934": 647, "oerationlog": 647, "catched": [647, 652, 653], "pasg": 647, "masterfil": 647, "autorenew": 647, "eventserverthread": [647, 649], "renew": [647, 688], "reintroduc": 647, "urgent": 647, "undon": 648, "ability": [648, 653, 669], "surfaced": 648, "endless": 648, "allowd": 648, "api_conf": 648, "0a1": 648, "systemconf": 648, "isn": 648, "propperly": 648, "get_device_log": 648, "2nd": 648, "get_device_log_from_tr064": 648, "get_device_log_from_lua": 648, "previously": [648, 652, 655, 656], "expected": [648, 655], "readlogcount": 648, "itam": 648, "draft": 648, "unneeded": 648, "caught": [648, 655], "create_new_usernam": [648, 649], "remove_usernam": 648, "thirdparty": 648, "breidg": 648, "dresd": 648, "elektron": 648, "log_own_packet": 648, "bump": [648, 649, 651, 652, 653, 654, 655, 656], "get_favourit": 648, "initcommand": 648, "mailrvc": 648, "handing": 648, "svgenerator": 648, "speach": 648, "developement": 648, "triggertim": [649, 650, 653, 654], "intercept": 649, "mismatching": 649, "struct_xyz": 649, "truncated": [649, 650], "evalcheck": 649, "grouped": [649, 655, 681], "randomized": 649, "411": 649, "sorting": [649, 651, 653, 655], "1001": 649, "mock": [649, 655], "shngversion": [649, 656], "travis": [649, 652, 655], "ci": 649, "fieldbus": 649, "rar": 649, "_update_home_automation": 649, "unavailabl": 649, "leading": [649, 651], "unintentional": 649, "eventhandlerthread": 649, "sessionid": 649, "reinitialization": 649, "logl": 649, "enhanc": [649, 650], "is_aliv": 649, "fstring": 649, "enocean_devic": 649, "updategoupitem": 649, "qhue": 649, "mdns": 649, "degraded": [649, 653], "mixup": 649, "introduc": [649, 650, 651, 652, 653, 654, 655, 663], "favourit": 649, "start_robot": 649, "get_map_boundari": 649, "boundari": 649, "dismiss_current_alert": 649, "indentation": 649, "dismiss": 649, "desciption": 649, "cached": [649, 655], "bumped": [649, 650, 651, 652, 653, 654, 655, 656], "owbas": 649, "metadaa": 649, "measur": [649, 653], "keycheck": 649, "iterat": 649, "pgrad": 649, "wipecach": 649, "intentation": 649, "13_sonstig": 649, "evaluating": 649, "start_tim": 649, "rectangl": 649, "conditionlist": 649, "telegram_condition": 649, "outsourc": [649, 655], "overlay": 649, "clicking": 649, "xtension": 649, "adjustabl": 649, "moveed": 649, "return_list": 649, "clean_detail": 649, "ompatibility": 649, "loosing": 649, "myst": [649, 651], "thow": 650, "got": [650, 652], "succeed": 650, "numerical": 650, "my_": [650, 651], "simplyfy": 650, "__running": 650, "connect_on_s": 650, "update_by": [650, 673], "643": 650, "eventtim": 650, "_get_caller_typ": 650, "450": 650, "untested": 650, "_pv_1_5_12": 650, "depreciated": 650, "avm_tam_index": 650, "repetition": 650, "transmission": 650, "sigpip": 650, "sugg": [650, 651], "teach": 650, "perfect": 650, "retreival": 650, "logout": 650, "slight": [650, 653], "concerning": 650, "udpdat": 650, "unspecified": 650, "isaliv": 650, "uzsu_": 650, "uzsu_sun": 650, "residuum": 650, "hopefully": [650, 652, 655], "consolidated": 650, "sunevent": 651, "supress": 651, "_cast_duration": [651, 655], "fpr": 651, "pytz": [651, 652], "fixedhead": [651, 654], "adjusting": [651, 653], "cancellation": 651, "update_all_seri": 651, "supporting": [651, 663], "indicator": 651, "pumps": 651, "1a28170": 651, "reconfigured": 651, "bugfixing": 651, "changelog": [651, 653], "user_docu": 651, "avm_home_automation": 651, "get_device_log_from_lua_separated": 651, "dect440": 651, "adopt": 651, "timed": 651, "reimplement": [651, 655], "1428215": 651, "1764605": 651, "post1764605": 651, "requiremt": 651, "informativ": 651, "errorhandling": 651, "tweaked": 651, "capability": [651, 653], "dded": 651, "shwidget": [651, 687], "subfold": 651, "infoblock": [651, 655], "unhandled": 651, "abortion": 651, "automated": 651, "deprecation": [652, 654], "consolidating": 652, "493": 652, "api_logg": [652, 655], "lead": [652, 667], "allgmein": 652, "prs": 652, "workflow": [652, 653, 654], "pull_requ": 652, "test_dispatch_workflow": 652, "plugins_all": [652, 653, 654, 655, 656], "hkrs": 652, "max_ag": 652, "reinserted": 652, "sampled": 652, "rounding": 652, "removeold_cycl": 652, "dumping": 652, "skipped": 652, "default_maxag": 652, "max_delete_logentri": 652, "plausibility": 652, "conflict": [652, 653, 655, 659], "openlay": 652, "packed": 652, "recogniz": 652, "configurabl": [652, 653, 655], "safety": 652, "undeclared": 652, "decoding": [652, 653, 655, 656], "not_on_charge_bas": 652, "dt_weekday": 652, "accepting": 652, "cosmetics": [652, 653], "connectionreseterror": 652, "update_sun": 652, "dry": 652, "unneccessary": [652, 655], "seriescalculation": 652, "canceled": 652, "maxcalculatedcount": 652, "seriescalculated": 652, "maxcountcalculated": 652, "correclty": 652, "solv": 652, "potentially": 652, "_bytes2int": 652, "byteord": 652, "ruhestand": [652, 653, 655, 656], "repositiory": [652, 653, 655, 656], "practic": 652, "proxy_param": [652, 688], "shpinx": 652, "zumal": 653, "pyton": 653, "498": 653, "cah": 653, "expansion": [653, 672], "preparing": 653, "editabl": 653, "_item_lookup_dict": 653, "get_device_command": 653, "get_item": 653, "device_command": 653, "get_items_for_command": 653, "reversed": 653, "oposit": 653, "evaluat": [653, 655], "entir": 653, "systeminfo": [653, 654, 655, 670, 671], "acordingly": 653, "defelop": 653, "522": 653, "ovwerview": 653, "truncat": 653, "autorefresh": 653, "throw": 653, "divs": 653, "autoupdat": 653, "homescre": 653, "iphon": [653, 688], "canceling": 653, "abos": 653, "cancel_log": 653, "cancel": 653, "monitored": [653, 654], "streamlining": 653, "mockup": [653, 655], "avm_attribut": 653, "causing": [653, 654], "blacklist": 653, "failing": [653, 655], "localy": 653, "readback": 653, "networklog": 653, "orphan": 653, "ude": 653, "dorumentation": 653, "whiwch": 653, "logcount": 653, "674": 653, "incorporated": 653, "667": 653, "hue_refence_light_id": 653, "any_on": 653, "_light_basic": 653, "rescheduled": 653, "673": 653, "preparation": 653, "_cacheread": 653, "658": 653, "adaptation": 653, "vastly": 653, "warn_aft": 653, "spamming": 653, "partly": 653, "reverted": 653, "oncecall": 653, "f2ix": 653, "648": 653, "regulation": 653, "log_cancel": 653, "670": 653, "darkmod": 653, "among": 653, "massiv": 653, "6761e43": 653, "_play_sonos_radio": 653, "send_attribut": 653, "nov": 653, "flat": 653, "beautifying": 653, "reducing": 653, "_full": 653, "rad": 653, "required_packag": 653, "flaw": 653, "depricated": 653, "backup_restor": [653, 676], "proposed": 653, "tarfil": 653, "extractall": 653, "permission": [653, 655], "measure_cpu_speed": 653, "builddevdoc": 653, "joined": 654, "pr_unitt": 654, "clash": 654, "conflicting": 654, "sectionand": 654, "insight": 654, "killed": 654, "read_macosinfo": 654, "cpu_speed_class": 654, "glitch": 654, "protocol_over_reverseproxy": 654, "1011": 654, "colreord": 654, "bumed": 654, "lightbulb": 654, "fritzdect": 654, "tx_id_offset": 654, "imroved": 654, "dtend": 654, "parasit": 654, "_parasitic_power_wait": 654, "io_cycl": 654, "clearing": [654, 655], "ordering": 654, "699": 654, "av_transport": 654, "numpy": [654, 655], "superfluous": 654, "environemnt": 654, "build_plugin_config_fil": 654, "getdefaultlocal": 655, "cylc": 655, "__run_attribute_eval": 655, "fixing": 655, "perviously": 655, "possibilit": 655, "do_before_s": 655, "fragmented": 655, "buffering": [655, 656], "get_command_from_reply": 655, "ratelimit": 655, "hundred": 655, "thousand": 655, "_task": 655, "initializing": 655, "_split_requirement": 655, "2h5m25s": 655, "serializabl": 655, "api_logics": 655, "adm": 655, "deleting": 655, "hosting": 655, "hostmaps": 655, "msgs": 655, "set_cooki": 655, "get_cooki": 655, "bordered": 655, "select_menu": 655, "uncertain": 655, "decodabl": 655, "repos": [655, 656], "urlencod": 655, "media_typ": 655, "circumvent": 655, "problematic": 655, "poll_tr064": 655, "tab5": 655, "start_call": 655, "get_log": 655, "get_logs_from": 655, "regression": 655, "fritz_hom": 655, "expired": 655, "logics_blockly_cod": 655, "variabledb_": 655, "namedb_": 655, "sh_logics": 655, "refix": 655, "restartability": 655, "cleanness": 655, "robustify": 655, "database_it": 655, "db_addon_ignore_value_list": 655, "comparision": 655, "coding": 655, "_handle_waermesumm": 655, "_handle_gruenlandtemperatursumm": 655, "_handle_zaehlerstand": 655, "_query_log_timestamp": 655, "substring": 655, "_handle_onchang": 655, "database_item_path": 655, "db_addon_it": 655, "optimizing": 655, "handle_onchang": 655, "verbauch_last_24h": 655, "_handle_verbrauch": 655, "verbrauchsberechn": 655, "userdoc": 655, "reaction": 655, "loss": 655, "promis": 655, "wrongly": 655, "scroolbar": 655, "oauthlib": 655, "zeroconf": 655, "get_setting": 655, "pymodbis": 655, "boundary": 655, "neduced": 655, "503": 655, "intermediat": 655, "olog_text": 655, "mesag": 655, "piratewth": 655, "winddirectionstring": 655, "restructur": 655, "claus": 655, "rcswithch": 655, "gen2": [655, 693], "declination": 655, "reintroduced": 655, "play_radio": 655, "crash": 655, "_play_radio": 655, "play_alert_all_speak": 655, "evaluated": 655, "refactor": 655, "workload": 655, "suspendtim": 655, "graphics": 655, "panzoom": 655, "se_status": 655, "se_status_eval": 655, "suspend_dynamic": 655, "redrawn": 655, "elog": 655, "reintroducing": 655, "deepcopy": 655, "releasedby": 655, "gon": 655, "stateenginevalu": 655, "reordering": 655, "get_petrol_station": 655, "interview_all_devic": 655, "retained": 655, "new_event_loop": 655, "unneccassary": 655, "pep8": 655, "approach": 655, "partial": 655, "splitting": 655, "rgbxy": 655, "checkplugin": 655, "speedup": 656, "mutabl": 656, "persited": 656, "resolving": 656, "lately": 656, "exceeded": 656, "unnamed": 656, "pyminversion": 656, "pymodbus2": 656, "unlimited": [656, 664], "strang": 656, "useless": 656, "headlin": 656, "mmm": 657, "okt": 657, "feb": 657, "splitted": 659, "logig": 660, "computing": 660, "enviroment": 662, "redesign": 663, "db_writ": 663, "db_read": 663, "mailbox_count": 663, "8p15": 663, "autogenerat": 664, "negated": 664, "contribution": [665, 666], "rieg": [665, 666], "happy": 665, "announc": 665, "cooperation": 665, "experienc": 665, "voip": 665, "config_string": 665, "visualisation": 665, "flot": 665, "workaround": 665, "urllib2": 665, "leakag": 665, "lemk": [666, 667], "alarmclock": 666, "cl": [666, 681], "dpt10": 666, "lar": 667, "bernau": 667, "mannmawg": 667, "honisch": 667, "mik": 667, "piep": 667, "mirko": 667, "hirsch": 667, "mptei": 667, "oliv": 667, "hinckel": 667, "xtcommerc": 667, "ast_db": 667, "knx_status": 667, "nw_udp_send": 667, "predefined": 667, "improving": 667, "easy_install3": 667, "conf2": 667, "2to3": 667, "idiom": 667, "yourlogicfil": 667, "pyc": 667, "print0": 667, "xarg": 667, "piled": 668, "decision": 668, "consilidat": 668, "incorporat": 668, "visu_unterstutzung_in_v1": 669, "whatsapp": 669, "anf": 670, "reject": 670, "migrationsanleit": 670, "radiation": 670, "polish": 670, "impelemtation": 670, "get_phone_nam": 670, "get_call_origin": 670, "avm_ddata_typ": 670, "superseded": 670, "problemat": [671, 672], "vorbeleg": 671, "verwechsl": 671, "develpoer_doc": 671, "nammensraum": 671, "kollision": 671, "versionsvertrag": 671, "persistiert": 671, "konfigurationsformat": 671, "sample_plugin_webif": 671, "expermental": 671, "konfigurationsuberpruf": 671, "f11": 671, "browserfen": 671, "zeilenumbruch": 671, "threadlist": 671, "befehlsbenenn": 671, "notifizier": 671, "enthaelt": 671, "prueft": 671, "unterstuetz": 671, "451": 671, "ebi": 671, "00364476": 671, "heligkeitssensor": 671, "lernmethod": 671, "restrukturiert": 671, "enable_stat": 671, "disable_stat": 671, "pruefsummenbehandl": 671, "eingefuehrt": 671, "aggregatsfunktion": 671, "summiert": 671, "abgefrag": 671, "protokollerweiter": 671, "anwenderdokumentation": [671, 672], "gecastet": 672, "herausgefiltert": 672, "nullhandl": 672, "gecachet": 673, "kbyt": 673, "kommentarblock": 673, "comfoair_trigg": 673, "set_power_stat": 673, "mulit": 673, "adaquat": 674, "konzentriert": 674, "guis": 674, "bunt": 674, "listendefinition": 674, "exportiert": 674, "gtemplat": 674, "jinja": 674, "submodul": 674, "zeilennumm": 674, "ausbau": 674, "usern": 674, "widerspruch": 674, "komplettuberarbeit": 674, "usabilityverbesser": 674, "querverlink": 674, "eingabfeld": 674, "animation": 674, "wertehistori": 674, "verspatet": 674, "samrthomeng": 674, "multipart": 674, "mitzuschick": 674, "refaktoriert": 674, "abfragemogich": 674, "sv2": 674, "datendatei": 674, "kommondo": 674, "fehlertollerant": 674, "fehlerbeheb": 674, "unterstutzng": 674, "konfigurationsattribut": 674, "telegram_info": 674, "anzustoss": 674, "publikation": 674, "wetterinfomation": 674, "hw": 674, "baim": 675, "gewandelt": 675, "getshngpid": 676, "sichert": 677, "backupfil": 677, "outputfil": 677, "allways": 677, "gegenlauf": 678, "zusammenstell": 678, "sammelt": 678, "hinfug": 678, "quellangab": 678, "23447": 680, "lcl": 681, "lsm": 681, "lst": 681, "lip": 681, "lia": 681, "disp_plugin": 681, "dispd_plugin": 681, "clc": 681, "list_all": 681, "list_classic": 681, "list_smart": 681, "list_stat": 681, "list_inc": 681, "list_compl": 681, "check_clist": 681, "check_ilist": 681, "list_version": 681, "followind": 681, "rea": 681, "dy": 681, "implememtiert": 682, "ubersteu": 682, "zugehori": 682, "unterseit": 682, "aufzeig": 682, "zusatzinfos": 682, "kaffeemaschin": 682, "gastezimm": 682, "geheizt": 682, "scene_cooking": [682, 683], "m_koch": 682, "m_kochen_kaffee2": 682, "kaffeeautomat": 682, "scene_coffee_maker_automatic": 682, "m_kochen_heiz": 682, "navigationseintrag": [682, 683, 686], "titelzeil": [682, 693], "control_all_on_off": 682, "fts_shutter_40": 682, "beleuchtungsautomat": 682, "light_light_dim_00": 682, "seitentyp": 682, "measure_current": 682, "separator_t": 682, "cat_separator": 682, "it_rout": 682, "konfigurationsnavigation": 682, "black": 682, "aussah": 682, "optik": 682, "mindestgross": 682, "auskomm": 682, "blockhoh": 682, "control_on_off": 682, "control_standby": 682, "schrank": 682, "steckdose_tu": 682, "dual": 682, "seitengenerier": 682, "dualblock": 682, "aufgeraumt": 682, "dieh": 682, "eingemischt": 682, "modifikation": 682, "aufgezeigt": 682, "multiaxis": 682, "mitgebracht": 682, "deprecated_widget": 682, "formula": 682, "widget_window": 682, "priv_widget": 682, "plot_temperatur": 682, "visu_insel": 682, "navigagion": 682, "nav_asid": 682, "nav_aside2": 682, "scene_livingroom": [682, 683], "obergeschoss": 682, "erdgeschoss": 682, "myitem": 682, "quasi": 683, "deckenleucht": 683, "tresenbeleucht": 683, "dimmbar": 683, "tresenlicht": 683, "siht": 683, "visublock01": 683, "visublock02": 683, "visublock03": 683, "arbeitsflach": 683, "auslief": 685, "visualisi": 685, "geruf": 685, "navogation": 686, "kopf": 686, "eingebettet": 686, "linksbund": 686, "zenzriert": 686, "rechtsbund": 686, "widget_rtr2": 687, "widget_dummy": 687, "dublett": 687, "ausschliesst": 687, "tiefergeh": 687, "glucklicherweis": 687, "verzeichis": 687, "sicheren": 688, "clientzertifikat": 688, "eigenstand": 688, "geofency": 688, "aufgesetzt": 688, "standardus": 688, "leitet": 688, "xkblayout": 688, "risikoland": 688, "blocki": 688, "maxmind": 688, "libgeoip1": 688, "miyuru": 688, "lk": 688, "maxmind4": 688, "gunzip": 688, "maxmind6": 688, "geoipv6": 688, "goneuland": 688, "ausstell": 688, "identitat": 688, "acm": 688, "challeng": 688, "einhang": 688, "4096": 688, "0000_key": 688, "csr": 688, "0000_csr": 688, "denial": 688, "angriff": 688, "howtoforg": 688, "besuch": 688, "debianubuntu": 688, "geoip_country": 688, "geoip_country_cod": 688, "allowed_country": 688, "kr": 688, "ru": 688, "cn": 688, "gh": 688, "sy": 688, "http_upgrad": 688, "connection_upgrad": 688, "ddos": 688, "client_header_timeout": 688, "client_body_timeout": 688, "cyberciti": 688, "biz": 688, "tips": 688, "http_user_agent": 688, "lwp": 688, "bbbik": 688, "msnbot": 688, "scrapbot": 688, "refer": 688, "http_ref": 688, "bab": 688, "forsal": 688, "girl": 688, "jewelry": 688, "lov": 688, "nudit": 688, "organic": 688, "pok": 688, "porn": 688, "sex": 688, "teen": 688, "ssl_session_cach": 688, "builtin": 688, "shared": 688, "unsich": 688, "ciph": 688, "ssl_ciph": 688, "anull": 688, "enull": 688, "3des": 688, "md5": 688, "rc4": 688, "hsts": 688, "try_fil": 688, "loc_websocket": 688, "loc_smartvisu": 688, "loc_alexa": 688, "loc_shng": 688, "upstream_cache_status": 688, "sameorigin": 688, "xss": 688, "nosniff": 688, "proxy_http_version": 688, "cert": 688, "ssl_client_escaped_cert": 688, "klapp": 688, "openvpn": 688, "ew_certs_dir": 688, "crl": 688, "private_key": 688, "default_crl_days": 688, "default_md": 688, "sha1": 688, "crlnumb": 688, "certification": 688, "authority": 688, "genrsa": 688, "des3": 688, "1095": 688, "ca_default": 688, "gencrl": 688, "keyfil": 688, "crldays": 688, "cakey": 688, "caserial": 688, "cacreateserial": 688, "pkcs12": 688, "clcert": 688, "inkey": 688, "p12": 688, "sftp": 688, "bestatigt": 688, "arcweb": 688, "securing": 688, "ssl_client_certificat": 688, "ssl_crl": 688, "ssl_verify_client": 688, "ssl_session_timeout": 688, "ssl_client_verify": 688, "durchlass": 688, "jew": 688, "testbar": 688, "403er": 688, "aufbaut": 688, "macbook": 688, "lua5": 688, "luarock": 688, "liblua5": 688, "libnginx": 688, "evanlab": 688, "luacrypto": 688, "rockspecs": 688, "rockspec": 688, "crypto": 688, "hass_access": 688, "hmac_secret": 688, "secretkey": 688, "computehmac": 688, "hmac": 688, "sha256": 688, "verify_status": 688, "ngx": 688, "ssl_client_cert": 688, "accessexpir": 688, "elseif": 688, "cookie_clientid": 688, "client_hmac": 688, "cookie_accesstok": 688, "access_expir": 688, "cookie_accessexpir": 688, "nil": 688, "tonumb": 688, "http_forbidd": 688, "access_by_lua_fil": 688, "perfekt": 688, "raspi3": 688, "intel": 688, "4790k": 688, "dhparam": 688, "reinkopiert": 688, "ssl_dhparam": 688, "ssllab": 688, "ssltest": 688, "versiert": 688, "fail2ban": 688, "firewall": 688, "unbefugt": 688, "verschaff": 688, "existent": 688, "serverzertifikat": 688, "erneuer": 688, "hook": 688, "ufw": 688, "postfix": 688, "dovecot": 688, "agre": 688, "tos": 688, "aufschluss": 688, "auszulief": 689, "neuer": 689, "grundverstandnis": 689, "abarbeit": 689, "abgewickelt": 690, "kontent": 690, "sv_enabled": 690, "sv_acl": 690, "sv_querydef": 690, "zertifikatdatei": 690, "zukundft": 690, "kurzubersicht": [692, 693], "esphom": 692, "systemseit": 693, "zeitlied": 693, "verschachtel": 693, "untereb": 693, "definitionsdatei": 693, "migriert": 693, "masseinheitenumrechn": 693, "umzieh": 693}, "objects": {"lib": [[126, 0, 0, "-", "config"], [127, 0, 0, "-", "connection"], [128, 0, 0, "-", "constants"], [129, 0, 0, "-", "daemon"], [130, 0, 0, "-", "db"], [131, 0, 0, "-", "env"], [132, 0, 0, "-", "item"], [135, 0, 0, "-", "item_conversion"], [136, 0, 0, "-", "log"], [137, 0, 0, "-", "logic"], [138, 0, 0, "-", "logutils"], [139, 0, 0, "-", "metadata"], [140, 0, 0, "-", "module"], [141, 0, 0, "-", "network"], [142, 0, 0, "-", "orb"], [143, 0, 0, "-", "plugin"], [146, 0, 0, "-", "scene"], [147, 0, 0, "-", "scheduler"], [148, 0, 0, "-", "shtime"], [149, 0, 0, "-", "shyaml"], [40, 0, 0, "-", "smarthome"], [150, 0, 0, "-", "tools"], [151, 0, 0, "-", "translation"], [152, 0, 0, "-", "utils"]], "lib.config": [[126, 1, 1, "", "add_struct_to_item_template"], [126, 1, 1, "", "merge"], [126, 1, 1, "", "merge_structlists"], [126, 1, 1, "", "nested_get"], [126, 1, 1, "", "nested_put"], [126, 1, 1, "", "parse"], [126, 1, 1, "", "parse_basename"], [126, 1, 1, "", "parse_conf"], [126, 1, 1, "", "parse_itemsdir"], [126, 1, 1, "", "parse_yaml"], [126, 1, 1, "", "remove_comments"], [126, 1, 1, "", "remove_digits"], [126, 1, 1, "", "remove_invalid"], [126, 1, 1, "", "remove_keys"], [126, 1, 1, "", "remove_keyword"], [126, 1, 1, "", "remove_reserved"], [126, 1, 1, "", "remove_special_listentries"], [126, 1, 1, "", "replace_struct_instance"], [126, 1, 1, "", "sanitize_items"], [126, 1, 1, "", "search_for_struct_in_items"], [126, 1, 1, "", "set_attr_for_subtree"], [126, 1, 1, "", "strip_quotes"]], "lib.connection": [[127, 2, 1, "", "Base"], [127, 2, 1, "", "Client"], [127, 2, 1, "", "Connections"], [127, 2, 1, "", "Server"], [127, 2, 1, "", "Stream"]], "lib.connection.Client": [[127, 3, 1, "", "connect"]], "lib.connection.Connections": [[127, 3, 1, "", "check"], [127, 3, 1, "", "close"], [127, 3, 1, "", "monitor"], [127, 3, 1, "", "poll"], [127, 3, 1, "", "register_connection"], [127, 3, 1, "", "register_server"], [127, 3, 1, "", "trigger"], [127, 3, 1, "", "unregister_connection"]], "lib.connection.Server": [[127, 3, 1, "", "accept"], [127, 3, 1, "", "close"], [127, 3, 1, "", "connect"], [127, 3, 1, "", "handle_connection"]], "lib.connection.Stream": [[127, 3, 1, "", "balance"], [127, 3, 1, "", "close"], [127, 3, 1, "", "discard_buffers"], [127, 3, 1, "", "found_balance"], [127, 3, 1, "", "found_terminator"], [127, 3, 1, "", "handle_close"], [127, 3, 1, "", "handle_connect"], [127, 3, 1, "", "send"]], "lib.daemon": [[129, 1, 1, "", "check_sh_is_running"], [129, 1, 1, "", "daemonize"], [129, 1, 1, "", "kill"], [129, 1, 1, "", "read_pidfile"], [129, 1, 1, "", "remove_pidfile"], [129, 1, 1, "", "write_pidfile"]], "lib.db": [[130, 2, 1, "", "Database"]], "lib.db.Database": [[130, 3, 1, "", "close"], [130, 3, 1, "", "commit"], [130, 3, 1, "", "connect"], [130, 3, 1, "", "connected"], [130, 3, 1, "", "cursor"], [130, 3, 1, "", "execute"], [130, 3, 1, "", "fetchall"], [130, 3, 1, "", "fetchone"], [130, 3, 1, "", "lock"], [130, 3, 1, "", "release"], [130, 3, 1, "", "rollback"], [130, 3, 1, "", "setup"], [130, 3, 1, "", "verify"]], "lib.env": [[131, 1, 1, "", "bft_to_text"], [131, 1, 1, "", "c_to_f"], [131, 1, 1, "", "degrees_to_direction_16"], [131, 1, 1, "", "degrees_to_direction_8"], [131, 1, 1, "", "f_to_c"], [131, 1, 1, "", "kmh_to_bft"], [131, 1, 1, "", "kmh_to_kn"], [131, 1, 1, "", "kmh_to_mph"], [131, 1, 1, "", "kmh_to_mps"], [131, 1, 1, "", "kmh_to_ms"], [131, 1, 1, "", "kn_to_kmh"], [131, 1, 1, "", "location_address"], [131, 1, 1, "", "location_name"], [131, 1, 1, "", "meter_to_miles"], [131, 1, 1, "", "meter_to_nauticalmiles"], [131, 1, 1, "", "miles_to_meter"], [131, 1, 1, "", "mph_to_kmh"], [131, 1, 1, "", "mps_to_kmh"], [131, 1, 1, "", "ms_to_bft"], [131, 1, 1, "", "ms_to_kmh"], [131, 1, 1, "", "nauticalmiles_to_meter"]], "lib.item": [[134, 2, 1, "", "Items"]], "lib.item.Items": [[134, 3, 1, "", "add_item"], [134, 3, 1, "", "add_plugin_attribute"], [134, 3, 1, "", "add_plugin_attribute_prefix"], [134, 3, 1, "", "add_struct_definition"], [134, 3, 1, "", "find_children"], [134, 3, 1, "", "find_items"], [134, 3, 1, "", "get_instance"], [134, 3, 1, "", "get_plugin_attribute_type"], [134, 3, 1, "", "get_toplevel_items"], [134, 3, 1, "", "item_count"], [134, 3, 1, "", "load_itemdefinitions"], [134, 3, 1, "", "match_items"], [134, 3, 1, "", "plugin_attribute_exists"], [134, 4, 1, "", "plugin_attribute_prefixes"], [134, 4, 1, "", "plugin_attributes"], [134, 4, 1, "", "plugin_prefixes_tuple"], [134, 3, 1, "", "remove_item"], [134, 3, 1, "", "return_item"], [134, 3, 1, "", "return_items"], [134, 3, 1, "", "return_struct_definitions"], [134, 3, 1, "", "stop"], [134, 4, 1, "", "structs"]], "lib.item.item": [[133, 2, 1, "", "Item"]], "lib.item.item.Item": [[133, 2, 1, "", "DictHandler"], [133, 2, 1, "", "ListHandler"], [133, 2, 1, "", "TypeHandler"], [133, 3, 1, "", "add_logic_trigger"], [133, 3, 1, "", "add_method_trigger"], [133, 3, 1, "", "age"], [133, 3, 1, "", "autotimer"], [133, 3, 1, "", "changed_by"], [133, 3, 1, "", "expand_relativepathes"], [133, 3, 1, "", "fade"], [133, 3, 1, "", "find_attribute"], [133, 3, 1, "", "get_absolutepath"], [133, 3, 1, "", "get_calling_item_from_frame"], [133, 3, 1, "", "get_children_path"], [133, 3, 1, "", "get_class_from_frame"], [133, 3, 1, "", "get_hysteresis_item_triggers"], [133, 3, 1, "", "get_item_triggers"], [133, 3, 1, "", "get_logic_triggers"], [133, 3, 1, "", "get_method_triggers"], [133, 3, 1, "", "get_stack_info"], [133, 3, 1, "", "get_stringwithabsolutepathes"], [133, 3, 1, "", "hysteresis_data"], [133, 3, 1, "", "hysteresis_state"], [133, 3, 1, "", "id"], [133, 3, 1, "", "jsonvars"], [133, 3, 1, "", "last_change"], [133, 3, 1, "", "last_trigger"], [133, 3, 1, "", "last_update"], [133, 3, 1, "", "path"], [133, 3, 1, "", "prev_age"], [133, 3, 1, "", "prev_change"], [133, 3, 1, "", "prev_trigger"], [133, 3, 1, "", "prev_trigger_age"], [133, 3, 1, "", "prev_update"], [133, 3, 1, "", "prev_update_age"], [133, 3, 1, "", "prev_value"], [133, 3, 1, "", "remove"], [133, 3, 1, "", "remove_logic_trigger"], [133, 3, 1, "", "remove_method_trigger"], [133, 3, 1, "", "remove_timer"], [133, 3, 1, "", "return_children"], [133, 3, 1, "", "return_parent"], [133, 3, 1, "", "set"], [133, 3, 1, "", "timer"], [133, 3, 1, "", "to_json"], [133, 3, 1, "", "trigger_age"], [133, 3, 1, "", "triggered_by"], [133, 3, 1, "", "type"], [133, 3, 1, "", "update_age"], [133, 3, 1, "", "updated_by"]], "lib.item.item.Item.DictHandler": [[133, 3, 1, "", "clear"], [133, 3, 1, "", "delete"], [133, 3, 1, "", "get"], [133, 4, 1, "", "item_functions"], [133, 3, 1, "", "pop"], [133, 3, 1, "", "popitem"], [133, 3, 1, "", "update"]], "lib.item.item.Item.ListHandler": [[133, 3, 1, "", "append"], [133, 3, 1, "", "clear"], [133, 3, 1, "", "delete"], [133, 3, 1, "", "extend"], [133, 3, 1, "", "insert"], [133, 4, 1, "", "item_functions"], [133, 3, 1, "", "pop"], [133, 3, 1, "", "prepend"], [133, 3, 1, "", "remove"]], "lib.item.item.Item.TypeHandler": [[133, 4, 1, "", "item_functions"]], "lib.item_conversion": [[135, 1, 1, "", "convert_yaml"], [135, 1, 1, "", "is_ruamelyaml_installed"], [135, 1, 1, "", "parse_for_convert"], [135, 1, 1, "", "yaml_save"]], "lib.log": [[136, 2, 1, "", "DateTimeRotatingFileHandler"], [136, 2, 1, "", "Log"], [136, 2, 1, "", "Logs"], [136, 2, 1, "", "ShngMemLogHandler"], [136, 2, 1, "", "ShngTimedRotatingFileHandler"]], "lib.log.DateTimeRotatingFileHandler": [[136, 3, 1, "", "close"], [136, 3, 1, "", "do_rollover"], [136, 3, 1, "", "emit"], [136, 3, 1, "", "get_filename"], [136, 3, 1, "", "get_files_to_delete"], [136, 3, 1, "", "next_rollover_time"], [136, 3, 1, "", "parseFilename"]], "lib.log.Log": [[136, 3, 1, "", "add"], [136, 3, 1, "", "clean"], [136, 3, 1, "", "export"], [136, 3, 1, "", "last"]], "lib.log.Logs": [[136, 4, 1, "", "DBGHIGH_level"], [136, 4, 1, "", "DBGLOW_level"], [136, 4, 1, "", "DBGMED_level"], [136, 4, 1, "", "NOTICE_level"], [136, 3, 1, "", "add_all_handlers_logger"], [136, 3, 1, "", "add_log"], [136, 3, 1, "", "add_logging_level"], [136, 3, 1, "", "configure_logging"], [136, 3, 1, "", "get_all_handlernames"], [136, 3, 1, "", "get_handler_by_name"], [136, 3, 1, "", "get_shng_logging_levels"], [136, 3, 1, "", "initMemLog"], [136, 3, 1, "", "load_logging_config"], [136, 3, 1, "", "load_logging_config_for_edit"], [136, 4, 1, "", "logging_levels"], [136, 3, 1, "", "return_logs"], [136, 4, 1, "", "root_handler_name"], [136, 3, 1, "", "save_logging_config"]], "lib.log.ShngMemLogHandler": [[136, 3, 1, "", "emit"], [136, 3, 1, "", "load"]], "lib.log.ShngTimedRotatingFileHandler": [[136, 3, 1, "", "doRollover"], [136, 3, 1, "", "getFilesToDelete"]], "lib.logic": [[137, 2, 1, "", "Logic"], [137, 2, 1, "", "Logics"]], "lib.logic.Logic": [[137, 3, 1, "", "add_method_trigger"], [137, 5, 1, "", "conf"], [137, 5, 1, "", "crontab"], [137, 5, 1, "", "cycle"], [137, 5, 1, "", "description"], [137, 3, 1, "", "disable"], [137, 3, 1, "", "enable"], [137, 5, 1, "", "filename"], [137, 3, 1, "", "get_method_triggers"], [137, 5, 1, "", "groupnames"], [137, 3, 1, "", "id"], [137, 3, 1, "", "is_enabled"], [137, 3, 1, "", "last_run"], [137, 5, 1, "", "lname"], [137, 3, 1, "", "log_readonly_warning"], [137, 5, 1, "", "name"], [137, 5, 1, "", "pathname"], [137, 5, 1, "", "prio"], [137, 3, 1, "", "set_last_run"], [137, 3, 1, "", "trigger"], [137, 5, 1, "", "trigger_dict"], [137, 5, 1, "", "watch_item"]], "lib.logic.Logics": [[137, 3, 1, "", "delete_logic"], [137, 3, 1, "", "disable_logic"], [137, 3, 1, "", "enable_logic"], [137, 3, 1, "", "filename_used_count"], [137, 3, 1, "", "get_instance"], [137, 3, 1, "", "get_loaded_logics"], [137, 3, 1, "", "get_logic_info"], [137, 3, 1, "", "get_logiccrontab"], [137, 3, 1, "", "get_logics_dir"], [137, 3, 1, "", "is_logic_enabled"], [137, 3, 1, "", "is_logic_loaded"], [137, 3, 1, "", "is_userlogic"], [137, 3, 1, "", "load_logic"], [137, 4, 1, "", "plugins"], [137, 3, 1, "", "read_config_section"], [137, 3, 1, "", "reload_logics"], [137, 3, 1, "", "return_config_type"], [137, 3, 1, "", "return_defined_logics"], [137, 3, 1, "", "return_loaded_logics"], [137, 3, 1, "", "return_logic"], [137, 3, 1, "", "return_logics"], [137, 3, 1, "", "return_logictype"], [137, 4, 1, "", "scheduler"], [137, 3, 1, "", "scheduler_add"], [137, 3, 1, "", "scheduler_change"], [137, 3, 1, "", "scheduler_remove"], [137, 3, 1, "", "set_config_section_key"], [137, 3, 1, "", "toggle_logic"], [137, 3, 1, "", "trigger_logic"], [137, 3, 1, "", "unload_logic"], [137, 3, 1, "", "update_config_section"], [137, 3, 1, "", "visu_access"]], "lib.logutils": [[138, 2, 1, "", "DuplicateFilter"], [138, 2, 1, "", "Filter"]], "lib.logutils.DuplicateFilter": [[138, 3, 1, "", "filter"]], "lib.logutils.Filter": [[138, 3, 1, "", "filter"]], "lib.metadata": [[139, 2, 1, "", "Metadata"]], "lib.metadata.Metadata": [[139, 3, 1, "", "check_itemattribute"], [139, 3, 1, "", "check_parameters"], [139, 3, 1, "", "get_bool"], [139, 3, 1, "", "get_global_plugin_parameters"], [139, 3, 1, "", "get_itemdefinition"], [139, 3, 1, "", "get_itemdefinition_listlen"], [139, 3, 1, "", "get_itemdefinition_subtype"], [139, 3, 1, "", "get_itemdefinition_type"], [139, 3, 1, "", "get_itemdefinition_type_with_subtype"], [139, 3, 1, "", "get_itemdefinitionlist"], [139, 3, 1, "", "get_mlstring"], [139, 3, 1, "", "get_parameter_defaultvalue"], [139, 3, 1, "", "get_parameter_listlen"], [139, 3, 1, "", "get_parameter_subtype"], [139, 3, 1, "", "get_parameter_type"], [139, 3, 1, "", "get_parameter_type_with_subtype"], [139, 3, 1, "", "get_parameterdefinition"], [139, 3, 1, "", "get_parameterlist"], [139, 3, 1, "", "get_plugin_function_defstrings"], [139, 3, 1, "", "get_string"], [139, 3, 1, "", "get_version"], [139, 3, 1, "", "test_pythoncompatibility"], [139, 3, 1, "", "test_sdpcompatibility"], [139, 3, 1, "", "test_shngcompatibility"], [139, 3, 1, "", "test_version"]], "lib.model.mqttplugin": [[620, 2, 1, "", "MqttPlugin"]], "lib.model.mqttplugin.MqttPlugin": [[620, 3, 1, "", "add_subscription"], [620, 4, 1, "", "broker_config"], [620, 4, 1, "", "broker_monitoring"], [620, 3, 1, "", "broker_uptime"], [620, 3, 1, "", "get_broker_info"], [620, 3, 1, "", "mqtt_init"], [620, 3, 1, "", "publish_topic"], [620, 3, 1, "", "start_subscriptions"], [620, 3, 1, "", "stop_subscriptions"], [620, 3, 1, "", "translate"]], "lib.model.smartplugin": [[624, 2, 1, "", "SmartPlugin"]], "lib.model.smartplugin.SmartPlugin": [[624, 4, 1, "", "ALLOW_MULTIINSTANCE"], [624, 4, 1, "", "PLUGIN_VERSION"], [624, 4, 1, "", "STOP_ON_ITEM_CHANGE"], [624, 3, 1, "", "add_item"], [624, 4, 1, "", "alive"], [624, 3, 1, "", "asyncio_state"], [624, 3, 1, "", "callerinfo"], [624, 3, 1, "", "deinit"], [624, 3, 1, "", "get_classname"], [624, 3, 1, "", "get_command_from_run_queue"], [624, 3, 1, "", "get_configname"], [624, 3, 1, "", "get_fullname"], [624, 3, 1, "", "get_iattr_value"], [624, 3, 1, "", "get_info"], [624, 3, 1, "", "get_instance_name"], [624, 3, 1, "", "get_item_config"], [624, 3, 1, "", "get_item_list"], [624, 3, 1, "", "get_item_mapping"], [624, 3, 1, "", "get_item_mapping_list"], [624, 3, 1, "", "get_item_path_list"], [624, 3, 1, "", "get_items_for_mapping"], [624, 3, 1, "", "get_loginstance"], [624, 3, 1, "", "get_mappings"], [624, 3, 1, "", "get_module"], [624, 3, 1, "", "get_parameter_value"], [624, 3, 1, "", "get_parameter_value_for_display"], [624, 3, 1, "", "get_plugin_dir"], [624, 3, 1, "", "get_sh"], [624, 3, 1, "", "get_shortname"], [624, 3, 1, "", "get_trigger_items"], [624, 3, 1, "", "get_version"], [624, 3, 1, "", "has_iattr"], [624, 3, 1, "", "init_webinterface"], [624, 3, 1, "", "is_multi_instance_capable"], [624, 3, 1, "", "list_asyncio_tasks"], [624, 4, 1, "", "logger"], [624, 3, 1, "", "now"], [624, 3, 1, "", "parse_item"], [624, 3, 1, "", "parse_logic"], [624, 3, 1, "", "path_join"], [624, 3, 1, "", "poll_device"], [624, 3, 1, "", "put_command_to_run_queue"], [624, 3, 1, "", "register_updating"], [624, 3, 1, "", "remove_item"], [624, 3, 1, "", "run"], [624, 3, 1, "", "run_asyncio_coro"], [624, 3, 1, "", "scheduler_add"], [624, 3, 1, "", "scheduler_change"], [624, 3, 1, "", "scheduler_get"], [624, 3, 1, "", "scheduler_get_all"], [624, 3, 1, "", "scheduler_remove"], [624, 3, 1, "", "scheduler_remove_all"], [624, 3, 1, "", "scheduler_return_next"], [624, 3, 1, "", "scheduler_trigger"], [624, 3, 1, "", "set_attr_value"], [624, 4, 1, "", "shtime"], [624, 3, 1, "", "start_asyncio"], [624, 3, 1, "", "stop"], [624, 3, 1, "", "stop_asyncio"], [624, 3, 1, "", "translate"], [624, 3, 1, "", "unparse_item"], [624, 3, 1, "", "update_config_section"], [624, 3, 1, "", "update_item"], [624, 3, 1, "", "wait_for_asyncio_termination"]], "lib.module": [[140, 2, 1, "", "Modules"]], "lib.module.Modules": [[140, 3, 1, "", "get_instance"], [140, 3, 1, "", "get_module"], [140, 3, 1, "", "return_modules"], [140, 3, 1, "", "start"], [140, 3, 1, "", "stop"]], "lib.network": [[141, 2, 1, "", "ConnectionClient"], [141, 2, 1, "", "Connections"], [141, 2, 1, "", "Http"], [141, 2, 1, "", "Network"], [141, 2, 1, "", "Tcp_client"], [141, 2, 1, "", "Tcp_server"], [141, 2, 1, "", "Udp_server"]], "lib.network.ConnectionClient": [[141, 3, 1, "", "close"], [141, 3, 1, "", "send"], [141, 3, 1, "", "send_echo_off"], [141, 3, 1, "", "send_echo_on"], [141, 3, 1, "", "set_callbacks"], [141, 5, 1, "", "socket"]], "lib.network.Connections": [[141, 3, 1, "", "check"], [141, 3, 1, "", "monitor"], [141, 3, 1, "", "unmonitor"]], "lib.network.Http": [[141, 3, 1, "", "HTTPDigestAuth"], [141, 3, 1, "", "download"], [141, 3, 1, "", "get_binary"], [141, 3, 1, "", "get_json"], [141, 3, 1, "", "get_text"], [141, 3, 1, "", "post_json"], [141, 3, 1, "", "response_cookies"], [141, 3, 1, "", "response_headers"], [141, 3, 1, "", "response_object"], [141, 3, 1, "", "response_status"]], "lib.network.Network": [[141, 3, 1, "", "clean_uri"], [141, 3, 1, "", "family_to_string"], [141, 3, 1, "", "ip_port_to_socket"], [141, 3, 1, "", "ping"], [141, 3, 1, "", "ping_port"], [141, 3, 1, "", "send_wol"], [141, 3, 1, "", "validate_inet_addr"]], "lib.network.Tcp_client": [[141, 3, 1, "", "close"], [141, 3, 1, "", "connect"], [141, 3, 1, "", "connected"], [141, 3, 1, "", "open"], [141, 3, 1, "", "send"], [141, 3, 1, "", "set_callbacks"]], "lib.network.Tcp_server": [[141, 4, 1, "", "MODE_BINARY"], [141, 4, 1, "", "MODE_FIXED_LENGTH"], [141, 4, 1, "", "MODE_TEXT"], [141, 4, 1, "", "MODE_TEXT_LINE"], [141, 3, 1, "", "close"], [141, 3, 1, "", "disconnect"], [141, 3, 1, "", "listening"], [141, 3, 1, "", "send"], [141, 3, 1, "", "set_callbacks"], [141, 3, 1, "", "start"]], "lib.network.Udp_server": [[141, 3, 1, "", "close"], [141, 3, 1, "", "listening"], [141, 3, 1, "", "set_callbacks"], [141, 3, 1, "", "start"]], "lib.orb": [[142, 2, 1, "", "Orb"]], "lib.orb.Orb": [[142, 3, 1, "", "get_observer_and_orb"], [142, 3, 1, "", "midnight"], [142, 3, 1, "", "noon"], [142, 3, 1, "", "pos"], [142, 3, 1, "", "rise"], [142, 3, 1, "", "set"]], "lib.plugin": [[145, 2, 1, "", "PluginWrapper"], [144, 2, 1, "", "Plugins"]], "lib.plugin.PluginWrapper": [[145, 3, 1, "", "get_ident"], [145, 3, 1, "", "get_implementation"], [145, 3, 1, "", "get_name"], [145, 3, 1, "", "run"], [145, 3, 1, "", "stop"]], "lib.plugin.Plugins": [[144, 2, 1, "", "PyObject"], [144, 3, 1, "", "get"], [144, 3, 1, "", "get_instance"], [144, 3, 1, "", "get_loaded_plugin_instances"], [144, 3, 1, "", "get_loaded_plugins"], [144, 3, 1, "", "get_logic_parameters"], [144, 3, 1, "", "get_pluginthread"], [144, 3, 1, "", "return_plugin"], [144, 3, 1, "", "return_plugins"], [144, 3, 1, "", "start"], [144, 3, 1, "", "stop"], [144, 3, 1, "", "unload_plugin"]], "lib.plugin.Plugins.PyObject": [[144, 4, 1, "", "refcnt"]], "lib.scene": [[146, 2, 1, "", "Scenes"]], "lib.scene.Scenes": [[146, 3, 1, "", "get_instance"], [146, 3, 1, "", "get_loaded_scenes"], [146, 3, 1, "", "get_scene_action_name"], [146, 3, 1, "", "get_scene_actions"], [146, 3, 1, "", "reload_scenes"], [146, 3, 1, "", "return_scene_value_actions"]], "lib.scheduler": [[147, 6, 1, "", "LeaveLogic"], [147, 2, 1, "", "Scheduler"]], "lib.scheduler.Scheduler": [[147, 3, 1, "", "add"], [147, 3, 1, "", "change"], [147, 3, 1, "", "check_caller"], [147, 3, 1, "", "get"], [147, 3, 1, "", "get_idle_worker_count"], [147, 3, 1, "", "get_instance"], [147, 3, 1, "", "get_worker_count"], [147, 3, 1, "", "get_worker_names"], [147, 3, 1, "", "remove"], [147, 3, 1, "", "return_next"], [147, 3, 1, "", "run"], [147, 3, 1, "", "set_worker_warn_count"], [147, 3, 1, "", "stop"], [147, 3, 1, "", "trigger"]], "lib.shtime": [[148, 2, 1, "", "Shtime"]], "lib.shtime.Shtime": [[148, 3, 1, "", "add_custom_holiday"], [148, 3, 1, "", "add_custom_holiday_range"], [148, 3, 1, "", "beginning_of_month"], [148, 3, 1, "", "beginning_of_week"], [148, 3, 1, "", "beginning_of_year"], [148, 3, 1, "", "calendar_week"], [148, 3, 1, "", "current_day"], [148, 3, 1, "", "current_month"], [148, 3, 1, "", "current_monthname"], [148, 3, 1, "", "current_year"], [148, 3, 1, "", "date_transform"], [148, 3, 1, "", "datetime_transform"], [148, 3, 1, "", "day_of_year"], [148, 3, 1, "", "get_instance"], [148, 3, 1, "", "holiday_list"], [148, 3, 1, "", "holiday_name"], [148, 4, 1, "", "holidays"], [148, 3, 1, "", "is_holiday"], [148, 3, 1, "", "is_public_holiday"], [148, 3, 1, "", "is_weekend"], [148, 3, 1, "", "length_of_month"], [148, 3, 1, "", "length_of_year"], [148, 3, 1, "", "now"], [148, 3, 1, "", "public_holiday_list"], [148, 4, 1, "", "public_holidays"], [148, 3, 1, "", "runtime"], [148, 3, 1, "", "runtime_as_dict"], [148, 3, 1, "", "seconds_to_displaystring"], [148, 3, 1, "", "set_tz"], [148, 3, 1, "", "set_tzinfo"], [148, 3, 1, "", "time_diff"], [148, 3, 1, "", "time_since"], [148, 3, 1, "", "time_until"], [148, 3, 1, "", "to_seconds"], [148, 3, 1, "", "today"], [148, 3, 1, "", "tomorrow"], [148, 3, 1, "", "translate"], [148, 3, 1, "", "tz"], [148, 3, 1, "", "tzinfo"], [148, 3, 1, "", "tzlocal"], [148, 3, 1, "", "tzname"], [148, 3, 1, "", "tznameDST"], [148, 3, 1, "", "tznameST"], [148, 3, 1, "", "utcinfo"], [148, 3, 1, "", "utcnow"], [148, 3, 1, "", "weekday"], [148, 3, 1, "", "weekday_name"], [148, 3, 1, "", "yesterday"]], "lib.shyaml": [[149, 1, 1, "", "convert_linenumber"], [149, 1, 1, "", "editing_is_enabled"], [149, 1, 1, "", "get_commentedseq"], [149, 1, 1, "", "get_emptynode"], [149, 1, 1, "", "get_key"], [149, 1, 1, "", "get_parent"], [149, 1, 1, "", "setInDict"], [149, 1, 1, "", "writeBackToFile"], [149, 1, 1, "", "yaml_dump_roundtrip"], [149, 1, 1, "", "yaml_load"], [149, 1, 1, "", "yaml_load_fromstring"], [149, 1, 1, "", "yaml_load_roundtrip"], [149, 1, 1, "", "yaml_save"], [149, 1, 1, "", "yaml_save_roundtrip"], [149, 2, 1, "", "yamlfile"]], "lib.shyaml.yamlfile": [[149, 4, 1, "", "data"], [149, 4, 1, "", "filename"], [149, 3, 1, "", "getnode"], [149, 3, 1, "", "getnodetype"], [149, 3, 1, "", "getvalue"], [149, 3, 1, "", "getvaluetype"], [149, 3, 1, "", "load"], [149, 3, 1, "", "save"], [149, 3, 1, "", "setleafvalue"], [149, 3, 1, "", "setvalue"]], "lib.smarthome": [[40, 2, 1, "", "SmartHome"]], "lib.smarthome.SmartHome": [[40, 4, 1, "", "BASE"], [40, 3, 1, "", "add_event_listener"], [40, 3, 1, "", "add_item"], [40, 3, 1, "", "checkConfigFiles"], [40, 3, 1, "", "create_directories"], [40, 3, 1, "", "find_children"], [40, 3, 1, "", "find_items"], [40, 3, 1, "", "getBaseDir"], [40, 3, 1, "", "get_basedir"], [40, 3, 1, "", "get_confdir"], [40, 3, 1, "", "get_config_dir"], [40, 3, 1, "", "get_config_file"], [40, 3, 1, "", "get_defaultlanguage"], [40, 3, 1, "", "get_etcdir"], [40, 3, 1, "", "get_instance"], [40, 3, 1, "", "get_module"], [40, 3, 1, "", "get_structsdir"], [40, 3, 1, "", "get_vardir"], [40, 3, 1, "", "init_logging"], [40, 3, 1, "", "initialize_dir_vars"], [40, 3, 1, "", "initialize_vars"], [40, 5, 1, "", "lat"], [40, 3, 1, "", "list_threads"], [40, 5, 1, "", "lon"], [40, 3, 1, "", "match_items"], [40, 3, 1, "", "now"], [40, 3, 1, "", "object_refcount"], [40, 3, 1, "", "reload_logics"], [40, 3, 1, "", "restart"], [40, 3, 1, "", "return_event_listeners"], [40, 3, 1, "", "return_item"], [40, 3, 1, "", "return_items"], [40, 3, 1, "", "return_logic"], [40, 3, 1, "", "return_logics"], [40, 3, 1, "", "return_modules"], [40, 3, 1, "", "return_plugins"], [40, 3, 1, "", "runtime"], [40, 3, 1, "", "set_defaultlanguage"], [40, 3, 1, "", "start"], [40, 3, 1, "", "stop"], [40, 3, 1, "", "string2bool"], [40, 3, 1, "", "tzinfo"], [40, 3, 1, "", "utcinfo"], [40, 3, 1, "", "utcnow"]], "lib.tools": [[150, 2, 1, "", "Tools"]], "lib.tools.Tools": [[150, 3, 1, "", "abs2rel"], [150, 3, 1, "", "dewpoint"], [150, 3, 1, "", "dt2js"], [150, 3, 1, "", "dt2ts"], [150, 3, 1, "", "fetch_url"], [150, 3, 1, "", "ping"], [150, 3, 1, "", "rel2abs"], [150, 3, 1, "", "runtime"]], "lib.translation": [[151, 1, 1, "", "initialize_translations"], [151, 1, 1, "", "load_translations"], [151, 1, 1, "", "reload_translations"], [151, 1, 1, "", "set_default_language"], [151, 1, 1, "", "set_fallback_language_order"], [151, 1, 1, "", "translate"]], "lib.utils": [[152, 2, 1, "", "Utils"], [152, 2, 1, "", "Version"], [152, 1, 1, "", "execute_subprocess"], [152, 1, 1, "", "get_python_version"], [152, 1, 1, "", "running_virtual"]], "lib.utils.Utils": [[152, 3, 1, "", "check_hashed_password"], [152, 3, 1, "", "create_hash"], [152, 3, 1, "", "execute_subprocess"], [152, 3, 1, "", "get_all_addresses_for_addressfamily"], [152, 3, 1, "", "get_all_local_ipv4_addresses"], [152, 3, 1, "", "get_all_local_ipv6_addresses"], [152, 3, 1, "", "get_local_ipv4_address"], [152, 3, 1, "", "get_local_ipv6_address"], [152, 3, 1, "", "get_type"], [152, 3, 1, "", "is_float"], [152, 3, 1, "", "is_hash"], [152, 3, 1, "", "is_hostname"], [152, 3, 1, "", "is_int"], [152, 3, 1, "", "is_ip"], [152, 3, 1, "", "is_ipv4"], [152, 3, 1, "", "is_ipv6"], [152, 3, 1, "", "is_knx_groupaddress"], [152, 3, 1, "", "is_mac"], [152, 3, 1, "", "is_timeframe"], [152, 3, 1, "", "string_to_list"], [152, 3, 1, "", "strip_quotes"], [152, 3, 1, "", "strip_quotes_fromlist"], [152, 3, 1, "", "strip_square_brackets"], [152, 3, 1, "", "to_bool"], [152, 3, 1, "", "to_timeframe"]], "lib.utils.Version": [[152, 3, 1, "", "check_list"], [152, 3, 1, "", "compare"], [152, 3, 1, "", "format"], [152, 3, 1, "", "to_list"], [152, 3, 1, "", "to_string"]], "modules.admin": [[612, 0, 0, "-", "api_plugin"], [612, 0, 0, "-", "api_plugins"]], "modules.admin.api_plugin": [[612, 2, 1, "", "PluginController"]], "modules.admin.api_plugin.PluginController": [[612, 3, 1, "", "add"], [612, 3, 1, "", "delete"], [612, 3, 1, "", "get_body"], [612, 3, 1, "", "get_config_filename"], [612, 3, 1, "", "handle_plugin_action"], [612, 3, 1, "", "read"], [612, 3, 1, "", "test_for_old_config"], [612, 3, 1, "", "update"]], "modules.admin.api_plugins": [[612, 2, 1, "", "PluginsAPIController"], [612, 2, 1, "", "PluginsConfigController"], [612, 2, 1, "", "PluginsController"], [612, 2, 1, "", "PluginsInfoController"], [612, 2, 1, "", "PluginsInstalledController"], [612, 2, 1, "", "PluginsLogicParametersController"]], "modules.admin.api_plugins.PluginsAPIController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsConfigController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsInfoController": [[612, 4, 1, "", "blog_urls"], [612, 3, 1, "", "read"], [612, 3, 1, "", "stop"]], "modules.admin.api_plugins.PluginsInstalledController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsLogicParametersController": [[612, 3, 1, "", "read"]], "modules": [[613, 0, 0, "-", "http"], [615, 0, 0, "-", "mqtt"]], "modules.http": [[613, 2, 1, "", "CherryPyFilter"], [613, 2, 1, "", "Http"], [613, 2, 1, "", "ModuleApp"]], "modules.http.CherryPyFilter": [[613, 3, 1, "", "filter"]], "modules.http.Http": [[613, 3, 1, "", "get_local_hostname"], [613, 3, 1, "", "get_local_ip_address"], [613, 3, 1, "", "get_local_port"], [613, 3, 1, "", "get_local_servicesport"], [613, 3, 1, "", "get_service_password"], [613, 3, 1, "", "get_service_user"], [613, 3, 1, "", "get_services_for_plugin"], [613, 3, 1, "", "get_user_dict"], [613, 3, 1, "", "get_webifs_for_plugin"], [613, 4, 1, "", "gstatic_dir"], [613, 4, 1, "", "gtemplates_dir"], [613, 3, 1, "", "init_template_environment"], [613, 3, 1, "", "is_port_in_use"], [613, 3, 1, "", "is_staticfile"], [613, 3, 1, "", "log_server_info"], [613, 3, 1, "", "register_service"], [613, 3, 1, "", "register_visu"], [613, 3, 1, "", "register_webif"], [613, 3, 1, "", "start"], [613, 3, 1, "", "stop"], [613, 3, 1, "", "validate_password"], [613, 3, 1, "", "validate_service_password"], [613, 4, 1, "", "version"], [613, 4, 1, "", "webif_mount_prefix"]], "modules.http.ModuleApp": [[613, 3, 1, "", "index"]], "modules.mqtt": [[615, 2, 1, "", "Mqtt"]], "modules.mqtt.Mqtt": [[615, 3, 1, "", "broker_uptime"], [615, 3, 1, "", "cast_from_mqtt"], [615, 3, 1, "", "cast_to_mqtt"], [615, 3, 1, "", "get_broker_config"], [615, 3, 1, "", "get_broker_info"], [615, 4, 1, "", "longname"], [615, 3, 1, "", "publish_topic"], [615, 4, 1, "", "scheduler"], [615, 3, 1, "", "start"], [615, 3, 1, "", "stop"], [615, 3, 1, "", "subscribe_topic"], [615, 3, 1, "", "unsubscribe_topic"], [615, 4, 1, "", "version"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:method", "4": "py:attribute", "5": "py:property", "6": "py:exception"}, "objnames": {"0": ["py", "module", "Python-Modul"], "1": ["py", "function", "Python-Funktion"], "2": ["py", "class", "Python-Klasse"], "3": ["py", "method", "Python-Methode"], "4": ["py", "attribute", "Python-Attribut"], "5": ["py", "property", "Python-property"], "6": ["py", "exception", "Python-Exception"]}, "titleterms": {"administration": 0, "interfac": [0, 30, 31, 32, 33, 34, 67, 76, 83, 157, 158, 162, 164, 165, 166, 167, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 197, 200, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 228, 229, 230, 232, 237, 238, 241, 242, 243, 244, 246, 249, 250, 251, 252, 255, 259, 261, 262, 263, 264, 265, 266, 267, 268, 276, 277, 280, 284, 285, 286, 287, 289, 291, 302, 306, 307, 310, 311, 314, 320, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 356, 357, 359, 360, 362, 363, 366, 367, 369, 402, 550, 551], "updat": [0, 10, 13, 48, 50, 53, 55, 56, 58, 65, 76, 89, 92, 101, 154, 162, 292, 391, 566, 569, 577, 592, 626, 627, 630, 631, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 675, 689, 691], "dien": [1, 27, 89, 90, 617, 630], "ubersicht": [1, 8, 36, 52, 109, 219], "eval": [1, 12, 325, 561, 573, 575, 576], "syntax": [1, 106, 561, 573], "pruf": [1, 328, 339, 340], "yaml": [1, 15, 16, 18, 19, 20, 30, 33, 34, 52, 83, 93, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 119, 120, 121, 122, 154, 157, 158, 160, 164, 165, 166, 167, 168, 169, 173, 175, 176, 180, 182, 183, 186, 188, 190, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 208, 211, 214, 215, 218, 219, 221, 222, 228, 229, 230, 231, 232, 234, 235, 236, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 261, 263, 264, 267, 269, 270, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 288, 290, 294, 296, 297, 298, 300, 301, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 317, 334, 335, 339, 340, 341, 343, 344, 351, 352, 355, 358, 359, 360, 361, 362, 363, 365, 368, 369, 370, 686], "conf": [1, 92, 106, 160, 161, 221, 222, 688], "konvert": 1, "cach": [1, 27, 434, 463], "prufung": [1, 76, 632], "userfunction": [1, 125, 573, 638], "editor": [1, 3, 93], "item": [2, 3, 11, 12, 13, 16, 18, 20, 24, 25, 27, 33, 34, 40, 52, 53, 76, 92, 94, 97, 98, 99, 103, 105, 106, 115, 132, 133, 134, 155, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 176, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 202, 203, 205, 207, 208, 211, 212, 213, 214, 215, 218, 219, 221, 222, 227, 229, 231, 232, 234, 235, 236, 237, 239, 240, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 265, 268, 269, 270, 272, 275, 276, 277, 278, 280, 281, 282, 284, 285, 288, 289, 290, 291, 293, 294, 295, 297, 298, 300, 301, 304, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 317, 319, 323, 324, 325, 328, 331, 334, 335, 337, 338, 339, 340, 341, 343, 344, 351, 352, 355, 356, 357, 358, 359, 360, 361, 362, 363, 365, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 562, 563, 564, 565, 566, 567, 573, 574, 576, 580, 591, 602, 603, 632, 638, 686], "baum": 2, "monitoring": 2, "konfiguration": [2, 4, 5, 6, 8, 14, 22, 27, 31, 32, 33, 34, 76, 83, 93, 94, 95, 96, 98, 101, 102, 103, 106, 111, 112, 115, 116, 119, 120, 121, 122, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 210, 212, 213, 214, 215, 217, 219, 220, 222, 223, 226, 228, 229, 230, 232, 233, 237, 238, 241, 242, 243, 244, 246, 249, 250, 252, 255, 256, 259, 261, 262, 263, 264, 265, 266, 267, 268, 271, 272, 276, 277, 279, 284, 285, 286, 287, 289, 291, 293, 295, 300, 302, 306, 307, 309, 310, 311, 313, 314, 316, 319, 322, 328, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 354, 357, 359, 360, 362, 363, 366, 367, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 574, 592, 593, 616, 682, 688], "struktur": [2, 24, 25, 53, 97, 329, 603], "templat": [2, 42, 50, 54, 55, 97, 289, 324, 325, 326, 329], "logik": [3, 15, 16, 17, 18, 19, 20, 21, 42, 76, 92, 109, 115, 117, 153, 164, 219, 241, 243, 263, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 581, 587, 589, 590, 592, 593, 595, 596, 632], "list": [3, 4, 5, 6, 12, 53, 97, 123, 262, 273, 472, 517, 545, 547, 548, 550, 552, 554, 558, 563, 603], "cod": [3, 47, 50, 52, 109, 192, 203, 593, 628], "paramet": [3, 30, 43, 53, 58, 157, 158, 211, 262, 273, 274, 326, 359, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 592, 596, 604, 608, 609, 638, 688], "beschreib": [3, 52, 53, 170, 204, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "grupp": 3, "n": 3, "cycl": [3, 52, 365, 377, 382, 383, 388, 394, 396, 397, 405, 406, 414, 416, 423, 425, 431, 436, 443, 444, 448, 449, 452, 453, 459, 460, 461, 462, 468, 470, 475, 478, 479, 480, 481, 482, 483, 492, 493, 494, 498, 499, 500, 501, 503, 517, 520, 526, 530, 532, 570, 592], "crontab": [3, 452, 499, 569, 592], "watch": 3, "plugin": [3, 5, 22, 23, 29, 33, 34, 43, 46, 49, 51, 52, 53, 59, 62, 64, 65, 67, 71, 76, 83, 85, 86, 87, 92, 95, 97, 103, 111, 115, 116, 123, 143, 144, 154, 157, 159, 160, 162, 164, 166, 167, 168, 169, 170, 171, 173, 175, 176, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198, 200, 201, 202, 205, 206, 208, 211, 212, 213, 214, 215, 218, 219, 221, 222, 223, 227, 228, 229, 230, 231, 232, 234, 235, 236, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 267, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 287, 288, 289, 290, 293, 294, 295, 296, 297, 298, 300, 301, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 317, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 351, 352, 353, 355, 356, 358, 359, 360, 361, 362, 363, 365, 368, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 546, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 561, 566, 581, 597, 601, 602, 603, 604, 605, 608, 609, 610, 618, 619, 621, 622, 625, 626, 632, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 666, 667, 669, 670, 671, 672, 673, 674, 675, 685, 687, 688, 691, 693], "spezif": [3, 566], "log": [4, 27, 28, 115, 136, 154, 155, 162, 170, 219, 263, 304, 356, 357], "anzeig": [4, 682], "gross": 4, "datei": [4, 52, 54, 55, 92, 103, 106, 119, 120, 121, 122, 295], "logg": [4, 222, 463, 593], "logging": [4, 83, 107, 115, 116, 160, 222, 322, 582, 583, 584, 585, 586, 593, 632, 638], "gelad": [5, 598, 632], "konfiguriert": 5, "szen": [6, 112, 124], "schedul": [7, 52, 147, 154], "syst": [8, 27, 67, 82, 177, 554, 555, 580], "eigenschaft": [8, 314], "ressourc": 8, "graph": 8, "pypi": 8, "check": [8, 64, 221], "urheberrechtshinweis": 8, "allgemein": [8, 56, 103, 170, 200, 262, 266, 279, 321, 349, 652], "http": [8, 44, 120, 157, 222, 457, 613], "modul": [8, 12, 30, 39, 43, 44, 45, 49, 53, 76, 83, 110, 118, 119, 120, 121, 122, 140, 154, 157, 158, 598, 605, 606, 608, 611, 612, 613, 614, 615, 616, 632], "admin": [8, 70, 76, 83, 119, 154, 155, 612, 638], "mqtt": [8, 30, 31, 45, 54, 76, 84, 121, 158, 252, 292, 454, 595, 615], "thread": [9, 46, 154, 157, 158, 632], "beispiel": [10, 13, 16, 21, 31, 32, 33, 34, 42, 52, 97, 98, 104, 106, 162, 164, 165, 170, 178, 179, 184, 188, 189, 192, 194, 197, 200, 203, 210, 212, 213, 214, 215, 217, 219, 229, 232, 243, 249, 250, 252, 255, 259, 261, 263, 265, 266, 268, 272, 276, 279, 284, 285, 287, 289, 295, 302, 306, 307, 310, 311, 314, 323, 325, 326, 327, 328, 329, 332, 338, 339, 340, 343, 347, 348, 351, 357, 360, 363, 366, 369, 370, 561, 562, 574, 591, 595, 683, 685], "tipps": [10, 13, 262, 693], "trick": [10, 13, 262, 693], "eval_trigg": [12, 561, 573], "bearbeit": 12, "wert": [12, 13, 18, 106, 170, 189, 192, 194, 517, 563, 591, 638], "wertermitt": 12, "datenbankabfrag": 12, "inverti": [12, 13], "ausles": [12, 165], "teil": 12, "dictionary": [12, 594], "erzeug": 12, "string": [12, 52, 219], "and": [12, 72, 76, 154, 205, 211, 262, 278, 333, 335, 566, 646], "enumeration": 12, "uber": [12, 36, 80, 93, 106, 162, 222], "lookup": [12, 15], "basier": 12, "numer": 12, "boolsch": [12, 106], "setz": 12, "berechn": [12, 13, 15, 16], "zeitdau": 12, "sekund": 12, "belieb": 12, "datetim": 12, "importi": 12, "weit": [12, 21, 27, 58, 76, 79, 83, 103, 170, 189, 293, 302, 332, 563, 598, 617, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "python": [12, 50, 58, 62, 67, 79, 83, 203, 273, 309, 598, 627, 628, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "verwend": [12, 74, 97, 170, 189, 200, 212, 213, 265, 289, 573, 576, 638], "funktion": [12, 15, 31, 32, 33, 34, 52, 53, 58, 62, 100, 163, 164, 168, 169, 170, 194, 197, 214, 215, 217, 232, 249, 250, 256, 259, 261, 262, 263, 272, 276, 277, 287, 306, 307, 309, 313, 314, 330, 338, 343, 351, 359, 360, 363, 367, 369, 562, 573, 589, 597, 609, 671, 672, 673, 674], "tim": [12, 186, 396], "countdown": 12, "fur": [12, 13, 42, 53, 54, 55, 57, 71, 76, 82, 83, 93, 98, 116, 162, 170, 187, 189, 192, 200, 203, 262, 284, 292, 293, 324, 325, 326, 328, 354, 357, 545, 547, 548, 550, 552, 554, 558, 562, 581, 603, 605, 614, 619, 629, 685, 687, 688, 693], "bzw": [12, 170, 189, 630], "autotim": [12, 568], "verzogert": 12, "status": [12, 154, 159, 165, 200, 205, 254, 255, 293, 479], "konsolidi": 12, "itemwert": [12, 232, 328], "\u00c4nderung": 12, "bestimmt": [12, 306, 307], "zeit": [12, 16, 599, 634], "erstell": [13, 47, 52, 164, 630, 638, 688], "zeitgied": 13, "1": [13, 32, 50, 76, 92, 162, 173, 175, 176, 185, 190, 198, 218, 219, 234, 235, 236, 247, 248, 251, 254, 261, 262, 270, 278, 280, 285, 310, 314, 315, 318, 328, 351, 365, 375, 406, 423, 632, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 658, 667, 668, 669, 670, 671, 672, 673, 674, 675, 691], "2": [13, 15, 18, 50, 175, 176, 185, 190, 219, 234, 235, 236, 253, 254, 261, 271, 278, 285, 294, 314, 317, 318, 328, 351, 365, 375, 502, 589, 632, 645, 648, 651, 659, 669, 673], "tag": [13, 224, 427, 428, 580], "nacht": [13, 580], "knx": [13, 27, 69, 71, 232, 314, 434], "nutzung": [13, 47, 49, 67, 89, 111, 219, 260, 314, 370, 561, 562, 573, 595, 596, 597, 617, 638, 685], "neu": [13, 27, 42, 46, 50, 64, 76, 89, 106, 122, 154, 162, 212, 563, 566, 618, 628, 632, 641, 642, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675], "zusatz": [13, 73, 76, 83, 85, 87, 88, 116, 326, 573, 574, 682], "smarthomeng": [13, 27, 36, 40, 47, 52, 69, 71, 78, 83, 85, 86, 87, 89, 92, 103, 112, 154, 155, 156, 159, 284, 303, 304, 338, 342, 356, 357, 471, 560, 580, 589, 599, 617, 629, 632, 637], "intern": 13, "knxd": [14, 27, 71, 73, 86], "hinweis": [14, 164, 189, 230, 233, 262, 283], "wichtig": [14, 162], "beispielkonfiguration": 14, "buswar": 14, "de": 14, "mdt": 14, "weinzierl": 14, "abb": 14, "windstark": 15, "ziel": [15, 16, 18, 19, 20], "usr": [15, 16, 18, 19, 20], "local": [15, 16, 18, 19, 20], "smarthom": [15, 16, 18, 19, 20, 40, 82, 83, 92, 103, 113, 175, 211, 235, 236, 254, 296, 632, 638], "logics": [15, 16, 18, 19, 20, 106, 109, 137, 154, 253, 260, 263, 335, 594], "beaufort1": 15, "py": [15, 16, 18, 19, 20, 40, 52, 71, 92, 109, 211, 253, 315, 353, 361, 677, 678, 679, 681], "etc": [15, 16, 18, 19, 20, 30, 52, 79, 103, 106, 119, 120, 121, 122, 154, 157, 158, 161, 175, 221, 222, 235, 236, 254, 296, 688], "logic": [15, 16, 18, 19, 33, 34, 53, 83, 103, 108, 137, 167, 183, 190, 197, 202, 211, 214, 218, 231, 232, 234, 240, 243, 249, 250, 251, 256, 259, 261, 276, 277, 288, 301, 304, 305, 306, 307, 309, 312, 313, 314, 315, 343, 352, 355, 356, 357, 360, 361, 363, 365, 368, 369, 425, 594, 604, 686], "alternativ": [15, 73, 344, 516], "umsetz": 15, "beaufort2": 15, "beaufort3": 15, "zeitdat": 16, "blink": 17, "per": [17, 83, 270, 370], "darstell": 18, "dpt": [18, 434], "prio": [18, 423, 592], "steuer": [19, 262], "dyn": 19, "zenith": 19, "icon": [19, 56, 162, 394, 430, 468, 527], "smartvisu": [19, 27, 69, 71, 76, 82, 85, 156, 166, 206, 218, 219, 244, 253, 255, 294, 302, 303, 304, 314, 317, 347, 352, 353, 496, 685, 687, 688, 689], "nachdimm": 20, "leucht": 20, "zentral": 20, "nachdimm_t": 20, "einfach": [21, 338], "komplex": 21, "Ein": [22, 116, 687], "develop": [22, 353, 356], "installi": [22, 27, 47, 73, 82, 83, 84, 85, 86, 87, 88, 628, 688], "anpass": [22, 58, 82], "manuell": [22, 85, 249, 302, 331, 354, 682], "repository": 22, "aufruf": [22, 53, 170, 179, 184, 187, 192, 200, 210, 212, 213, 220, 252, 255, 265, 266, 268, 289, 302, 309, 311, 348, 349, 357, 360, 366, 597, 609, 638], "download": [22, 628], "gewunscht": 22, "struct": [24, 26, 53, 76, 97, 114, 166, 169, 170, 191, 201, 212, 213, 238, 264, 265, 267, 270, 271, 289, 293, 319, 578, 603], "bequ": 25, "kopi": [25, 27], "umzieh": 27, "schritt": [27, 82, 83, 84, 85, 86, 87, 88, 89, 314, 632], "installation": [27, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 206, 221, 223, 225, 249, 269, 278, 284, 628, 630, 685], "linux": [27, 79, 82, 83, 87, 88, 181], "mosquitto": [27, 84], "onewir": [27, 87, 261, 461], "samba": [27, 88], "sichern": 27, "ubertrag": 27, "dat": [27, 58, 187, 222, 223, 260, 262, 411, 520, 599, 634], "verzeichnis": [27, 75, 103, 105, 106, 109, 112], "databas": [27, 186, 187, 222, 223, 396, 428], "executor": [27, 203, 410], "plugins_cach": 27, "einspiel": 27, "restarbeit": [27, 82], "produktiv": 27, "einricht": [27, 84, 90, 207, 226, 596], "letzt": [27, 162, 693], "konfigurationsander": 27, "transf": 27, "losch": [27, 630], "datenschutzerkla": 28, "rung": 28, "datenschutz": 28, "serv": [28, 76, 154, 534, 688], "fil": [28, 54, 55, 273, 294, 353, 368, 430, 472, 688], "ssl": [28, 161, 382, 406, 429], "verschlu": 28, "sselung": 28, "widerspruch": 28, "werb": 28, "mail": [28, 241], "development": [29, 211], "guidelin": 29, "sampl": [30, 33, 34, 251], "requirement": [30, 154, 157, 158, 173, 175, 176, 182, 183, 185, 186, 190, 193, 198, 202, 208, 209, 218, 219, 227, 231, 234, 235, 236, 239, 240, 245, 247, 248, 251, 253, 257, 258, 260, 262, 266, 273, 274, 275, 278, 280, 281, 290, 294, 297, 301, 305, 308, 311, 312, 313, 315, 334, 335, 341, 342, 344, 349, 352, 355, 358, 361, 365, 368], "configuration": [30, 154, 157, 158, 160, 173, 175, 176, 180, 182, 183, 186, 190, 193, 195, 198, 202, 208, 209, 211, 218, 221, 231, 234, 235, 236, 239, 240, 245, 247, 248, 251, 253, 254, 257, 258, 260, 269, 273, 274, 275, 278, 280, 281, 290, 294, 296, 297, 298, 301, 305, 308, 312, 315, 317, 334, 335, 341, 342, 344, 352, 355, 358, 361, 365, 368], "param1": 30, "param2": 30, "optional": [30, 157, 158, 192, 288, 688, 689], "api": [30, 44, 132, 137, 143, 147, 148, 154, 157, 158, 170, 187, 211, 219, 226, 612, 613, 615, 616], "of": [30, 154, 157, 158, 162, 211, 219, 234, 251, 260, 278, 335, 353], "test": [30, 47, 85, 86, 90, 154, 157, 158, 328], "if": [30, 154, 157, 158], "is": [30, 47, 154, 157, 158, 253, 335], "loaded": [30, 154, 157, 158], "method": [30, 46, 58, 62, 157, 158, 173, 183, 190, 193, 211, 218, 234, 251, 280, 305, 361, 365, 565, 591, 599, 618], "for": [30, 154, 157, 158, 175, 190, 206, 211, 218, 235, 236, 247, 317, 335, 342, 353, 356, 368], "implementing": [30, 157, 158], "a": [30, 154, 157, 158, 162, 192, 219, 353], "web": [30, 31, 32, 33, 34, 67, 76, 157, 158, 162, 164, 165, 166, 167, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 197, 200, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 228, 229, 230, 232, 237, 238, 241, 242, 243, 244, 246, 249, 250, 251, 252, 255, 259, 261, 262, 263, 264, 265, 266, 267, 268, 276, 277, 280, 284, 285, 286, 287, 289, 291, 302, 306, 307, 310, 311, 314, 320, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 357, 359, 360, 362, 363, 366, 367, 369, 558, 559], "get_": 30, "pluginnam": [31, 32], "kleinbuchstab": [31, 32], "anforder": [31, 32, 33, 34, 79, 122, 165, 167, 168, 178, 179, 189, 192, 197, 200, 214, 215, 223, 229, 249, 250, 255, 259, 261, 265, 272, 276, 277, 284, 287, 300, 306, 307, 309, 310, 314, 336, 339, 340, 343, 346, 351, 359, 360, 363, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "notwend": [31, 32, 33, 34, 168, 178, 197, 214, 215, 250, 259, 261, 265, 276, 277, 284, 287, 300, 306, 307, 314, 339, 340, 359, 363, 369, 687], "softwar": [31, 32, 33, 34, 79, 168, 173, 175, 176, 178, 190, 197, 214, 215, 219, 223, 235, 236, 250, 251, 259, 261, 265, 276, 277, 284, 287, 300, 306, 307, 314, 315, 339, 340, 359, 363, 369], "unterstutzt": [31, 32, 33, 34, 79, 162, 165, 167, 168, 178, 192, 197, 210, 214, 215, 255, 259, 261, 276, 277, 284, 286, 293, 300, 306, 307, 310, 314, 339, 340, 346, 351, 363, 369, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "gerat": [31, 32, 33, 34, 164, 165, 168, 178, 197, 210, 214, 215, 259, 261, 276, 277, 284, 286, 300, 306, 307, 310, 314, 339, 340, 351, 363, 369, 688], "version": [31, 32, 67, 79, 92, 111, 162, 173, 175, 176, 190, 218, 234, 235, 236, 247, 248, 251, 262, 271, 277, 280, 284, 315, 318, 365, 442, 500, 628, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "history": [31, 32, 173, 175, 176, 190, 235, 236, 251, 271, 277, 280, 284, 341, 365], "tab": [32, 74, 219, 261], "nam": [32, 33, 34, 52, 162, 170, 186, 205, 219, 251, 273, 325, 382, 396, 446, 463, 472, 479, 512], "einsetz": [33, 34], "einleit": 36, "Wie": [36, 50, 282, 283], "all": [36, 234, 545, 546], "zusammenhangt": 36, "bau": [37, 73], "dokumentation": [37, 51, 52, 54, 55, 78, 302, 597, 625, 641, 652, 653, 654, 655, 656, 671, 672, 674, 675], "checkout": 37, "option": [37, 416, 635], "build": [37, 628], "skript": [37, 629], "entwickl": [38, 41, 115, 116, 159, 162, 357, 693], "cor": [38, 40, 76, 154, 637, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 669, 670, 671, 672, 673, 674, 675, 691], "programm": [39, 49], "Der": [40, 52, 54, 55, 162, 331], "lib": [40, 76, 126, 127, 128, 129, 130, 131, 132, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 147, 148, 149, 150, 151, 152, 669, 670], "under": [42, 47], "construction": [42, 47], "einfuhr": [42, 76, 80, 196, 203, 217, 223, 224, 271, 302, 321, 347], "behandl": 42, "fehl": [42, 270, 271, 588], "syntakt": 42, "laufzeit": [42, 76, 588, 632], "verlass": 42, "metadat": [43, 52, 54, 55, 605, 612, 613, 614, 615, 616, 619], "ohn": [43, 53, 170, 601, 602, 603, 604, 608, 609], "readm": [45, 154, 157, 158, 612, 613, 615], "metadata": [45, 53, 139], "asyncio": [46, 618], "denen": 46, "ausgefuhrt": 46, "werd": [46, 162], "kombini": 46, "entwicklungsrichtlini": 47, "git": 47, "github": 47, "Die": [47, 52, 54, 55, 62, 219, 594], "repositori": 47, "branch": 47, "quell": 47, "find": [47, 430], "stil": 47, "programmi": 47, "beginn": 47, "tool": [47, 76, 150, 258, 599, 646, 650, 652, 653, 654, 655, 656, 676], "pep8": 47, "autopep8": 47, "flake8": 47, "dokumenti": 47, "basic": [47, 162], "rul": 47, "fork": 47, "merg": 47, "description": [47, 182, 198, 208, 234, 294, 368, 471], "deprecated": [47, 682], "has": 47, "to": [47, 185, 254, 273, 353, 356, 357, 445, 534, 650, 670], "be": 47, "updated": 47, "config": [47, 126, 154, 227], "arbeit": 47, "befehlszeil": 47, "client": [47, 154, 688], "nutzlich": 47, "befehl": [47, 181], "global": 47, "einstell": [47, 170, 289, 332, 347], "kurzanleit": [48, 85], "unterstutz": [50, 54, 61, 97, 192, 314, 618], "mehr": [50, 61, 97, 682], "sprach": [50, 61], "text": [50, 164, 430, 491, 586], "mehrsprach": [50, 54, 55], "kennzeichn": 50, "In": [50, 52, 222], "jinja2": 50, "Im": 50, "funktioniert": [50, 69], "ubersetz": [50, 169], "hinzufug": [50, 58, 76, 95, 212, 213, 265, 289, 687], "platzhalt": [50, 164, 338, 566], "nutz": [50, 688], "user_doc": [51, 52], "rst": [51, 52], "wenig": 52, "minut": 52, "eig": [52, 85, 189], "konfiguri": [52, 83, 84, 86, 87, 88, 292, 628], "systemkonfiguration": [52, 96], "__init__": 52, "vordefiniert": [52, 330], "webinterfac": [52, 54, 55, 56, 57, 58, 60, 62, 163, 170, 179, 184, 187, 192, 200, 203, 210, 212, 213, 220, 252, 255, 265, 266, 268, 289, 302, 309, 311, 321, 348, 349, 357, 360, 366], "scheduler_add": 52, "obj": 52, "function": [52, 103, 186, 195, 198, 231, 240, 253, 260, 273, 301, 312, 317, 335, 344, 355, 365, 368, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "cron": 52, "int": 52, "next": [52, 314], "dateobject": 52, "valu": [52, 106, 168, 193, 198, 231, 301, 351, 365, 379, 380, 406, 522], "offset": [52, 423], "scheduler_remov": 52, "such": 52, "item_path": 52, "verand": [52, 162], "call": [52, 168, 170, 380, 490], "detailliert": 53, "item_attribut": [53, 602], "attribut": [53, 76, 97, 100, 170, 182, 185, 189, 196, 198, 211, 212, 213, 230, 231, 240, 245, 255, 256, 257, 262, 265, 276, 278, 288, 289, 293, 298, 301, 312, 313, 315, 335, 337, 344, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 566, 573, 575, 576, 577, 601, 602, 603, 686], "item_struct": [53, 170, 603], "geschachtelt": [53, 603], "redefinini": [53, 603], "definition": [53, 97, 105, 106, 112, 162, 323, 332, 603, 632, 682, 689], "multi": [53, 97, 123, 296, 603], "instanc": [53, 97, 123, 154, 296, 365, 603], "logic_paramet": [53, 604], "plugin_function": [53, 609], "beispielplugin": [54, 55], "quelltext": [54, 55], "Das": [54, 55, 60, 69, 331, 594, 595, 628, 632], "tooltips": 56, "cooki": [56, 164], "kalenderansicht": 56, "komponent": 57, "drittanbiet": 57, "automat": [58, 289, 302, 682], "new": [58, 61, 62, 90, 211, 317, 318, 506, 643, 644, 645, 646, 649, 650, 651, 665, 666, 667, 669, 670, 691], "erweit": [58, 59], "get_data_html": 58, "ids": [58, 62, 205, 510], "dom": [58, 62], "element": [58, 62, 563], "zuweis": [58, 62], "javascript": [58, 62], "handleupdateddata": 58, "sortierbar": 58, "tabell": 58, "tabellenzeil": 58, "hervorheb": 58, "\u00c4nderungen": [58, 270, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 684], "festleg": 58, "aktualisierungsintervall": 58, "dataset": 58, "dynam": 58, "besteh": [59, 164], "inhalt": [60, 77], "full": 60, "interaktion": [62, 338], "submit": 62, "implementi": [62, 76], "aktiv": [62, 79, 632], "defini": [62, 97], "handling": [62, 353, 685], "class": [63, 66, 132, 133, 134, 143, 144, 145, 620, 623, 624], "mqttplugin": [63, 620, 621], "smartplugin": [66, 621, 624], "voruberleg": 67, "fragestell": 67, "typ": [67, 335, 376, 508, 510, 517, 579, 621], "gateway": [67, 177, 179, 248, 548, 549], "protokoll": [67, 76, 219, 279, 302, 552, 553, 622], "cloud": [67, 558, 559], "vorlag": [67, 166, 169, 191, 201, 238, 264, 267, 319], "packag": 67, "virtuell": [68, 79, 89, 262, 630], "umgeb": 68, "venv": [68, 630], "pyenv": 68, "pipenv": 68, "faq": 69, "haufig": 69, "gestellt": 69, "frag": 69, "schalt": [69, 71, 162], "aktor": [69, 210], "websit": 69, "fehlersuch": [70, 71], "gui": [70, 76, 83, 93, 155, 638], "checklist": 71, "lauft": [71, 83], "debugmodus": 71, "start": [71, 83, 89, 90, 186, 317, 398, 479, 481, 506, 628, 632], "zugriff": [71, 85, 181, 262, 563, 565, 566, 591], "via": [71, 82, 181, 200, 314, 335], "eibd": 71, "Kann": 71, "kontakt": [71, 77], "sh": [71, 186, 273, 274, 317, 599, 636], "cli": [71, 180, 181, 333, 370, 391], "windows": [71, 181], "putty": [71, 181], "kitty": 71, "admonition": 72, "art": 72, "by": [72, 205, 353, 519], "the": [72, 154, 219, 235, 236, 251, 254, 353, 356, 357, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 656, 691], "way": 72, "compili": 73, "paket": [73, 83, 85, 87, 88, 628], "quellcod": [73, 83, 85], "lad": [73, 83, 85], "schnur": 73, "stichwort": 75, "ide": 76, "releas": [76, 79, 329, 341, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 691, 692, 693], "9": [76, 253, 294, 589, 649, 650, 651, 652, 653, 654, 666, 687], "inhaltsubersicht": 76, "nesting": 76, "network": [76, 141, 256, 258, 457, 688], "daemoniz": 76, "uberarbeit": 76, "trigg": [76, 219, 328, 425, 594], "shutdown": 76, "user": [76, 82, 157, 158, 161, 162, 185, 424, 436, 479, 526, 592, 688], "wahrend": 76, "einzeln": [76, 332], "loglevel": [76, 538], "color": [76, 162, 407, 491], "routin": 76, "erweiter": [76, 641, 642, 671, 672, 673, 674, 688], "websocket": [76, 122, 355, 356, 357, 616, 690], "nutzdat": [76, 302], "shngadmin": 76, "Nach": 76, "neustart": [76, 116], "infos": [76, 682], "les": [76, 563], "dark": 76, "mod": [76, 293, 344, 412, 479, 516, 528], "hue2": [76, 212, 419], "rtr2": [76, 289, 487], "tasmota": [76, 337, 511], "formal": 76, "impressum": 77, "angab": [77, 106, 162], "gema": 77, "ss": 77, "5": [77, 248, 262, 280, 314, 365, 519, 640, 654, 662, 670, 674, 675], "tmg": 77, "haftung": 77, "fu": 77, "r": 77, "link": [77, 273, 315, 472], "urheberrecht": 77, "hard": 79, "u": 79, "hardwar": [79, 167, 173, 176, 179, 190, 192, 202, 209, 211, 218, 219, 234, 239, 245, 247, 248, 251, 255, 266, 275, 277, 278, 281, 297, 305, 306, 307, 308, 309, 315, 334, 341, 346, 349], "maschin": 79, "raspberry": [79, 82, 285], "pi": [79, 82, 278, 285], "3": [79, 162, 185, 234, 235, 236, 248, 271, 278, 280, 314, 318, 375, 589, 632, 652, 660, 670, 671, 672, 674, 688], "4": [79, 112, 169, 219, 248, 278, 318, 365, 653, 661, 671, 672, 673, 674], "vorteil": [79, 106, 270, 271], "nachteil": 79, "intel": 79, "nuc": 79, "vergleichbar": 79, "nas": 79, "z": 79, "b": [79, 92, 192], "synology": [79, 258, 259], "qnap": 79, "einplatinencomput": 79, "banana": 79, "odroid": 79, "beaglebon": 79, "betriebssystem": 79, "minimum": [79, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 691], "Zur": 79, "verdeutlich": 79, "org": [79, 428], "dokumentiert": 79, "php": 79, "unt": [79, 86, 574], "distribution": 79, "enthalt": 79, "dock": [80, 481], "compos": 80, "anleit": 80, "debian": [82, 86, 161], "softwareauswahl": 82, "einlogg": 82, "ssh": [82, 278], "konsol": 82, "systemaktualisier": 82, "sudo": 82, "standby": 82, "energiesparmodus": 82, "abschalt": 82, "userumgeb": 82, "bibliothek": [83, 671, 674], "erstmal": [83, 98], "uberpruf": 83, "initial": [83, 98], "kommandozeil": [83, 635], "fortgeschritt": 83, "brok": [84, 291, 337], "servic": [84, 260, 502], "visu": [85, 353, 356, 357, 682, 689], "seit": [85, 302, 354, 682, 689], "anleg": [85, 226], "nachinstallation": 85, "visu_smartvisu": [85, 353, 354, 523], "mischung": [85, 302, 354], "generiert": [85, 302, 354], "erstellt": [85, 302, 354, 682], "systemd": 86, "owserv": 87, "einrecht": 89, "environment": [89, 627, 630], "esphom": 90, "dashboard": [90, 226], "komplettanleit": 91, "alt": [92, 106, 111, 112], "vorgehensweis": 92, "plan": 92, "betriebssystemupdat": 92, "versionsdetail": 92, "ab": [92, 112, 162, 339, 340, 589, 684], "v1": [92, 112, 271, 277, 278, 589, 684, 692, 693], "6": [92, 235, 236, 247, 315, 641, 642, 643, 663], "hoh": [92, 162], "upgrad": 92, "konvertier": [92, 106], "dialog": [93, 156, 303, 356, 357], "feiertag": [96, 104, 599, 633, 634], "uberblick": [97, 100, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 685, 689], "anwend": [97, 262, 338], "selb": [97, 596], "definiert": [97, 162, 596], "verschachtelt": 97, "nested": 97, "re": 97, "auss": 97, "verhalt": 97, "sub": [97, 682], "definitionsdatei": 97, "setup": [98, 160, 185, 205, 227], "namensvergab": 100, "properti": [100, 567, 591], "Sichern": 102, "wiederherstell": 102, "umfang": 102, "sicher": 102, "holidays": 104, "benutzerdefiniert": 104, "konfigurationsdatei": [104, 106, 115], "scen": [106, 112, 146, 154, 219], "aufbau": [106, 187, 326], "dateiformat": 106, "format": [106, 112, 294, 295], "besond": [106, 184, 268, 306, 307, 325, 331], "wertelist": 106, "nacharbeit": [106, 688], "grundleg": 106, "regeln": 106, "basis": 106, "datatyp": [106, 622], "skalar": 106, "sequenz": 106, "zuordnung": 106, "kommentar": 106, "referenzier": 111, "konfigurationsformat": 112, "neuer": [112, 692, 693], "struct_": 114, "level": [115, 399], "kurzdoku": 115, "eintrag": [115, 170], "handl": [115, 154, 585], "filt": [115, 116, 575, 583], "verander": 115, "best": [115, 116], "practic": [115, 116], "grundkonfiguration": 116, "logausgab": 116, "identifizi": 116, "zusatzlog": 116, "bess": 116, "simpl": 116, "formatt": [116, 584], "erweitert": [116, 314, 563], "standardparamet": [117, 592, 600], "fahig": [123, 162], "verfugbar": [123, 262], "funktionsweis": [124, 316], "connection": [127, 281], "constant": 128, "daemon": 129, "db": [130, 186, 317, 396, 506], "env": 131, "item_conversion": 135, "logutil": 138, "orb": 142, "pluginwrapp": [143, 145], "shtim": 148, "shyaml": 149, "translation": 151, "util": 152, "auth": 154, "authentification": 154, "post": 154, "get": [154, 235, 236, 254, 273, 335], "information": [154, 170, 218, 262, 278, 279, 285, 291, 293, 302, 337, 354, 357], "about": 154, "s": [154, 161, 162, 688], "or": 154, "common": [154, 161], "put": [154, 251], "xxx": 154, "content": [154, 162, 219], "lognam": 154, "installed": 154, "configured": 154, "singl": [154, 296], "plgsection": 154, "delet": [154, 273], "running": 154, "restart": 154, "requ": [155, 156, 303, 304, 356, 357], "monitor": [155, 170, 304, 356, 357], "ping": [155, 304, 356, 357, 599], "seri": [155, 186, 224, 304, 356, 357], "series_cancel": [155, 304, 356, 357], "log_cancel": [155, 304], "proto": [155, 304, 356, 357], "identity": [155, 304, 356, 357], "url": [156, 162, 177, 229, 273, 274, 303, 355, 356, 357, 430, 431, 471, 472, 496, 524, 525, 527], "password": [157, 158, 161, 380, 382, 383, 390, 399, 406, 411, 417, 421, 424, 429, 444, 445, 449, 451, 465, 478, 479, 492, 534], "hashed_password": [157, 158, 391], "service_us": [157, 158], "service_password": [157, 158], "service_hashed_password": [157, 158], "port": [157, 158, 256, 355, 377, 379, 380, 382, 386, 391, 393, 400, 405, 406, 408, 409, 433, 434, 435, 440, 441, 442, 443, 444, 445, 449, 451, 452, 453, 457, 459, 461, 464, 467, 470, 475, 478, 488, 494, 495, 497, 498, 499, 507, 524, 617, 688], "servicesport": [157, 158], "showpluginlist": [157, 158], "showservicelist": [157, 158], "starturl": [157, 158], "showtraceback": [157, 158], "webif_pagelength": 157, "registering": 157, "application": [157, 471], "you": 157, "get_local_ip_address": [157, 158], "get_local_hostnam": [157, 158], "get_local_port": [157, 158], "get_local_servicesport": [157, 158], "register_app": [157, 158], "register_servic": [157, 158], "aktuell": [159, 293], "oth": [159, 273], "languag": [159, 365, 516, 532], "alexa": [160, 162, 374, 688], "aws": 160, "lambda": [160, 162], "shortcoming": 160, "pitfall": 160, "nginx": [161, 688], "install": [161, 185], "includ": 161, "d": [161, 192, 688], "sit": 161, "availabl": 161, "your": [161, 185, 251, 273], "hom": 161, "enabled": [161, 479, 592], "sitemap": 161, "let": [161, 688], "encrypt": [161, 688], "certificat": 161, "alexa4p3": [162, 163, 375], "tabl": [162, 219], "sup": 162, "span": 162, "styl": [162, 682], "red": 162, "generell": [162, 219], "chang": [162, 173, 175, 176, 190, 219, 235, 236, 248, 251, 280, 365, 660, 663, 667, 670], "changelog": [162, 179, 195, 216, 248, 249, 273, 274, 278, 309, 310, 338, 351], "20": [162, 632], "10": [162, 198, 219, 253, 406, 632, 642, 655, 656, 693], "2020": [162, 643, 644, 645, 691], "11": [162, 632, 641, 692], "04": 162, "12": [162, 632], "03": [162, 219], "07": 162, "2019": [162, 219, 641, 642], "06": [162, 219], "nikolaus": 162, "01": 162, "17": [162, 671], "02": [162, 219], "26": 162, "19": 162, "31": [162, 632, 652, 654], "2018": [162, 673, 674, 675], "24": [162, 647], "requrirement": 162, "amazon": [162, 185], "skill": 162, "catagori": 162, "einbau": 162, "thermostatcontroll": 162, "thermosensor": 162, "thermostatsensor": 162, "temperatur": 162, "settargettemperatur": 162, "adjusttargettemperatur": 162, "thermostatmod": 162, "powercontroll": 162, "brightnesscontroll": 162, "powerlevelcontroll": 162, "erst": [162, 219, 314, 632], "0": [162, 169, 173, 175, 176, 186, 219, 247, 248, 253, 277, 278, 280, 310, 315, 318, 351, 382, 423, 519, 632, 639, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667], "percentagecontroll": 162, "lockcontroll": 162, "camerastreamcontoll": 162, "camerastreamcontroll": 162, "alexa_csc_proxy_uri": 162, "blue": 162, "dyndn": 162, "vergeb": 162, "kamera": 162, "mittel": [162, 325], "camproxy4alexap3": 162, "stream": 162, "alexa_proxy_credential": 162, "zugangsdat": 162, "alexacamproxy": 162, "fall": 162, "authentication": [162, 254], "dig": 162, "parametriert": 162, "form": 162, "pwd": 162, "alexa_camera_imageuri": [162, 375], "vorschau": 162, "pictur": 162, "alexa_stream_1": 162, "kamara": 162, "Hier": [162, 282], "m\u00fcssen": 162, "detail": [162, 337], "protocol": [162, 355, 356, 458, 522], "rtsp": 162, "resolution": 162, "array": 162, "auflos": [162, 333], "authorizationtyp": 162, "autorisier": 162, "videocodecs": 162, "videocod": 162, "autocodecs": 162, "audiocod": 162, "alexa_csc_uri": [162, 375], "auflist": 162, "stream1": 162, "stream2": 162, "stream3": 162, "scenecontroll": 162, "contactsensor": 162, "colorcontroll": 162, "rangecontroll": 162, "colortemperaturcontroll": 162, "playbackcontroll": 162, "stopp": [162, 632], "rollad": 162, "buro": 162, "fast": 162, "perfekt": 162, "abhangi": 162, "benutzt": 162, "echos": 162, "devic": [162, 168, 170, 171, 195, 205, 274, 291, 292, 293, 337, 380, 392, 399, 403, 421, 422, 473, 497, 498, 499, 538], "beispielfunktion": 163, "alexarc4shng": [164, 376], "voraussetz": [164, 172, 207, 632], "anmeldedat": 164, "radiostation": 164, "send": [164, 193, 194, 228, 254, 278, 430, 445, 534], "itemdefinition": 164, "kommandos": [164, 169, 191, 201, 238, 264, 267, 319, 622], "verwalt": 164, "commandlet": 164, "ssml": 164, "danksag": 164, "disclaim": 164, "apcups": [165, 377], "schlussel": 165, "report": 165, "field": [165, 224, 427], "appletv": [166, 378], "artnet": [167, 379], "asterisk": [168, 380], "ast_dev": [168, 380], "ast_db": [168, 380], "ast_box": [168, 380], "sourc": [168, 380, 628], "dest": [168, 380], "context": [168, 380], "callerid": [168, 380], "non": [168, 186, 278, 423, 430, 471, 519], "db_writ": [168, 380], "key": [168, 231, 301, 380, 388, 394, 433, 462, 468], "db_read": [168, 380], "mailbox_count": [168, 380], "mailbox": [168, 380], "default": [168, 328], "hangup": [168, 380], "avdevic": [169, 381], "avdevice_zon": 169, "instanz": [169, 170, 184, 212, 213, 265, 268, 289], "_speak": 169, "_depend": 169, "_init": 169, "wildcard": 169, "fehlerbeheb": 169, "avm": [170, 382], "fritz": 170, "box": 170, "tr064": 170, "aha": 170, "cancel_call": [170, 382], "get_call_origin": [170, 382], "get_calllist": [170, 382], "get_contact_name_by_phone_numb": [170, 382], "phone_numb": [170, 382], "get_device_log_from_lua": [170, 382], "get_device_log_from_tr064": [170, 382], "get_host_detail": [170, 382], "get_host": [170, 382], "get_hosts_list": [170, 382], "get_phone_nam": [170, 382], "get_phone_numbers_by_nam": [170, 382], "is_host_activ": [170, 382], "reboot": [170, 382], "reconnect": [170, 382], "set_call_origin": [170, 382], "start_call": [170, 382], "wol": [170, 363, 382, 531], "mac_address": [170, 382], "get_number_of_deflection": [170, 382], "get_deflection": [170, 382], "set_deflection_enabl": [170, 382], "farb": 170, "helligkeitseinstell": 170, "bspw": [170, 262], "dect": 170, "500": 170, "farbeinstell": 170, "kombiniert": 170, "hellig": 170, "farbtemperatur": 170, "weiss": [170, 195], "modus": [170, 289, 293, 351], "tr": 170, "064": 170, "vorgeh": [170, 189, 354], "funktionserweiter": [170, 189], "erganz": [170, 189], "itemattribut": 170, "avm_data_typ": [170, 382], "avm_smarthom": [171, 383], "reguirement": 171, "histori": 171, "thermostat": [171, 210], "relais": 171, "alarm": 171, "blockly": [172, 385], "aktualisier": 172, "bos": 173, "soundtouch": 173, "sinc": [173, 176, 248, 251, 365], "needed": [173, 175, 176, 190, 235, 236, 251, 315], "supported": [173, 176, 190, 195, 202, 209, 211, 218, 219, 234, 235, 239, 245, 247, 248, 251, 266, 275, 281, 297, 308, 315, 334, 341, 349, 368], "appendix": [173, 176], "bose_soundtouch": [174, 386], "bsb": 175, "lan": 175, "adapt": 175, "bsblan": [175, 387], "buderus": [176, 388], "rest": [177, 612], "km200": 177, "path": [177, 397, 506, 565, 591], "heatsourc": 177, "heatingcircuit": 177, "dhwcircuit": 177, "recording": 177, "byd_bat": [178, 389], "casambi": [179, 390], "usag": [180, 227, 269, 274, 294, 296, 315, 391], "exampl": [180, 182, 183, 185, 190, 193, 195, 198, 202, 205, 211, 218, 227, 234, 235, 236, 245, 247, 248, 251, 254, 257, 258, 260, 273, 274, 278, 288, 290, 294, 296, 298, 305, 334, 335, 352, 355, 358, 361, 365, 368, 686], "konfigurationsparamet": 181, "co2met": [182, 392], "co2meter_data_typ": [182, 392], "comfoair": [183, 393], "comfoair_s": [183, 393], "comfoair_read": [183, 393], "comfoair_read_afterwrit": [183, 393], "comfoair_read_cycl": [183, 393], "comfoair_init": [183, 393], "comfoair_trigg": [183, 393], "comfoair_trigger_afterwrit": [183, 393], "darksky": [184, 394], "dashbutton": [185, 395], "scapy": 185, "tcpdump": 185, "giv": 185, "unprivileged": 185, "access": 185, "sniff": 185, "packet": 185, "activat": [185, 488, 519], "database_acl": [186, 396], "database_write_on_shutdown": [186, 396], "end": [186, 317, 398, 479, 506], "now": [186, 317, 506], "count": [186, 398], "100": 186, "dbplugin": 186, "id": [186, 205, 335, 396, 510], "dump": [186, 187, 317, 396, 506], "dumpfil": [186, 396, 506], "time_start": [186, 396], "time_": [186, 396], "changed": [186, 396], "changed_start": [186, 396], "changed_": [186, 396], "cur": [186, 396], "insertlog": [186, 396], "duration": [186, 396, 479], "val": [186, 396], "it": [186, 396], "updatelog": [186, 396], "readlog": [186, 396], "deletelog": [186, 396], "insertit": [186, 396], "updateit": [186, 396], "vollstand": [186, 683], "ubernomm": 186, "readit": [186, 396], "readitem": [186, 396], "deleteit": [186, 396], "cleanup": [186, 317, 396, 506], "verwaist": 187, "export": 187, "csv": 187, "sql": 187, "datenbank": [187, 189, 203, 287], "datenbankfunktion": 187, "datenreih": 187, "plot": [187, 289], "einzelauswert": 187, "datalog": [188, 397], "ersatz": [188, 243, 263], "bordmittel": [188, 243, 263], "db_addon": [189, 398], "mysql": 189, "db_addon_fct": [189, 398], "db_addon_info": [189, 398], "db_addon_admin": [189, 398], "verbrauch": 189, "minmax": 189, "zeitraum": 189, "minmax_last": 189, "zaehlerstand": 189, "maintenanc": [189, 337], "erlauter": 189, "temperatursumm": 189, "grunlandtemperatursumm": 189, "wachstumsgradtag": 189, "warmesumm": 189, "kaltesumm": 189, "tagesmitteltemperatur": 189, "deebot": 190, "ozmo": 190, "920": 190, "950": 190, "960": 190, "7": [190, 643, 644, 645, 664], "denon": [191, 400], "dlms": [192, 401], "Nicht": [192, 293, 314, 556, 557], "einrichtungsverfahr": 192, "Einige": 192, "hintergrundinformation": 192, "obis": 192, "c": [192, 211], "e": 192, "f": 192, "codezeil": 192, "ermitteln": [192, 293], "codebeispiel": 192, "dmx": [193, 194, 402], "dmx_ch": [193, 194, 402], "channel": [193, 491], "vorbeding": 194, "kanal": 194, "drexel": 195, "duw_lu_regist": [195, 403], "duw_wp_regist": [195, 403], "drexelundweiss": [196, 403], "ebus": [197, 405], "enigma2": [198, 406], "get_audio_track": [198, 406], "send_messag": [198, 406], "messagetext": [198, 406], "messagetyp": [198, 406], "timeout": [198, 400, 401, 406, 408, 423, 435, 441, 459, 464, 467, 498, 499, 522], "set_power_stat": [198, 406], "get_answ": [198, 406], "ute": 199, "teach": 199, "enocean": [200, 407], "ip": [200, 210, 355, 378, 379, 386, 389, 391, 436, 457, 466, 478, 479, 524, 526, 533], "equipment": 200, "profil": 200, "eeps": 200, "keys": 200, "empfang": 200, "steu": [200, 293], "epson": [201, 408], "eta_pu": [202, 409], "eta": 202, "pellet": 202, "unit": [202, 351, 394, 462, 468, 522], "pu": 202, "loggert": 203, "datenseri": 203, "ausgeb": 203, "zahl": 203, "datensatz": 203, "gpio": [204, 412], "harmony": [205, 413], "hub": 205, "requirenment": 205, "command": [205, 211, 227, 254, 391, 622], "activiti": 205, "activity": 205, "current": 205, "limitation": 205, "helios": [206, 414], "ecx00pro": 206, "vallox": 206, "xx": 206, "se": 206, "short": 206, "widget": [206, 215, 253, 289, 314, 353, 359, 682, 685, 687], "helios_tcp": [207, 415], "verknupf": 207, "variabl": [207, 330, 575, 596], "homeconnect": [208, 416], "homematic": [209, 210, 417], "sensor": [210, 285], "sonstig": [210, 333], "phillips": 211, "hue": [211, 418], "use": 211, "michael": 211, "wurtenberg": 211, "2014": 211, "2015": 211, "2016": [211, 668, 669], "hue_us": [211, 418], "hue_ip": [211, 418], "hue_port": [211, 418], "cycle_lamps": [211, 418], "cycle_bridg": [211, 418], "default_transitiontim": [211, 418, 419, 420], "hue_bridge_id": [211, 418], "formerly": 211, "hue_bridg": 211, "hue_lamp_id": [211, 418], "hue_id": 211, "hue_group_id": [211, 418], "hue_lamp_typ": [211, 418], "light": [211, 599, 636], "stat": [211, 219, 257, 294, 328, 425, 449], "lamp": 211, "groups": 211, "bridg": [211, 212, 213], "related": 211, "hue_list": [211, 418], "errorstatus": 211, "hue_send": [211, 418], "hue_transitiontim": [211, 418], "using": 211, "dpt3": [211, 314], "dimming": 211, "hue_dim_max": [211, 418], "hue_dim_step": [211, 418], "hue_dim_tim": [211, 418], "get_conf": 211, "authorizeus": 211, "featur": [212, 234, 659, 660, 661, 662, 663, 664, 665, 666, 667, 669, 670, 682], "verbind": [212, 213, 233, 622], "hue3": [213, 420], "husky": [214, 421], "credit": [214, 215, 219, 359], "husky2": [215, 422], "sv": [215, 359], "ical": [216, 217, 423], "indego": [218, 219, 424], "x": [218, 251, 270, 656, 691], "y": [218, 251], "furth": [218, 278], "integration": [218, 253], "into": 218, "indego4shng": [219, 220, 425], "2023": [219, 653, 654], "05": 219, "v4": 219, "08": 219, "v3": 219, "2021": [219, 646, 647, 648, 649], "16": [219, 632, 669], "28": [219, 649], "benotigt": [219, 628], "zweit": 219, "originalgartenkart": 219, "setting": [219, 328], "dritt": 219, "viert": 219, "kommunikationsprotokoll": 219, "offent": 219, "funkion": 219, "send_command": [219, 425], "payload": [219, 425], "as": [219, 253, 278], "gardenkart": 219, "pimp": 219, "original": 219, "bosch": 219, "mah": 219, "symbol": 219, "behind": 219, "smarthoneng": 220, "influxdata": [221, 426], "influxdb": [221, 222, 223, 224, 225, 226, 427], "data": [221, 235, 236, 256, 260, 335, 434, 457], "udp": [222, 256, 457], "korrekt": 222, "transferi": [222, 223], "influxdb2": [223, 428], "gespeichert": 223, "Was": 224, "organisation": 224, "bucket": [224, 226, 428], "point": 224, "serienschlussel": 224, "tok": [226, 456, 491, 512, 533], "intercom": 227, "2n": 227, "event": [227, 294, 295, 471], "join": [228, 314, 430, 534], "pluginfunktion": [228, 347], "get_devic": 228, "logikbeispiel": 228, "jsonread": [229, 431], "verschied": 229, "datenquell": 229, "klimaabfrag": 229, "batteriedat": 229, "energiemanag": 229, "jvcproj": [230, 432], "jvcproj_cmd": [230, 432], "jvcproj_gamma": [230, 432], "kommandoerlauter": 230, "kathrein": [231, 433], "todo": [231, 247, 312, 313], "kathreinid": [231, 433], "umwandl": 232, "datentyp": 232, "statist": 232, "kodi": [233, 435], "umstell": 233, "kostal": [234, 235, 236, 436], "hint": [234, 262], "possibl": 234, "depending": 234, "on": 234, "invert": [234, 235], "modbus": [235, 236], "from": [235, 236, 254, 356, 357, 667], "following": [235, 236], "are": [235, 236], "stored": [235, 236], "respectiv": [235, 236], "smart": 236, "energy": 236, "met": 236, "lirc": [237, 440], "lms": [238, 441], "logo": [239, 442], "logo_read": [239, 308, 442, 500], "logo1": [239, 308], "logo_writ": [239, 308, 442, 500], "luxtronic2": [240, 443], "lux2": [240, 443], "lux2_p": [240, 443], "lux2_a": [240, 443], "lux2_c": [240, 443], "mailrcv": [241, 444], "mail_subject": 241, "mail_to": 241, "mailsend": [242, 445], "memlog": [243, 446], "einsatz": 243, "funktionsaufruf": 243, "mieleathom": [244, 447], "miflora": [245, 448], "miflora_data_typ": [245, 448], "mikrot": [246, 449], "milight": [247, 450], "udp_ip": [247, 450], "udp_port": [247, 427, 450], "bricontrol": [247, 450], "cutoff": [247, 450], "hue_calibrat": [247, 450], "milight_sw": [247, 450], "milight_dim": [247, 450], "milight_col": [247, 450], "milight_rgb": [247, 450], "milight_whit": [247, 450], "milight_disco": [247, 450], "milight_disco_up": [247, 450], "milight_disco_down": [247, 450], "rgb": 247, "mlgw": [248, 451], "bang": 248, "olufs": 248, "masterlink": 248, "mlgw_send": [248, 451], "mlgw_cmd": [248, 451], "mlgw_mln": [248, 451], "mlgw_list": [248, 451], "mlgw_room": [248, 451], "modbus_tcp": [249, 452], "pymodbus": 249, "mpd": [250, 453], "her": 251, "w": 251, "mvg_liv": [253, 455], "mvg": 253, "liv": 253, "get_station_departur": [253, 455], "self": 253, "station": [253, 335, 455], "timeoffset": 253, "entri": 253, "ubahn": 253, "true": [253, 423, 527], "tram": 253, "bus": 253, "sbahn": 253, "requir": 253, "select": 253, "used": 253, "neato": [254, 255, 456], "vorwerk": 254, "vacuum": 254, "robot": [254, 255], "authentifizier": 255, "roboterbefehl": 255, "nw": [256, 457], "nw_acl": [256, 457], "nw_udp_list": [256, 457], "nw_tcp_list": [256, 457], "nw_http_list": [256, 457], "nw_udp_send": [256, 457], "benutz": [256, 583, 585], "host": [256, 376, 377, 380, 382, 383, 388, 393, 400, 405, 406, 408, 417, 427, 428, 432, 433, 434, 435, 440, 441, 442, 443, 444, 445, 451, 452, 453, 457, 459, 461, 464, 467, 470, 475, 488, 494, 495, 497, 498, 499, 500, 503, 507, 525], "nuki": [257, 458], "support": [257, 352, 353, 365, 629], "nuki_id": [257, 458], "nuki_trigg": [257, 458], "action": [257, 368], "doorstat": 257, "battery": 257, "nut": [258, 259, 459], "ups": [258, 459], "versionshistori": 259, "odlinfo": [260, 460], "term": 260, "get_stations_for_id": [260, 460], "odlinfo_id": [260, 460], "get_station_for_id": [260, 460], "fill": [260, 335], "with": [260, 335, 667], "radiation": 260, "Wire": 261, "buss": 261, "openweathermap": [262, 462], "migration": 262, "vorher": 262, "funktionaliat": 262, "roh": 262, "json": 262, "speich": 262, "matchstring": 262, "tagesvorhersag": 262, "berechnet": 262, "verdunst": 262, "evapotranspiration": 262, "wetteralarm": 262, "fehlerbehandl": 262, "taglich": 262, "bewasser": 262, "pflanz": 262, "wocht": 262, "ras": 262, "get_beaufort_numb": [262, 462], "value_in_meter_per_second": 262, "get_beaufort_description": [262, 462], "bft_numb": 262, "owm": 262, "operationlog": [263, 463], "oppo": [264, 464], "panasonic_ac": [265, 465], "philips_tv": [266, 466], "pione": [267, 467], "piratewthr": [268, 468], "plex": [269, 469], "pluggit": [270, 271, 470], "einbind": [270, 292, 333, 685], "folgend": [270, 282, 283], "ergeb": 270, "Es": [270, 271], "paar": [270, 271], "ding": [270, 271], "gegenub": 271, "prowl": [272, 471], "pushbullet": [273, 472], "librari": [273, 581], "how": 273, "deviceid": [273, 466, 472], "not": [273, 364, 472, 657], "titl": [273, 274, 430, 469, 472, 527], "body": [273, 472], "apikey": [273, 274, 365, 422, 471, 472, 473, 510, 516, 529, 532], "address": [273, 409, 472, 482], "filepath": [273, 472], "pushid": 273, "pushov": [274, 473], "po": 274, "messag": [274, 445, 469], "priority": [274, 471], "retry": [274, 407], "expir": 274, "ttl": [274, 527], "sound": [274, 430], "url_titl": 274, "userkey": [274, 473], "raumfeld": [275, 474], "device_nam": [275, 430], "stream_url": 275, "raumfeld_ng": [276, 475], "zon": 276, "rcs1000n": [277, 476], "rcswitch": [278, 477], "necessary": 278, "wiringpi": 278, "root": 278, "testing": 278, "sshpass": 278, "troubleshooting": 278, "v0": 278, "resol": [279, 478], "robonect": [280, 479], "roomba": [281, 284, 480], "bluetooth": 281, "ethernet": 281, "roomba_980": [282, 481], "bekomm": [282, 283], "blid": [282, 283, 481, 482], "passwort": [282, 283, 688], "Um": [282, 283], "aktivi": [282, 283, 322], "musst": [282, 283], "eur": [282, 283], "ymal": 282, "aufnehm": [282, 283], "roombapysh": [283, 482], "rpi1wir": [285, 483], "rpi_info": [286, 484], "rrd": [287, 485], "vergleich": 287, "zwisch": [287, 293, 338, 574], "rrdtool": 287, "rtr": [288, 289, 486], "plug": 288, "required": 288, "rtr_current": [288, 486], "rtr_setpoint": [288, 486], "rtr_actuator": [288, 486], "rtr_kp": [288, 486], "rtr_ki": [288, 486], "rtr_stops": [288, 486], "rtr_temp_default": [288, 486], "rtr_temp_boost": [288, 486], "rtr_temp_boost_tim": [288, 486], "rtr_temp_drop": [288, 486], "rtr_hvac_mod": [288, 486], "hvac": 289, "frostschutz": 289, "nachtabsenk": 289, "structur": [289, 682], "abweich": 289, "reglerparamet": 289, "visualisier": [289, 295, 689], "russound": [290, 488], "rus_path": [290, 488], "shelly": [291, 292, 489], "betrieb": 292, "nehm": 292, "wlan": 292, "gen1": 292, "gen2": [292, 293], "gen3": 292, "firmwar": 292, "durchfuhr": 292, "backward": 293, "compatibility": 293, "unterschied": [293, 596, 682, 688], "modi": 293, "kompatibilitat": 293, "simulation": [294, 295, 490], "record": 294, "playback": 294, "control": 294, "8": [294, 317, 646, 647, 648, 665, 674, 684], "internal": 294, "diagram": 294, "aufzeichn": 295, "abspiel": [295, 314], "statusdiagramm": 295, "slack": [296, 491], "sma": [297, 298, 492], "em": 298, "sma_mb": [300, 494], "smarttv": [301, 495], "weiterfuhr": [302, 354], "seitengenerier": 302, "list_item": [304, 356, 357], "list_logics": [304, 356, 357], "sml": [305, 497], "sml_obis": [305, 497, 498, 499], "sml_prop": [305, 497, 498, 499], "sml2": [306, 498], "holley": [306, 307], "dtz541": [306, 307], "smlx": [307, 499], "snap7_logo": [308, 309, 500], "i1": 308, "m3": 308, "snap7": 309, "snmp": [310, 501], "snmp_host": [310, 501], "snmp_commnity": 310, "snmp_oid": [310, 501], "snmp_prop": [310, 501], "solarforecast": [311, 502], "solarlog": [312, 313, 503], "sonos": [314, 504], "bass": 314, "coordinator": 314, "cross_fad": 314, "current_track": 314, "current_track_duration": 314, "current_transport_action": 314, "current_valid_play_mod": 314, "dialog_mod": 314, "household_id": 314, "is_coordinator": 314, "is_initialized": 314, "load_sonos_playlist": 314, "loudness": 314, "streamtyp": 314, "mut": 314, "night_mod": 314, "number_of_track": 314, "paus": [314, 378, 399], "play": [314, 378], "player_nam": 314, "play_mod": 314, "play_snippet": 314, "play_tt": 314, "play_sonos_radio": 314, "play_tunein": 314, "play_url": 314, "play_sharelink": 314, "previous": 314, "radio_station": 314, "radio_show": 314, "snooz": 314, "sonos_playlist": 314, "status_light": 314, "buttons_enabled": 314, "stop": [314, 481], "stream_content": 314, "switch_line_in": 314, "switch_tv": 314, "track_album": 314, "track_album_art": 314, "track_artist": 314, "track_titl": 314, "track_uri": 314, "trebl": 314, "uid": 314, "unjoin": 314, "volum": 314, "zone_group_memb": 314, "sonos_favorit": 314, "favorite_radio_station": 314, "play_favorite_titl": 314, "play_favorite_numb": 314, "play_favorite_radio_titl": 314, "play_favorite_radio_numb": 314, "echtzeitfah": 314, "gruppenbefehl": 314, "radios": 314, "playlist": 314, "4a": 314, "lautstark": 314, "inkrementell": 314, "verstell": 314, "4b": 314, "minimalbeispiel": 314, "speech": [315, 316, 505], "sp": [315, 505], "sqlit": [317, 506], "filenam": [317, 506], "mov": [317, 506], "old": [317, 506], "squeezebox": [318, 319, 507], "stateengin": [320, 508], "funktionalitat": 321, "umstieg": 321, "autoblind": 321, "pluginkonfiguration": 322, "regelwerk": 323, "se_it": 323, "se_status": 323, "se_eval": 323, "zustand": [324, 329, 331, 333], "beding": [324, 325], "aktion": [324, 326, 332], "referenzi": 325, "bedingungsgrupp": 325, "wertevergleich": 325, "bedingungsabfrag": 325, "ausdruck": [325, 573, 575], "bedingungslist": 325, "vergleichsfunktion": 325, "auszufuhr": 326, "aktionsart": 326, "ausfuhrungszeitpunkt": 327, "aktionsausfuhr": 327, "automatisier": 328, "raffstor": 328, "engin": 328, "general": 329, "lock": 329, "suspend": [329, 331, 398, 484, 488], "suspend_dynamic": 329, "standard": [329, 347, 577], "pluginspezif": 329, "sperr": 331, "aussetz": 331, "dau": 331, "zeitweis": 331, "deaktivier": 331, "neukonfiguration": 333, "hierarchi": 333, "zustandsnam": 333, "systemair": [334, 509], "workaround": 334, "tankerkoen": [335, 336, 510], "cheap": 335, "one": 335, "that": 335, "requested": 335, "its": 335, "get_petrol_station": [335, 510], "lat": [335, 510], "lon": [335, 510], "sort": [335, 510], "rad": [335, 510], "get_petrol_station_detail_full": 335, "petrol": 335, "pric": 335, "bekannt": 337, "zigbe": 337, "telegram": [338, 512], "abhang": [338, 339, 340], "telegram_chat_id": [338, 512], "telegram_messag": [338, 512], "telegram_condition": [338, 512], "telegram_value_match_regex": [338, 512], "telegram_message_chat_id": [338, 512], "telegram_info": [338, 512], "telegram_text": [338, 512], "telegram_control": [338, 512], "msg_broadcast": [338, 512], "photo_broadcast": [338, 512], "menugestutzt": 338, "text_display": [339, 340, 513], "nachrichtensenk": [339, 340], "fenst": [339, 340], "nachrichtenquell": [339, 340], "aussentemperatur": [339, 340], "fensterstatus": [339, 340], "anruf": [339, 340], "meldung": [339, 340], "thz": [341, 514], "timmy": [342, 343, 515], "traffic": [344, 516], "get_route_info": [344, 516], "origin": [344, 516], "destination": [344, 516], "unifi": [346, 518], "uzsu": [347, 519], "experteneinstell": 347, "zeitseri": 347, "interpolation": [347, 519], "datenformat": 347, "vacation": [348, 520], "vicar": [349, 521], "reit": 349, "viessmann": [350, 351, 522], "viess_read": [351, 522], "viess_send": [351, 522], "viess_read_afterwrit": [351, 522], "viess_read_cycl": [351, 522], "viess_init": [351, 522], "viess_trigg": [351, 522], "viess_trigger_afterwrit": [351, 522], "viess_updat": [351, 522], "viess_tim": [351, 522], "viess_ba_list": [351, 522], "update_all_read_item": [351, 522], "read_addr": [351, 522], "addr": [351, 522], "read_temp_addr": [351, 522], "length": [351, 522], "write_addr": [351, 522], "standalon": 351, "visualisation": [352, 353, 355, 356], "visu_dir": 352, "smartvisu_dir": [352, 496, 523], "handle_widget": [352, 496, 523], "visu_acl": [352, 355, 496, 524], "sv_pag": [352, 496, 523, 686], "sv_overview": [352, 496, 523, 686], "sv_img": [352, 496, 523, 686], "sv_nav_asid": [352, 496, 523, 686], "sv_nav_aside2": [352, 496, 523, 686], "sv_widget": [352, 353, 496, 523, 686], "sv_widget2": [352, 496, 523, 686], "sv_item_typ": [352, 496, 523, 686], "sv_heading_left": [352, 496, 523, 686], "sv_heading_cent": [352, 496, 523, 686], "sv_heading_right": [352, 496, 523, 686], "__": 353, "init": 353, "subdirectory": 353, "tplng": 353, "add": 353, "modification": 353, "mad": 353, "empfohl": 354, "tls": [355, 444, 445, 524], "wsproto": [355, 524], "acl": [355, 505, 524], "querydef": [355, 524], "visu_websocket": [356, 357, 524], "sent": [356, 357], "volkszaehl": [358, 525], "vz_uuid": [358, 525], "webpush": [359, 527], "urgency": 359, "webservic": [360, 528], "nutzungshinweis": 360, "wettercom": [361, 529], "search": 361, "location": [361, 365, 532], "forecast": 361, "city_cod": 361, "withings_health": [362, 530], "vorbereit": [362, 632], "wunderground": [364, 365, 366, 532], "important": 364, "item_subtre": [365, 532], "wug_matchstring": [365, 532], "wug_datatyp": [365, 532], "xiaomi_vac": [367, 533], "xmpp": [368, 534], "xep": 368, "yamaha": [369, 535], "yamahayxc": [370, 536], "anmerk": [370, 545, 547, 548, 550, 552, 554, 558], "zigbee2mqtt": [371, 537], "service_host": 374, "service_port": [374, 375], "alexa_action": 375, "alexa_alias": 375, "alexa_auth_cred": 375, "alexa_color_temp_delta": 375, "alexa_color_value_typ": 375, "alexa_description": 375, "alexa_devic": 375, "alexa_icon": 375, "alexa_item_rang": 375, "alexa_item_turn_on": 375, "alexa_nam": 375, "alexa_proactivelyreported": 375, "alexa_range_delta": 375, "alexa_retrievabl": 375, "alexa_stream_": 375, "alexa_thermo_conf": 375, "alexa_typ": 375, "alexa_credential": 376, "cookiefil": 376, "item_2_enable_alexa_rc": 376, "login_update_cycl": 376, "mfa_secret": 376, "get_last_alexa": 376, "get_list": 376, "send_cmd": 376, "dvnam": 376, "cmdnam": 376, "mvalu": 376, "scan_timeout": 378, "is_on": 378, "is_playing": 378, "artnet_net": 379, "artnet_subnet": 379, "artnet_univers": 379, "min_channel": 379, "update_cycl": [379, 401, 415, 424, 437, 438, 439, 509], "artnet_address": 379, "send_fram": 379, "send_frame_starting_at": 379, "adr": 379, "send_single_valu": 379, "usernam": [380, 382, 383, 406, 417, 429, 444, 445, 449, 451, 465], "autoreconnect": [381, 400, 408, 435, 440, 441, 464, 467, 507], "depend0_power0": 381, "depend0_volume0": 381, "dependson_it": 381, "dependson_valu": 381, "errorrespons": 381, "forcebuff": 381, "ignorerespons": 381, "inputignoredisplay": 381, "lineending_respons": 381, "lineending_s": 381, "model": [381, 400, 408, 464, 467], "reconnectretri": 381, "resendwait": 381, "resetonerror": 381, "responsebuff": 381, "rs232_baudrat": 381, "rs232_port": 381, "rs232_timeout": 381, "secondstokeep": 381, "sendretri": 381, "statusquery": 381, "tcp_ip": 381, "tcp_port": 381, "tcp_timeout": 381, "update_exclud": 381, "avdevice_dep": 381, "avdevice_init": 381, "avdevice_speak": 381, "avdevice_zone0": 381, "avdevice_zone0_dep": 381, "avdevice_zone0_init": 381, "avdevice_zone0_speak": 381, "avdevice_zone1": 381, "avdevice_zone1_dep": 381, "avdevice_zone1_init": 381, "avdevice_zone1_speak": 381, "avdevice_zone2": 381, "avdevice_zone2_dep": 381, "avdevice_zone2_init": 381, "avdevice_zone2_speak": 381, "avdevice_zone3": 381, "avdevice_zone3_dep": 381, "avdevice_zone3_init": 381, "avdevice_zone3_speak": 381, "avdevice_zone4": 381, "avdevice_zone4_dep": 381, "avdevice_zone4_init": 381, "avdevice_zone4_speak": 381, "avm_home_automation": 382, "call_monitor": 382, "call_monitor_incoming_filt": 382, "log_entry_count": 382, "tr064_item_blacklist": 382, "verify": [382, 406, 423, 460], "avm_ain": [382, 383], "avm_data_cycl": 382, "avm_deflection_index": 382, "avm_incoming_allowed": 382, "avm_mac": 382, "avm_read_after_writ": 382, "avm_tam_index": 382, "avm_target_numb": 382, "avm_wlan_index": 382, "filter_incoming": 382, "phonebook_id": 382, "deflection_id": 382, "index": [382, 479], "only_activ": 382, "get_hosts_dict": 382, "identifier_list": 382, "filter_dict": 382, "get_mesh_topology": 382, "phone_nam": 382, "enabl": 382, "avm_smarthome_data": 383, "beolink": 384, "rescan_on_start": 384, "scan_fromip": 384, "scan_toip": 384, "beo_command": 384, "beo_id": 384, "beo_status": 384, "section_prefix": 385, "cycle_tim": [386, 486], "bose_soundtouch_action": 386, "bsblan_ip": 387, "km_id": 388, "diag_cycl": 389, "imgpath": 389, "log_ag": 389, "log_data": 389, "byd_para": 389, "byd_root": 389, "api_key": [390, 430], "email": [390, 411], "casambi_id": 390, "casambi_rx_key": 390, "casambi_tx_key": 390, "add_command": 391, "group": [391, 398, 430, 527], "remove_command": 391, "time_sleep": 392, "kwltyp": 393, "serialport": [393, 400, 401, 402, 407, 408, 439, 464, 467, 497, 498, 499, 509, 522], "lang": [394, 462, 468], "latitud": [394, 462, 468, 502], "longitud": [394, 462, 468, 502], "ds_matchstring": 394, "map_icon": [394, 468], "dashbutton_mac": 395, "dashbutton_mod": 395, "dashbutton_reset": 395, "dashbutton_valu": 395, "connect": 396, "copy_databas": 396, "copy_database_nam": 396, "count_logentri": 396, "default_maxag": 396, "driv": 396, "max_delete_logentri": 396, "precision": 396, "prefix": 396, "removeold_cycl": 396, "database_maxag": 396, "filepattern": 397, "logpattern": 397, "database_plugin_conf": 398, "ignore_0": 398, "lock_db_for_query": 398, "optimize_value_filt": 398, "startup_run_delay": 398, "use_oldest_entry": 398, "value_filt": 398, "db_addon_database_it": 398, "db_addon_ignore_valu": 398, "db_addon_ignore_value_list": 398, "db_addon_param": 398, "db_addon_params_dict": 398, "db_addon_startup": 398, "db_version": 398, "fetch_log": 398, "func": 398, "timefram": 398, "group2": 398, "deebot_ozmo": 399, "account": 399, "continent": 399, "country": 399, "interval": [399, 519], "charg": 399, "clean": 399, "clean_spot_area": 399, "area": 399, "locat": 399, "resum": [399, 519], "set_fan_speed": 399, "speed": 399, "set_water_level": 399, "autoconnect": [400, 408, 435, 441, 464, 467], "baudrat": [400, 401, 408, 439, 464, 467, 514], "binary": [400, 408, 464, 467], "bytesiz": [400, 408, 464, 467], "conn_typ": [400, 408, 467], "connect_cycl": [400, 408, 435, 440, 441, 464, 467, 507], "connect_retri": [400, 408, 435, 440, 441, 464, 467, 507], "delay_initial_read": [400, 435, 441, 464, 467], "parity": [400, 408, 464, 467], "resume_initial_read": [400, 435, 441, 464, 467], "retry_cycl": [400, 407, 408, 435, 441, 464, 467], "retry_susp": [400, 408, 435, 441, 464, 467], "send_retri": [400, 435, 441, 464, 467], "sendretry_cycl": [400, 441, 464, 467], "stopbit": [400, 408, 464, 467], "suspend_it": [400, 408, 435, 441, 464, 467], "terminator": [400, 408, 441, 464, 467], "denon_command": 400, "denon_lookup": 400, "denon_read": 400, "denon_read_cycl": 400, "denon_read_group": 400, "denon_read_group_trigg": 400, "denon_read_initial": 400, "denon_readafterwrit": 400, "denon_writ": 400, "baudrate_fix": 401, "device_address": 401, "no_waiting": 401, "only_list": 401, "querycod": 401, "reset_baudrat": 401, "update_crontab": 401, "update_cycle_start_offset": 401, "use_checksum": 401, "dlms_obis_cod": 401, "dlms_obis_readout": 401, "lu_id": 403, "panel_id": 403, "wp_id": 403, "busmonitor": [403, 434], "retrylimit": 403, "tty": [403, 414], "duw_panel_regist": 403, "ebus_cmd": 405, "ebus_typ": 405, "fast_cycl": 406, "enigma2_data_typ": 406, "enigma2_pag": 406, "enigma2_remote_command_id": 406, "sref": 406, "log_unknown_messag": 407, "tx_id": 407, "block_dim_valu": 407, "block_switch": 407, "dim_speed": 407, "enocean_devic": 407, "enocean_rocker_action": 407, "enocean_rocker_sequenc": 407, "enocean_rtim": 407, "enocean_rx_eep": 407, "enocean_rx_id": 407, "enocean_rx_key": 407, "enocean_tx_eep": 407, "enocean_tx_id_offset": 407, "ref_level": 407, "command_class": 408, "epson_command": 408, "epson_lookup": 408, "epson_read": 408, "epson_read_cycl": 408, "epson_read_group": 408, "epson_read_group_trigg": 408, "epson_read_initial": 408, "epson_writ": 408, "setnam": 409, "setpath": 409, "eta_pu_error": 409, "eta_pu_typ": 409, "eta_pu_uri": 409, "script_entri": 410, "script": [410, 688], "garminconnect": 411, "is_cn": 411, "get_heart_rat": 411, "get_stat": 411, "bouncetim": 412, "initretri": 412, "pullupdown": 412, "gpio_in": 412, "gpio_init": 412, "gpio_invert": 412, "gpio_out": 412, "gpio_pud": 412, "harmony_ip": 413, "harmony_port": 413, "sleekxmpp_debug": 413, "harmony_command_0": 413, "harmony_command_1": 413, "harmony_it": 413, "e0": 414, "e1": 414, "e10": 414, "e2": 414, "e3": 414, "e4": 414, "e5": 414, "e6": 414, "e7": 414, "e8": 414, "e9": 414, "filter_warning": 414, "helios_var": 414, "helios_ip": 415, "client_id": [416, 530], "client_secret": 416, "simulat": 416, "ha_id": 416, "homeconnect_data_typ": 416, "get_hc": 416, "get_program_option": 416, "program_key": 416, "get_programs_activ": 416, "get_programs_availabl": 416, "get_programs_selected": 416, "get_redirect_url": 416, "start_program": 416, "stop_program": 416, "callbackhost": 417, "callbackport": 417, "callbackport_hmip": 417, "customcallbackhost": 417, "learnmode_length": 417, "proxyport": 417, "proxyport_hmip": 417, "hm_address": 417, "hm_channel": 417, "hm_function": 417, "hue_listen_group": 418, "hue_send_group": 418, "bridge_ip": [419, 420, 458], "bridge_port": [419, 458], "bridge_serial": [419, 420], "bridge_us": [419, 420], "polltime_bridg": 419, "polltime_light": 419, "polltime_sensor": 419, "dpt3_dim": 419, "hue2_function": 419, "hue2_id": 419, "hue2_reference_light_id": 419, "hue2_resourc": 419, "hue2_transitiontim": 419, "hue3_function": 420, "hue3_id": 420, "hue3_resourc": 420, "hue3_transition_tim": 420, "mapkey": 421, "userid": 421, "husky_control": [421, 422], "husky_info": [421, 422], "husky_operating": 421, "husky_stat": [421, 422], "apisecret": 422, "historylength": 422, "maxgpspoint": 422, "calendar": 423, "directory": 423, "handle_login": 423, "ical_calendar": 423, "ics": 423, "delta": 423, "img_pfad": [424, 425], "indego_url": [424, 425], "parent_it": [424, 425], "indego_add_key": [424, 425], "indego_command": [424, 425], "indego_frequency": 424, "indego_smart": [424, 425], "indego_credential": 425, "path_2_weather_pics": 425, "indego_attr_nam": 425, "indego_attr_typ": 425, "indego_conf": 425, "indego_config_url": 425, "indego_function_4_all": 425, "indego_function_4_visu": 425, "indego_parse_2_attr": 425, "indego_plugin_handled": 425, "mow": 425, "influx_host": 426, "influx_keyword": 426, "influx_port": 426, "influx": 426, "http_port": [427, 428], "keyword": 427, "value_field": [427, 428], "write_http": 427, "influxdb_field": 427, "influxdb_nam": 427, "influxdb_tag": 427, "api_tok": 428, "recognize_databas": 428, "str_value_field": 428, "influxdb2_bucket": 428, "influxdb2_nam": 428, "influxdb2_tag": 428, "intercom_2n": 429, "auth_typ": 429, "intercom_ip": 429, "device_id": 430, "smallicon": 430, "imag": [430, 469, 527], "clipboard": 430, "callnumb": 430, "smsnumb": 430, "smstext": 430, "mmsfil": 430, "wallpap": 430, "lockwallpap": 430, "interruptionfilt": 430, "mediavolum": 430, "ringvolum": 430, "alarmvolum": 430, "jsonread_filt": 431, "gammaconf_dir": 432, "push": 433, "1234": 433, "date_ga": 434, "enable_stat": 434, "log_own_packet": 434, "loglevel_knxd_cache_problem": 434, "project_file_password": 434, "projectpath": 434, "provid": 434, "readonly": 434, "send_tim": 434, "time_ga": 434, "use_project_fil": 434, "knx_cach": 434, "knx_dpt": 434, "knx_init": 434, "knx_list": 434, "knx_poll": 434, "knx_reply": 434, "knx_send": 434, "knx_status": 434, "encod": 434, "groupread": 434, "ga": 434, "fals": [434, 519, 527], "groupwrit": 434, "send_timeout": 435, "kodi_command": 435, "kodi_lookup": 435, "kodi_read": 435, "kodi_read_cycl": 435, "kodi_read_group": 435, "kodi_read_group_trigg": 435, "kodi_read_initial": 435, "kodi_writ": 435, "datastructur": 436, "passwd": [436, 526], "kostalmodbus": 437, "inverter_ip": 437, "modbus_port": [437, 438, 517], "kostal_06": 437, "kostal_100": 437, "kostal_104": 437, "kostal_1056": 437, "kostal_1058": 437, "kostal_106": 437, "kostal_1060": 437, "kostal_1062": 437, "kostal_1064": 437, "kostal_1066": 437, "kostal_108": 437, "kostal_110": 437, "kostal_112": 437, "kostal_114": 437, "kostal_116": 437, "kostal_118": 437, "kostal_120": 437, "kostal_122": 437, "kostal_124": 437, "kostal_14": 437, "kostal_144": 437, "kostal_150": 437, "kostal_152": 437, "kostal_154": 437, "kostal_156": 437, "kostal_158": 437, "kostal_160": 437, "kostal_162": 437, "kostal_164": 437, "kostal_166": 437, "kostal_168": 437, "kostal_170": 437, "kostal_172": 437, "kostal_174": 437, "kostal_178": 437, "kostal_190": 437, "kostal_194": 437, "kostal_200": 437, "kostal_202": 437, "kostal_208": 437, "kostal_210": 437, "kostal_214": 437, "kostal_216": 437, "kostal_218": 437, "kostal_220": 437, "kostal_222": 437, "kostal_224": 437, "kostal_226": 437, "kostal_228": 437, "kostal_230": 437, "kostal_232": 437, "kostal_234": 437, "kostal_236": 437, "kostal_238": 437, "kostal_240": 437, "kostal_242": 437, "kostal_244": 437, "kostal_246": 437, "kostal_248": 437, "kostal_250": 437, "kostal_252": 437, "kostal_254": 437, "kostal_256": 437, "kostal_258": 437, "kostal_260": 437, "kostal_266": 437, "kostal_268": 437, "kostal_270": 437, "kostal_276": 437, "kostal_278": 437, "kostal_280": 437, "kostal_286": 437, "kostal_30": 437, "kostal_32": 437, "kostal_320": 437, "kostal_322": 437, "kostal_324": 437, "kostal_326": 437, "kostal_34": 437, "kostal_36": 437, "kostal_38": 437, "kostal_384": 437, "kostal_420": 437, "kostal_428": 437, "kostal_436": 437, "kostal_446": 437, "kostal_454": 437, "kostal_46": 437, "kostal_512": 437, "kostal_514": 437, "kostal_515": 437, "kostal_517": 437, "kostal_525": 437, "kostal_529": 437, "kostal_531": 437, "kostal_535": 437, "kostal_54": 437, "kostal_559": 437, "kostal_56": 437, "kostal_575": 437, "kostal_577": 437, "kostal_582": 437, "kostal_586": 437, "kostal_588": 437, "kostal_768": 437, "kostal_800": 437, "kostal_98": 437, "ksemmodbus": 438, "ksem_ip": 438, "ksem_0": 438, "ksem_16": 438, "ksem_18": 438, "ksem_2": 438, "ksem_24": 438, "ksem_4": 438, "ksem_512": 438, "ksem_516": 438, "ksem_520": 438, "ksem_524": 438, "ksem_544": 438, "ksem_548": 438, "ksem_6": 438, "leveljet": 439, "ljet_cmd": 439, "lirc_host": 440, "lirc_port": 440, "lirc_key": 440, "lirc_remot": 440, "recursive_custom": 441, "web_host": 441, "web_port": [441, 507], "sqb_command": 441, "sqb_custom1": 441, "sqb_lookup": 441, "sqb_read": 441, "sqb_read_cycl": 441, "sqb_read_group": 441, "sqb_read_group_trigg": 441, "sqb_read_initial": 441, "sqb_writ": 441, "io_wait": [442, 461], "trashfold": 444, "mail_from": 445, "subject": 445, "mapping": [446, 463], "maxl": [446, 463], "miele_client_country": 447, "miele_client_id": 447, "miele_client_secret": 447, "miele_cycl": 447, "miele_pwd": 447, "miele_us": 447, "miele_command": 447, "miele_deviceid": 447, "miele_parse_it": 447, "miele_visu_function": 447, "bt_addr": [448, 492], "bt_library": 448, "hostnam": 449, "mikrotik_paramet": 449, "mikrotik_port": 449, "get_port_enabled": 449, "get_port_po": 449, "get_port_status": 449, "set_port_enabled": 449, "set_port_po": 449, "white_calibrat": 450, "log_mlgwtelegram": 451, "mlns": 451, "room": 451, "pause_it": [452, 488, 512, 537], "slaveunit": 452, "modbusaddress": 452, "modbusbyteord": 452, "modbusdatatyp": 452, "modbusdirection": 452, "modbusfactor": 452, "modbusobjecttyp": 452, "modbusunit": 452, "modbuswordord": 452, "mpd_command": 453, "mpd_databas": 453, "mpd_localplaylist": 453, "mpd_rawcommand": 453, "mpd_songinfo": 453, "mpd_statistic": 453, "mpd_status": 453, "mpd_url": 453, "mqtt_bool_valu": 454, "mqtt_qos": 454, "mqtt_retain": 454, "mqtt_topic": 454, "mqtt_topic_in": 454, "mqtt_topic_init": 454, "mqtt_topic_out": 454, "account_email": 456, "account_pass": 456, "robot_vendor": 456, "neato_attribut": 456, "disable_schedul": 456, "dismiss_current_alert": 456, "enable_schedul": 456, "get_map_boundari": 456, "map_id": 456, "start_robot": 456, "boundary_id": 456, "http_acl": 457, "tcp": 457, "tcp_acl": 457, "udp_acl": 457, "bridge_api_tok": 458, "no_wait": 458, "nut_var": 459, "odl_data_typ": 460, "odl_station": 460, "get_station": 460, "get_update_timestamp": 460, "button_wait": 461, "cycle_discovery": 461, "log_counter_cycle_discovery_tim": 461, "log_counter_cycle_tim": 461, "log_counter_io_loop_tim": 461, "parasitic_power_wait": 461, "warn_aft": 461, "ow_addr": 461, "ow_sensor": 461, "altitud": 462, "api_version": 462, "softfail_precipitation": 462, "softfail_wind_gust": 462, "owm_coord_x": 462, "owm_coord_y": 462, "owm_coord_z": 462, "owm_match_prefix": 462, "owm_matchstring": 462, "owm_raw_fil": 462, "speed_in_bft": 462, "speed_in_mps": 462, "get_raw_data_fil": 462, "data_source_key": 462, "get_valu": 462, "filepatt": 463, "logdirectory": 463, "logtofil": 463, "olog": 463, "olog_level": 463, "olog_rul": 463, "olog_txt": 463, "oppo_command": 464, "oppo_lookup": 464, "oppo_read": 464, "oppo_read_cycl": 464, "oppo_read_group": 464, "oppo_read_group_trigg": 464, "oppo_read_initial": 464, "oppo_writ": 464, "pcc_index": 465, "pcc_paramet": 465, "devicekey": 466, "philips_tv_rx_key": 466, "philips_tv_tx_key": 466, "pioneer_command": 467, "pioneer_lookup": 467, "pioneer_read": 467, "pioneer_read_cycl": 467, "pioneer_read_group": 467, "pioneer_read_group_trigg": 467, "pioneer_read_initial": 467, "pioneer_writ": 467, "pw_matchstring": 468, "displaytim": 469, "plex_host": 469, "plex_port": 469, "notify": [469, 471, 491], "info": 469, "pluggit_convert": 470, "pluggit_read": 470, "pluggit_writ": 470, "prowl_event": 471, "prowl_swap": 471, "prowl_text": 471, "prowl_url": 471, "prowl_valu": 471, "rf_attr": 475, "rf_mod": 475, "rf_renderer_nam": 475, "rf_scop": 475, "rcs1000n_gpio": 476, "rcs1000n_sendduration": 476, "rcs_buttoncod": 476, "rcs_systemcod": 476, "rcswitch_dir": 477, "rcswitch_host": 477, "rcswitch_password": 477, "rcswitch_sendduration": 477, "rcswitch_us": 477, "rc_cod": 477, "rc_devic": 477, "resol_bitus": 478, "resol_command": 478, "resol_destination": 478, "resol_factor": 478, "resol_issigned": 478, "resol_offset": 478, "resol_sourc": 478, "topic_prefix": 479, "robonect_battery_index": 479, "robonect_data_typ": 479, "robonect_remote_index": 479, "get_mod": 479, "get_mode_as_text": 479, "get_status": 479, "get_status_as_text": 479, "is_mower_offlin": 479, "set_mode_via_api": 479, "remotestart": 479, "aft": 479, "set_name_via_api": 479, "set_remote_via_api": 479, "distanc": 479, "visibl": 479, "proportion": 479, "set_timer_via_api": 479, "mo": 479, "tu": 479, "we": 479, "th": 479, "fr": 479, "sa": 479, "su": 479, "start_mower_via_api": 479, "stop_mower_via_api": 479, "socket_addr": 480, "socket_port": 480, "socket_typ": 480, "roomba_cmd": 480, "roomba_get": 480, "roomba_raw": 480, "adress": 481, "roombapassword": [481, 482], "status_batteri": 481, "status_bin_full": 481, "status_cleanmissionstatus_error": 481, "status_cleanmissionstatus_phas": 481, "dirnam": 483, "rpi1wire_id": 483, "rpi1wire_sys": 483, "poll_cycl": 484, "rpiinfo_func": 484, "rpiinfo_sys": 484, "cpu_temp": 484, "frequency": 484, "frequency_capped": 484, "frequency_capped_last_reboot": 484, "temperature_limit": 484, "temperature_limit_last_reboot": 484, "throttled": 484, "throttled_last_reboot": 484, "under_voltag": 484, "under_voltage_last_reboot": 484, "uptim": 484, "uptime_str": 484, "rrd_dir": 485, "step": 485, "rrd_ds_nam": 485, "rrd_max": 485, "rrd_min": 485, "rrd_no_seri": 485, "rrd_step": 485, "rrd_typ": 485, "defaultboosttim": 486, "defaultonexpiredtim": 486, "defaultvalveprotect": 486, "default_ki": [486, 487], "default_kp": [486, 487], "rtr_valve_protect": 486, "comfort_temp": 487, "default_kd": 487, "fixed_reduction": 487, "frost_temp": 487, "hvac_mod": 487, "max_output": 487, "min_output": 487, "night_reduction": 487, "standby_reduction": 487, "valve_protect": 487, "rtr2_controller_setting": 487, "rtr2_function": 487, "rtr2_id": 487, "rtr2_setting": 487, "debuggen1devic": 489, "gen1debug": 489, "shelly_attr": 489, "shelly_group": 489, "shelly_id": 489, "shelly_list_attr": 489, "shelly_relay": 489, "shelly_typ": 489, "data_fil": 490, "sim": 490, "normal": 491, "allowed_timedelta": 492, "sma_": 493, "serial": 493, "sma_em_data_typ": 493, "smamb_datatyp": 494, "smamb_regist": 494, "delay": 495, "tv_version": 495, "create_masteritem_fil": 496, "default_acl": 496, "generate_pag": [496, 523], "list_deprecated_warning": 496, "overwrite_templat": [496, 523], "visu_styl": [496, 523], "sv_blocksiz": [496, 523], "sv_name1": [496, 523], "sv_name2": [496, 523], "clientip": [496, 524], "buffersiz": [498, 499], "date_offset": [498, 499], "poly": [498, 499], "reflect_in": [498, 499], "reflect_out": [498, 499], "swap_crc_byt": [498, 499], "use_polling": 498, "xor_in": [498, 499], "xor_out": [498, 499], "tsap_client": 500, "tsap_serv": 500, "snmp_community": 501, "snmp_port": 501, "azimuth": 502, "declination": 502, "kwp": 502, "solarforecast_attribut": 502, "is_power_availabl": 502, "pow": 502, "hour": 502, "fw2x": 503, "discover_cycl": 504, "local_webservice_path": 504, "local_webservice_path_snippet": 504, "snippet_duration_offset": 504, "speaker_ips": 504, "tts": 504, "webservice_ip": 504, "webservice_port": 504, "sonos_attrib": 504, "sonos_dpt3_step": 504, "sonos_dpt3_tim": 504, "sonos_recv": 504, "sonos_s": 504, "sonos_uid": 504, "play_all": 504, "alert_uri": 504, "speaker_list": 504, "alert_volum": 504, "alert_duration": 504, "fade_back": 504, "config_fil": 505, "default_access": 505, "listen_ip": 505, "listen_port": 505, "sqlite_visu2_8": 506, "squeezebox_albumart": 507, "squeezebox_init": 507, "squeezebox_playerid": 507, "squeezebox_recv": 507, "squeezebox_s": 507, "instant_leaveaction": 508, "lamella_offset": 508, "lamella_open_valu": 508, "log_directory": 508, "log_level": [508, 575], "log_maxag": 508, "startup_delay_default": 508, "startup_log_level": 508, "suspend_time_default": 508, "se_instant_leaveaction": 508, "se_item_suspend_": 508, "se_item_suspend_start": 508, "se_lastconditionset_item_id": 508, "se_lastconditionset_item_nam": 508, "se_laststate_item_id": 508, "se_laststate_item_nam": 508, "se_log_level": 508, "se_nam": 508, "se_plugin": 508, "se_previousconditionset_item_id": 508, "se_previousconditionset_item_nam": 508, "se_previousstate_conditionset_item_id": 508, "se_previousstate_conditionset_item_nam": 508, "se_previousstate_item_id": 508, "se_previousstate_item_nam": 508, "se_released_by": 508, "se_repeat_action": 508, "se_startup_delay": 508, "se_stateord": 508, "se_suspend_tim": 508, "se_us": 508, "slave_address": 509, "coil_regaddr": 509, "systemair_regaddr": 509, "details_update_cycl": 510, "price_update_cycl": 510, "tankerkoenig_admin": 510, "tankerkoenig_attr": 510, "tankerkoenig_id": 510, "get_petrol_station_detail": 510, "get_petrol_station_detail_reduced": 510, "get_petrol_station_pric": 510, "full_topic": 511, "telemetry_period": 511, "tasmota_admin": 511, "tasmota_attr": 511, "tasmota_button": 511, "tasmota_relay": 511, "tasmota_rf_detail": 511, "tasmota_sml_attr": 511, "tasmota_sml_devic": 511, "tasmota_topic": 511, "tasmota_zb_attr": 511, "tasmota_zb_clust": 511, "tasmota_zb_devic": 511, "tasmota_zb_group": 511, "bye_msg": 512, "long_polling_timeout": 512, "no_access_msg": 512, "no_write_access_msg": 512, "pretty_thread_nam": 512, "resend_attemps": 512, "resend_delay": 512, "welcome_msg": 512, "msg": [512, 527], "chat_id": 512, "photofile_or_url": 512, "caption": 512, "text_display_content_source_it": 513, "text_display_cycle_tim": 513, "text_display_default_messag": 513, "text_display_sink_for_ring": 513, "text_display_sink_rings_with_prio": 513, "text_display_target_ring": 513, "max_update_period": 514, "min_update_period": 514, "poll_period": [514, 537], "serial_port": 514, "server_host": 514, "server_port": 514, "timmy_blink_cycl": 515, "timmy_blink_loops": 515, "timmy_blink_patt": 515, "timmy_blink_target": 515, "timmy_delay_off_delay_second": 515, "timmy_delay_on_delay_second": 515, "timmy_delay_target_it": 515, "departure_tim": 516, "trovis557x": 517, "modbus_debug": 517, "modbus_mod": 517, "modbus_speed": 517, "modbus_timeout": 517, "modbus_trovis_address": 517, "desc": 517, "invalid_to_zero": 517, "trovis557x_var": 517, "poll_cycle_tim": 518, "unifi_controller_url": 518, "unifi_password": 518, "unifi_site_id": 518, "unifi_us": 518, "unifi_ap_mac": 518, "unifi_client_mac": 518, "unifi_device_mac": 518, "unifi_switch_mac": 518, "unifi_switch_port_no": 518, "unifi_switch_port_profile_off": 518, "unifi_switch_port_profile_on": 518, "unifi_typ": 518, "backintim": 519, "interpolation_interval": 519, "interpolation_precision": 519, "interpolation_typ": 519, "remove_duplicat": 519, "suncalculation_cron": 519, "uzsu_it": 519, "activevalu": 519, "clear": 519, "intpl_typ": 519, "itpl": 519, "lastvalu": 519, "planned": 519, "get_vacation": 520, "provinc": 520, "get_vacation_nam": 520, "is_vacation": 520, "accesstok": 521, "clientid": 521, "redirecturl": 521, "refreshtok": 521, "vicare_path": 521, "vicare_rx_key": 521, "vicare_tx_key": 521, "vicare_tx_path": 521, "heating_typ": 522, "waterkott": 526, "grouplist": 527, "varpath": 527, "webpush_communication": 527, "webpush_conf": 527, "sendpushnotification": 527, "requireinteraction": 527, "badg": 527, "silent": 527, "vibrat": 527, "604800": 527, "highpriority": 527, "returnval": 527, "timestamp": 527, "use_service_auth": 528, "webservices_data": 528, "webservices_set": 528, "project": 529, "consumer_secret": 530, "user_id": 530, "withings_typ": 530, "get_callback_url": 530, "wol_ip": 531, "wol_mac": 531, "wake_on_lan": 531, "mac_adr": 531, "ip_adr": 531, "wug_xmlstring": 532, "read_cycl": 533, "robvac": 533, "jid": 534, "use_ipv6": 534, "msgsend": 534, "mt": 534, "chat": 534, "yamaha_cmd": 535, "yamaha_host": 535, "yamahayxc_cmd": 536, "yamahayxc_host": 536, "yamahayxc_zon": 536, "base_topic": 537, "read_at_init": 537, "z2m_gui": 537, "z2m_attr": 537, "z2m_bool_valu": 537, "z2m_readonly": 537, "z2m_topic": 537, "z2m_writeonly": 537, "zwav": 538, "config_path": 538, "logfil": 538, "sec_strategy": 538, "zlogging": 538, "zwave_nod": 538, "zwave_valu": 538, "obig": [545, 547, 548, 550, 552, 554, 558], "klassifiziert": [556, 557], "apis": 560, "relativ": 561, "referenz": [561, 631], "zusammenhang": 561, "dict": [563, 632], "schreib": 563, "return_it": [565, 591], "return_item": [565, 591], "match_item": [565, 591], "regex": [565, 591], "find_item": [565, 591], "configattribut": [565, 591], "find_childr": [565, 591], "parentit": [565, 591], "vererb": 566, "attributwert": 566, "enforce_chang": 571, "enforce_updat": 572, "eval_on_trigger_only": 573, "gemeinsam": [573, 576], "on_": [573, 576], "abfrag": 573, "auslos": 573, "hysteres": 574, "hysteresis_input": 574, "oberhalb": 574, "ober": 574, "schwellwert": 574, "unterhalb": 574, "hysteresis_upper_threshold": 574, "hysteresis_lower_threshold": 574, "statusinformation": 574, "stati": 574, "hysteresis": 574, "log_chang": 575, "log_text": 575, "ausduck": 575, "log_mapping": 575, "log_rul": 575, "lowlimit": 575, "highlimit": 575, "exclud": 575, "itemvalu": 575, "on_updat": 576, "on_chang": 576, "umgebungsbezog": 580, "mondlicht": 580, "stand": 580, "sonnenaufgang": 580, "sonnenstand": 580, "cherrypyfilt": 583, "duplicatefilt": 583, "shngtimedrotatingfilehandl": 585, "datetimerotatingfilehandl": 585, "shngmemloghandl": 585, "formatier": 586, "beim": 586, "exception": 588, "leavelogic": 588, "klass": 589, "grundstruktur": 590, "watch_it": 592, "objekt": [594, 595, 596, 599, 632, 638], "publish_topic": 595, "subscribe_topic": 595, "unsubscribe_topic": 595, "persistent": 596, "existenz": 596, "sicherstell": 596, "ubergreif": 596, "lokal": 596, "en": 597, "bereit": 598, "import": 598, "astronomi": [599, 636], "sonn": [599, 636], "mond": [599, 636], "sun": [599, 636], "pos": [599, 636], "set": [599, 636], "ris": [599, 636], "moon": [599, 636], "phas": [599, 636], "dewpoint": 599, "fetch_url": 599, "dt2ts": 599, "dt": 599, "dt2js": 599, "rel2ab": 599, "temp": 599, "hum": 599, "runtim": 599, "item_attribute_prefix": 601, "prafix": 601, "api_plugin": 612, "webapi": 612, "netzwerk": 617, "classic": 621, "smartdeviceplugin": [621, 623], "archiv": 628, "auspack": 628, "Den": 628, "prozess": 628, "make_venv": 629, "act": 629, "virtualenv": 630, "environement": 630, "ablauf": 632, "initialisier": [632, 638], "initialisiert": 632, "uberpruft": 632, "prozessor": 632, "geschwind": 632, "startet": 632, "ladbar": 632, "13": [632, 650, 668], "ladt": 632, "14": [632, 644, 653], "15": [632, 646, 675], "beendig": 632, "30": 632, "32": 632, "beend": 632, "33": 632, "angehalt": 632, "shng_status": 632, "speicher": 638, "ubergab": 638, "reload": 638, "davor": 639, "mai": [641, 651, 669], "absolut": [641, 643, 644, 645, 671, 672, 674, 691], "bugfix": [641, 643, 644, 645, 646, 647, 648, 649, 656, 675, 691], "veraltet": 641, "august": [642, 660, 670], "april": [643, 644, 658, 668], "outdated": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "documentation": [643, 644, 645, 646, 647, 648, 649, 650, 651, 691], "23": [645, 672], "juni": 645, "januar": [646, 647, 673], "retired": [646, 649, 650, 652, 653, 655, 656], "21": 648, "februar": 648, "dezemb": [649, 671, 672], "feb": 650, "2022": [650, 651, 652], "okt": 652, "marz": [653, 654], "allgmein": [653, 654, 655, 656], "29": 655, "jan": 655, "2024": [655, 656], "tt": [656, 691], "mmm": [656, 691], "09th": 658, "2011": [658, 659, 660, 661], "jun": [659, 663, 666], "21st": 659, "bug": [659, 660, 662, 663, 664, 665, 666], "fix": [659, 660, 662, 663, 664, 665, 666], "14th": [660, 667], "nonfunctional": [660, 663], "octob": 661, "10th": 661, "july": 662, "12th": 662, "2012": [662, 663, 664], "21th": 663, "septemb": 664, "27th": 664, "january": 665, "31st": 665, "2013": [665, 666, 667], "6th": 666, "novemb": 667, "contribution": 667, "bas": 667, "migrat": 667, "removed": [669, 670], "2017": [670, 671, 672], "existing": 670, "angehob": [671, 672, 674], "entfernt": [671, 674], "juli": [674, 675], "backup_restor": 677, "build_requirement": 678, "conf_to_yaml_convert": 679, "getshngpid": 680, "plugin_metadata_check": 681, "generier": [682, 686, 689], "navigation": 682, "trenn": 682, "blockgross": 682, "blocktyp": 682, "warning": 682, "trees": 682, "welch": 685, "mitbring": 685, "modifikation": 687, "v2": 687, "durchgefuhrt": 687, "reverseproxy": 688, "annahm": 688, "basiskonfiguration": 688, "geoip": 688, "zertifikat": 688, "mydomain": 688, "myd": 688, "me": 688, "80": 688, "deaktivi": 688, "openssl": 688, "cnf": 688, "editi": 688, "lua": 688, "appl": 688, "stark": 688, "diffi": 688, "hellman": 688, "wartung": 688, "monat": 688, "erneu": 688, "navigationsstruktur": 689, "kommunikation": [689, 690]}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 57}, "alltitles": {"Administrations-Interface Update": [[0, "administrations-interface-update"]], "Dienste": [[1, "dienste"]], "\u00dcbersicht": [[1, "ubersicht"], [8, "ubersicht"], [52, "ubersicht"], [109, "ubersicht"]], "eval Syntax-Pr\u00fcfer": [[1, "eval-syntax-prufer"]], "YAML Syntax-Pr\u00fcfer": [[1, "yaml-syntax-prufer"]], "CONF-YAML Konverter": [[1, "conf-yaml-konverter"]], "Cache Pr\u00fcfung": [[1, "cache-prufung"]], "Userfunction Editor": [[1, "userfunction-editor"]], "Items": [[2, "items"], [11, "items"], [16, "items"], [18, "items"], [20, "items"], [92, "items"], [99, "items"], [166, "items"], [169, "items"], [171, "items"], [199, "items"], [215, "items"], [237, "items"], [244, "items"], [262, "items"], [319, "items"], [359, "items"], [564, "items"]], "Item Baum": [[2, "item-baum"]], "Item Monitoring": [[2, "item-monitoring"]], "Item Konfiguration": [[2, "item-konfiguration"], [184, "item-konfiguration"], [268, "item-konfiguration"], [285, "item-konfiguration"], [338, "item-konfiguration"]], "Struktur Templates": [[2, "struktur-templates"], [329, "struktur-templates"]], "Struktur Konfiguration": [[2, "struktur-konfiguration"]], "Logiken": [[3, "logiken"], [21, "logiken"], [92, "logiken"], [117, "logiken"], [153, "logiken"], [164, "logiken"], [241, "logiken"], [587, "logiken"]], "Liste der Logiken": [[3, "liste-der-logiken"]], "Logik Editor": [[3, "logik-editor"]], "Code Editor": [[3, "code-editor"]], "Parameter Editor": [[3, "parameter-editor"]], "Beschreibung": [[3, "beschreibung"], [204, "beschreibung"], [374, "beschreibung"], [375, "beschreibung"], [376, "beschreibung"], [377, "beschreibung"], [378, "beschreibung"], [379, "beschreibung"], [380, "beschreibung"], [381, "beschreibung"], [382, "beschreibung"], [383, "beschreibung"], [384, "beschreibung"], [385, "beschreibung"], [386, "beschreibung"], [387, "beschreibung"], [388, "beschreibung"], [389, "beschreibung"], [390, "beschreibung"], [391, "beschreibung"], [392, "beschreibung"], [393, "beschreibung"], [394, "beschreibung"], [395, "beschreibung"], [396, "beschreibung"], [397, "beschreibung"], [398, "beschreibung"], [399, "beschreibung"], [400, "beschreibung"], [401, "beschreibung"], [402, "beschreibung"], [403, "beschreibung"], [405, "beschreibung"], [406, "beschreibung"], [407, "beschreibung"], [408, "beschreibung"], [409, "beschreibung"], [410, "beschreibung"], [411, "beschreibung"], [412, "beschreibung"], [413, "beschreibung"], [414, "beschreibung"], [415, "beschreibung"], [416, "beschreibung"], [417, "beschreibung"], [418, "beschreibung"], [419, "beschreibung"], [420, "beschreibung"], [421, "beschreibung"], [422, "beschreibung"], [423, "beschreibung"], [424, "beschreibung"], [425, "beschreibung"], [426, "beschreibung"], [427, "beschreibung"], [428, "beschreibung"], [429, "beschreibung"], [430, "beschreibung"], [431, "beschreibung"], [432, "beschreibung"], [433, "beschreibung"], [434, "beschreibung"], [435, "beschreibung"], [436, "beschreibung"], [437, "beschreibung"], [438, "beschreibung"], [439, "beschreibung"], [440, "beschreibung"], [441, "beschreibung"], [442, "beschreibung"], [443, "beschreibung"], [444, "beschreibung"], [445, "beschreibung"], [446, "beschreibung"], [447, "beschreibung"], [448, "beschreibung"], [449, "beschreibung"], [450, "beschreibung"], [451, "beschreibung"], [452, "beschreibung"], [453, "beschreibung"], [454, "beschreibung"], [455, "beschreibung"], [456, "beschreibung"], [457, "beschreibung"], [458, "beschreibung"], [459, "beschreibung"], [460, "beschreibung"], [461, "beschreibung"], [462, "beschreibung"], [463, "beschreibung"], [464, "beschreibung"], [465, "beschreibung"], [466, "beschreibung"], [467, "beschreibung"], [468, "beschreibung"], [469, "beschreibung"], [470, "beschreibung"], [471, "beschreibung"], [472, "beschreibung"], [473, "beschreibung"], [474, "beschreibung"], [475, "beschreibung"], [476, "beschreibung"], [477, "beschreibung"], [478, "beschreibung"], [479, "beschreibung"], [480, "beschreibung"], [481, "beschreibung"], [482, "beschreibung"], [483, "beschreibung"], [484, "beschreibung"], [485, "beschreibung"], [486, "beschreibung"], [487, "beschreibung"], [488, "beschreibung"], [489, "beschreibung"], [490, "beschreibung"], [491, "beschreibung"], [492, "beschreibung"], [493, "beschreibung"], [494, "beschreibung"], [495, "beschreibung"], [496, "beschreibung"], [497, "beschreibung"], [498, "beschreibung"], [499, "beschreibung"], [500, "beschreibung"], [501, "beschreibung"], [502, "beschreibung"], [503, "beschreibung"], [504, "beschreibung"], [505, "beschreibung"], [506, "beschreibung"], [507, "beschreibung"], [508, "beschreibung"], [509, "beschreibung"], [510, "beschreibung"], [511, "beschreibung"], [512, "beschreibung"], [513, "beschreibung"], [514, "beschreibung"], [515, "beschreibung"], [516, "beschreibung"], [517, "beschreibung"], [518, "beschreibung"], [519, "beschreibung"], [520, "beschreibung"], [521, "beschreibung"], [522, "beschreibung"], [523, "beschreibung"], [524, "beschreibung"], [525, "beschreibung"], [526, "beschreibung"], [527, "beschreibung"], [528, "beschreibung"], [529, "beschreibung"], [530, "beschreibung"], [531, "beschreibung"], [532, "beschreibung"], [533, "beschreibung"], [534, "beschreibung"], [535, "beschreibung"], [536, "beschreibung"], [537, "beschreibung"], [538, "beschreibung"]], "Gruppe(n)": [[3, "gruppe-n"]], "Cycle": [[3, "cycle"]], "Crontab": [[3, "crontab"]], "Watch Items": [[3, "watch-items"]], "Plugin spezifische Parameter": [[3, "plugin-spezifische-parameter"]], "Logs": [[4, "logs"]], "Logs anzeigen": [[4, "logs-anzeigen"]], "Gro\u00dfe Log Dateien": [[4, "grosze-log-dateien"]], "Liste der Logger": [[4, "liste-der-logger"]], "Logging Konfiguration": [[4, "logging-konfiguration"]], "Plugins": [[5, "plugins"], [23, "plugins"], [76, "plugins"], [92, "plugins"], [123, "plugins"], [373, "plugins"]], "Liste der geladenen Plugins": [[5, "liste-der-geladenen-plugins"]], "Plugin Konfiguration": [[5, "plugin-konfiguration"]], "Liste der konfigurierten Plugins": [[5, "liste-der-konfigurierten-plugins"]], "Konfiguration eines Plugins": [[5, "konfiguration-eines-plugins"], [95, "konfiguration-eines-plugins"]], "Szenen": [[6, "szenen"], [112, "szenen"], [124, "szenen"]], "Szenen Liste": [[6, "szenen-liste"]], "Szenen Konfiguration": [[6, "szenen-konfiguration"]], "Scheduler": [[7, "scheduler"]], "System": [[8, "system"]], "System Eigenschaften": [[8, "system-eigenschaften"]], "Ressource Graphen": [[8, "ressource-graphen"]], "PyPI Check": [[8, "pypi-check"]], "Urheberrechtshinweise": [[8, "urheberrechtshinweise"]], "System Konfiguration": [[8, "system-konfiguration"]], "Allgemein": [[8, "allgemein"], [200, "allgemein"], [266, "allgemein"], [279, "allgemein"], [321, "allgemein"], [349, "allgemein"], [349, "id1"]], "Http Modul": [[8, "http-modul"]], "Admin Modul": [[8, "admin-modul"]], "MQTT Modul": [[8, "mqtt-modul"]], "Threads": [[9, "threads"]], "Beispiele, Tipps & Tricks Update": [[10, "beispiele-tipps-tricks-update"]], "eval und eval_trigger": [[12, "eval-und-eval-trigger"], [573, "eval-und-eval-trigger"]], "Bearbeiten von Werten": [[12, "bearbeiten-von-werten"]], "Wertermittung durch Datenbankabfrage": [[12, "wertermittung-durch-datenbankabfrage"]], "Wert invertieren": [[12, "wert-invertieren"]], "Auslesen / Teilen eines Dictionary": [[12, "auslesen-teilen-eines-dictionary"]], "Erzeugen eines String aus den Werten anderer Items": [[12, "erzeugen-eines-string-aus-den-werten-anderer-items"]], "Erzeugen einer Liste aus den Werten anderer Items": [[12, "erzeugen-einer-liste-aus-den-werten-anderer-items"]], "Enumeration \u00fcber Liste": [[12, "enumeration-uber-liste"]], "Enumeration \u00fcber Dictionary mit Lookup-Item": [[12, "enumeration-uber-dictionary-mit-lookup-item"]], "Basierend auf einem numerischen Wert einen boolschen erzeugen": [[12, "basierend-auf-einem-numerischen-wert-einen-boolschen-erzeugen"]], "Basierend auf dem Wert eines numerischen andere Items setzen": [[12, "basierend-auf-dem-wert-eines-numerischen-andere-items-setzen"]], "Berechnung einer Zeitdauer in Sekunden von beliebigen datetime bis jetzt": [[12, "berechnung-einer-zeitdauer-in-sekunden-von-beliebigen-datetime-bis-jetzt"]], "Importieren weiterer Python Module in ein eval": [[12, "importieren-weiterer-python-module-in-ein-eval"]], "Verwendung der Item-Funktion timer": [[12, "verwendung-der-item-funktion-timer"]], "Countdown f\u00fcr Timer bzw. Autotimer": [[12, "countdown-fur-timer-bzw-autotimer"]], "Item mit verz\u00f6gertem Status": [[12, "item-mit-verzogertem-status"]], "Konsolidieren von Itemwerten": [[12, "konsolidieren-von-itemwerten"]], "Item \u00c4nderung nach bestimmter Zeit": [[12, "item-anderung-nach-bestimmter-zeit"]], "Tipps und Tricks Update": [[13, "tipps-und-tricks-update"]], "Erstellen eines Zeitgiedes": [[13, "erstellen-eines-zeitgiedes"]], "Beispiel": [[13, "beispiel"], [16, "beispiel"], [188, "beispiel"], [194, "beispiel"], [217, "beispiel"], [243, "beispiel"], [261, "beispiel"], [279, "beispiel"], [295, "beispiel"], [306, "beispiel"], [307, "beispiel"], [310, "beispiel"], [325, "beispiel"], [327, "beispiel"], [328, "beispiel"], [329, "beispiel"], [338, "beispiel"], [338, "id3"], [338, "id4"], [338, "id5"], [347, "beispiel"], [351, "beispiel"], [561, "beispiel"], [591, "beispiel"]], "Invertieren eines Item Wertes": [[13, "invertieren-eines-item-wertes"]], "Beispiel 1": [[13, "beispiel-1"], [285, "beispiel-1"]], "Beispiel 2": [[13, "beispiel-2"], [285, "beispiel-2"]], "Erstellung von Tag-/Nacht-Items f\u00fcr KNX": [[13, "erstellung-von-tag-nacht-items-fur-knx"]], "Beispiele": [[13, "beispiele"], [31, "beispiele"], [32, "beispiele"], [33, "beispiele"], [34, "beispiele"], [42, "beispiele"], [97, "beispiele"], [104, "beispiele"], [162, "beispiele"], [164, "beispiele"], [165, "beispiele"], [178, "beispiele"], [179, "beispiele"], [179, "id1"], [184, "beispiele"], [189, "beispiele"], [192, "beispiele"], [197, "beispiele"], [200, "beispiele"], [210, "beispiele"], [212, "beispiele"], [213, "beispiele"], [214, "beispiele"], [215, "beispiele"], [232, "beispiele"], [249, "beispiele"], [250, "beispiele"], [252, "beispiele"], [255, "beispiele"], [255, "id1"], [259, "beispiele"], [265, "beispiele"], [266, "beispiele"], [266, "id1"], [268, "beispiele"], [272, "beispiele"], [276, "beispiele"], [284, "beispiele"], [285, "beispiele"], [287, "beispiele"], [289, "beispiele"], [302, "beispiele"], [306, "beispiele"], [307, "beispiele"], [311, "beispiele"], [314, "beispiele"], [338, "beispiele"], [339, "beispiele"], [340, "beispiele"], [343, "beispiele"], [348, "beispiele"], [357, "beispiele"], [360, "beispiele"], [363, "beispiele"], [366, "beispiele"], [369, "beispiele"], [561, "beispiele"], [574, "beispiele"]], "Nutzung mit neuen (zus\u00e4tzlichen) Items": [[13, "nutzung-mit-neuen-zusatzlichen-items"]], "Nutzung der SmarthomeNG internen Items": [[13, "nutzung-der-smarthomeng-internen-items"]], "Berechnung von Tag und Nacht": [[13, "berechnung-von-tag-und-nacht"]], "knxd: Hinweise und Konfiguration": [[14, "knxd-hinweise-und-konfiguration"]], "Wichtig": [[14, "wichtig"]], "Beispielkonfigurationen": [[14, "beispielkonfigurationen"]], "busware.de": [[14, "busware-de"]], "MDT": [[14, "mdt"]], "Weinzierl": [[14, "weinzierl"]], "ABB": [[14, "abb"]], "Berechnung der Windst\u00e4rke": [[15, "berechnung-der-windstarke"]], "Ziel": [[15, "ziel"], [16, "ziel"], [18, "ziel"], [19, "ziel"], [20, "ziel"]], "Logik": [[15, "logik"], [16, "logik"], [18, "logik"], [19, "logik"], [20, "logik"]], "/usr/local/smarthome/logics/beaufort1.py": [[15, "usr-local-smarthome-logics-beaufort1-py"]], "/usr/local/smarthome/etc/logic.yaml": [[15, "usr-local-smarthome-etc-logic-yaml"], [15, "usrlocalsmarthomeetclogic-yaml-1"], [15, "usrlocalsmarthomeetclogic-yaml-2"], [16, "usr-local-smarthome-etc-logic-yaml"], [18, "usr-local-smarthome-etc-logic-yaml"], [19, "usr-local-smarthome-etc-logic-yaml"]], "Alternative Umsetzung mit einer Funktion": [[15, "alternative-umsetzung-mit-einer-funktion"]], "/usr/local/smarthome/logics/beaufort2.py": [[15, "usr-local-smarthome-logics-beaufort2-py"]], "Alternative 2: Umsetzung als Funktion mit Lookup": [[15, "alternative-2-umsetzung-als-funktion-mit-lookup"]], "/usr/local/smarthome/logics/beaufort3.py": [[15, "usr-local-smarthome-logics-beaufort3-py"]], "Berechnung von Zeitdaten": [[16, "berechnung-von-zeitdaten"]], "/usr/local/smarthome/logics/zeit.py": [[16, "usr-local-smarthome-logics-zeit-py"]], "/usr/local/smarthome/items/zeit.yaml": [[16, "usr-local-smarthome-items-zeit-yaml"]], "Blinken per Logik": [[17, "blinken-per-logik"]], "Darstellung von DPT 2 Werten": [[18, "darstellung-von-dpt-2-werten"]], "/usr/local/smarthome/logics/prio.py": [[18, "usr-local-smarthome-logics-prio-py"]], "/usr/local/smarthome/items/prio.yaml": [[18, "usr-local-smarthome-items-prio-yaml"]], "Steuerung des dyn.zenith-Icons": [[19, "steuerung-des-dyn-zenith-icons"]], "/usr/local/smarthome/logics/zenith.py": [[19, "usr-local-smarthome-logics-zenith-py"]], "smartVISU": [[19, "smartvisu"], [244, "smartvisu"]], "Nachdimmen von Leuchten": [[20, "nachdimmen-von-leuchten"]], "/usr/local/smarthome/logics/nachdimmen.py": [[20, "usr-local-smarthome-logics-nachdimmen-py"]], "/usr/local/smarthome/etc/logics.yaml": [[20, "usr-local-smarthome-etc-logics-yaml"]], "/usr/local/smarthome/items/zentral.yaml": [[20, "usr-local-smarthome-items-zentral-yaml"]], "/usr/local/smarthome/items/nachdimm_test.yaml": [[20, "usr-local-smarthome-items-nachdimm-test-yaml"]], "Einfache Beispiele": [[21, "einfache-beispiele"]], "Komplexere Beispiele": [[21, "komplexere-beispiele"]], "Weitere Beispiele": [[21, "weitere-beispiele"]], "Ein Plugin aus develop installieren": [[22, "ein-plugin-aus-develop-installieren"]], "Konfiguration anpassen": [[22, "konfiguration-anpassen"], [22, "id1"]], "Plugin manuell installieren": [[22, "plugin-manuell-installieren"]], "Plugins Repository aufrufen": [[22, "plugins-repository-aufrufen"]], "Plugins Repository Download": [[22, "plugins-repository-download"]], "Gew\u00fcnschtes Plugin installieren": [[22, "gewunschtes-plugin-installieren"]], "structs (Item Strukturen)": [[24, "structs-item-strukturen"], [97, "structs-item-strukturen"]], "Item Strukturen bequem kopieren": [[25, "item-strukturen-bequem-kopieren"]], "Structs": [[26, "structs"]], "SmartHomeNG umziehen Neu": [[27, "smarthomeng-umziehen-neu"]], "Schritte der Installation": [[27, "schritte-der-installation"], [82, "schritte-der-installation"], [83, "schritte-der-installation"], [84, "schritte-der-installation"], [85, "schritte-der-installation"], [86, "schritte-der-installation"], [87, "schritte-der-installation"], [88, "schritte-der-installation"], [89, "schritte-der-installation"]], "Neues System installieren": [[27, "neues-system-installieren"]], "Linux installieren": [[27, "linux-installieren"]], "SmartHomeNG installieren": [[27, "smarthomeng-installieren"], [83, "smarthomeng-installieren"]], "Mosquitto installieren": [[27, "mosquitto-installieren"], [84, "mosquitto-installieren"]], "smartVISU installieren": [[27, "smartvisu-installieren"], [85, "smartvisu-installieren"]], "knxd installieren": [[27, "knxd-installieren"], [86, "knxd-installieren"]], "Onewire installieren": [[27, "onewire-installieren"], [87, "onewire-installieren"]], "Samba installieren": [[27, "samba-installieren"], [88, "samba-installieren"]], "Konfiguration sichern/\u00fcbertragen": [[27, "konfiguration-sichern-ubertragen"]], "Dienst-Konfigurationen \u00fcbertragen": [[27, "dienst-konfigurationen-ubertragen"]], "Mosquitto": [[27, "mosquitto"]], "knxd": [[27, "knxd"]], "Onewire": [[27, "onewire"]], "Samba": [[27, "samba"]], "SmartHomeNG Konfiguration sichern": [[27, "smarthomeng-konfiguration-sichern"]], "Kopieren weiterer Daten": [[27, "kopieren-weiterer-daten"]], "Item cache Verzeichnis kopieren": [[27, "item-cache-verzeichnis-kopieren"]], "database Verzeichnis kopieren": [[27, "database-verzeichnis-kopieren"]], "executor Verzeichnis kopieren": [[27, "executor-verzeichnis-kopieren"]], "knx Verzeichnis kopieren": [[27, "knx-verzeichnis-kopieren"]], "Logs kopieren": [[27, "logs-kopieren"]], "plugins_cache Verzeichnis kopieren": [[27, "plugins-cache-verzeichnis-kopieren"]], "SmartHomeNG Konfiguration einspielen": [[27, "smarthomeng-konfiguration-einspielen"]], "Restarbeiten": [[27, "restarbeiten"]], "Neues System als produktiv einrichten": [[27, "neues-system-als-produktiv-einrichten"]], "Letzte Konfigurations\u00e4nderungen": [[27, "letzte-konfigurationsanderungen"]], "Transfer Verzeichnis l\u00f6schen": [[27, "transfer-verzeichnis-loschen"]], "SmartHomeNG als Dienst einrichten": [[27, "smarthomeng-als-dienst-einrichten"]], "Datenschutzerkla\u0308rung": [[28, "datenschutzerklarung"]], "Datenschutz": [[28, "datenschutz"]], "Server-Log-Files": [[28, "server-log-files"]], "SSL-Verschlu\u0308sselung": [[28, "ssl-verschlusselung"]], "Widerspruch Werbe-Mails": [[28, "widerspruch-werbe-mails"]], "Plugin development guidelines": [[29, "plugin-development-guidelines"]], "Module sample": [[30, "module-sample"]], "Requirements": [[30, "requirements"], [154, "requirements"], [157, "requirements"], [158, "requirements"], [173, "requirements"], [176, "requirements"], [182, "requirements"], [183, "requirements"], [185, "requirements"], [186, "requirements"], [190, "requirements"], [193, "requirements"], [198, "requirements"], [202, "requirements"], [208, "requirements"], [209, "requirements"], [218, "requirements"], [219, "requirements"], [227, "requirements"], [231, "requirements"], [234, "requirements"], [239, "requirements"], [240, "requirements"], [245, "requirements"], [247, "requirements"], [248, "requirements"], [251, "requirements"], [253, "requirements"], [257, "requirements"], [258, "requirements"], [260, "requirements"], [262, "requirements"], [266, "requirements"], [273, "requirements"], [274, "requirements"], [275, "requirements"], [278, "requirements"], [280, "requirements"], [281, "requirements"], [290, "requirements"], [294, "requirements"], [297, "requirements"], [301, "requirements"], [305, "requirements"], [308, "requirements"], [311, "requirements"], [312, "requirements"], [313, "requirements"], [315, "requirements"], [334, "requirements"], [335, "requirements"], [341, "requirements"], [342, "requirements"], [344, "requirements"], [349, "requirements"], [352, "requirements"], [355, "requirements"], [358, "requirements"], [361, "requirements"], [365, "requirements"]], "Configuration": [[30, "configuration"], [154, "configuration"], [157, "configuration"], [158, "configuration"], [160, "configuration"], [173, "configuration"], [175, "configuration"], [176, "configuration"], [180, "configuration"], [182, "configuration"], [183, "configuration"], [186, "configuration"], [190, "configuration"], [193, "configuration"], [195, "configuration"], [198, "configuration"], [202, "configuration"], [208, "configuration"], [209, "configuration"], [211, "configuration"], [218, "configuration"], [221, "configuration"], [231, "configuration"], [234, "configuration"], [235, "configuration"], [236, "configuration"], [239, "configuration"], [240, "configuration"], [245, "configuration"], [247, "configuration"], [248, "configuration"], [251, "configuration"], [253, "configuration"], [254, "configuration"], [257, "configuration"], [258, "configuration"], [260, "configuration"], [269, "configuration"], [273, "configuration"], [274, "configuration"], [275, "configuration"], [278, "configuration"], [280, "configuration"], [281, "configuration"], [290, "configuration"], [294, "configuration"], [296, "configuration"], [297, "configuration"], [298, "configuration"], [301, "configuration"], [305, "configuration"], [308, "configuration"], [312, "configuration"], [315, "configuration"], [317, "configuration"], [334, "configuration"], [335, "configuration"], [341, "configuration"], [342, "configuration"], [344, "configuration"], [352, "configuration"], [355, "configuration"], [358, "configuration"], [361, "configuration"], [365, "configuration"], [368, "configuration"]], "etc/module.yaml": [[30, "etc-module-yaml"], [154, "etc-module-yaml"], [157, "etc-module-yaml"], [158, "etc-module-yaml"]], "param1": [[30, "param1"]], "param2 (optional)": [[30, "param2-optional"]], "API of module sample": [[30, "api-of-module-sample"]], "Test if module mqtt is loaded": [[30, "test-if-module-mqtt-is-loaded"], [158, "test-if-module-mqtt-is-loaded"]], "Methods for implementing a web interface": [[30, "methods-for-implementing-a-web-interface"], [157, "methods-for-implementing-a-web-interface"], [158, "methods-for-implementing-a-web-interface"]], "get_\u2026()": [[30, "get"]], "Parameters": [[30, "parameters"], [157, "parameters"], [157, "id1"], [158, "parameters"], [158, "id1"], [273, "parameters"], [274, "parameters"]], "Mqtt-Pluginname (in Kleinbuchstaben)": [[31, "mqtt-pluginname-in-kleinbuchstaben"]], "Anforderungen": [[31, "anforderungen"], [32, "anforderungen"], [33, "anforderungen"], [34, "anforderungen"], [122, "anforderungen"], [165, "anforderungen"], [167, "anforderungen"], [168, "anforderungen"], [178, "anforderungen"], [179, "anforderungen"], [189, "anforderungen"], [192, "anforderungen"], [197, "anforderungen"], [200, "anforderungen"], [214, "anforderungen"], [215, "anforderungen"], [223, "anforderungen"], [229, "anforderungen"], [249, "anforderungen"], [250, "anforderungen"], [255, "anforderungen"], [259, "anforderungen"], [261, "anforderungen"], [265, "anforderungen"], [272, "anforderungen"], [276, "anforderungen"], [277, "anforderungen"], [284, "anforderungen"], [287, "anforderungen"], [300, "anforderungen"], [306, "anforderungen"], [307, "anforderungen"], [309, "anforderungen"], [310, "anforderungen"], [314, "anforderungen"], [336, "anforderungen"], [339, "anforderungen"], [340, "anforderungen"], [343, "anforderungen"], [346, "anforderungen"], [351, "anforderungen"], [359, "anforderungen"], [360, "anforderungen"], [363, "anforderungen"], [369, "anforderungen"], [370, "anforderungen"], [374, "anforderungen"], [375, "anforderungen"], [376, "anforderungen"], [377, "anforderungen"], [378, "anforderungen"], [379, "anforderungen"], [380, "anforderungen"], [381, "anforderungen"], [382, "anforderungen"], [383, "anforderungen"], [384, "anforderungen"], [385, "anforderungen"], [386, "anforderungen"], [387, "anforderungen"], [388, "anforderungen"], [389, "anforderungen"], [390, "anforderungen"], [391, "anforderungen"], [392, "anforderungen"], [393, "anforderungen"], [394, "anforderungen"], [395, "anforderungen"], [396, "anforderungen"], [397, "anforderungen"], [398, "anforderungen"], [399, "anforderungen"], [400, "anforderungen"], [401, "anforderungen"], [402, "anforderungen"], [403, "anforderungen"], [405, "anforderungen"], [406, "anforderungen"], [407, "anforderungen"], [408, "anforderungen"], [409, "anforderungen"], [410, "anforderungen"], [411, "anforderungen"], [412, "anforderungen"], [413, "anforderungen"], [414, "anforderungen"], [415, "anforderungen"], [416, "anforderungen"], [417, "anforderungen"], [418, "anforderungen"], [419, "anforderungen"], [420, "anforderungen"], [421, "anforderungen"], [422, "anforderungen"], [423, "anforderungen"], [424, "anforderungen"], [425, "anforderungen"], [426, "anforderungen"], [427, "anforderungen"], [428, "anforderungen"], [429, "anforderungen"], [430, "anforderungen"], [431, "anforderungen"], [432, "anforderungen"], [433, "anforderungen"], [434, "anforderungen"], [435, "anforderungen"], [436, "anforderungen"], [437, "anforderungen"], [438, "anforderungen"], [439, "anforderungen"], [440, "anforderungen"], [441, "anforderungen"], [442, "anforderungen"], [443, "anforderungen"], [444, "anforderungen"], [445, "anforderungen"], [446, "anforderungen"], [447, "anforderungen"], [448, "anforderungen"], [449, "anforderungen"], [450, "anforderungen"], [451, "anforderungen"], [452, "anforderungen"], [453, "anforderungen"], [454, "anforderungen"], [455, "anforderungen"], [456, "anforderungen"], [457, "anforderungen"], [458, "anforderungen"], [459, "anforderungen"], [460, "anforderungen"], [461, "anforderungen"], [462, "anforderungen"], [463, "anforderungen"], [464, "anforderungen"], [465, "anforderungen"], [466, "anforderungen"], [467, "anforderungen"], [468, "anforderungen"], [469, "anforderungen"], [470, "anforderungen"], [471, "anforderungen"], [472, "anforderungen"], [473, "anforderungen"], [475, "anforderungen"], [476, "anforderungen"], [477, "anforderungen"], [478, "anforderungen"], [479, "anforderungen"], [480, "anforderungen"], [481, "anforderungen"], [482, "anforderungen"], [483, "anforderungen"], [484, "anforderungen"], [485, "anforderungen"], [486, "anforderungen"], [487, "anforderungen"], [488, "anforderungen"], [489, "anforderungen"], [490, "anforderungen"], [491, "anforderungen"], [492, "anforderungen"], [493, "anforderungen"], [494, "anforderungen"], [495, "anforderungen"], [496, "anforderungen"], [497, "anforderungen"], [498, "anforderungen"], [499, "anforderungen"], [500, "anforderungen"], [501, "anforderungen"], [502, "anforderungen"], [503, "anforderungen"], [504, "anforderungen"], [505, "anforderungen"], [506, "anforderungen"], [507, "anforderungen"], [508, "anforderungen"], [509, "anforderungen"], [510, "anforderungen"], [511, "anforderungen"], [512, "anforderungen"], [513, "anforderungen"], [514, "anforderungen"], [515, "anforderungen"], [516, "anforderungen"], [517, "anforderungen"], [518, "anforderungen"], [519, "anforderungen"], [520, "anforderungen"], [521, "anforderungen"], [522, "anforderungen"], [523, "anforderungen"], [524, "anforderungen"], [525, "anforderungen"], [526, "anforderungen"], [527, "anforderungen"], [528, "anforderungen"], [529, "anforderungen"], [530, "anforderungen"], [531, "anforderungen"], [532, "anforderungen"], [533, "anforderungen"], [534, "anforderungen"], [535, "anforderungen"], [536, "anforderungen"], [537, "anforderungen"], [538, "anforderungen"]], "Notwendige Software": [[31, "notwendige-software"], [32, "notwendige-software"], [33, "notwendige-software"], [34, "notwendige-software"], [168, "notwendige-software"], [178, "notwendige-software"], [197, "notwendige-software"], [214, "notwendige-software"], [215, "notwendige-software"], [250, "notwendige-software"], [259, "notwendige-software"], [261, "notwendige-software"], [265, "notwendige-software"], [276, "notwendige-software"], [277, "notwendige-software"], [284, "notwendige-software"], [287, "notwendige-software"], [300, "notwendige-software"], [306, "notwendige-software"], [307, "notwendige-software"], [314, "notwendige-software"], [339, "notwendige-software"], [340, "notwendige-software"], [359, "notwendige-software"], [363, "notwendige-software"], [369, "notwendige-software"]], "Unterst\u00fctzte Ger\u00e4te": [[31, "unterstutzte-gerate"], [32, "unterstutzte-gerate"], [33, "unterstutzte-gerate"], [34, "unterstutzte-gerate"], [165, "unterstutzte-gerate"], [168, "unterstutzte-gerate"], [178, "unterstutzte-gerate"], [197, "unterstutzte-gerate"], [214, "unterstutzte-gerate"], [215, "unterstutzte-gerate"], [259, "unterstutzte-gerate"], [261, "unterstutzte-gerate"], [276, "unterstutzte-gerate"], [277, "unterstutzte-gerate"], [284, "unterstutzte-gerate"], [286, "unterstutzte-gerate"], [300, "unterstutzte-gerate"], [306, "unterstutzte-gerate"], [307, "unterstutzte-gerate"], [310, "unterstutzte-gerate"], [314, "unterstutzte-gerate"], [339, "unterstutzte-gerate"], [340, "unterstutzte-gerate"], [351, "unterstutzte-gerate"], [363, "unterstutzte-gerate"], [369, "unterstutzte-gerate"]], "Konfiguration": [[31, "konfiguration"], [32, "konfiguration"], [33, "konfiguration"], [34, "konfiguration"], [119, "konfiguration"], [120, "konfiguration"], [121, "konfiguration"], [122, "konfiguration"], [163, "konfiguration"], [164, "konfiguration"], [165, "konfiguration"], [166, "konfiguration"], [167, "konfiguration"], [168, "konfiguration"], [169, "konfiguration"], [171, "konfiguration"], [172, "konfiguration"], [178, "konfiguration"], [179, "konfiguration"], [181, "konfiguration"], [184, "konfiguration"], [187, "konfiguration"], [188, "konfiguration"], [189, "konfiguration"], [191, "konfiguration"], [192, "konfiguration"], [194, "konfiguration"], [196, "konfiguration"], [197, "konfiguration"], [200, "konfiguration"], [201, "konfiguration"], [203, "konfiguration"], [204, "konfiguration"], [210, "konfiguration"], [212, "konfiguration"], [213, "konfiguration"], [214, "konfiguration"], [215, "konfiguration"], [217, "konfiguration"], [219, "konfiguration"], [220, "konfiguration"], [222, "konfiguration"], [223, "konfiguration"], [228, "konfiguration"], [229, "konfiguration"], [230, "konfiguration"], [232, "konfiguration"], [233, "konfiguration"], [237, "konfiguration"], [238, "konfiguration"], [241, "konfiguration"], [242, "konfiguration"], [243, "konfiguration"], [244, "konfiguration"], [246, "konfiguration"], [249, "konfiguration"], [250, "konfiguration"], [252, "konfiguration"], [255, "konfiguration"], [256, "konfiguration"], [259, "konfiguration"], [261, "konfiguration"], [262, "konfiguration"], [263, "konfiguration"], [264, "konfiguration"], [265, "konfiguration"], [266, "konfiguration"], [267, "konfiguration"], [268, "konfiguration"], [271, "konfiguration"], [272, "konfiguration"], [276, "konfiguration"], [277, "konfiguration"], [279, "konfiguration"], [284, "konfiguration"], [285, "konfiguration"], [286, "konfiguration"], [287, "konfiguration"], [289, "konfiguration"], [291, "konfiguration"], [295, "konfiguration"], [300, "konfiguration"], [302, "konfiguration"], [306, "konfiguration"], [307, "konfiguration"], [309, "konfiguration"], [310, "konfiguration"], [311, "konfiguration"], [313, "konfiguration"], [314, "konfiguration"], [316, "konfiguration"], [319, "konfiguration"], [322, "konfiguration"], [336, "konfiguration"], [337, "konfiguration"], [339, "konfiguration"], [340, "konfiguration"], [343, "konfiguration"], [346, "konfiguration"], [347, "konfiguration"], [348, "konfiguration"], [349, "konfiguration"], [351, "konfiguration"], [354, "konfiguration"], [357, "konfiguration"], [359, "konfiguration"], [360, "konfiguration"], [362, "konfiguration"], [363, "konfiguration"], [366, "konfiguration"], [367, "konfiguration"], [369, "konfiguration"], [370, "konfiguration"], [371, "konfiguration"], [374, "konfiguration"], [375, "konfiguration"], [376, "konfiguration"], [377, "konfiguration"], [378, "konfiguration"], [379, "konfiguration"], [380, "konfiguration"], [381, "konfiguration"], [382, "konfiguration"], [383, "konfiguration"], [384, "konfiguration"], [385, "konfiguration"], [386, "konfiguration"], [387, "konfiguration"], [388, "konfiguration"], [389, "konfiguration"], [390, "konfiguration"], [391, "konfiguration"], [392, "konfiguration"], [393, "konfiguration"], [394, "konfiguration"], [395, "konfiguration"], [396, "konfiguration"], [397, "konfiguration"], [398, "konfiguration"], [399, "konfiguration"], [400, "konfiguration"], [401, "konfiguration"], [402, "konfiguration"], [403, "konfiguration"], [405, "konfiguration"], [406, "konfiguration"], [407, "konfiguration"], [408, "konfiguration"], [409, "konfiguration"], [410, "konfiguration"], [411, "konfiguration"], [412, "konfiguration"], [413, "konfiguration"], [414, "konfiguration"], [415, "konfiguration"], [416, "konfiguration"], [417, "konfiguration"], [418, "konfiguration"], [419, "konfiguration"], [420, "konfiguration"], [421, "konfiguration"], [422, "konfiguration"], [423, "konfiguration"], [424, "konfiguration"], [425, "konfiguration"], [426, "konfiguration"], [427, "konfiguration"], [428, "konfiguration"], [429, "konfiguration"], [430, "konfiguration"], [431, "konfiguration"], [432, "konfiguration"], [433, "konfiguration"], [434, "konfiguration"], [435, "konfiguration"], [436, "konfiguration"], [437, "konfiguration"], [438, "konfiguration"], [439, "konfiguration"], [440, "konfiguration"], [441, "konfiguration"], [442, "konfiguration"], [443, "konfiguration"], [444, "konfiguration"], [445, "konfiguration"], [446, "konfiguration"], [447, "konfiguration"], [448, "konfiguration"], [449, "konfiguration"], [450, "konfiguration"], [451, "konfiguration"], [452, "konfiguration"], [453, "konfiguration"], [454, "konfiguration"], [455, "konfiguration"], [456, "konfiguration"], [457, "konfiguration"], [458, "konfiguration"], [459, "konfiguration"], [460, "konfiguration"], [461, "konfiguration"], [462, "konfiguration"], [463, "konfiguration"], [464, "konfiguration"], [465, "konfiguration"], [466, "konfiguration"], [467, "konfiguration"], [468, "konfiguration"], [469, "konfiguration"], [470, "konfiguration"], [471, "konfiguration"], [472, "konfiguration"], [473, "konfiguration"], [474, "konfiguration"], [475, "konfiguration"], [476, "konfiguration"], [477, "konfiguration"], [478, "konfiguration"], [479, "konfiguration"], [480, "konfiguration"], [481, "konfiguration"], [482, "konfiguration"], [483, "konfiguration"], [484, "konfiguration"], [485, "konfiguration"], [486, "konfiguration"], [487, "konfiguration"], [488, "konfiguration"], [489, "konfiguration"], [490, "konfiguration"], [491, "konfiguration"], [492, "konfiguration"], [493, "konfiguration"], [494, "konfiguration"], [495, "konfiguration"], [496, "konfiguration"], [497, "konfiguration"], [498, "konfiguration"], [499, "konfiguration"], [500, "konfiguration"], [501, "konfiguration"], [502, "konfiguration"], [503, "konfiguration"], [504, "konfiguration"], [505, "konfiguration"], [506, "konfiguration"], [507, "konfiguration"], [508, "konfiguration"], [509, "konfiguration"], [510, "konfiguration"], [511, "konfiguration"], [512, "konfiguration"], [513, "konfiguration"], [514, "konfiguration"], [515, "konfiguration"], [516, "konfiguration"], [517, "konfiguration"], [518, "konfiguration"], [519, "konfiguration"], [520, "konfiguration"], [521, "konfiguration"], [522, "konfiguration"], [523, "konfiguration"], [524, "konfiguration"], [525, "konfiguration"], [526, "konfiguration"], [527, "konfiguration"], [528, "konfiguration"], [529, "konfiguration"], [530, "konfiguration"], [531, "konfiguration"], [532, "konfiguration"], [533, "konfiguration"], [534, "konfiguration"], [535, "konfiguration"], [536, "konfiguration"], [537, "konfiguration"], [538, "konfiguration"], [574, "konfiguration"], [616, "konfiguration"]], "Funktionen": [[31, "funktionen"], [32, "funktionen"], [33, "funktionen"], [34, "funktionen"], [164, "funktionen"], [168, "funktionen"], [194, "funktionen"], [197, "funktionen"], [214, "funktionen"], [215, "funktionen"], [217, "funktionen"], [232, "funktionen"], [249, "funktionen"], [250, "funktionen"], [256, "funktionen"], [259, "funktionen"], [261, "funktionen"], [263, "funktionen"], [272, "funktionen"], [276, "funktionen"], [277, "funktionen"], [287, "funktionen"], [306, "funktionen"], [307, "funktionen"], [309, "funktionen"], [313, "funktionen"], [314, "funktionen"], [338, "funktionen"], [343, "funktionen"], [351, "funktionen"], [359, "funktionen"], [360, "funktionen"], [363, "funktionen"], [367, "funktionen"], [369, "funktionen"]], "Web Interface": [[31, "web-interface"], [32, "web-interface"], [33, "web-interface"], [34, "web-interface"], [164, "web-interface"], [165, "web-interface"], [166, "web-interface"], [167, "web-interface"], [169, "web-interface"], [170, "web-interface"], [172, "web-interface"], [178, "web-interface"], [179, "web-interface"], [181, "web-interface"], [184, "web-interface"], [187, "web-interface"], [188, "web-interface"], [189, "web-interface"], [191, "web-interface"], [192, "web-interface"], [197, "web-interface"], [200, "web-interface"], [201, "web-interface"], [204, "web-interface"], [210, "web-interface"], [212, "web-interface"], [213, "web-interface"], [214, "web-interface"], [215, "web-interface"], [220, "web-interface"], [220, "id1"], [222, "web-interface"], [223, "web-interface"], [228, "web-interface"], [229, "web-interface"], [230, "web-interface"], [232, "web-interface"], [237, "web-interface"], [238, "web-interface"], [241, "web-interface"], [242, "web-interface"], [243, "web-interface"], [244, "web-interface"], [246, "web-interface"], [249, "web-interface"], [250, "web-interface"], [252, "web-interface"], [255, "web-interface"], [259, "web-interface"], [261, "web-interface"], [262, "web-interface"], [263, "web-interface"], [264, "web-interface"], [265, "web-interface"], [266, "web-interface"], [267, "web-interface"], [268, "web-interface"], [276, "web-interface"], [277, "web-interface"], [280, "web-interface"], [284, "web-interface"], [286, "web-interface"], [287, "web-interface"], [289, "web-interface"], [291, "web-interface"], [302, "web-interface"], [306, "web-interface"], [307, "web-interface"], [311, "web-interface"], [314, "web-interface"], [320, "web-interface"], [336, "web-interface"], [338, "web-interface"], [339, "web-interface"], [340, "web-interface"], [343, "web-interface"], [346, "web-interface"], [347, "web-interface"], [348, "web-interface"], [349, "web-interface"], [351, "web-interface"], [357, "web-interface"], [359, "web-interface"], [360, "web-interface"], [362, "web-interface"], [363, "web-interface"], [366, "web-interface"], [367, "web-interface"], [369, "web-interface"]], "Version History": [[31, "version-history"], [32, "version-history"], [271, "version-history"], [277, "version-history"], [284, "version-history"]], "Pluginname (in Kleinbuchstaben)": [[32, "pluginname-in-kleinbuchstaben"]], "Tab 1: ": [[32, "tab-1-name-des-tabs"]], "Sample Plugin <- hier den Namen des Plugins einsetzen": [[33, "sample-plugin-hier-den-namen-des-plugins-einsetzen"], [34, "sample-plugin-hier-den-namen-des-plugins-einsetzen"]], "plugin.yaml": [[33, "plugin-yaml"], [34, "plugin-yaml"], [83, "plugin-yaml"], [103, "plugin-yaml"], [111, "plugin-yaml"], [160, "plugin-yaml"], [164, "plugin-yaml"], [166, "plugin-yaml"], [168, "plugin-yaml"], [169, "plugin-yaml"], [173, "plugin-yaml"], [176, "plugin-yaml"], [180, "plugin-yaml"], [182, "plugin-yaml"], [183, "plugin-yaml"], [186, "plugin-yaml"], [188, "plugin-yaml"], [190, "plugin-yaml"], [191, "plugin-yaml"], [193, "plugin-yaml"], [194, "plugin-yaml"], [195, "plugin-yaml"], [197, "plugin-yaml"], [198, "plugin-yaml"], [200, "plugin-yaml"], [201, "plugin-yaml"], [202, "plugin-yaml"], [208, "plugin-yaml"], [211, "plugin-yaml"], [214, "plugin-yaml"], [215, "plugin-yaml"], [218, "plugin-yaml"], [219, "plugin-yaml"], [221, "plugin-yaml"], [222, "plugin-yaml"], [228, "plugin-yaml"], [229, "plugin-yaml"], [230, "plugin-yaml"], [231, "plugin-yaml"], [232, "plugin-yaml"], [234, "plugin-yaml"], [238, "plugin-yaml"], [239, "plugin-yaml"], [240, "plugin-yaml"], [241, "plugin-yaml"], [243, "plugin-yaml"], [244, "plugin-yaml"], [245, "plugin-yaml"], [247, "plugin-yaml"], [248, "plugin-yaml"], [249, "plugin-yaml"], [250, "plugin-yaml"], [251, "plugin-yaml"], [253, "plugin-yaml"], [256, "plugin-yaml"], [257, "plugin-yaml"], [258, "plugin-yaml"], [258, "id1"], [259, "plugin-yaml"], [260, "plugin-yaml"], [261, "plugin-yaml"], [263, "plugin-yaml"], [264, "plugin-yaml"], [267, "plugin-yaml"], [269, "plugin-yaml"], [272, "plugin-yaml"], [273, "plugin-yaml"], [274, "plugin-yaml"], [275, "plugin-yaml"], [276, "plugin-yaml"], [277, "plugin-yaml"], [278, "plugin-yaml"], [280, "plugin-yaml"], [288, "plugin-yaml"], [290, "plugin-yaml"], [294, "plugin-yaml"], [297, "plugin-yaml"], [298, "plugin-yaml"], [300, "plugin-yaml"], [301, "plugin-yaml"], [305, "plugin-yaml"], [306, "plugin-yaml"], [307, "plugin-yaml"], [308, "plugin-yaml"], [309, "plugin-yaml"], [310, "plugin-yaml"], [312, "plugin-yaml"], [313, "plugin-yaml"], [314, "plugin-yaml"], [315, "plugin-yaml"], [317, "plugin-yaml"], [334, "plugin-yaml"], [335, "plugin-yaml"], [339, "plugin-yaml"], [340, "plugin-yaml"], [341, "plugin-yaml"], [343, "plugin-yaml"], [344, "plugin-yaml"], [351, "plugin-yaml"], [352, "plugin-yaml"], [355, "plugin-yaml"], [358, "plugin-yaml"], [359, "plugin-yaml"], [360, "plugin-yaml"], [361, "plugin-yaml"], [362, "plugin-yaml"], [363, "plugin-yaml"], [365, "plugin-yaml"], [368, "plugin-yaml"], [369, "plugin-yaml"], [370, "plugin-yaml"]], "items.yaml": [[33, "items-yaml"], [34, "items-yaml"], [164, "items-yaml"], [165, "items-yaml"], [167, "items-yaml"], [168, "items-yaml"], [173, "items-yaml"], [176, "items-yaml"], [182, "items-yaml"], [183, "items-yaml"], [186, "items-yaml"], [188, "items-yaml"], [190, "items-yaml"], [193, "items-yaml"], [194, "items-yaml"], [195, "items-yaml"], [197, "items-yaml"], [198, "items-yaml"], [199, "items-yaml"], [202, "items-yaml"], [208, "items-yaml"], [211, "items-yaml"], [214, "items-yaml"], [218, "items-yaml"], [219, "items-yaml"], [221, "items-yaml"], [222, "items-yaml"], [229, "items-yaml"], [231, "items-yaml"], [232, "items-yaml"], [234, "items-yaml"], [239, "items-yaml"], [240, "items-yaml"], [243, "items-yaml"], [245, "items-yaml"], [247, "items-yaml"], [248, "items-yaml"], [249, "items-yaml"], [250, "items-yaml"], [251, "items-yaml"], [253, "items-yaml"], [256, "items-yaml"], [258, "items-yaml"], [259, "items-yaml"], [260, "items-yaml"], [261, "items-yaml"], [263, "items-yaml"], [269, "items-yaml"], [272, "items-yaml"], [275, "items-yaml"], [276, "items-yaml"], [277, "items-yaml"], [278, "items-yaml"], [280, "items-yaml"], [284, "items-yaml"], [288, "items-yaml"], [290, "items-yaml"], [294, "items-yaml"], [297, "items-yaml"], [298, "items-yaml"], [300, "items-yaml"], [301, "items-yaml"], [305, "items-yaml"], [306, "items-yaml"], [307, "items-yaml"], [308, "items-yaml"], [309, "items-yaml"], [310, "items-yaml"], [312, "items-yaml"], [313, "items-yaml"], [314, "items-yaml"], [315, "items-yaml"], [317, "items-yaml"], [334, "items-yaml"], [335, "items-yaml"], [339, "items-yaml"], [340, "items-yaml"], [341, "items-yaml"], [343, "items-yaml"], [344, "items-yaml"], [351, "items-yaml"], [352, "items-yaml"], [355, "items-yaml"], [358, "items-yaml"], [360, "items-yaml"], [361, "items-yaml"], [362, "items-yaml"], [363, "items-yaml"], [369, "items-yaml"], [370, "items-yaml"]], "logic.yaml": [[33, "logic-yaml"], [34, "logic-yaml"], [83, "logic-yaml"], [103, "logic-yaml"], [108, "logic-yaml"], [167, "logic-yaml"], [183, "logic-yaml"], [190, "logic-yaml"], [197, "logic-yaml"], [202, "logic-yaml"], [211, "logic-yaml"], [214, "logic-yaml"], [218, "logic-yaml"], [231, "logic-yaml"], [232, "logic-yaml"], [234, "logic-yaml"], [240, "logic-yaml"], [243, "logic-yaml"], [249, "logic-yaml"], [250, "logic-yaml"], [251, "logic-yaml"], [256, "logic-yaml"], [259, "logic-yaml"], [261, "logic-yaml"], [276, "logic-yaml"], [277, "logic-yaml"], [301, "logic-yaml"], [305, "logic-yaml"], [306, "logic-yaml"], [307, "logic-yaml"], [309, "logic-yaml"], [312, "logic-yaml"], [313, "logic-yaml"], [314, "logic-yaml"], [315, "logic-yaml"], [343, "logic-yaml"], [352, "logic-yaml"], [355, "logic-yaml"], [360, "logic-yaml"], [361, "logic-yaml"], [363, "logic-yaml"], [365, "logic-yaml"], [368, "logic-yaml"], [369, "logic-yaml"], [686, "logic-yaml"]], "Einleitung": [[36, "einleitung"]], "\u00dcbersicht \u00fcber SmartHomeNG": [[36, "ubersicht-uber-smarthomeng"]], "Wie alles zusammenh\u00e4ngt": [[36, "wie-alles-zusammenhangt"]], "Bau der Dokumentation": [[37, "bau-der-dokumentation"]], "Checkout und Bau der Dokumentation": [[37, "checkout-und-bau-der-dokumentation"]], "Optionen des Build Skripts": [[37, "optionen-des-build-skripts"]], "Entwicklung des Core": [[38, "entwicklung-des-core"]], "Programm Module": [[39, "programm-module"]], "Der Core von SmartHomeNG": [[40, "der-core-von-smarthomeng"]], "smarthome.py": [[40, "smarthome-py"]], "lib.item": [[40, "lib-item"], [132, "module-lib.item"]], "Entwicklung": [[41, "entwicklung"]], "Logiken under construction": [[42, "logiken-under-construction"]], "Einf\u00fchrung": [[42, "einfuhrung"], [80, "einfuhrung"], [196, "einfuhrung"], [203, "einfuhrung"], [217, "einfuhrung"], [223, "einfuhrung"], [271, "einfuhrung"], [302, "einfuhrung"], [321, "einfuhrung"], [347, "einfuhrung"]], "Behandlung von Fehlern in der Logik": [[42, "behandlung-von-fehlern-in-der-logik"]], "Syntaktische Fehler": [[42, "syntaktische-fehler"]], "Laufzeit Fehler": [[42, "laufzeit-fehler"], [588, "laufzeit-fehler"]], "Template f\u00fcr eine neue Logik": [[42, "template-fur-eine-neue-logik"]], "Verlassen einer Logik": [[42, "verlassen-einer-logik"]], "Module": [[43, "module"], [118, "module"], [611, "module"]], "Metadaten": [[43, "metadaten"], [605, "metadaten"], [612, "metadaten"], [613, "metadaten"], [615, "metadaten"], [616, "metadaten"]], "module": [[43, "index-3"], [606, "module"]], "parameters": [[43, "parameters"], [53, "parameters"], [608, "parameters"]], "Plugins/Module ohne Parameter": [[43, "plugins-module-ohne-parameter"], [53, "plugins-module-ohne-parameter"], [608, "plugins-module-ohne-parameter"]], "Module http": [[44, "module-http"], [120, "module-http"]], "API des Moduls": [[44, "api-des-moduls"], [612, "api-des-moduls"], [613, "module-modules.http"], [615, "module-modules.mqtt"], [616, "api-des-moduls"]], "Module mqtt": [[45, "module-mqtt"], [121, "module-mqtt"]], "README": [[45, "readme"], [612, "readme"], [613, "readme"], [615, "readme"]], "Metadata": [[45, "metadata"]], "AsyncIO in Plugins neu": [[46, "asyncio-in-plugins-neu"]], "Methoden des Plugins": [[46, "methoden-des-plugins"]], "Threads in denen Plugin Methoden ausgef\u00fchrt werden": [[46, "id1"]], "Asyncio und Threads kombinieren": [[46, "asyncio-und-threads-kombinieren"]], "Entwicklungsrichtlinien under construction": [[47, "entwicklungsrichtlinien-under-construction"]], "Nutzung von git und GitHub": [[47, "nutzung-von-git-und-github"]], "Die Repositories von SmartHomeNG": [[47, "die-repositories-von-smarthomeng"]], "Repositories und Branches": [[47, "repositories-und-branches"]], "Die Quellen finden/installieren": [[47, "die-quellen-finden-installieren"]], "Code Stil": [[47, "code-stil"]], "Programmieren beginnen": [[47, "programmieren-beginnen"]], "Tools": [[47, "tools"], [76, "tools"], [646, "tools"], [650, "tools"], [652, "tools"], [653, "tools"], [654, "tools"], [655, "tools"], [656, "tools"], [676, "tools"]], "pep8": [[47, "pep8"]], "autopep8": [[47, "autopep8"]], "flake8": [[47, "flake8"]], "Testen und Dokumentieren": [[47, "testen-und-dokumentieren"]], "Basic Rules": [[47, "basic-rules"]], "Fork erstellen": [[47, "fork-erstellen"]], "Merge (description is deprecated, has to be updated)": [[47, "merge-description-is-deprecated-has-to-be-updated"]], ".git/config (description is deprecated, has to be updated)": [[47, "git-config-description-is-deprecated-has-to-be-updated"]], "Arbeiten mit dem Git-Befehlszeilen-Client": [[47, "arbeiten-mit-dem-git-befehlszeilen-client"]], "N\u00fctzliche Git-Befehle": [[47, "nutzliche-git-befehle"]], "Globale Einstellungen": [[47, "globale-einstellungen"]], "Kurzanleitung update": [[48, "kurzanleitung-update"]], "Programm Module zur Nutzung in Plugins": [[49, "programm-module-zur-nutzung-in-plugins"]], "Unterst\u00fctzung mehrerer Sprachen Update": [[50, "unterstutzung-mehrerer-sprachen-update"]], "Text als mehrsprachig kennzeichnen": [[50, "text-als-mehrsprachig-kennzeichnen"]], "1. In Jinja2-Templates": [[50, "in-jinja2-templates"]], "2. Im Python-Code": [[50, "im-python-code"]], "Wie Mehrsprachigkeit funktioniert": [[50, "wie-mehrsprachigkeit-funktioniert"]], "Sprachen und \u00dcbersetzungen hinzuf\u00fcgen": [[50, "sprachen-und-ubersetzungen-hinzufugen"]], "Platzhalter in \u00dcbersetzungen nutzen Neu": [[50, "platzhalter-in-ubersetzungen-nutzen-neu"]], "1. Platzhalter in Jinja2-Templates": [[50, "platzhalter-in-jinja2-templates"]], "2. Platzhalter im Python-Code": [[50, "platzhalter-im-python-code"]], "Plugin-Dokumentation": [[51, "plugin-dokumentation"]], "user_doc.rst": [[51, "user-doc-rst"]], "In wenigen Minuten zum eigenen Plugin": [[52, "in-wenigen-minuten-zum-eigenen-plugin"]], "Beschreibung des Plugins": [[52, "beschreibung-des-plugins"]], "Die Metadaten: plugin.yaml": [[52, "die-metadaten-plugin-yaml"]], "Beispiel einer Metadaten-Datei:": [[52, "beispiel-einer-metadaten-datei"]], "Die Dokumentation: user_doc.rst": [[52, "die-dokumentation-user-doc-rst"]], "Konfigurieren des Plugins in der Systemkonfiguration /etc/plugin.yaml": [[52, "konfigurieren-des-plugins-in-der-systemkonfiguration-etc-plugin-yaml"]], "Der Plugin-Code: __init__.py": [[52, "der-plugin-code-init-py"]], "Vordefinierte Funktionen des Plugins": [[52, "vordefinierte-funktionen-des-plugins"]], "Erstellung eines Webinterfaces": [[52, "erstellung-eines-webinterfaces"]], "Funktionen von SmartHomeNG": [[52, "funktionen-von-smarthomeng"]], "Der Scheduler": [[52, "der-scheduler"]], "scheduler_add": [[52, "scheduler-add"]], "name=string": [[52, "name-string"]], "obj=function": [[52, "obj-function"]], "cron": [[52, "cron"]], "cycle=int": [[52, "cycle-int"]], "next=dateobject": [[52, "next-dateobject"]], "value": [[52, "value"], [52, "id2"], [365, "value"], [379, "value"], [380, "value"], [406, "value"], [522, "value"]], "offset=int": [[52, "offset-int"]], "scheduler_remove": [[52, "scheduler-remove"]], "Name=string": [[52, "id1"]], "Items suchen": [[52, "items-suchen"]], "item_path=string": [[52, "item-path-string"]], "Items ver\u00e4ndern": [[52, "items-verandern"]], "caller=string": [[52, "caller-string"]], "Plugin-Metadata update": [[53, "plugin-metadata-update"]], "Detaillierte Beschreibung": [[53, "detaillierte-beschreibung"]], "plugin": [[53, "plugin"], [610, "plugin"]], "item_attributes": [[53, "item-attributes"], [602, "item-attributes"]], "Plugins ohne Item Attribute": [[53, "plugins-ohne-item-attribute"], [602, "plugins-ohne-item-attribute"]], "item_structs": [[53, "item-structs"], [170, "item-structs"], [603, "item-structs"]], "Geschachtelte Strukturen": [[53, "geschachtelte-strukturen"], [603, "geschachtelte-strukturen"]], "Redefininieren von Attributen": [[53, "redefininieren-von-attributen"], [603, "redefininieren-von-attributen"]], "Redefininieren von list-Attributen": [[53, "redefininieren-von-list-attributen"], [603, "redefininieren-von-list-attributen"]], "Definitionen f\u00fcr multi-instance Plugins": [[53, "definitionen-fur-multi-instance-plugins"], [603, "definitionen-fur-multi-instance-plugins"]], "Plugins ohne item-structs": [[53, "plugins-ohne-item-structs"], [603, "plugins-ohne-item-structs"]], "logic_parameters": [[53, "logic-parameters"], [604, "logic-parameters"]], "Plugins ohne Logic Parameter": [[53, "plugins-ohne-logic-parameter"], [604, "plugins-ohne-logic-parameter"]], "plugin_functions": [[53, "plugin-functions"], [609, "plugin-functions"]], "Plugins ohne Plugin Funktionen": [[53, "plugins-ohne-plugin-funktionen"], [609, "plugins-ohne-plugin-funktionen"]], "Funktionen ohne Parameter": [[53, "funktionen-ohne-parameter"], [609, "funktionen-ohne-parameter"]], "Aufruf von Funktionen": [[53, "aufruf-von-funktionen"], [609, "aufruf-von-funktionen"]], "Beispielplugin mit MQTT-Unterst\u00fctzung": [[54, "beispielplugin-mit-mqtt-unterstutzung"]], "Die Metadaten-Datei:": [[54, "die-metadaten-datei"], [55, "die-metadaten-datei"]], "Der Quelltext:": [[54, "der-quelltext"], [55, "der-quelltext"]], "Das Webinterface (template file):": [[54, "das-webinterface-template-file"], [55, "das-webinterface-template-file"]], "Die Datei f\u00fcr Mehrsprachigkeit:": [[54, "die-datei-fur-mehrsprachigkeit"], [55, "die-datei-fur-mehrsprachigkeit"]], "Die Dokumentation:": [[54, "die-dokumentation"], [55, "die-dokumentation"]], "Beispielplugin update": [[55, "beispielplugin-update"]], "Webinterface update": [[56, "webinterface-update"]], "Allgemeines": [[56, "allgemeines"]], "Tooltips": [[56, "tooltips"]], "Cookies": [[56, "cookies"], [164, "cookies"]], "Icons": [[56, "icons"]], "Kalenderansicht": [[56, "kalenderansicht"]], "Komponenten von Drittanbietern f\u00fcr Webinterfaces": [[57, "komponenten-von-drittanbietern-fur-webinterfaces"]], "Automatische Updates der Daten im Webinterface new": [[58, "automatische-updates-der-daten-im-webinterface-new"]], "Erweitern der Python-Methode get_data_html()": [[58, "erweitern-der-python-methode-get-data-html"]], "IDs an DOM-Elemente zuweisen": [[58, "ids-an-dom-elemente-zuweisen"], [62, "ids-an-dom-elemente-zuweisen"]], "Erweitern der JavaScript-Funktion handleUpdatedData()": [[58, "erweitern-der-javascript-funktion-handleupdateddata"]], "Sortierbare Tabellen": [[58, "sortierbare-tabellen"]], "Hinzuf\u00fcgen von Tabellenzeilen": [[58, "hinzufugen-von-tabellenzeilen"]], "Hervorheben von \u00c4nderungen": [[58, "hervorheben-von-anderungen"]], "Festlegen von Aktualisierungsintervall, dataSets und weiteren Parametern": [[58, "festlegen-von-aktualisierungsintervall-datasets-und-weiteren-parametern"]], "Dynamische Anpassung von Aktualisierungsintervall, dataSets und weiteren Parametern": [[58, "dynamische-anpassung-von-aktualisierungsintervall-datasets-und-weiteren-parametern"]], "Erweitern eines bestehenden Plugins": [[59, "erweitern-eines-bestehenden-plugins"]], "Das Webinterface mit Inhalt f\u00fcllen": [[60, "das-webinterface-mit-inhalt-fullen"]], "Unterst\u00fctzung mehrerer Sprachen new": [[61, "unterstutzung-mehrerer-sprachen-new"]], "Interaktion des Webinterface mit dem Plugin new": [[62, "interaktion-des-webinterface-mit-dem-plugin-new"]], "Die Python-Methode submit() implementieren": [[62, "die-python-methode-submit-implementieren"]], "Aktive Elemente im WebInterface definieren": [[62, "aktive-elemente-im-webinterface-definieren"]], "Javascript-Funktion zum Handling implementieren": [[62, "javascript-funktion-zum-handling-implementieren"]], "Class MqttPlugin": [[63, "class-mqttplugin"], [620, "class-mqttplugin"]], "Plugin-Checker neu": [[64, "plugin-checker-neu"]], "Plugins Update": [[65, "plugins-update"], [626, "plugins-update"]], "Class SmartPlugin": [[66, "class-smartplugin"], [624, "class-smartplugin"]], "Vor\u00fcberlegungen": [[67, "voruberlegungen"]], "Fragestellungen": [[67, "fragestellungen"]], "Typ des Plugins": [[67, "typ-des-plugins"]], "System Plugin": [[67, "system-plugin"]], "Interface Plugin": [[67, "interface-plugin"]], "Gateway Plugin": [[67, "gateway-plugin"]], "Protokoll Plugin": [[67, "protokoll-plugin"]], "Web/Cloud Plugin": [[67, "web-cloud-plugin"]], "Plugin Vorlagen": [[67, "plugin-vorlagen"]], "Nutzung von Python Packages": [[67, "nutzung-von-python-packages"]], "Python Version": [[67, "python-version"]], "Virtuelle Umgebungen": [[68, "virtuelle-umgebungen"]], "Venv": [[68, "venv"]], "Pyenv": [[68, "pyenv"]], "Pipenv": [[68, "pipenv"]], "FAQ - H\u00e4ufig gestellte Fragen": [[69, "faq-haufig-gestellte-fragen"]], "Das Schalten von KNX Aktoren aus der smartVISU funktioniert nicht": [[69, "das-schalten-von-knx-aktoren-aus-der-smartvisu-funktioniert-nicht"]], "FAQ auf der Website von SmartHomeNG": [[69, "faq-auf-der-website-von-smarthomeng"]], "Fehlersuche": [[70, "fehlersuche"]], "Fehlersuche mit der Admin GUI": [[70, "fehlersuche-mit-der-admin-gui"]], "Checkliste f\u00fcr die Fehlersuche": [[71, "checkliste-fur-die-fehlersuche"]], "L\u00e4uft SmartHomeNG?": [[71, "lauft-smarthomeng"]], "SmartHomeNG im Debugmodus starten": [[71, "smarthomeng-im-debugmodus-starten"]], "Zugriff auf den KNX via eibd": [[71, "zugriff-auf-den-knx-via-eibd"]], "Zugriff auf den KNX via knxd": [[71, "zugriff-auf-den-knx-via-knxd"]], "Kann SmartHomeNG schalten?": [[71, "kann-smarthomeng-schalten"]], "Kontakt mit SmartVISU": [[71, "kontakt-mit-smartvisu"]], "Zugriff auf SH.py via CLI Plugin aus Windows mit putty oder kitty": [[71, "zugriff-auf-sh-py-via-cli-plugin-aus-windows-mit-putty-oder-kitty"]], "Admonition Arten": [[72, "admonition-arten"]], "And, by the way\u2026": [[72, null]], "Alternativ knxd compilieren": [[73, "alternativ-knxd-compilieren"]], "zus\u00e4tzliche Pakete zum Bau installieren": [[73, "zusatzliche-pakete-zum-bau-installieren"]], "Quellcode laden, compilieren und ein Paket schn\u00fcren": [[73, "quellcode-laden-compilieren-und-ein-paket-schnuren"]], "Verwendung von Tabs": [[74, "verwendung-von-tabs"]], "Stichwort Verzeichnis": [[75, "stichwort-verzeichnis"]], "Ideen f\u00fcr das Release 1.9": [[76, "ideen-fur-das-release-1-9"]], "Inhalts\u00fcbersicht": [[76, "inhaltsubersicht"]], "Core": [[76, "core"]], "Struct Nesting": [[76, "struct-nesting"]], "lib.network": [[76, "lib-network"], [141, "module-lib.network"]], "daemonize \u00fcberarbeiten": [[76, "daemonize-uberarbeiten"]], "Logiken: Zus\u00e4tzlichen Trigger \u201eshutdown\u201c": [[76, "logiken-zusatzlichen-trigger-shutdown"]], "Items: User Attribute implementieren": [[76, "items-user-attribute-implementieren"]], "Items: Hinzuf\u00fcgen von Items w\u00e4hrend der Laufzeit": [[76, "items-hinzufugen-von-items-wahrend-der-laufzeit"]], "Items: Einzelne Attribute w\u00e4hrend der Laufzeit \u00e4ndern": [[76, "items-einzelne-attribute-wahrend-der-laufzeit-andern"]], "Weitere Loglevel einf\u00fchren": [[76, "weitere-loglevel-einfuhren"]], "lib.color": [[76, "lib-color"]], "Web Interfaces": [[76, "web-interfaces"], [251, "web-interfaces"]], "Update Routinen f\u00fcr die Konfiguration bei neuen Releases implementieren": [[76, "update-routinen-fur-die-konfiguration-bei-neuen-releases-implementieren"]], "MQTT Modul Erweiterungen": [[76, "mqtt-modul-erweiterungen"]], "Admin GUI": [[76, "admin-gui"]], "Websocket Nutzdaten Protokoll f\u00fcr shngadmin": [[76, "websocket-nutzdaten-protokoll-fur-shngadmin"]], "Nach Core Neustart die Server infos neu lesen": [[76, "nach-core-neustart-die-server-infos-neu-lesen"]], "Admin GUI shngadmin: Dark Mode?": [[76, "admin-gui-shngadmin-dark-mode"]], "hue2": [[76, "hue2"], [212, "hue2"]], "rtr2": [[76, "rtr2"], [289, "rtr2"]], "smartvisu": [[76, "smartvisu"], [302, "smartvisu"]], "tasmota": [[76, "tasmota"], [337, "tasmota"]], "Tool zur formalen Pr\u00fcfung von Plugins": [[76, "tool-zur-formalen-prufung-von-plugins"]], "Impressum": [[77, "impressum"]], "Angaben gema\u0308\u00df \u00a7 5 TMG": [[77, "angaben-gemasz-5-tmg"]], "Kontakt": [[77, "kontakt"]], "Haftung fu\u0308r Inhalte": [[77, "haftung-fur-inhalte"]], "Haftung fu\u0308r Links": [[77, "haftung-fur-links"]], "Urheberrecht": [[77, "urheberrecht"]], "SmartHomeNG": [[78, "smarthomeng"]], "Dokumentation": [[78, "dokumentation"], [641, "dokumentation"], [652, "dokumentation"], [653, "dokumentation"], [654, "dokumentation"], [655, "dokumentation"], [656, "dokumentation"], [671, "dokumentation"], [672, "dokumentation"], [674, "dokumentation"], [675, "dokumentation"]], "Hard- u. Software Anforderungen": [[79, "hard-u-software-anforderungen"]], "Hardware": [[79, "hardware"], [305, "hardware"], [309, "hardware"]], "Virtuelle Maschine": [[79, "virtuelle-maschine"]], "Raspberry Pi 3 oder 4": [[79, "raspberry-pi-3-oder-4"]], "Vorteile:": [[79, "vorteile"], [79, "id1"], [79, "id3"], [79, "id5"]], "Nachteile:": [[79, "nachteile"], [79, "id2"], [79, "id4"], [79, "id6"]], "Intel NUC oder vergleichbar": [[79, "intel-nuc-oder-vergleichbar"]], "NAS (z.B. Synology, QNAP)": [[79, "nas-z-b-synology-qnap"]], "Weitere Einplatinencomputer (Banana PI, ODroid, BeagleBone, etc.)": [[79, "weitere-einplatinencomputer-banana-pi-odroid-beaglebone-etc"]], "Betriebssysteme": [[79, "betriebssysteme"]], "Python Versionen": [[79, "python-versionen"]], "Minimum Python Version": [[79, "minimum-python-version"], [646, "minimum-python-version"], [647, "minimum-python-version"], [648, "minimum-python-version"], [649, "minimum-python-version"], [650, "minimum-python-version"], [651, "minimum-python-version"], [652, "minimum-python-version"], [653, "minimum-python-version"], [654, "minimum-python-version"], [655, "minimum-python-version"], [656, "minimum-python-version"]], "Unterst\u00fctzte Python Versionen": [[79, "unterstutzte-python-versionen"], [641, "unterstutzte-python-versionen"], [643, "unterstutzte-python-versionen"], [644, "unterstutzte-python-versionen"], [645, "unterstutzte-python-versionen"], [646, "unterstutzte-python-versionen"], [649, "unterstutzte-python-versionen"], [650, "unterstutzte-python-versionen"], [651, "unterstutzte-python-versionen"], [652, "unterstutzte-python-versionen"], [653, "unterstutzte-python-versionen"], [654, "unterstutzte-python-versionen"], [655, "unterstutzte-python-versionen"], [656, "unterstutzte-python-versionen"], [671, "unterstutzte-python-versionen"], [672, "unterstutzte-python-versionen"], [674, "unterstutzte-python-versionen"], [675, "unterstutzte-python-versionen"], [691, "unterstutzte-python-versionen"]], "Zur Verdeutlichung": [[79, "id8"]], "Aktive Python Releases (wie auf python.org dokumentiert)": [[79, "id9"]], "Python (und PHP) Versionen unter Linux": [[79, "python-und-php-versionen-unter-linux"]], "Distributionen und enthaltene Python und PHP Versionen": [[79, "id10"]], "Installation \u00fcber Docker": [[80, "installation-uber-docker"]], "Docker-Compose": [[80, "docker-compose"]], "Anleitung": [[80, "anleitung"]], "Installation": [[81, "installation"], [221, "installation"], [269, "installation"], [284, "installation"]], "Debian Linux installieren": [[82, "debian-linux-installieren"]], "Softwareauswahl": [[82, "softwareauswahl"]], "Einloggen via SSH oder an der Konsole": [[82, "einloggen-via-ssh-oder-an-der-konsole"]], "Systemaktualisierung": [[82, "systemaktualisierung"]], "Raspberry Pi": [[82, null]], "Restarbeiten am System": [[82, "restarbeiten-am-system"]], "sudo f\u00fcr User smarthome": [[82, "sudo-fur-user-smarthome"]], "Standby/Energiesparmodus abschalten": [[82, "standby-energiesparmodus-abschalten"]], "Anpassung f\u00fcr die smartVISU": [[82, "anpassung-fur-die-smartvisu"]], "Anpassung der Userumgebung": [[82, "anpassung-der-userumgebung"]], "System abschalten": [[82, "system-abschalten"]], "zus\u00e4tzliche Linux Pakete installieren": [[83, "zusatzliche-linux-pakete-installieren"], [87, "zusatzliche-linux-pakete-installieren"], [88, "zusatzliche-linux-pakete-installieren"]], "SmartHomeNG Quellcode laden": [[83, "smarthomeng-quellcode-laden"]], "Weitere Python Bibliotheken installieren": [[83, "weitere-python-bibliotheken-installieren"]], "Erstmaliger Start von SmartHomeNG": [[83, "erstmaliger-start-von-smarthomeng"]], "SmartHomeNG starten": [[83, "smarthomeng-starten"], [83, "id1"]], "\u00dcberpr\u00fcfen, ob SmartHomeNG l\u00e4uft": [[83, "uberprufen-ob-smarthomeng-lauft"]], "Initiale Konfiguration per GUI": [[83, "initiale-konfiguration-per-gui"]], "SmartHomeNG konfigurieren": [[83, "smarthomeng-konfigurieren"]], "Erstmalige Konfiguration per Kommandozeile (f\u00fcr Fortgeschrittene)": [[83, "erstmalige-konfiguration-per-kommandozeile-fur-fortgeschrittene"]], "smarthome.yaml": [[83, "smarthome-yaml"], [103, "smarthome-yaml"], [113, "smarthome-yaml"]], "logging.yaml": [[83, "logging-yaml"], [107, "logging-yaml"], [160, "logging-yaml"]], "module.yaml": [[83, "module-yaml"], [110, "module-yaml"]], "Admin Interface": [[83, "admin-interface"]], "MQTT Broker installieren": [[84, "mqtt-broker-installieren"]], "Mosquitto als Service einrichten": [[84, "mosquitto-als-service-einrichten"]], "Mosquitto konfigurieren": [[84, "mosquitto-konfigurieren"]], "zus\u00e4tzliche Pakete installieren": [[85, "zusatzliche-pakete-installieren"]], "SmartVISU Quellcode laden": [[85, "smartvisu-quellcode-laden"]], "Zugriff auf die SmartVISU testen": [[85, "zugriff-auf-die-smartvisu-testen"]], "Eigene Visu Seiten anlegen": [[85, "eigene-visu-seiten-anlegen"]], "Nachinstallation der Kurzanleitung": [[85, "nachinstallation-der-kurzanleitung"]], "SmartHomeNG Plugin visu_smartvisu": [[85, "smarthomeng-plugin-visu-smartvisu"]], "Mischung von generierten und manuell erstellten Seiten": [[85, "mischung-von-generierten-und-manuell-erstellten-seiten"], [302, "mischung-von-generierten-und-manuell-erstellten-seiten"], [354, "mischung-von-generierten-und-manuell-erstellten-seiten"]], "knxd unter Debian installieren": [[86, "knxd-unter-debian-installieren"]], "knxd konfigurieren": [[86, "knxd-konfigurieren"]], "knxd testen": [[86, "knxd-testen"]], "knxd und systemd": [[86, "knxd-und-systemd"]], "SmartHomeNG Plugin konfigurieren": [[86, "smarthomeng-plugin-konfigurieren"], [87, "smarthomeng-plugin-konfigurieren"]], "Owserver konfigurieren": [[87, "owserver-konfigurieren"]], "Samba konfigurieren": [[88, "samba-konfigurieren"]], "SmartHomeNG als Dienst update": [[89, "smarthomeng-als-dienst-update"]], "Einrechten des Dienstes": [[89, "einrechten-des-dienstes"]], "Nutzung eines virtuellen Environments neu": [[89, "nutzung-eines-virtuellen-environments-neu"]], "Starten des Dienstes": [[89, "starten-des-dienstes"], [90, "starten-des-dienstes"]], "ESPHome Dashboard new": [[90, "esphome-dashboard-new"]], "ESPHome Dashboard starten und testen": [[90, "esphome-dashboard-starten-und-testen"]], "ESPHome Dashboard als Dienst einrichten": [[90, "esphome-dashboard-als-dienst-einrichten"]], "Komplettanleitung": [[91, "komplettanleitung"]], "Update von einer \u00e4lteren Version": [[92, "update-von-einer-alteren-version"]], "Vorgehensweise": [[92, "vorgehensweise"], [92, "id1"]], "Plan B": [[92, "plan-b"]], "Betriebssystemupdate": [[92, "betriebssystemupdate"]], "Versionsdetails": [[92, "versionsdetails"]], "Update von SmarthomeNG ab v1.6 und h\u00f6her": [[92, "update-von-smarthomeng-ab-v1-6-und-hoher"]], "Update von SmarthomeNG ab v1.1 und h\u00f6her": [[92, "update-von-smarthomeng-ab-v1-1-und-hoher"]], "Upgrade von Smarthome.py": [[92, "upgrade-von-smarthome-py"]], "Konvertierung von *.conf-Dateien": [[92, "konvertierung-von-conf-dateien"]], "Konfiguration \u00fcber die GUI": [[93, "konfiguration-uber-die-gui"]], "Konfigurations-Dialoge": [[93, "konfigurations-dialoge"]], "Editoren f\u00fcr YAML Konfigurationen": [[93, "editoren-fur-yaml-konfigurationen"]], "Konfiguration von Items": [[94, "konfiguration-von-items"], [371, "konfiguration-von-items"]], "Konfiguration von Plugins": [[95, "konfiguration-von-plugins"]], "Hinzuf\u00fcgen von Plugins": [[95, "hinzufugen-von-plugins"]], "Systemkonfiguration": [[96, "systemkonfiguration"]], "Konfiguration der Feiertage": [[96, "konfiguration-der-feiertage"]], "\u00dcberblick": [[97, "uberblick"], [100, "uberblick"], [643, "uberblick"], [644, "uberblick"], [645, "uberblick"], [646, "uberblick"], [647, "uberblick"], [648, "uberblick"], [649, "uberblick"], [650, "uberblick"], [651, "uberblick"], [652, "uberblick"], [653, "uberblick"], [654, "uberblick"], [655, "uberblick"], [656, "uberblick"], [685, "uberblick"], [689, "uberblick"]], "struct-Templates in Plugins": [[97, "struct-templates-in-plugins"]], "Anwendung": [[97, "anwendung"], [97, "id1"]], "Multi-Instance Unterst\u00fctzung": [[97, "multi-instance-unterstutzung"]], "selbst definierte struct-Templates": [[97, "selbst-definierte-struct-templates"]], "Verschachtelte struct Definitionen (nested structs)": [[97, "verschachtelte-struct-definitionen-nested-structs"]], "Re-Definieren von Attributen (au\u00dfer list-Attributen)": [[97, "re-definieren-von-attributen-auszer-list-attributen"]], "Re-Definieren von list-Attributen": [[97, "re-definieren-von-list-attributen"]], "Verhalten bei struct in einem Item": [[97, "verhalten-bei-struct-in-einem-item"]], "Verhalten bei sub-struct in struct": [[97, "verhalten-bei-sub-struct-in-struct"]], "Verwendung mehrerer Definitionsdateien": [[97, "verwendung-mehrerer-definitionsdateien"]], "Initiale Item-Konfiguration": [[98, "initiale-item-konfiguration"]], "Beispiele f\u00fcr erstmaliges Setup": [[98, "beispiele-fur-erstmaliges-setup"]], "Namensvergabe": [[100, "namensvergabe"]], "Attribute": [[100, "attribute"], [230, "attribute"], [256, "attribute"], [313, "attribute"]], "Properties und Funktionen": [[100, "properties-und-funktionen"]], "Konfiguration Update": [[101, "konfiguration-update"]], "Konfiguration Sichern und Wiederherstellen": [[102, "konfiguration-sichern-und-wiederherstellen"]], "Sichern": [[102, "sichern"]], "Wiederherstellen": [[102, "wiederherstellen"]], "Umfang der Sicherung": [[102, "umfang-der-sicherung"]], "Allgemeines zur Konfiguration": [[103, "allgemeines-zur-konfiguration"]], "Verzeichnisse in SmartHomeNG": [[103, "verzeichnisse-in-smarthomeng"]], "Dateien im Verzeichnis ../etc": [[103, "dateien-im-verzeichnis-etc"]], "Weitere Dateien": [[103, "weitere-dateien"]], "Dateien im Verzeichnis ../functions": [[103, "dateien-im-verzeichnis-functions"]], "Dateien im Verzeichnis ../items": [[103, "dateien-im-verzeichnis-items"]], "holidays.yaml": [[104, "holidays-yaml"]], "Benutzerdefinierte Feiertage": [[104, "benutzerdefinierte-feiertage"]], "Konfigurationsdatei": [[104, "konfigurationsdatei"]], "items/*.yaml": [[105, "items-yaml"]], "Item Definitionen im Verzeichnis ../items": [[105, "item-definitionen-im-verzeichnis-items"]], "Konfiguration \u00fcber Dateien": [[106, "konfiguration-uber-dateien"]], "Verzeichnisse": [[106, "verzeichnisse"]], "Verzeichnis ../etc": [[106, "verzeichnis-etc"]], "Verzeichnis ../items": [[106, "verzeichnis-items"]], "Verzeichnis ../logics": [[106, "verzeichnis-logics"]], "Verzeichnis ../scenes": [[106, "verzeichnis-scenes"]], "Aufbau der Konfigurationsdateien": [[106, "aufbau-der-konfigurationsdateien"]], "Neues Dateiformat - .yaml Dateien": [[106, "neues-dateiformat-yaml-dateien"]], "Formate von Values in YAML Dateien": [[106, "formate-von-values-in-yaml-dateien"]], "Besonderheiten boolscher Werte": [[106, "besonderheiten-boolscher-werte"]], "Besonderheiten bei der Angabe von Wertelisten": [[106, "besonderheiten-bei-der-angabe-von-wertelisten"]], "Beispiel von Item Definitionen in YAML": [[106, "beispiel-von-item-definitionen-in-yaml"]], "Konvertierung von .conf Dateien in das YAML Format": [[106, "konvertierung-von-conf-dateien-in-das-yaml-format"]], "Nacharbeiten": [[106, "nacharbeiten"]], "Vorteile von YAML": [[106, "vorteile-von-yaml"]], "Altes Dateiformat - .conf Dateien": [[106, "altes-dateiformat-conf-dateien"]], "YAML Syntax": [[106, "yaml-syntax"]], "Grundlegende YAML Regeln": [[106, "grundlegende-yaml-regeln"]], "Basis DataTypen in YAML": [[106, "basis-datatypen-in-yaml"]], "Skalare": [[106, "skalare"]], "Sequenzen": [[106, "sequenzen"]], "Zuordnungen": [[106, "zuordnungen"]], "Kommentare": [[106, "kommentare"]], "Konfigurationsdateien": [[106, "konfigurationsdateien"]], "logics/*.py": [[109, "logics-py"]], "Logik Code im Verzeichnis ../logics": [[109, "logik-code-im-verzeichnis-logics"]], "Referenzierung eines Plugins in der Konfiguration": [[111, "referenzierung-eines-plugins-in-der-konfiguration"]], "Nutzung einer \u00e4lteren Version eines Plugins": [[111, "nutzung-einer-alteren-version-eines-plugins"]], "scenes/*.yaml": [[112, "scenes-yaml"]], "Szenen Definitionen im Verzeichnis ../scenes": [[112, "szenen-definitionen-im-verzeichnis-scenes"]], "altes Konfigurationsformat": [[112, "altes-konfigurationsformat"]], "Neuerungen ab SmartHomeNG v1.4": [[112, "neuerungen-ab-smarthomeng-v1-4"]], "Konfiguration im YAML Format": [[112, "konfiguration-im-yaml-format"]], "struct.yaml und struct_*.yaml": [[114, "struct-yaml-und-struct-yaml"]], "Logging": [[115, "logging"], [322, "logging"], [582, "logging"]], "Log Level": [[115, "id1"]], "Konfiguration des Loggings": [[115, "konfiguration-des-loggings"]], "Kurzdoku der Eintr\u00e4ge in der Konfigurationsdatei": [[115, "kurzdoku-der-eintrage-in-der-konfigurationsdatei"]], "Logging Handler und Filter": [[115, "logging-handler-und-filter"]], "Plugin und Logik Entwicklung": [[115, "plugin-und-logik-entwicklung"]], "Logging der Ver\u00e4nderung von Items": [[115, "logging-der-veranderung-von-items"]], "Best Practices": [[115, "best-practices"]], "Logging - Best Practices": [[116, "logging-best-practices"]], "Grundkonfiguration des Loggings": [[116, "grundkonfiguration-des-loggings"]], "Konfiguration zus\u00e4tzlicher Logausgaben": [[116, "konfiguration-zusatzlicher-logausgaben"]], "Identifizieren von Neustarts im Zusatzlog": [[116, "identifizieren-von-neustarts-im-zusatzlog"]], "Ein besserer simple-Formatter": [[116, "ein-besserer-simple-formatter"]], "Erweiterte Konfigurationen des Loggings": [[116, "erweiterte-konfigurationen-des-loggings"]], "Logging Filter": [[116, "logging-filter"], [583, "logging-filter"]], "Erweitertes Logging f\u00fcr die Plugin Entwicklung": [[116, "erweitertes-logging-fur-die-plugin-entwicklung"]], "Standardparameter": [[117, "standardparameter"], [592, "standardparameter"], [600, "standardparameter"]], "Module admin": [[119, "module-admin"]], "Datei ../etc/module.yaml": [[119, "datei-etc-module-yaml"], [120, "datei-etc-module-yaml"], [121, "datei-etc-module-yaml"], [122, "datei-etc-module-yaml"]], "Module websocket Neu": [[122, "module-websocket-neu"]], "Multi-Instance F\u00e4higkeit": [[123, "multi-instance-fahigkeit"]], "Liste der verf\u00fcgbaren Plugins": [[123, "liste-der-verfugbaren-plugins"]], "Funktionsweise von Szenen": [[124, "funktionsweise-von-szenen"]], "Userfunctions": [[125, "userfunctions"], [638, "userfunctions"]], "lib.config": [[126, "module-lib.config"]], "lib.connection": [[127, "module-lib.connection"]], "lib.constants": [[128, "module-lib.constants"]], "lib.daemon": [[129, "module-lib.daemon"]], "lib.db": [[130, "module-lib.db"]], "lib.env": [[131, "lib-env"]], "Items-API": [[132, "items-api"]], "class Item": [[132, "class-item"]], "class Items": [[132, "class-items"]], "Class Item": [[133, "class-item"]], "Class Items": [[134, "class-items"]], "lib.item_conversion": [[135, "module-lib.item_conversion"]], "lib.log": [[136, "module-lib.log"]], "Logics-API": [[137, "logics-api"]], "lib.logic": [[137, "module-lib.logic"]], "lib.logutils": [[138, "module-lib.logutils"]], "lib.metadata": [[139, "lib-metadata"]], "lib.module": [[140, "module-lib.module"]], "lib.orb": [[142, "module-lib.orb"]], "Plugins-API": [[143, "plugins-api"]], "lib.plugin": [[143, "lib-plugin"]], "class PluginWrapper": [[143, "class-pluginwrapper"]], "class Plugins": [[143, "class-plugins"]], "Class Plugins": [[144, "class-plugins"]], "Class PluginWrapper": [[145, "class-pluginwrapper"]], "lib.scene": [[146, "module-lib.scene"]], "Scheduler-API": [[147, "scheduler-api"]], "lib.scheduler": [[147, "module-lib.scheduler"]], "Shtime-API": [[148, "shtime-api"]], "lib.shtime": [[148, "module-lib.shtime"]], "lib.shyaml": [[149, "module-lib.shyaml"]], "lib.tools": [[150, "module-lib.tools"]], "lib.translation": [[151, "lib-translation"]], "lib.utils": [[152, "module-lib.utils"]], "Module admin (README)": [[154, "module-admin-readme"]], "API des Moduls admin": [[154, "api-des-moduls-admin"]], "AUTH API - Authentification for clients": [[154, "auth-api-authentification-for-clients"]], "POST /api/auth/": [[154, "post-api-auth"]], "CONFIG API - Get and update information about the core\u2019s configuration": [[154, "config-api-get-and-update-information-about-the-core-s-configuration"]], "GET /api/config": [[154, "get-api-config"]], "GET /api/config/": [[154, "get-api-config-module-or-common"]], "PUT /api/config/": [[154, "put-api-config-module-or-common"]], "LOGICS API - xxx": [[154, "logics-api-xxx"]], "???": [[154, "id1"]], "LOGS API - Get information about logs and get log content": [[154, "logs-api-get-information-about-logs-and-get-log-content"]], "GET /api/logs": [[154, "get-api-logs"]], "GET /api/logs/": [[154, "get-api-logs-logname"]], "PLUGINS API - Get information about installed or configured plugins": [[154, "plugins-api-get-information-about-installed-or-configured-plugins"]], "GET /api/plugins": [[154, "get-api-plugins"]], "GET /api/plugins/config": [[154, "get-api-plugins-config"]], "PLUGIN API - Handle a single plugin configuration": [[154, "plugin-api-handle-a-single-plugin-configuration"]], "POST /api/plugin/config/": [[154, "post-api-plugin-config-neu"]], "PUT /api/plugin/config/": [[154, "put-api-plugin-config-plgsection"]], "DELETE /api/plugin/config/": [[154, "delete-api-plugin-config-plgsection"]], "SCENES API - Get information about configured scenes": [[154, "scenes-api-get-information-about-configured-scenes"]], "SCHEDULER API - Get information about configured schedulers": [[154, "scheduler-api-get-information-about-configured-schedulers"]], "SCHEDULER API - Get information about the SmartHomeNG server configuration": [[154, "scheduler-api-get-information-about-the-smarthomeng-server-configuration"]], "THREADS API - Get information about running threads": [[154, "threads-api-get-information-about-running-threads"]], "STATUS API - Get running status of the SmartHomeNG server instance": [[154, "status-api-get-running-status-of-the-smarthomeng-server-instance"]], "RESTART API - Restart the SmartHomeNG server instance": [[154, "restart-api-restart-the-smarthomeng-server-instance"]], "": [[154, "id2"]], "Test if module admin is loaded": [[154, "test-if-module-admin-is-loaded"]], "Requests von der Admin GUI an SmartHomeNG": [[155, "requests-von-der-admin-gui-an-smarthomeng"]], "item": [[155, "item"], [304, "item"], [356, "item"], [357, "item"], [396, "item"], [398, "item"], [519, "item"], [519, "id2"], [519, "id5"], [519, "id6"], [519, "id7"], [519, "id9"]], "monitor": [[155, "monitor"], [304, "monitor"], [356, "monitor"], [357, "monitor"]], "ping": [[155, "ping"], [304, "ping"], [356, "ping"], [357, "ping"]], "series": [[155, "series"], [304, "series"], [356, "series"], [357, "series"]], "series_cancel": [[155, "series-cancel"], [304, "series-cancel"], [356, "series-cancel"], [357, "series-cancel"]], "log": [[155, "log"], [304, "log"], [356, "log"], [357, "log"]], "log_cancel": [[155, "log-cancel"], [304, "log-cancel"]], "proto": [[155, "proto"], [304, "proto"], [356, "proto"], [357, "proto"]], "identity": [[155, "identity"], [304, "identity"], [356, "identity"], [357, "identity"]], "Requests von SmartHomeNG an die smartVISU": [[156, "requests-von-smarthomeng-an-die-smartvisu"], [303, "requests-von-smarthomeng-an-die-smartvisu"]], "dialog": [[156, "dialog"], [303, "dialog"], [356, "dialog"], [357, "dialog"]], "url": [[156, "url"], [303, "url"], [356, "url"], [357, "url"], [430, "url"], [431, "url"], [471, "url"], [472, "url"], [496, "url"], [524, "url"], [525, "url"], [527, "url"]], "Module http (README)": [[157, "module-http-readme"]], "user (optional)": [[157, "user-optional"]], "password (optional)": [[157, "password-optional"], [158, "password-optional"]], "hashed_password (optional)": [[157, "hashed-password-optional"], [158, "hashed-password-optional"]], "service_user (optional": [[157, "service-user-optional"], [158, "service-user-optional"]], "service_password (optional)": [[157, "service-password-optional"], [158, "service-password-optional"]], "service_hashed_password (optional)": [[157, "service-hashed-password-optional"], [158, "service-hashed-password-optional"]], "port (optional)": [[157, "port-optional"], [158, "port-optional"]], "servicesport (optional)": [[157, "servicesport-optional"], [158, "servicesport-optional"]], "showpluginlist": [[157, "showpluginlist"], [158, "showpluginlist"]], "showservicelist": [[157, "showservicelist"], [158, "showservicelist"]], "starturl (optional)": [[157, "starturl-optional"], [158, "starturl-optional"]], "threads (optional)": [[157, "threads-optional"], [158, "threads-optional"]], "showtraceback": [[157, "showtraceback"], [158, "showtraceback"]], "webif_pagelength": [[157, "webif-pagelength"]], "API of module http": [[157, "api-of-module-http"]], "Test if module http is loaded": [[157, "test-if-module-http-is-loaded"]], "Registering a web application/interface": [[157, "registering-a-web-application-interface"]], "Implementing a web interface for you plugin": [[157, "implementing-a-web-interface-for-you-plugin"]], "get_local_ip_address()": [[157, "get-local-ip-address"], [158, "get-local-ip-address"]], "get_local_hostname()": [[157, "get-local-hostname"], [158, "get-local-hostname"]], "get_local_port()": [[157, "get-local-port"], [158, "get-local-port"]], "get_local_servicesport( \u2026 )": [[157, "get-local-servicesport"], [158, "get-local-servicesport"]], "register_app()": [[157, "register-app"], [158, "register-app"]], "register_service( \u2026 )": [[157, "register-service"], [158, "register-service"]], "Module mqtt (README)": [[158, "module-mqtt-readme"]], "user (optional": [[158, "user-optional"]], "API of module mqtt": [[158, "api-of-module-mqtt"]], "SmartHomeNG Plugins": [[159, "smarthomeng-plugins"]], "Aktueller Status der Entwicklung": [[159, "aktueller-status-der-entwicklung"]], "Other languages": [[159, "other-languages"]], "Alexa": [[160, "alexa"]], "Alexa Setup": [[160, "alexa-setup"]], "AWS Lambda": [[160, "aws-lambda"]], "Shortcomings / Pitfalls": [[160, "shortcomings-pitfalls"]], "items.conf": [[160, "items-conf"]], "NGINX": [[161, "nginx"]], "Install (debian)": [[161, "install-debian"]], "/etc/nginx/nginx.conf": [[161, "etc-nginx-nginx-conf"]], "/etc/nginx/include.d/common": [[161, "etc-nginx-include-d-common"]], "/etc/nginx/sites-available/your-home": [[161, "etc-nginx-sites-available-your-home"]], "/etc/nginx/sites-enabled/your-home": [[161, "etc-nginx-sites-enabled-your-home"]], "Sitemap": [[161, "sitemap"]], "User & Passwords": [[161, "user-passwords"]], "Let\u2019s Encrypt SSL Certificate": [[161, "let-s-encrypt-ssl-certificate"]], "alexa4p3": [[162, "alexa4p3"], [163, "alexa4p3"]], "Table of Content": [[162, "table-of-content"], [219, "table-of-content"]], "Beispiel-Konfigurationen Neu": [[162, "beispiel-konfigurationen-neu"]], "\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013": [[162, "id1"]], "Generell ": [[162, "generell"]], "Change Log ": [[162, "change-log"]], "20.10.2020": [[162, "id2"]], "11.04.2020": [[162, "id3"]], "12.03.2020": [[162, "id4"]], "07.12.2019": [[162, "id5"]], "06.12.2019 - zum Nikolaus :-)": [[162, "zum-nikolaus"]], "01.12.2019": [[162, "id6"]], "20.04.2019": [[162, "id7"]], "17.02.2019": [[162, "id8"]], "26.01.2019": [[162, "id9"]], "19.01.2019": [[162, "id10"]], "31.12.2018": [[162, "id11"]], "24.12.2018": [[162, "id12"]], "12.12.2018": [[162, "id13"]], "Requrirements": [[162, "requrirements"]], "Amazon Skill / Lambda": [[162, "amazon-skill-lambda"]], "Icons / Catagories": [[162, "icons-catagories"]], "Entwicklung / Einbau von neuen F\u00e4higkeiten ": [[162, "entwicklung-einbau-von-neuen-fahigkeiten"]], "Alexa-ThermostatController + Thermosensor ": [[162, "alexa-thermostatcontroller-thermosensor"]], "Thermostatsensor": [[162, "thermostatsensor"]], "Ver\u00e4ndern der Temperatur (SetTargetTemperature AdjustTargetTemperature)": [[162, "verandern-der-temperatur-settargettemperature-adjusttargettemperature"]], "Thermostatmode": [[162, "thermostatmode"]], "Alexa-PowerController": [[162, "alexa-powercontroller"]], "Alexa-BrightnessController": [[162, "alexa-brightnesscontroller"]], "Alexa-PowerLevelController": [[162, "alexa-powerlevelcontroller"]], "!!!! erst ab Plugin-Version 1.0.1 oder h\u00f6her !!!!": [[162, "erst-ab-plugin-version-1-0-1-oder-hoher"], [162, "id14"], [162, "id15"]], "Alexa-PercentageController": [[162, "alexa-percentagecontroller"]], "Alexa-LockController": [[162, "alexa-lockcontroller"]], "Alexa-CameraStreamContoller": [[162, "alexa-camerastreamcontoller"]], "alexa_csc_proxy_uri Update: URL \u00fcber DynDNS vergeben um die Kamera mittels CamProxy4AlexaP3 zu streamen": [[162, "alexa-csc-proxy-uri-update-url-uber-dyndns-vergeben-um-die-kamera-mittels-camproxy4alexap3-zu-streamen"]], "alexa_proxy_credentials Update: Zugangsdaten f\u00fcr den AlexaCamProxy falls dieser mit Authentication \u201eBasic\u201c oder \u201eDigest\u201c parametriert wird. Angabe in der Form \u201eUSER\u201c:\u201cPWD\u201c": [[162, "alexa-proxy-credentials-update-zugangsdaten-fur-den-alexacamproxy-falls-dieser-mit-authentication-basic-oder-digest-parametriert-wird-angabe-in-der-form-user-pwd"]], "alexa_camera_imageUri: die URL des Vorschau-Pictures der Kamera": [[162, "alexa-camera-imageuri-die-url-des-vorschau-pictures-der-kamera"]], "alexa_stream_1: Definition f\u00fcr den ersten Stream der Kamara, es werden bis zu 3 Streams unterst\u00fctzt. Hier m\u00fcssen die Details zum Stream definiert werden (protocol = rtsp, resolutions = Array mit der Aufl\u00f6sung, authorizationTypes = Autorisierung, videoCodecs = Array der VideoCodes, autoCodecs = Array der Audiocodes)": [[162, "alexa-stream-1-definition-fur-den-ersten-stream-der-kamara-es-werden-bis-zu-3-streams-unterstutzt-hier-mussen-die-details-zum-stream-definiert-werden-protocol-rtsp-resolutions-array-mit-der-auflosung-authorizationtypes-autorisierung-videocodecs-array-der-videocodes-autocodecs-array-der-audiocodes"]], "alexa_csc_uri: Auflistung der Stream-URL\u00b4s f\u00fcr Stream1: / Stream2: / Stream3": [[162, "alexa-csc-uri-auflistung-der-stream-url-s-fur-stream1-stream2-stream3"]], "Alexa-SceneController": [[162, "alexa-scenecontroller"]], "ContactSensor Interface ": [[162, "contactsensor-interface"]], "ColorController ": [[162, "colorcontroller"]], "RangeController ": [[162, "rangecontroller"]], "ColorTemperaturController ": [[162, "colortemperaturcontroller"]], "PlaybackController ": [[162, "playbackcontroller"]], "Alexa, stoppe den Rolladen B\u00fcro": [[162, "alexa-stoppe-den-rolladen-buro"]], "Web-Interface": [[162, "web-interface"], [219, "web-interface"], [310, "web-interface"]], "Der fast perfekte Rolladen": [[162, "der-fast-perfekte-rolladen"]], "!! Wichtig !!": [[162, "wichtig"]], "Items in Abh\u00e4ngikeit des letzten benutzten Echos-Devices schalten": [[162, "items-in-abhangikeit-des-letzten-benutzten-echos-devices-schalten"]], "Webinterface": [[163, "webinterface"], [203, "webinterface"], [321, "webinterface"]], "Beispielfunktionen": [[163, "beispielfunktionen"]], "Webinterface-Funktionen": [[163, "webinterface-funktionen"]], "alexarc4shng": [[164, "alexarc4shng"]], "Voraussetzungen": [[164, "voraussetzungen"], [172, "voraussetzungen"], [207, "voraussetzungen"]], "Cookie": [[164, "cookie"]], "Anmeldedaten": [[164, "anmeldedaten"]], "Radiostation": [[164, "radiostation"]], "Text senden": [[164, "text-senden"]], "Beispiel Itemdefinition": [[164, "beispiel-itemdefinition"]], "Platzhalter": [[164, "platzhalter"]], "Kommandos erstellen": [[164, "kommandos-erstellen"]], "Ger\u00e4te": [[164, "gerate"]], "Kommandos verwalten": [[164, "kommandos-verwalten"]], "Bestehende Commandlets": [[164, "bestehende-commandlets"]], "SSML Hinweise": [[164, "ssml-hinweise"]], "Danksagung": [[164, "danksagung"]], "Disclaimer": [[164, "disclaimer"]], "apcups": [[165, "apcups"], [377, "apcups"]], "Schl\u00fcssel auslesen": [[165, "schlussel-auslesen"]], "Status Report Fields": [[165, "status-report-fields"]], "appletv": [[166, "appletv"], [378, "appletv"]], "Struct Vorlagen": [[166, "struct-vorlagen"], [169, "struct-vorlagen"], [191, "struct-vorlagen"], [201, "struct-vorlagen"], [238, "struct-vorlagen"], [264, "struct-vorlagen"], [267, "struct-vorlagen"], [319, "struct-vorlagen"]], "SmartVISU": [[166, "smartvisu"], [347, "smartvisu"]], "artnet": [[167, "artnet"]], "Unterst\u00fctzte Hardware": [[167, "unterstutzte-hardware"], [192, "unterstutzte-hardware"], [255, "unterstutzte-hardware"], [346, "unterstutzte-hardware"]], "plugins.yaml": [[167, "plugins-yaml"]], "asterisk": [[168, "asterisk"]], "ast_dev": [[168, "ast-dev"], [380, "ast-dev"]], "ast_db": [[168, "ast-db"], [380, "ast-db"]], "ast_box": [[168, "ast-box"], [380, "ast-box"]], "call(source, dest, context, callerid=None)": [[168, "call-source-dest-context-callerid-none"]], "db_write(key, value)": [[168, "db-write-key-value"], [380, "db-write-key-value"]], "db_read(key)": [[168, "db-read-key"], [380, "db-read-key"]], "mailbox_count(mailbox, context=\u2018default\u2018)": [[168, "mailbox-count-mailbox-context-default"]], "hangup(device)": [[168, "hangup-device"], [380, "hangup-device"]], "avdevice": [[169, "avdevice"], [381, "avdevice"]], "avdevice_zone[0-4]@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-instanz-funktion"]], "avdevice_zone[0-4]_speakers@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-speakers-instanz-funktion"]], "avdevice_zone[0-4]_depend@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-depend-instanz-funktion"]], "avdevice_zone[0-4]_init@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-init-instanz-funktion"]], "Kommandos": [[169, "kommandos"], [191, "kommandos"], [201, "kommandos"], [238, "kommandos"], [264, "kommandos"], [267, "kommandos"], [319, "kommandos"], [622, "kommandos"]], "\u00dcbersetzungen": [[169, "ubersetzungen"]], "Wildcards": [[169, "wildcards"]], "Fehlerbehebung": [[169, "fehlerbehebung"]], "avm": [[170, "avm"]], "Allgemeine Informationen": [[170, "allgemeine-informationen"]], "Konfiguration der Fritz!Box": [[170, "konfiguration-der-fritz-box"]], "Konfiguration des Plugins": [[170, "konfiguration-des-plugins"], [285, "konfiguration-des-plugins"], [293, "konfiguration-des-plugins"], [338, "konfiguration-des-plugins"]], "Attribute und Beschreibung": [[170, "attribute-und-beschreibung"]], "TR064-Interface": [[170, "tr064-interface"]], "AHA-Interface": [[170, "aha-interface"]], "Item Beispiel mit Verwendung der structs ohne Instanz": [[170, "item-beispiel-mit-verwendung-der-structs-ohne-instanz"]], "Item Beispiel mit Verwendung der structs mit Instanz": [[170, "item-beispiel-mit-verwendung-der-structs-mit-instanz"]], "Plugin Funktionen": [[170, "plugin-funktionen"]], "cancel_call": [[170, "cancel-call"]], "get_call_origin": [[170, "get-call-origin"]], "get_calllist": [[170, "get-calllist"]], "get_contact_name_by_phone_number(phone_number)": [[170, "get-contact-name-by-phone-number-phone-number"]], "get_device_log_from_lua": [[170, "get-device-log-from-lua"]], "get_device_log_from_tr064": [[170, "get-device-log-from-tr064"]], "get_host_details": [[170, "get-host-details"]], "get_hosts": [[170, "get-hosts"]], "get_hosts_list": [[170, "get-hosts-list"]], "get_phone_name": [[170, "get-phone-name"]], "get_phone_numbers_by_name(name)": [[170, "get-phone-numbers-by-name-name"]], "is_host_active": [[170, "is-host-active"]], "reboot": [[170, "reboot"]], "reconnect": [[170, "reconnect"]], "set_call_origin": [[170, "set-call-origin"]], "start_call": [[170, "start-call"]], "wol(mac_address)": [[170, "wol-mac-address"], [382, "wol-mac-address"]], "get_number_of_deflections": [[170, "get-number-of-deflections"]], "get_deflection": [[170, "get-deflection"]], "get_deflections": [[170, "get-deflections"]], "set_deflection_enable": [[170, "set-deflection-enable"]], "Farb- und Helligkeitseinstellungen bspw. an DECT!500": [[170, "farb-und-helligkeitseinstellungen-bspw-an-dect-500"]], "Farbeinstellung": [[170, "farbeinstellung"]], "Helligkeitseinstellungen": [[170, "helligkeitseinstellungen"]], "Kombinierte Einstellung von Farbe und Helligkeit": [[170, "kombinierte-einstellung-von-farbe-und-helligkeit"]], "Einstellung der Farbtemperatur im \u201eWei\u00df-Modus\u201c": [[170, "einstellung-der-farbtemperatur-im-weisz-modus"]], "Aufruf des Webinterfaces": [[170, "aufruf-des-webinterfaces"], [179, "aufruf-des-webinterfaces"], [184, "aufruf-des-webinterfaces"], [187, "aufruf-des-webinterfaces"], [192, "aufruf-des-webinterfaces"], [200, "aufruf-des-webinterfaces"], [210, "aufruf-des-webinterfaces"], [212, "aufruf-des-webinterfaces"], [213, "aufruf-des-webinterfaces"], [220, "aufruf-des-webinterfaces"], [252, "aufruf-des-webinterfaces"], [255, "aufruf-des-webinterfaces"], [265, "aufruf-des-webinterfaces"], [266, "aufruf-des-webinterfaces"], [268, "aufruf-des-webinterfaces"], [289, "aufruf-des-webinterfaces"], [302, "aufruf-des-webinterfaces"], [309, "aufruf-des-webinterfaces"], [311, "aufruf-des-webinterfaces"], [348, "aufruf-des-webinterfaces"], [349, "aufruf-des-webinterfaces"], [357, "aufruf-des-webinterfaces"], [360, "aufruf-des-webinterfaces"], [366, "aufruf-des-webinterfaces"]], "AVM AVM TR-064 Items": [[170, "avm-avm-tr-064-items"]], "AVM AHA Items": [[170, "avm-aha-items"]], "AVM AHA Devices": [[170, "avm-aha-devices"]], "AVM Call Monitor Items": [[170, "avm-call-monitor-items"]], "AVM Log-Eintr\u00e4ge": [[170, "avm-log-eintrage"]], "AVM Plugin-API": [[170, "avm-plugin-api"]], "Vorgehen bei Funktionserweiterung des Plugins bzw. Erg\u00e4nzung weiterer Werte f\u00fcr Itemattribut avm_data_type": [[170, "vorgehen-bei-funktionserweiterung-des-plugins-bzw-erganzung-weiterer-werte-fur-itemattribut-avm-data-type"]], "avm_smarthome": [[171, "avm-smarthome"]], "Reguirements": [[171, "reguirements"]], "Historie": [[171, "historie"]], "Web Interface des Plugins": [[171, "web-interface-des-plugins"], [285, "web-interface-des-plugins"], [337, "web-interface-des-plugins"]], "Devices": [[171, "devices"]], "Thermostat": [[171, "thermostat"]], "Relais": [[171, "relais"]], "Alarm": [[171, "alarm"]], "blockly": [[172, "blockly"]], "Aktualisierung": [[172, "aktualisierung"]], "Bose Soundtouch Plugin": [[173, "bose-soundtouch-plugin"]], "Version 1.0.1": [[173, "version-1-0-1"]], "Version 1.0.0": [[173, "version-1-0-0"]], "Change history": [[173, "change-history"], [175, "change-history"], [176, "change-history"], [190, "change-history"], [235, "change-history"], [236, "change-history"], [251, "change-history"], [280, "change-history"]], "Changes Since version 1.0.0": [[173, "changes-since-version-1-0-0"]], "Needed software": [[173, "needed-software"], [176, "needed-software"], [190, "needed-software"], [251, "needed-software"], [315, "needed-software"]], "Supported Hardware": [[173, "supported-hardware"], [176, "supported-hardware"], [190, "supported-hardware"], [202, "supported-hardware"], [209, "supported-hardware"], [211, "supported-hardware"], [218, "supported-hardware"], [219, "supported-hardware"], [234, "supported-hardware"], [239, "supported-hardware"], [245, "supported-hardware"], [247, "supported-hardware"], [248, "supported-hardware"], [251, "supported-hardware"], [266, "supported-hardware"], [275, "supported-hardware"], [281, "supported-hardware"], [297, "supported-hardware"], [308, "supported-hardware"], [315, "supported-hardware"], [334, "supported-hardware"], [341, "supported-hardware"], [349, "supported-hardware"]], "Methods": [[173, "methods"], [183, "methods"], [190, "methods"], [193, "methods"], [211, "methods"], [218, "methods"], [234, "methods"], [251, "methods"], [280, "methods"], [361, "methods"]], "Appendix": [[173, "appendix"], [176, "appendix"]], "bose_soundtouch": [[174, "bose-soundtouch"]], "Plugin for BSB-Lan-Adapter": [[175, "plugin-for-bsb-lan-adapter"]], "Version 1.0.2": [[175, "version-1-0-2"]], "Requirements needed software": [[175, "requirements-needed-software"], [235, "requirements-needed-software"], [236, "requirements-needed-software"]], "1) /smarthome/etc/plugin.yaml": [[175, "smarthome-etc-plugin-yaml"], [235, "smarthome-etc-plugin-yaml"], [236, "smarthome-etc-plugin-yaml"], [254, "smarthome-etc-plugin-yaml"]], "2) /smarthome/items/bsblan.yaml": [[175, "smarthome-items-bsblan-yaml"]], "Buderus Plugin": [[176, "buderus-plugin"]], "Changes Since version 1.0.2": [[176, "changes-since-version-1-0-2"]], "REST URLs KM200": [[177, "rest-urls-km200"]], "REST Path /system": [[177, "rest-path-system"]], "REST Path /gateway": [[177, "rest-path-gateway"]], "REST Path /heatSources": [[177, "rest-path-heatsources"]], "REST Path /heatingCircuits": [[177, "rest-path-heatingcircuits"]], "REST Path /dhwCircuits": [[177, "rest-path-dhwcircuits"]], "REST Path /recordings": [[177, "rest-path-recordings"]], "byd_bat": [[178, "byd-bat"]], "casambi": [[179, "casambi"]], "Gateway Hardware": [[179, "gateway-hardware"]], "Changelog": [[179, "changelog"], [195, "changelog"], [216, "changelog"], [248, "changelog"], [249, "changelog"], [273, "changelog"], [274, "changelog"], [278, "changelog"], [309, "changelog"], [310, "changelog"], [338, "changelog"], [351, "changelog"]], "CLI": [[180, "cli"], [333, "cli"]], "Usage": [[180, "usage"], [269, "usage"], [294, "usage"], [296, "usage"], [315, "usage"]], "Example:": [[180, "example"], [198, "example"], [257, "example"], [260, "example"], [278, "id2"], [298, "example"]], "cli": [[181, "cli"]], "Plugin Konfigurationsparameter": [[181, "plugin-konfigurationsparameter"]], "Zugriff auf die CLI": [[181, "zugriff-auf-die-cli"]], "Linux": [[181, "linux"]], "Zugriff via Windows / Putty": [[181, "zugriff-via-windows-putty"]], "CLI Befehle": [[181, "cli-befehle"]], "CO2Meter": [[182, "co2meter"]], "Description": [[182, "description"], [198, "description"], [208, "description"], [294, "description"]], "Attributes": [[182, "attributes"], [198, "attributes"], [231, "attributes"], [240, "attributes"], [245, "attributes"], [257, "attributes"], [278, "attributes"], [278, "id1"], [298, "attributes"], [301, "attributes"], [312, "attributes"], [315, "attributes"], [335, "attributes"], [344, "attributes"]], "co2meter_data_type": [[182, "co2meter-data-type"], [392, "co2meter-data-type"]], "Example": [[182, "example"], [183, "example"], [193, "example"], [195, "example"], [202, "example"], [211, "example"], [234, "example"], [245, "example"], [247, "example"], [248, "example"], [258, "example"], [273, "example"], [273, "id2"], [273, "id4"], [273, "id6"], [273, "id8"], [273, "id10"], [274, "example"], [278, "example"], [288, "example"], [290, "example"], [294, "example"], [305, "example"], [334, "example"], [352, "example"], [355, "example"], [358, "example"], [361, "example"], [686, "example"]], "ComfoAir": [[183, "comfoair"]], "comfoair_send": [[183, "comfoair-send"], [393, "comfoair-send"]], "comfoair_read": [[183, "comfoair-read"], [393, "comfoair-read"]], "comfoair_read_afterwrite": [[183, "comfoair-read-afterwrite"], [393, "comfoair-read-afterwrite"]], "comfoair_read_cycle": [[183, "comfoair-read-cycle"], [393, "comfoair-read-cycle"]], "comfoair_init": [[183, "comfoair-init"], [393, "comfoair-init"]], "comfoair_trigger": [[183, "comfoair-trigger"], [393, "comfoair-trigger"]], "comfoair_trigger_afterwrite": [[183, "comfoair-trigger-afterwrite"], [393, "comfoair-trigger-afterwrite"]], "darksky": [[184, "darksky"]], "Besonderheiten": [[184, "besonderheiten"], [268, "besonderheiten"]], "Instanzen": [[184, "instanzen"], [268, "instanzen"]], "Dashbutton Plugin": [[185, "dashbutton-plugin"]], "Setup your Amazon Dashbutton": [[185, "setup-your-amazon-dashbutton"]], "1. Install scapy": [[185, "install-scapy"]], "2. Install tcpdump": [[185, "install-tcpdump"]], "3. Give unprivileged user access to sniff packets": [[185, "give-unprivileged-user-access-to-sniff-packets"]], "Item setup": [[185, "item-setup"]], "Activate plugin": [[185, "activate-plugin"]], "Item attributes": [[185, "item-attributes"]], "Examples": [[185, "examples"], [190, "examples"], [205, "examples"], [218, "examples"], [235, "examples"], [236, "examples"], [251, "examples"], [254, "examples"]], "Database": [[186, "database"]], "database": [[186, "id1"], [187, "database"], [396, "database"], [428, "database"]], "database_acl": [[186, "database-acl"], [396, "database-acl"]], "database_write_on_shutdown": [[186, "database-write-on-shutdown"], [396, "database-write-on-shutdown"]], "Functions": [[186, "functions"], [195, "functions"], [198, "functions"], [231, "functions"], [240, "functions"], [253, "functions"], [260, "functions"], [273, "functions"], [301, "functions"], [312, "functions"], [317, "functions"], [335, "functions"], [344, "functions"], [355, "functions"], [368, "functions"]], "sh.item.db(function, start, end=\u2018now\u2018)": [[186, "sh-item-db-function-start-end-now"], [317, "sh-item-db-function-start-end-now"]], "sh.item.series(function, start, end=\u2018now\u2018, count=100)": [[186, "sh-item-series-function-start-end-now-count-100"]], "sh.item.dbplugin": [[186, "sh-item-dbplugin"]], "dbplugin.id(item)": [[186, "dbplugin-id-item"]], "dbplugin.db()": [[186, "dbplugin-db"]], "dbplugin.dump(dumpfile, id = None, time = None, time_start = None, time_end = None, changed = None, changed_start = None, changed_end = None, cur = None)": [[186, "dbplugin-dump-dumpfile-id-none-time-none-time-start-none-time-end-none-changed-none-changed-start-none-changed-end-none-cur-none"]], "dbplugin.insertLog(id, time, duration=0, val=None, it=None, changed=None, cur=None)": [[186, "dbplugin-insertlog-id-time-duration-0-val-none-it-none-changed-none-cur-none"]], "dbplugin.updateLog(id, time, duration=0, val=None, it=None, changed=None, cur=None)": [[186, "dbplugin-updatelog-id-time-duration-0-val-none-it-none-changed-none-cur-none"]], "dbplugin.readLog(id, time, cur = None)": [[186, "dbplugin-readlog-id-time-cur-none"]], "dbplugin.readLogs(id, time = None, time_start = None, time_end = None, changed = None, changed_start = None, changed_end = None, cur = None)": [[186, "dbplugin-readlogs-id-time-none-time-start-none-time-end-none-changed-none-changed-start-none-changed-end-none-cur-none"]], "dbplugin.deleteLog(id, time = None, time_start = None, time_end = None, changed = None, changed_start = None, changed_end = None, cur = None)": [[186, "dbplugin-deletelog-id-time-none-time-start-none-time-end-none-changed-none-changed-start-none-changed-end-none-cur-none"]], "dbplugin.insertItem(name, cur=None)": [[186, "dbplugin-insertitem-name-cur-none"]], "dbplugin.updateItem(id, time, duration=0, val=None, it=None, changed=None, cur=None)": [[186, "dbplugin-updateitem-id-time-duration-0-val-none-it-none-changed-none-cur-none"]], "Vollst\u00e4ndig \u00fcbernommen in plugin.yaml": [[186, "vollstandig-ubernommen-in-plugin-yaml"]], "dbplugin.readItem(id, cur=None)": [[186, "dbplugin-readitem-id-cur-none"]], "dbplugin.readItems(cur=None)": [[186, "dbplugin-readitems-cur-none"]], "dbplugin.deleteItem(id, cur=None)": [[186, "dbplugin-deleteitem-id-cur-none"]], "dbplugin.cleanup()": [[186, "dbplugin-cleanup"]], "Database Items": [[187, "database-items"]], "Plugin-API": [[187, "plugin-api"]], "Verwaiste Items": [[187, "verwaiste-items"]], "Export von Daten": [[187, "export-von-daten"]], "CSV Dump": [[187, "csv-dump"]], "SQL Dump": [[187, "sql-dump"]], "Aufbau der Datenbank": [[187, "aufbau-der-datenbank"]], "Datenbankfunktionen f\u00fcr Datenreihen/Plots": [[187, "datenbankfunktionen-fur-datenreihen-plots"]], "Datenbankfunktionen f\u00fcr Einzelauswertungen": [[187, "datenbankfunktionen-fur-einzelauswertungen"]], "datalog": [[188, "datalog"], [397, "datalog"]], "Ersatz durch Bordmittel": [[188, "ersatz-durch-bordmittel"], [243, "ersatz-durch-bordmittel"], [263, "ersatz-durch-bordmittel"]], "db_addon": [[189, "db-addon"]], "Hinweise": [[189, "hinweise"], [262, "hinweise"]], "mysql Datenbank": [[189, "mysql-datenbank"]], "db_addon_fct": [[189, "db-addon-fct"], [398, "db-addon-fct"]], "db_addon_info": [[189, "db-addon-info"], [398, "db-addon-info"]], "db_addon_admin": [[189, "db-addon-admin"], [398, "db-addon-admin"]], "Verbrauch": [[189, "verbrauch"]], "minmax": [[189, "minmax"], [189, "id1"]], "Verwendung von eigenen Zeitr\u00e4umen": [[189, "verwendung-von-eigenen-zeitraumen"]], "minmax_last": [[189, "minmax-last"]], "verbrauch": [[189, "id2"]], "zaehlerstand": [[189, "zaehlerstand"]], "db_addon Items": [[189, "db-addon-items"]], "db_addon Maintenance": [[189, "db-addon-maintenance"]], "Erl\u00e4uterungen zu Temperatursummen": [[189, "erlauterungen-zu-temperatursummen"]], "Gr\u00fcnlandtemperatursumme": [[189, "grunlandtemperatursumme"]], "Wachstumsgradtage": [[189, "wachstumsgradtage"]], "W\u00e4rmesumme": [[189, "warmesumme"]], "K\u00e4ltesumme": [[189, "kaltesumme"]], "Tagesmitteltemperatur": [[189, "tagesmitteltemperatur"]], "Vorgehen bei Funktionserweiterung des Plugins bzw. Erg\u00e4nzung weiterer Werte f\u00fcr Item-Attribute": [[189, "vorgehen-bei-funktionserweiterung-des-plugins-bzw-erganzung-weiterer-werte-fur-item-attribute"]], "Plugin for Deebot Ozmo 920 / 950 / 960": [[190, "plugin-for-deebot-ozmo-920-950-960"]], "Version 1.7.2": [[190, "version-1-7-2"]], "denon": [[191, "denon"]], "dlms": [[192, "dlms"]], "Nicht unterst\u00fctze Hardware": [[192, "nicht-unterstutze-hardware"]], "Beispiele f\u00fcr die plugin.yaml": [[192, "beispiele-fur-die-plugin-yaml"]], "Einrichtungsverfahren:": [[192, "einrichtungsverfahren"]], "Optional": [[192, "optional"]], "Einige Hintergrundinformationen zu OBIS-Codes": [[192, "einige-hintergrundinformationen-zu-obis-codes"]], "A": [[192, "a"]], "B": [[192, "b"]], "C": [[192, "c"]], "D": [[192, "d"]], "E": [[192, "e"]], "F": [[192, "f"]], "Werte aus Codezeilen ermitteln": [[192, "werte-aus-codezeilen-ermitteln"]], "OBIS-Codebeispiel A": [[192, "obis-codebeispiel-a"]], "OBIS-Codebeispiel B": [[192, "obis-codebeispiel-b"]], "Werte aus den Codezeilen ermitteln": [[192, "werte-aus-den-codezeilen-ermitteln"]], "DMX": [[193, "dmx"]], "dmx_ch": [[193, "dmx-ch"], [194, "dmx-ch"], [402, "dmx-ch"]], "send(channel, value)": [[193, "send-channel-value"]], "dmx": [[194, "dmx"]], "Vorbedingungen": [[194, "vorbedingungen"]], "send(Kanal, Wert)": [[194, "send-kanal-wert"]], "Drexel & Weiss": [[195, "drexel-weiss"]], "Supported Devices": [[195, "supported-devices"]], "DuW_LU_register / DuW_WP_register": [[195, "duw-lu-register-duw-wp-register"]], "drexelundweiss": [[196, "drexelundweiss"]], "Items Attribute": [[196, "items-attribute"]], "ebus": [[197, "ebus"]], "Enigma2": [[198, "enigma2"]], "get_audio_tracks()": [[198, "get-audio-tracks"], [406, "get-audio-tracks"]], "send_message(messagetext, messagetype=1, timeout=10)": [[198, "send-message-messagetext-messagetype-1-timeout-10"], [406, "send-message-messagetext-messagetype-1-timeout-10"]], "set_power_state(value)": [[198, "set-power-state-value"], [406, "set-power-state-value"]], "get_answer()": [[198, "get-answer"], [406, "get-answer"]], "UTE teach-in": [[199, "ute-teach-in"]], "enocean": [[200, "enocean"]], "Verwendung via IP": [[200, "verwendung-via-ip"]], "item.yaml": [[200, "item-yaml"], [257, "item-yaml"]], "Enocean Equipment Profiles": [[200, "enocean-equipment-profiles"]], "Status EEPs": [[200, "status-eeps"]], "Keys (nur f\u00fcr empfangende Items)": [[200, "keys-nur-fur-empfangende-items"]], "Steuer EEPs": [[200, "steuer-eeps"]], "epson": [[201, "epson"]], "eta_pu - ETA Pellet Unit PU": [[202, "eta-pu-eta-pellet-unit-pu"]], "executor": [[203, "executor"]], "Beispiel Python Code": [[203, "beispiel-python-code"]], "Loggertest": [[203, "loggertest"]], "Datenserien f\u00fcr ein Item ausgeben": [[203, "datenserien-fur-ein-item-ausgeben"]], "Z\u00e4hlen der Datens\u00e4tze in der Datenbank": [[203, "zahlen-der-datensatze-in-der-datenbank"]], "gpio": [[204, "gpio"]], "Harmony Hub Plugin": [[205, "harmony-hub-plugin"]], "Requirenments": [[205, "requirenments"]], "Device IDs and Commands": [[205, "device-ids-and-commands"]], "Setup plugin": [[205, "setup-plugin"]], "Setup harmony commands and activities": [[205, "setup-harmony-commands-and-activities"]], "command": [[205, "command"], [391, "command"], [391, "id2"]], "activity": [[205, "activity"]], "Setup Harmony status items": [[205, "setup-harmony-status-items"]], "Harmony Current Activity by ID": [[205, "harmony-current-activity-by-id"]], "Harmony Current Activity by Name": [[205, "harmony-current-activity-by-name"]], "Limitations": [[205, "limitations"]], "helios - Helios ECx00Pro / Vallox xx SE Plugin": [[206, "helios-helios-ecx00pro-vallox-xx-se-plugin"]], "Plugin installation in short:": [[206, "plugin-installation-in-short"]], "Widget for SmartVisu": [[206, "widget-for-smartvisu"]], "helios_tcp": [[207, "helios-tcp"], [415, "helios-tcp"]], "Einrichtung": [[207, "einrichtung"], [596, "einrichtung"]], "Verkn\u00fcpfung von Items": [[207, "verknupfung-von-items"]], "Variablen": [[207, "variablen"], [330, "variablen"]], "HomeConnect": [[208, "homeconnect"]], "homematic": [[209, "homematic"], [210, "homematic"]], "Unterst\u00fctzte HomeMatic und HomeMatic IP Ger\u00e4te": [[210, "unterstutzte-homematic-und-homematic-ip-gerate"]], "Aktoren": [[210, "aktoren"]], "Sensoren": [[210, "sensoren"]], "Thermostate": [[210, "thermostate"]], "Sonstige": [[210, "sonstige"]], "Phillips HUE": [[211, "phillips-hue"]], "New development of Hue plugin for use in smarthome.py (C) Michael W\u00fcrtenberger 2014, 2015, 2016": [[211, "new-development-of-hue-plugin-for-use-in-smarthome-py-c-michael-wurtenberger-2014-2015-2016"]], "hue_user": [[211, "hue-user"], [418, "hue-user"]], "hue_ip": [[211, "hue-ip"], [418, "hue-ip"]], "hue_port": [[211, "hue-port"], [418, "hue-port"]], "cycle_lamps": [[211, "cycle-lamps"], [418, "cycle-lamps"]], "cycle_bridges": [[211, "cycle-bridges"], [418, "cycle-bridges"]], "default_transitionTime": [[211, "default-transitiontime"], [418, "default-transitiontime"], [419, "default-transitiontime"], [420, "default-transitiontime"]], "hue_bridge_id (formerly hue_bridge !)": [[211, "hue-bridge-id-formerly-hue-bridge"]], "hue_lamp_id (formerly hue_id)": [[211, "hue-lamp-id-formerly-hue-id"]], "hue_group_id": [[211, "hue-group-id"], [418, "hue-group-id"]], "hue_lamp_type": [[211, "hue-lamp-type"], [418, "hue-lamp-type"]], "Commands and Parameters supported": [[211, "commands-and-parameters-supported"]], "Lights API (Light state)": [[211, "lights-api-light-state"]], "Lights API (Lamp attributes)": [[211, "lights-api-lamp-attributes"]], "Groups API": [[211, "groups-api"]], "Configuration API (Bridge related)": [[211, "configuration-api-bridge-related"]], "Configuration API (Plugin related)": [[211, "configuration-api-plugin-related"]], "hue_listen = errorstatus": [[211, "hue-listen-errorstatus"]], "hue_send": [[211, "hue-send"], [418, "hue-send"]], "hue_listen": [[211, "hue-listen"], [418, "hue-listen"]], "hue_transitionTime": [[211, "hue-transitiontime"]], "Using DPT3 dimming": [[211, "using-dpt3-dimming"]], "hue_dim_max": [[211, "hue-dim-max"], [418, "hue-dim-max"]], "hue_dim_step": [[211, "hue-dim-step"], [418, "hue-dim-step"]], "hue_dim_time": [[211, "hue-dim-time"], [418, "hue-dim-time"]], "get_config()": [[211, "get-config"]], "authorizeuser()": [[211, "authorizeuser"]], "Neue Features": [[212, "neue-features"]], "Plugin Instanz hinzuf\u00fcgen": [[212, "plugin-instanz-hinzufugen"], [213, "plugin-instanz-hinzufugen"], [265, "plugin-instanz-hinzufugen"], [289, "plugin-instanz-hinzufugen"]], "Bridge verbinden": [[212, "bridge-verbinden"], [213, "bridge-verbinden"]], "Verwendung von structs": [[212, "verwendung-von-structs"], [213, "verwendung-von-structs"], [265, "verwendung-von-structs"], [289, "verwendung-von-structs"]], "Item Attribute": [[212, "item-attribute"], [213, "item-attribute"], [265, "item-attribute"], [289, "item-attribute"], [374, "item-attribute"], [375, "item-attribute"], [376, "item-attribute"], [377, "item-attribute"], [378, "item-attribute"], [379, "item-attribute"], [380, "item-attribute"], [381, "item-attribute"], [382, "item-attribute"], [383, "item-attribute"], [384, "item-attribute"], [385, "item-attribute"], [386, "item-attribute"], [387, "item-attribute"], [388, "item-attribute"], [389, "item-attribute"], [390, "item-attribute"], [391, "item-attribute"], [392, "item-attribute"], [393, "item-attribute"], [394, "item-attribute"], [395, "item-attribute"], [396, "item-attribute"], [397, "item-attribute"], [398, "item-attribute"], [399, "item-attribute"], [400, "item-attribute"], [401, "item-attribute"], [402, "item-attribute"], [403, "item-attribute"], [405, "item-attribute"], [406, "item-attribute"], [407, "item-attribute"], [408, "item-attribute"], [409, "item-attribute"], [410, "item-attribute"], [411, "item-attribute"], [412, "item-attribute"], [413, "item-attribute"], [414, "item-attribute"], [415, "item-attribute"], [416, "item-attribute"], [417, "item-attribute"], [418, "item-attribute"], [419, "item-attribute"], [420, "item-attribute"], [421, "item-attribute"], [422, "item-attribute"], [423, "item-attribute"], [424, "item-attribute"], [425, "item-attribute"], [426, "item-attribute"], [427, "item-attribute"], [428, "item-attribute"], [429, "item-attribute"], [430, "item-attribute"], [431, "item-attribute"], [432, "item-attribute"], [433, "item-attribute"], [434, "item-attribute"], [435, "item-attribute"], [436, "item-attribute"], [437, "item-attribute"], [438, "item-attribute"], [439, "item-attribute"], [440, "item-attribute"], [441, "item-attribute"], [442, "item-attribute"], [443, "item-attribute"], [444, "item-attribute"], [445, "item-attribute"], [446, "item-attribute"], [447, "item-attribute"], [448, "item-attribute"], [449, "item-attribute"], [450, "item-attribute"], [451, "item-attribute"], [452, "item-attribute"], [453, "item-attribute"], [454, "item-attribute"], [455, "item-attribute"], [456, "item-attribute"], [457, "item-attribute"], [458, "item-attribute"], [459, "item-attribute"], [460, "item-attribute"], [461, "item-attribute"], [462, "item-attribute"], [463, "item-attribute"], [464, "item-attribute"], [465, "item-attribute"], [466, "item-attribute"], [467, "item-attribute"], [468, "item-attribute"], [469, "item-attribute"], [470, "item-attribute"], [471, "item-attribute"], [472, "item-attribute"], [473, "item-attribute"], [474, "item-attribute"], [475, "item-attribute"], [476, "item-attribute"], [477, "item-attribute"], [478, "item-attribute"], [479, "item-attribute"], [480, "item-attribute"], [481, "item-attribute"], [482, "item-attribute"], [483, "item-attribute"], [484, "item-attribute"], [485, "item-attribute"], [486, "item-attribute"], [487, "item-attribute"], [488, "item-attribute"], [489, "item-attribute"], [490, "item-attribute"], [491, "item-attribute"], [492, "item-attribute"], [493, "item-attribute"], [494, "item-attribute"], [495, "item-attribute"], [496, "item-attribute"], [497, "item-attribute"], [498, "item-attribute"], [499, "item-attribute"], [500, "item-attribute"], [501, "item-attribute"], [502, "item-attribute"], [503, "item-attribute"], [504, "item-attribute"], [505, "item-attribute"], [506, "item-attribute"], [507, "item-attribute"], [508, "item-attribute"], [509, "item-attribute"], [510, "item-attribute"], [511, "item-attribute"], [512, "item-attribute"], [513, "item-attribute"], [514, "item-attribute"], [515, "item-attribute"], [516, "item-attribute"], [517, "item-attribute"], [518, "item-attribute"], [519, "item-attribute"], [520, "item-attribute"], [521, "item-attribute"], [522, "item-attribute"], [523, "item-attribute"], [524, "item-attribute"], [525, "item-attribute"], [526, "item-attribute"], [527, "item-attribute"], [528, "item-attribute"], [529, "item-attribute"], [530, "item-attribute"], [531, "item-attribute"], [532, "item-attribute"], [533, "item-attribute"], [534, "item-attribute"], [535, "item-attribute"], [536, "item-attribute"], [537, "item-attribute"], [538, "item-attribute"]], "hue3": [[213, "hue3"]], "husky": [[214, "husky"]], "Credits": [[214, "credits"], [215, "credits"], [359, "credits"]], "husky2": [[215, "husky2"]], "SV Widget": [[215, "sv-widget"], [359, "sv-widget"]], "iCal": [[216, "ical"]], "ical": [[217, "ical"]], "indego Plugin": [[218, "indego-plugin"]], "Version 1.x.y": [[218, "version-1-x-y"], [251, "version-1-x-y"]], "Further Information": [[218, "further-information"]], "Integration into SmartVISU": [[218, "integration-into-smartvisu"]], "for SmartVISU Version": [[218, "for-smartvisu-version"]], "Indego4shNG": [[219, "indego4shng"]], "Generell": [[219, "generell"]], "Credits": [[219, "credits"]], "Change Log": [[219, "change-log"]], "2023-05-06 V4.0.1": [[219, "v4-0-1"]], "2023-03-08 V4.0.0": [[219, "v4-0-0"]], "2023-02-05 V3.0.2": [[219, "v3-0-2"]], "2021-05-16 V3.0.1": [[219, "v3-0-1"]], "2019-10-28 V3.0.0": [[219, "v3-0-0"]], "ben\u00f6tigte Software": [[219, "benotigte-software"]], "SmartVisu": [[219, "smartvisu"], [255, "smartvisu"]], "erster Tab - \u00dcbersicht Indego-Items": [[219, "erster-tab-ubersicht-indego-items"]], "zweiter Tab - Originalgartenkarte / Settings": [[219, "zweiter-tab-originalgartenkarte-settings"]], "dritter Tab - State-Protokoll": [[219, "dritter-tab-state-protokoll"]], "vierter Tab - Kommunikationsprotokoll": [[219, "vierter-tab-kommunikationsprotokoll"]], "Logik-Trigger": [[219, "logik-trigger"]], "\u00f6ffentliche Funkionen": [[219, "offentliche-funkionen"]], "send_command(Payload as String)": [[219, "send-command-payload-as-string"]], "Gardenkarte \u201epimpen\u201c": [[219, "gardenkarte-pimpen"]], "Beispiel :": [[219, "beispiel"]], "Nutzung der Original Bosch-M\u00e4her-Symbole": [[219, "nutzung-der-original-bosch-maher-symbole"]], "Die Bosch-Api 4.0.1 - behind the scenes": [[219, "die-bosch-api-4-0-1-behind-the-scenes"]], "indego4shng": [[220, "indego4shng"]], "Konfiguration von SmarthoneNG": [[220, "konfiguration-von-smarthoneng"]], "influxdata": [[221, "influxdata"]], "/etc/influxdb/influxdb.conf": [[221, "etc-influxdb-influxdb-conf"], [222, "etc-influxdb-influxdb-conf"]], "Check data": [[221, "check-data"]], "influxdb": [[222, "influxdb"], [427, "influxdb"]], "In InfluxDB \u00fcber UDP oder HTTP loggen": [[222, "in-influxdb-uber-udp-oder-http-loggen"]], "Korrektes Logging": [[222, "korrektes-logging"]], "Daten aus dem Database Plugin transferieren": [[222, "daten-aus-dem-database-plugin-transferieren"], [223, "daten-aus-dem-database-plugin-transferieren"]], "influxdb2": [[223, "influxdb2"], [428, "influxdb2"]], "Installation der InfluxDB Software": [[223, "installation-der-influxdb-software"]], "Gespeicherte Daten": [[223, "gespeicherte-daten"]], "InfluxDB Einf\u00fchrung": [[224, "influxdb-einfuhrung"]], "Was ist InfluxDB?": [[224, "was-ist-influxdb"]], "Was ist eine Organisation?": [[224, "was-ist-eine-organisation"]], "Was ist ein Bucket?": [[224, "was-ist-ein-bucket"]], "Was ist ein Point?": [[224, "was-ist-ein-point"]], "Serienschl\u00fcssel und Serien": [[224, "serienschlussel-und-serien"]], "Fields und Tags": [[224, "fields-und-tags"]], "InfluxDB Installation": [[225, "influxdb-installation"]], "InfluxDB Konfiguration": [[226, "influxdb-konfiguration"]], "Buckets anlegen": [[226, "buckets-anlegen"]], "API Token anlegen": [[226, "api-token-anlegen"]], "Dashboard einrichten": [[226, "dashboard-einrichten"]], "Intercom-2N Plugin": [[227, "intercom-2n-plugin"]], "Plugin setup": [[227, "plugin-setup"]], "Plugin usage": [[227, "plugin-usage"]], "Events": [[227, "events"]], "Commands": [[227, "commands"], [622, "commands"]], "Example item config": [[227, "example-item-config"]], "join": [[228, "join"], [314, "join"], [534, "join"]], "Pluginfunktionen": [[228, "pluginfunktionen"], [347, "pluginfunktionen"]], "send()": [[228, "send"]], "get_devices()": [[228, "get-devices"]], "Logikbeispiele": [[228, "logikbeispiele"]], "jsonread": [[229, "jsonread"]], "URL": [[229, "url"]], "Beispiele verschiedener Datenquellen": [[229, "beispiele-verschiedener-datenquellen"]], "Beispiel Klimaabfrage": [[229, "beispiel-klimaabfrage"]], "Beispiel Batteriedaten": [[229, "beispiel-batteriedaten"]], "Beispiel Energiemanager": [[229, "beispiel-energiemanager"]], "jvcproj": [[230, "jvcproj"]], "Hinweis": [[230, "hinweis"]], "jvcproj_cmd:": [[230, "jvcproj-cmd"]], "jvcproj_gamma:": [[230, "jvcproj-gamma"]], "Kommandoerl\u00e4uterung": [[230, "kommandoerlauterung"]], "kathrein": [[231, "kathrein"], [231, "id1"], [433, "kathrein"]], "ToDo": [[231, "todo"]], "kathreinid": [[231, "kathreinid"], [433, "kathreinid"]], "Key Values": [[231, "key-values"], [301, "key-values"]], "knx": [[232, "knx"]], "Umwandlungen der Datentypen in Itemwerte": [[232, "umwandlungen-der-datentypen-in-itemwerte"]], "Statistiken": [[232, "statistiken"]], "kodi": [[233, "kodi"]], "Hinweise zur Umstellung": [[233, "hinweise-zur-umstellung"]], "Hinweise zu Verbindungen": [[233, "hinweise-zu-verbindungen"]], "kostal": [[234, "kostal"], [436, "kostal"]], "Version: 1.3.1.2": [[234, "version-1-3-1-2"]], "Hint": [[234, "hint"]], "Description of all possible items (depending on inverter features)": [[234, "description-of-all-possible-items-depending-on-inverter-features"]], "Modbus Plugin for Kostal inverters": [[235, "modbus-plugin-for-kostal-inverters"]], "Version 1.6.3": [[235, "version-1-6-3"], [236, "version-1-6-3"]], "Supported Inverters": [[235, "supported-inverters"]], "2) /smarthome/items/kostal.yaml": [[235, "smarthome-items-kostal-yaml"], [236, "smarthome-items-kostal-yaml"]], "Get data from inverter:": [[235, "get-data-from-inverter"]], "The following data are stored in the respective items:": [[235, "the-following-data-are-stored-in-the-respective-items"], [236, "the-following-data-are-stored-in-the-respective-items"]], "Modbus Plugin for Kostal Smart Energy Meter": [[236, "modbus-plugin-for-kostal-smart-energy-meter"]], "Get data from Energy Meter:": [[236, "get-data-from-energy-meter"]], "lirc": [[237, "lirc"]], "lms": [[238, "lms"]], "logo": [[239, "logo"]], "logo_read@logo1": [[239, "logo-read-logo1"]], "logo_write@logo1": [[239, "logo-write-logo1"]], "luxtronic2": [[240, "luxtronic2"]], "lux2": [[240, "lux2"], [443, "lux2"]], "lux2_p": [[240, "lux2-p"], [443, "lux2-p"]], "lux2_a": [[240, "lux2-a"], [443, "lux2-a"]], "lux2_c": [[240, "lux2-c"], [443, "lux2-c"]], "mailrcv": [[241, "mailrcv"]], "mail_subject": [[241, "mail-subject"]], "mail_to": [[241, "mail-to"]], "mail": [[241, "mail"]], "mailsend": [[242, "mailsend"]], "memlog": [[243, "memlog"], [446, "memlog"]], "Beispiel Logik": [[243, "beispiel-logik"], [263, "beispiel-logik"], [595, "beispiel-logik"]], "Beispiel Item": [[243, "beispiel-item"], [263, "beispiel-item"]], "Einsatz in Logiken": [[243, "einsatz-in-logiken"]], "Funktionsaufruf": [[243, "funktionsaufruf"]], "mieleathome": [[244, "mieleathome"]], "miflora": [[245, "miflora"]], "miflora_data_type": [[245, "miflora-data-type"], [448, "miflora-data-type"]], "mikrotik": [[246, "mikrotik"]], "milight": [[247, "milight"]], "Version 1.6.0": [[247, "version-1-6-0"], [315, "version-1-6-0"]], "Todo:": [[247, "todo"]], "udp_ip": [[247, "udp-ip"], [450, "udp-ip"]], "udp_port": [[247, "udp-port"], [427, "udp-port"], [450, "udp-port"]], "bricontrol": [[247, "bricontrol"], [450, "bricontrol"]], "cutoff": [[247, "cutoff"], [450, "cutoff"]], "hue_calibrate": [[247, "hue-calibrate"], [450, "hue-calibrate"]], "milight_sw": [[247, "milight-sw"], [450, "milight-sw"]], "milight_dim": [[247, "milight-dim"], [450, "milight-dim"]], "milight_col": [[247, "milight-col"], [450, "milight-col"]], "milight_rgb": [[247, "milight-rgb"], [450, "milight-rgb"]], "milight_white": [[247, "milight-white"], [450, "milight-white"]], "milight_disco": [[247, "milight-disco"], [450, "milight-disco"]], "milight_disco_up / milight_disco_down": [[247, "milight-disco-up-milight-disco-down"]], "Example for RGB": [[247, "example-for-rgb"]], "mlgw Plugin - Bang & Olufsen Masterlink Gateway": [[248, "mlgw-plugin-bang-olufsen-masterlink-gateway"]], "Version 1.1.1": [[248, "version-1-1-1"]], "Changes Since version 0.5": [[248, "changes-since-version-0-5"]], "Changes Since version 0.4": [[248, "changes-since-version-0-4"]], "Changes Since version 0.3": [[248, "changes-since-version-0-3"]], "mlgw_send": [[248, "mlgw-send"], [451, "mlgw-send"]], "mlgw_cmd": [[248, "mlgw-cmd"], [248, "id1"], [451, "mlgw-cmd"]], "mlgw_mln": [[248, "mlgw-mln"], [451, "mlgw-mln"]], "mlgw_listen": [[248, "mlgw-listen"], [451, "mlgw-listen"]], "mlgw_room": [[248, "mlgw-room"], [451, "mlgw-room"]], "modbus_tcp": [[249, "modbus-tcp"]], "pymodbus": [[249, "pymodbus"]], "pymodbus - manuelle Installation:": [[249, "pymodbus-manuelle-installation"]], "mpd": [[250, "mpd"]], "Sample Plugin <- put the name of your plugin here": [[251, "sample-plugin-put-the-name-of-your-plugin-here"]], "Changes Since version 1.x.x": [[251, "changes-since-version-1-x-x"]], "Changes Since version 1.x.w": [[251, "changes-since-version-1-x-w"]], "mqtt": [[252, "mqtt"]], "mvg_live - MVG Live": [[253, "mvg-live-mvg-live"]], "get_station_departures(self, station, timeoffset=0, entries=10, ubahn=True, tram=True, bus=True, sbahn=True):": [[253, "get-station-departures-self-station-timeoffset-0-entries-10-ubahn-true-tram-true-bus-true-sbahn-true"]], "Logics": [[253, "logics"], [260, "logics"], [335, "logics"]], "logics.yaml": [[253, "logics-yaml"], [263, "logics-yaml"]], "mvg.py": [[253, "mvg-py"]], "smartVISU integration (Requires smartVISU 2.9, as select widget is used)": [[253, "smartvisu-integration-requires-smartvisu-2-9-as-select-widget-is-used"]], "Neato/Vorwerk Vacuum Robot": [[254, "neato-vorwerk-vacuum-robot"]], "2) Authentication": [[254, "authentication"]], "2) /smarthome/items/robot.yaml": [[254, "smarthome-items-robot-yaml"]], "Get status from robot:": [[254, "get-status-from-robot"]], "Send commands to the robot:": [[254, "send-commands-to-the-robot"]], "neato": [[255, "neato"]], "Authentifizierung": [[255, "authentifizierung"]], "Unterst\u00fctzte Plugin Attribute": [[255, "unterstutzte-plugin-attribute"]], "Roboter Status": [[255, "roboter-status"]], "Roboterbefehle": [[255, "roboterbefehle"]], "network": [[256, "network"]], "nw": [[256, "nw"], [457, "nw"]], "nw_acl": [[256, "nw-acl"], [457, "nw-acl"]], "nw_udp_listen/nw_tcp_listen/nw_http_listen": [[256, "nw-udp-listen-nw-tcp-listen-nw-http-listen"]], "nw_udp_send": [[256, "nw-udp-send"], [457, "nw-udp-send"]], "Benutzung": [[256, "benutzung"]], "udp(host, port, data)": [[256, "udp-host-port-data"], [457, "udp-host-port-data"]], "Nuki": [[257, "nuki"]], "Support": [[257, "support"], [365, "support"]], "nuki_id": [[257, "nuki-id"], [458, "nuki-id"]], "nuki_trigger": [[257, "nuki-trigger"], [458, "nuki-trigger"]], "action": [[257, "action"]], "state": [[257, "state"], [449, "state"], [449, "id7"]], "doorstate": [[257, "doorstate"]], "battery": [[257, "battery"]], "NUT - Network UPS Tools plugin": [[258, "nut-network-ups-tools-plugin"]], "Synology Example": [[258, "synology-example"]], "nut": [[259, "nut"]], "Synology Beispiel": [[259, "synology-beispiel"]], "Versionshistorie": [[259, "versionshistorie"]], "ODLInfo": [[260, "odlinfo"]], "Nutzung der Daten / Terms of Service": [[260, "nutzung-der-daten-terms-of-service"]], "get_stations_for_ids(odlinfo_ids):": [[260, "get-stations-for-ids-odlinfo-ids"]], "get_station_for_id(odlinfo_id)": [[260, "get-station-for-id-odlinfo-id"], [460, "get-station-for-id-odlinfo-id"]], "Fill item with radiation data": [[260, "fill-item-with-radiation-data"]], "onewire": [[261, "onewire"]], "Tab 1: Items": [[261, "tab-1-items"]], "Tab 2: 1-Wire Busse": [[261, "tab-2-1-wire-busse"]], "openweathermap": [[262, "openweathermap"]], "Migration von vorheriger Version 1.5.1": [[262, "migration-von-vorheriger-version-1-5-1"]], "Plugin-parameter": [[262, "plugin-parameter"]], "Item-attribute": [[262, "item-attribute"]], "Hints": [[262, "hints"]], "Funktionali\u00e4t": [[262, "funktionaliat"]], "Allgemeine Information": [[262, "allgemeine-information"]], "Rohe JSON Daten in ein Item speichern": [[262, "rohe-json-daten-in-ein-item-speichern"]], "Verf\u00fcgbare Matchstrings": [[262, "verfugbare-matchstrings"]], "Zugriff auf Listen": [[262, "zugriff-auf-listen"]], "Virtuelle Matchstrings": [[262, "virtuelle-matchstrings"]], "Tagesvorhersage (berechnet)": [[262, "tagesvorhersage-berechnet"]], "Verdunstung / Evapotranspiration": [[262, "verdunstung-evapotranspiration"]], "Wetteralarme": [[262, "wetteralarme"]], "Matchstring Fehlerbehandlung": [[262, "matchstring-fehlerbehandlung"]], "Anwendungen": [[262, "anwendungen"], [338, "anwendungen"]], "Steuerung einer t\u00e4glichen Bew\u00e4sserung bspw. f\u00fcr Pflanzen": [[262, "steuerung-einer-taglichen-bewasserung-bspw-fur-pflanzen"]], "Steuerung einer w\u00f6chtenlichen Bew\u00e4sserung bspw. f\u00fcr Rasen": [[262, "steuerung-einer-wochtenlichen-bewasserung-bspw-fur-rasen"]], "Funktionen des Plugins": [[262, "funktionen-des-plugins"]], "get_beaufort_number(value_in_meter_per_second)": [[262, "get-beaufort-number-value-in-meter-per-second"]], "get_beaufort_description(bft_number)": [[262, "get-beaufort-description-bft-number"]], "OWM Items": [[262, "owm-items"]], "JSON": [[262, "json"]], "Tipps and Tricks": [[262, "tipps-and-tricks"]], "operationlog": [[263, "operationlog"]], "Item Log Beispiele": [[263, "item-log-beispiele"]], "oppo": [[264, "oppo"]], "panasonic_ac": [[265, "panasonic-ac"]], "philips_tv": [[266, "philips-tv"]], "pioneer": [[267, "pioneer"]], "piratewthr": [[268, "piratewthr"]], "plex": [[269, "plex"]], "pluggit": [[270, "pluggit"], [271, "pluggit"]], "Einbindung in der plugin.yaml mit:": [[270, "einbindung-in-der-plugin-yaml-mit"]], "Einbindung in den Items per Item-Struct:": [[270, "einbindung-in-den-items-per-item-struct"]], "\u00c4nderungen:": [[270, "anderungen"]], "Folgende Vorteile ergeben sich zu dem Plugin 1.x": [[270, "folgende-vorteile-ergeben-sich-zu-dem-plugin-1-x"]], "Es fehlen auch noch ein paar Dinge:": [[270, "es-fehlen-auch-noch-ein-paar-dinge"]], "Vorteile gegen\u00fcber der Plugin Version v1.2.3": [[271, "vorteile-gegenuber-der-plugin-version-v1-2-3"]], "Es fehlen auch noch ein paar Dinge": [[271, "es-fehlen-auch-noch-ein-paar-dinge"]], "Struct": [[271, "struct"]], "prowl": [[272, "prowl"]], "Pushbullet": [[273, "pushbullet"]], "Python libraries": [[273, "python-libraries"]], "Other": [[273, "other"]], "How to get your deviceId": [[273, "how-to-get-your-deviceid"]], "sh.pushbullet.note(title, body [, deviceid] [, apikey])": [[273, "sh-pushbullet-note-title-body-deviceid-apikey"]], "sh.pushbullet.link(title, url [, deviceid] [, apikey] [, body])": [[273, "sh-pushbullet-link-title-url-deviceid-apikey-body"]], "Parameters:": [[273, "id1"], [273, "id3"], [273, "id5"], [273, "id7"], [273, "id9"]], "sh.pushbullet.address(name, address [, deviceid] [, apikey])": [[273, "sh-pushbullet-address-name-address-deviceid-apikey"]], "sh.pushbullet.list(title, title [, deviceid] [, apikey])": [[273, "sh-pushbullet-list-title-title-deviceid-apikey"]], "sh.pushbullet.file(filepath [, deviceid] [, apikey] [, body])": [[273, "sh-pushbullet-file-filepath-deviceid-apikey-body"]], "sh.pushbullet.delete(pushid)": [[273, "sh-pushbullet-delete-pushid"]], "Pushover": [[274, "pushover"]], "Usage:": [[274, "usage"]], "sh.po(title, message [, priority] [, retry] [, expire] [, ttl] [, sound] [, url] [, url_title] [, device] [, userKey] [, apiKey])": [[274, "sh-po-title-message-priority-retry-expire-ttl-sound-url-url-title-device-userkey-apikey"]], "Raumfeld": [[275, "raumfeld"]], "device_name": [[275, "device-name"], [430, "device-name"]], "stream_url": [[275, "stream-url"]], "raumfeld_ng": [[276, "raumfeld-ng"]], "Ger\u00e4te Attribute": [[276, "gerate-attribute"]], "Zonen Attribute": [[276, "zonen-attribute"]], "rcs1000n": [[277, "rcs1000n"]], "Notwendige Hardware": [[277, "notwendige-hardware"]], "v1.0.0": [[277, "v1-0-0"]], "RCswitch": [[278, "rcswitch"]], "Necessary Hardware": [[278, "necessary-hardware"]], "Installation of wiringPi:": [[278, "installation-of-wiringpi"]], "Installation of rcswitch-pi": [[278, "installation-of-rcswitch-pi"]], "Send as non-root and testing": [[278, "send-as-non-root-and-testing"]], "Installation of ssh and sshpass": [[278, "installation-of-ssh-and-sshpass"]], "Troubleshooting": [[278, "troubleshooting"]], "v0.1": [[278, "v0-1"]], "v0.2": [[278, "v0-2"]], "v0.3": [[278, "v0-3"]], "v1.2.0.4": [[278, "v1-2-0-4"]], "Further information": [[278, "further-information"]], "resol": [[279, "resol"]], "Resol Protokoll": [[279, "resol-protokoll"]], "Informationen": [[279, "informationen"]], "Robonect Plugin": [[280, "robonect-plugin"]], "Version 1.0.5": [[280, "version-1-0-5"]], "Version 1.0.3": [[280, "version-1-0-3"]], "Roomba": [[281, "roomba"]], "Bluetooth": [[281, "bluetooth"]], "Ethernet": [[281, "ethernet"]], "Connection:": [[281, "connection"]], "plugin.yaml:": [[281, "plugin-yaml"]], "item.yaml:": [[281, "item-yaml"]], "roomba_980": [[282, "roomba-980"]], "Wie bekomme ich meine blid und mein Passwort": [[282, "wie-bekomme-ich-meine-blid-und-mein-passwort"]], "Um das Plugin zu aktivieren m\u00fcsst ihr Folgendes in eure plugin.ymal aufnehmen:": [[282, "um-das-plugin-zu-aktivieren-musst-ihr-folgendes-in-eure-plugin-ymal-aufnehmen"]], "Hier meine item.yaml:": [[282, "hier-meine-item-yaml"]], "roombapysh": [[283, "roombapysh"], [482, "roombapysh"]], "Wie bekomme ich meine blid und mein Passwort?": [[283, "wie-bekomme-ich-meine-blid-und-mein-passwort"]], "Um das Plugin zu aktivieren, m\u00fcsst ihr Folgendes in eure plugin.yaml aufnehmen:": [[283, "um-das-plugin-zu-aktivieren-musst-ihr-folgendes-in-eure-plugin-yaml-aufnehmen"]], "Hinweise:": [[283, "hinweise"]], "Roomba f\u00fcr SmartHomeNG": [[284, "roomba-fur-smarthomeng"]], "rpi1wire": [[285, "rpi1wire"]], "Information": [[285, "information"]], "Raspberry Pi Konfiguration": [[285, "raspberry-pi-konfiguration"]], "rpi1wire Items": [[285, "rpi1wire-items"]], "rpi1wire Sensores": [[285, "rpi1wire-sensores"]], "rpi_info": [[286, "rpi-info"]], "rrd": [[287, "rrd"], [485, "rrd"]], "Vergleich zwischen Datenbank-Plugin und rrdtool:": [[287, "vergleich-zwischen-datenbank-plugin-und-rrdtool"]], "RTR plug-in": [[288, "rtr-plug-in"]], "Required attributes:": [[288, "required-attributes"]], "rtr_current": [[288, "rtr-current"], [486, "rtr-current"]], "rtr_setpoint": [[288, "rtr-setpoint"], [486, "rtr-setpoint"]], "rtr_actuator": [[288, "rtr-actuator"], [486, "rtr-actuator"]], "Optional attributes": [[288, "optional-attributes"]], "rtr_Kp, rtr_Ki": [[288, "rtr-kp-rtr-ki"]], "rtr_stops": [[288, "rtr-stops"], [486, "rtr-stops"]], "rtr_temp_default, rtr_temp_boost, rtr_temp_boost_time, rtr_temp_drop": [[288, "rtr-temp-default-rtr-temp-boost-rtr-temp-boost-time-rtr-temp-drop"]], "rtr_hvac_mode": [[288, "rtr-hvac-mode"], [486, "rtr-hvac-mode"]], "logic": [[288, "logic"], [304, "logic"], [356, "logic"], [357, "logic"]], "Einstellen des Modus": [[289, "einstellen-des-modus"]], "hvac": [[289, "hvac"]], "Frostschutz": [[289, "frostschutz"]], "Automatische Nachtabsenkung": [[289, "automatische-nachtabsenkung"]], "automatischer Frostschutz": [[289, "automatischer-frostschutz"]], "Structure Template": [[289, "structure-template"]], "Abweichende Reglerparameter": [[289, "abweichende-reglerparameter"]], "Visualisierung": [[289, "visualisierung"], [295, "visualisierung"]], "RTR Widget": [[289, "rtr-widget"]], "Plot Widget": [[289, "plot-widget"]], "Russound": [[290, "russound"]], "rus_path": [[290, "rus-path"], [488, "rus-path"]], "shelly": [[291, "shelly"]], "Shelly Items": [[291, "shelly-items"]], "Shelly Devices": [[291, "shelly-devices"]], "Broker Information": [[291, "broker-information"], [337, "broker-information"]], "Shelly Device in Betrieb nehmen": [[292, "shelly-device-in-betrieb-nehmen"]], "Einbindung ins WLAN": [[292, "einbindung-ins-wlan"]], "Gen1 Devices einbinden": [[292, "gen1-devices-einbinden"]], "Gen2/Gen3 Devices einbinden": [[292, "gen2-gen3-devices-einbinden"]], "Firmware Update durchf\u00fchren": [[292, "firmware-update-durchfuhren"]], "Update f\u00fcr Gen1 Devices": [[292, "update-fur-gen1-devices"]], "Update f\u00fcr Gen2/Gen3 Devices": [[292, "update-fur-gen2-gen3-devices"]], "MQTT konfigurieren": [[292, "mqtt-konfigurieren"]], "F\u00fcr Gen1 Devices": [[292, "fur-gen1-devices"]], "F\u00fcr Gen2/Gen3 Devices": [[292, "fur-gen2-gen3-devices"]], "Backward-Compatibility Mode": [[293, "backward-compatibility-mode"]], "Aktueller Konfigurations Modus": [[293, "aktueller-konfigurations-modus"]], "Unterschiede zwischen Plugin Modi": [[293, "unterschiede-zwischen-plugin-modi"]], "Konfiguration im Kompatibilit\u00e4ts-Modus": [[293, "konfiguration-im-kompatibilitats-modus"]], "Konfiguration f\u00fcr Gen2 Devices": [[293, "konfiguration-fur-gen2-devices"]], "Ermitteln der unterst\u00fctzten Status Attribute": [[293, "ermitteln-der-unterstutzten-status-attribute"]], "Nicht unterst\u00fctzte Status Attribute": [[293, "nicht-unterstutzte-status-attribute"]], "Attribute um ein Device zu steuern": [[293, "attribute-um-ein-device-zu-steuern"]], "Item structs": [[293, "item-structs"]], "weitere Informationen": [[293, "weitere-informationen"]], "Simulation": [[294, "simulation"]], "Record": [[294, "record"]], "Playback": [[294, "playback"]], "Control": [[294, "control"]], "SmartVisu 2.9:": [[294, "smartvisu-2-9"]], "SmartVisu <= 2.8:": [[294, "smartvisu-2-8"]], "Internals": [[294, "internals"]], "Event file format": [[294, "event-file-format"]], "State Diagram": [[294, "state-diagram"]], "simulation": [[295, "simulation"]], "Plugin Items": [[295, "plugin-items"]], "Aufzeichnung": [[295, "aufzeichnung"]], "Abspielen": [[295, "abspielen"]], "Event Datei Format": [[295, "event-datei-format"]], "Statusdiagramm": [[295, "statusdiagramm"]], "smarthome-slack": [[296, "smarthome-slack"]], "etc/plugin.yaml single instance example": [[296, "etc-plugin-yaml-single-instance-example"]], "etc/plugin.yaml multi instance example": [[296, "etc-plugin-yaml-multi-instance-example"]], "SMA": [[297, "sma"]], "SMA-EM Plugin": [[298, "sma-em-plugin"]], "sma_mb": [[300, "sma-mb"]], "SmartTV": [[301, "smarttv"]], "smarttv": [[301, "id1"], [495, "smarttv"]], "Weiterf\u00fchrende Informationen": [[302, "weiterfuhrende-informationen"], [354, "weiterfuhrende-informationen"]], "Nutzdaten Protokoll": [[302, "nutzdaten-protokoll"]], "Automatische Seitengenerierung": [[302, "automatische-seitengenerierung"]], "Weitere Dokumentation": [[302, "weitere-dokumentation"]], "Requests von der smartVISU an SmartHomeNG": [[304, "requests-von-der-smartvisu-an-smarthomeng"]], "list_items": [[304, "list-items"], [356, "list-items"], [357, "list-items"]], "list_logics": [[304, "list-logics"], [356, "list-logics"], [357, "list-logics"]], "Sml": [[305, "sml"]], "sml_obis": [[305, "sml-obis"], [497, "sml-obis"], [498, "sml-obis"], [499, "sml-obis"]], "sml_prop": [[305, "sml-prop"], [497, "sml-prop"], [498, "sml-prop"], [499, "sml-prop"]], "Methodes": [[305, "methodes"]], "sml2": [[306, "sml2"]], "Besonderheiten bestimmter Hardware": [[306, "besonderheiten-bestimmter-hardware"], [307, "besonderheiten-bestimmter-hardware"]], "Holley DTZ541": [[306, "holley-dtz541"], [307, "holley-dtz541"]], "smlx": [[307, "smlx"]], "snap7_logo": [[308, "snap7-logo"], [309, "snap7-logo"]], "logo_read@logo1: I1": [[308, "logo-read-logo1-i1"]], "logo_write@logo1: M3": [[308, "logo-write-logo1-m3"]], "snap7": [[309, "snap7"]], "python-snap7": [[309, "python-snap7"]], "snmp": [[310, "snmp"]], "1.1.0": [[310, "id1"], [351, "id3"]], "1.0.0": [[310, "id2"], [351, "id4"]], "snmp_host": [[310, "snmp-host"], [501, "snmp-host"]], "snmp_commnity": [[310, "snmp-commnity"]], "Plugin-Konfiguration:": [[310, "plugin-konfiguration"]], "snmp_oid": [[310, "snmp-oid"], [501, "snmp-oid"]], "snmp_prop": [[310, "snmp-prop"], [501, "snmp-prop"]], "solarforecast": [[311, "solarforecast"]], "Solarlog": [[312, "solarlog"]], "Todo": [[312, "todo"], [313, "todo"]], "solarlog": [[312, "id1"], [313, "solarlog"], [313, "id1"], [503, "solarlog"]], "sonos": [[314, "sonos"]], "Erste Schritte": [[314, "erste-schritte"]], "Unterst\u00fctze Eigenschaften/Funktionen": [[314, "unterstutze-eigenschaften-funktionen"]], "bass": [[314, "bass"]], "coordinator": [[314, "coordinator"]], "cross_fade": [[314, "cross-fade"]], "current_track": [[314, "current-track"]], "current_track_duration": [[314, "current-track-duration"]], "current_transport_actions": [[314, "current-transport-actions"]], "current_valid_play_modes": [[314, "current-valid-play-modes"]], "dialog_mode": [[314, "dialog-mode"]], "household_id": [[314, "household-id"]], "is_coordinator": [[314, "is-coordinator"]], "is_initialized": [[314, "is-initialized"]], "load_sonos_playlist": [[314, "load-sonos-playlist"]], "loudness": [[314, "loudness"]], "streamtype": [[314, "streamtype"]], "mute": [[314, "mute"]], "next": [[314, "next"]], "night_mode": [[314, "night-mode"]], "number_of_tracks": [[314, "number-of-tracks"]], "pause": [[314, "pause"]], "play": [[314, "play"]], "player_name": [[314, "player-name"]], "play_mode": [[314, "play-mode"]], "play_snippet": [[314, "play-snippet"]], "play_tts": [[314, "play-tts"]], "play_sonos_radio / play_tunein": [[314, "play-sonos-radio-play-tunein"]], "play_url": [[314, "play-url"]], "play_sharelink": [[314, "play-sharelink"]], "previous": [[314, "previous"]], "radio_station": [[314, "radio-station"]], "radio_show": [[314, "radio-show"]], "snooze": [[314, "snooze"]], "sonos_playlists": [[314, "sonos-playlists"]], "status_light": [[314, "status-light"]], "buttons_enabled": [[314, "buttons-enabled"]], "stop": [[314, "stop"], [481, "stop"]], "stream_content": [[314, "stream-content"]], "switch_line_in": [[314, "switch-line-in"]], "switch_tv": [[314, "switch-tv"]], "track_album": [[314, "track-album"]], "track_album_art": [[314, "track-album-art"]], "track_artist": [[314, "track-artist"]], "track_title": [[314, "track-title"]], "track_uri": [[314, "track-uri"]], "treble": [[314, "treble"]], "uid": [[314, "uid"]], "unjoin": [[314, "unjoin"]], "volume": [[314, "volume"]], "zone_group_members": [[314, "zone-group-members"]], "sonos_favorites": [[314, "sonos-favorites"]], "favorite_radio_stations": [[314, "favorite-radio-stations"]], "play_favorite_title": [[314, "play-favorite-title"]], "play_favorite_number": [[314, "play-favorite-number"]], "play_favorite_radio_title": [[314, "play-favorite-radio-title"]], "play_favorite_radio_number": [[314, "play-favorite-radio-number"]], "Nicht echtzeitf\u00e4hige Eigenschaften": [[314, "nicht-echtzeitfahige-eigenschaften"]], "Gruppenbefehle": [[314, "gruppenbefehle"]], "1) Radiosender abspielen": [[314, "radiosender-abspielen"]], "2) Sonos Playlist abspielen": [[314, "sonos-playlist-abspielen"]], "3) Nutzung der is_initialized Eigenschaft": [[314, "nutzung-der-is-initialized-eigenschaft"]], "4a) Lautst\u00e4rke inkrementell verstellen (via KNX dpt3)": [[314, "a-lautstarke-inkrementell-verstellen-via-knx-dpt3"]], "4b) Erweitertes DPT3 Beispiel": [[314, "b-erweitertes-dpt3-beispiel"]], "5) Minimalbeispiel": [[314, "minimalbeispiel"]], "SmartVisu Widget": [[314, "smartvisu-widget"]], "Speech": [[315, "speech"]], "sp": [[315, "sp"], [505, "sp"]], "speech.py": [[315, "speech-py"]], "Links": [[315, "links"]], "speech": [[316, "speech"]], "Funktionsweise": [[316, "funktionsweise"]], "SQLite (for SmartVisu >= 2.8)": [[317, "sqlite-for-smartvisu-2-8"]], "cleanup()": [[317, "cleanup"], [396, "cleanup"], [506, "cleanup"]], "dump(filename)": [[317, "dump-filename"], [506, "dump-filename"]], "move(old, new)": [[317, "move-old-new"], [506, "move-old-new"]], "Squeezebox": [[318, "squeezebox"]], "New in version 1.4": [[318, "new-in-version-1-4"]], "New in version 1.3.2": [[318, "new-in-version-1-3-2"]], "New in version 1.3.1": [[318, "new-in-version-1-3-1"]], "New in version 1.3.0": [[318, "new-in-version-1-3-0"]], "squeezebox": [[319, "squeezebox"]], "stateengine": [[320, "stateengine"]], "Funktionalit\u00e4t": [[321, "funktionalitat"]], "Umstieg von Autoblind": [[321, "umstieg-von-autoblind"]], "Pluginkonfiguration": [[322, "pluginkonfiguration"]], "Aktivieren": [[322, "aktivieren"]], "Regelwerk-Item": [[323, "regelwerk-item"]], "Item-Definitionen": [[323, "item-definitionen"]], "Beispiel se_item": [[323, "beispiel-se-item"]], "Beispiel se_status": [[323, "beispiel-se-status"]], "Beispiel se_eval": [[323, "beispiel-se-eval"]], "Zustand-Item": [[324, "zustand-item"]], "Zust\u00e4nde": [[324, "zustande"]], "Bedingungen": [[324, "bedingungen"], [325, "bedingungen"]], "Aktionen": [[324, "aktionen"], [326, "aktionen"]], "Templates f\u00fcr Zust\u00e4nde": [[324, "templates-fur-zustande"]], "Name der Bedingung": [[325, "name-der-bedingung"]], "Referenzieren von Items": [[325, "referenzieren-von-items"]], "Bedingungsgruppen": [[325, "bedingungsgruppen"]], "Wertevergleich": [[325, "wertevergleich"]], "Templates f\u00fcr Bedingungsabfragen": [[325, "templates-fur-bedingungsabfragen"]], "Bedingungen mittels eval-Ausdr\u00fccken": [[325, "bedingungen-mittels-eval-ausdrucken"]], "Bedingungslisten": [[325, "bedingungslisten"]], "Vergleichsfunktion": [[325, "vergleichsfunktion"]], "\u201eBesondere\u201c Bedingungen": [[325, "besondere-bedingungen"]], "Beispiel zu Aktionen": [[326, "beispiel-zu-aktionen"], [332, "beispiel-zu-aktionen"]], "Aufbau von Aktionen": [[326, "aufbau-von-aktionen"]], "Auszuf\u00fchrende Aktionsart": [[326, "auszufuhrende-aktionsart"]], "Zus\u00e4tzliche Parameter": [[326, "zusatzliche-parameter"]], "Templates f\u00fcr Aktionen": [[326, "templates-fur-aktionen"]], "Ausf\u00fchrungszeitpunkt": [[327, "ausfuhrungszeitpunkt"]], "Aktionsausf\u00fchrung": [[327, "aktionsausfuhrung"]], "Items zum Pr\u00fcfen": [[328, "items-zum-prufen"]], "Trigger": [[328, "trigger"]], "Default-Konfiguration": [[328, "default-konfiguration"]], "Automatisierung Raffstore 1": [[328, "automatisierung-raffstore-1"]], "Testen der State Engine": [[328, "testen-der-state-engine"]], "Automatisierung Raffstore 2": [[328, "automatisierung-raffstore-2"]], "Settings f\u00fcr Itemwerte": [[328, "settings-fur-itemwerte"]], "Zustand-Templates": [[329, "zustand-templates"]], "general": [[329, "general"]], "lock": [[329, "lock"]], "suspend": [[329, "suspend"]], "suspend_dynamic": [[329, "suspend-dynamic"]], "release": [[329, "release"]], "standard": [[329, "standard"]], "Pluginspezifische Templates": [[329, "pluginspezifische-templates"]], "Funktionen und Variablen": [[330, "funktionen-und-variablen"]], "Vordefinierte Funktionen": [[330, "vordefinierte-funktionen"]], "Besondere Zust\u00e4nde": [[331, "besondere-zustande"]], "Sperren": [[331, "sperren"]], "\u201eSperr\u201c-Item": [[331, "sperr-item"]], "Der Sperr-Zustand": [[331, "der-sperr-zustand"]], "Aussetzen": [[331, "aussetzen"]], "Das \u201eSuspend\u201c-Item": [[331, "das-suspend-item"]], "Das \u201eManuell\u201c-Item": [[331, "das-manuell-item"]], "Der Suspend-Zustand": [[331, "der-suspend-zustand"]], "Dauer der zeitweisen Deaktivierung": [[331, "dauer-der-zeitweisen-deaktivierung"]], "Aktionen - einzeln": [[332, "aktionen-einzeln"]], "Definition der Aktion": [[332, "definition-der-aktion"]], "Weitere Einstellungen": [[332, "weitere-einstellungen"]], "Sonstiges": [[333, "sonstiges"]], "Einbinden anderer Zust\u00e4nde": [[333, "einbinden-anderer-zustande"]], "Neukonfiguration der Hierarchie": [[333, "neukonfiguration-der-hierarchie"]], "Aufl\u00f6sen von Zust\u00e4nden": [[333, "auflosen-von-zustanden"]], "Zustandsnamen": [[333, "zustandsnamen"]], "Systemair": [[334, "systemair"]], "Workarounds": [[334, "workarounds"]], "TankerKoenig": [[335, "tankerkoenig"]], "Example (for cheapest station and for one station that is requested via its id):": [[335, "example-for-cheapest-station-and-for-one-station-that-is-requested-via-its-id"]], "get_petrol_stations(lat, lon, type, sort, rad):": [[335, "get-petrol-stations-lat-lon-type-sort-rad"]], "get_petrol_station_detail_full(id)": [[335, "get-petrol-station-detail-full-id"]], "Fill items with cheapest petrol station data": [[335, "fill-items-with-cheapest-petrol-station-data"]], "Get data of one petrol station": [[335, "get-data-of-one-petrol-station"]], "Get prices of one petrol stations": [[335, "get-prices-of-one-petrol-stations"]], "tankerkoenig": [[336, "tankerkoenig"]], "Bekannte tasmota-Attribute": [[337, "bekannte-tasmota-attribute"]], "Tasmota Items": [[337, "tasmota-items"]], "Tasmota Devices": [[337, "tasmota-devices"]], "Tasmota Details": [[337, "tasmota-details"]], "Tasmota Zigbee Devices": [[337, "tasmota-zigbee-devices"]], "Tasmota Maintenance": [[337, "tasmota-maintenance"]], "telegram": [[338, "telegram"]], "Abh\u00e4ngigkeiten": [[338, "abhangigkeiten"]], "Konfiguration von Telegram": [[338, "konfiguration-von-telegram"]], "telegram_chat_ids": [[338, "telegram-chat-ids"], [512, "telegram-chat-ids"]], "telegram_message": [[338, "telegram-message"], [512, "telegram-message"]], "Einfaches Beispiel": [[338, "einfaches-beispiel"], [338, "id1"], [338, "id2"]], "Beispiel mit Platzhaltern": [[338, "beispiel-mit-platzhaltern"]], "telegram_condition": [[338, "telegram-condition"], [512, "telegram-condition"]], "telegram_value_match_regex": [[338, "telegram-value-match-regex"], [512, "telegram-value-match-regex"]], "telegram_message_chat_id": [[338, "telegram-message-chat-id"], [512, "telegram-message-chat-id"]], "telegram_info": [[338, "telegram-info"], [512, "telegram-info"]], "telegram_text": [[338, "telegram-text"], [512, "telegram-text"]], "telegram_control": [[338, "telegram-control"], [512, "telegram-control"]], "msg_broadcast": [[338, "msg-broadcast"]], "photo_broadcast": [[338, "photo-broadcast"]], "Menugest\u00fctzte Interaktion zwischen Telegram und SmartHomeNG": [[338, "menugestutzte-interaktion-zwischen-telegram-und-smarthomeng"]], "text_display": [[339, "text-display"], [340, "text-display"]], "Nachrichtensenke": [[339, "nachrichtensenke"], [340, "nachrichtensenke"]], "\u201eFenster auf\u201c Nachrichtenquelle": [[339, "fenster-auf-nachrichtenquelle"], [340, "fenster-auf-nachrichtenquelle"]], "Au\u00dfentemperatur abh\u00e4ngig von Fensterstatus:": [[339, "auszentemperatur-abhangig-von-fensterstatus"], [340, "auszentemperatur-abhangig-von-fensterstatus"]], "AB Pr\u00fcfen Nachrichtenquelle:": [[339, "ab-prufen-nachrichtenquelle"], [340, "ab-prufen-nachrichtenquelle"]], "Anrufer-Meldungen": [[339, "anrufer-meldungen"], [340, "anrufer-meldungen"]], "THZ": [[341, "thz"]], "Release history": [[341, "release-history"]], "Timmy Plugin for SmarthomeNG": [[342, "timmy-plugin-for-smarthomeng"]], "timmy": [[343, "timmy"]], "Traffic": [[344, "traffic"]], "get_route_info(origin, destination, alternatives, mode):": [[344, "get-route-info-origin-destination-alternatives-mode"]], "unifi": [[346, "unifi"]], "uzsu": [[347, "uzsu"]], "Standard Einstellungen": [[347, "standard-einstellungen"]], "Experteneinstellungen": [[347, "experteneinstellungen"]], "Zeitserie": [[347, "zeitserie"]], "Interpolation": [[347, "interpolation"]], "Datenformat": [[347, "datenformat"]], "vacations": [[348, "vacations"]], "vicare": [[349, "vicare"]], "Reiter": [[349, "reiter"]], "viessmann": [[350, "viessmann"], [351, "viessmann"]], "1.2.2": [[351, "id1"]], "1.2.0": [[351, "id2"]], "viess_read": [[351, "viess-read"], [522, "viess-read"]], "viess_send": [[351, "viess-send"], [522, "viess-send"]], "viess_read_afterwrite": [[351, "viess-read-afterwrite"], [522, "viess-read-afterwrite"]], "viess_read_cycle": [[351, "viess-read-cycle"], [522, "viess-read-cycle"]], "viess_init": [[351, "viess-init"], [522, "viess-init"]], "viess_trigger": [[351, "viess-trigger"], [522, "viess-trigger"]], "viess_trigger_afterwrite": [[351, "viess-trigger-afterwrite"], [522, "viess-trigger-afterwrite"]], "viess_update": [[351, "viess-update"], [522, "viess-update"]], "viess_timer": [[351, "viess-timer"], [522, "viess-timer"]], "viess_ba_list": [[351, "viess-ba-list"], [522, "viess-ba-list"]], "update_all_read_items()": [[351, "update-all-read-items"], [522, "update-all-read-items"]], "read_addr(addr)": [[351, "read-addr-addr"], [522, "read-addr-addr"]], "read_temp_addr(addr, length, unit)": [[351, "read-temp-addr-addr-length-unit"], [522, "read-temp-addr-addr-length-unit"]], "write_addr(addr, value)": [[351, "write-addr-addr-value"], [522, "write-addr-addr-value"]], "Standalone-Modus": [[351, "standalone-modus"]], "Visualisation (smartVISU support)": [[352, "visualisation-smartvisu-support"]], "visu_dir": [[352, "visu-dir"]], "smartvisu_dir": [[352, "smartvisu-dir"], [496, "smartvisu-dir"], [523, "smartvisu-dir"]], "handle_widgets": [[352, "handle-widgets"], [496, "handle-widgets"], [523, "handle-widgets"]], "visu_acl": [[352, "visu-acl"], [355, "visu-acl"], [496, "visu-acl"], [524, "visu-acl"]], "sv_page": [[352, "sv-page"], [496, "sv-page"], [523, "sv-page"], [686, "sv-page"]], "sv_overview": [[352, "sv-overview"], [496, "sv-overview"], [523, "sv-overview"], [686, "sv-overview"]], "sv_img": [[352, "sv-img"], [496, "sv-img"], [523, "sv-img"], [686, "sv-img"]], "sv_nav_aside": [[352, "sv-nav-aside"], [496, "sv-nav-aside"], [523, "sv-nav-aside"], [686, "sv-nav-aside"]], "sv_nav_aside2": [[352, "sv-nav-aside2"], [496, "sv-nav-aside2"], [523, "sv-nav-aside2"], [686, "sv-nav-aside2"]], "sv_widget": [[352, "sv-widget"], [496, "sv-widget"], [523, "sv-widget"], [686, "sv-widget"]], "sv_widget2": [[352, "sv-widget2"], [496, "sv-widget2"], [523, "sv-widget2"], [686, "sv-widget2"]], "sv_item_type": [[352, "sv-item-type"], [496, "sv-item-type"], [523, "sv-item-type"], [686, "sv-item-type"]], "sv_heading_left": [[352, "sv-heading-left"], [496, "sv-heading-left"], [523, "sv-heading-left"], [686, "sv-heading-left"]], "sv_heading_center": [[352, "sv-heading-center"], [496, "sv-heading-center"], [523, "sv-heading-center"], [686, "sv-heading-center"]], "sv_heading_right": [[352, "sv-heading-right"], [496, "sv-heading-right"], [523, "sv-heading-right"], [686, "sv-heading-right"]], "visu_smartvisu": [[353, "visu-smartvisu"], [354, "visu-smartvisu"]], "Visualisation plugin (smartVISU support) - for developers": [[353, "visualisation-plugin-smartvisu-support-for-developers"]], "Files of the Plugin": [[353, "files-of-the-plugin"]], "__ init __.py": [[353, "init-py"]], "sv_widgets subdirectory": [[353, "sv-widgets-subdirectory"]], "tplNG subdirectory": [[353, "tplng-subdirectory"]], "Handling of smartVISU widgets": [[353, "handling-of-smartvisu-widgets"]], "Add a widget to a plugin": [[353, "add-a-widget-to-a-plugin"]], "Modifications to smartVISU made by the visu plugin": [[353, "modifications-to-smartvisu-made-by-the-visu-plugin"]], "Empfohlenes Vorgehen f\u00fcr manuell erstellte Seiten": [[354, "empfohlenes-vorgehen-fur-manuell-erstellte-seiten"]], "Visualisation (Websocket Protocol)": [[355, "visualisation-websocket-protocol"]], "ip": [[355, "ip"], [378, "ip"], [379, "ip"], [386, "ip"], [389, "ip"], [391, "ip"], [436, "ip"], [457, "ip"], [466, "ip"], [478, "ip"], [479, "ip"], [524, "ip"], [526, "ip"], [533, "ip"]], "port": [[355, "port"], [377, "port"], [379, "port"], [380, "port"], [382, "port"], [386, "port"], [391, "port"], [393, "port"], [400, "port"], [405, "port"], [406, "port"], [408, "port"], [409, "port"], [433, "port"], [434, "port"], [435, "port"], [440, "port"], [441, "port"], [442, "port"], [443, "port"], [444, "port"], [445, "port"], [449, "port"], [449, "id2"], [449, "id3"], [449, "id4"], [449, "id5"], [449, "id6"], [451, "port"], [452, "port"], [453, "port"], [457, "port"], [457, "id2"], [459, "port"], [461, "port"], [464, "port"], [467, "port"], [470, "port"], [475, "port"], [478, "port"], [488, "port"], [494, "port"], [495, "port"], [497, "port"], [498, "port"], [499, "port"], [507, "port"], [524, "port"]], "tls": [[355, "tls"], [444, "tls"], [445, "tls"], [524, "tls"]], "wsproto": [[355, "wsproto"], [524, "wsproto"]], "acl": [[355, "acl"], [505, "acl"], [524, "acl"]], "querydef": [[355, "querydef"], [524, "querydef"]], "url(url)": [[355, "url-url"]], "url(url, ip)": [[355, "url-url-ip"]], "visu_websocket": [[356, "visu-websocket"], [357, "visu-websocket"]], "Visualisation plugin (Websocket Protocol) - for developers": [[356, "visualisation-plugin-websocket-protocol-for-developers"]], "WebSocket Interface": [[356, "websocket-interface"], [357, "websocket-interface"]], "Requests sent from the Visu to SmartHomeNG": [[356, "requests-sent-from-the-visu-to-smarthomeng"], [357, "requests-sent-from-the-visu-to-smarthomeng"]], "Requests sent from SmartHomeNG to the Visu": [[356, "requests-sent-from-smarthomeng-to-the-visu"], [357, "requests-sent-from-smarthomeng-to-the-visu"]], "Informationen f\u00fcr Entwickler": [[357, "informationen-fur-entwickler"]], "Volkszaehler Plugin": [[358, "volkszaehler-plugin"]], "vz_uuid": [[358, "vz-uuid"], [525, "vz-uuid"]], "webpush": [[359, "webpush"]], "Urgency Parameter": [[359, "id1"]], "webservices": [[360, "webservices"]], "Beispiele und Nutzungshinweise": [[360, "beispiele-und-nutzungshinweise"]], "wettercom Plugin": [[361, "wettercom-plugin"]], "Example wettercom.py": [[361, "example-wettercom-py"]], "search(location)": [[361, "search-location"]], "forecast(city_code)": [[361, "forecast-city-code"]], "withings_health": [[362, "withings-health"]], "Vorbereitung": [[362, "vorbereitung"]], "wol": [[363, "wol"]], "wunderground": [[364, "wunderground"], [366, "wunderground"]], "Important Note": [[364, "important-note"]], "Wunderground": [[365, "wunderground"]], "Version 1.2.5": [[365, "version-1-2-5"]], "Change History": [[365, "change-history"]], "Changes Since version 1.2.4": [[365, "changes-since-version-1-2-4"]], "Changes Since version 1.2.2": [[365, "changes-since-version-1-2-2"]], "Changes Since version 1.2.1": [[365, "changes-since-version-1-2-1"]], "apikey": [[365, "apikey"], [422, "apikey"], [471, "apikey"], [471, "id2"], [472, "apikey"], [472, "id3"], [472, "id5"], [472, "id7"], [472, "id11"], [472, "id15"], [510, "apikey"], [516, "apikey"], [529, "apikey"], [532, "apikey"]], "language": [[365, "language"], [516, "language"], [532, "language"]], "location": [[365, "location"], [532, "location"]], "item_subtree": [[365, "item-subtree"], [532, "item-subtree"]], "instance": [[365, "instance"]], "cycle": [[365, "cycle"], [377, "cycle"], [382, "cycle"], [383, "cycle"], [388, "cycle"], [394, "cycle"], [396, "cycle"], [397, "cycle"], [405, "cycle"], [406, "cycle"], [414, "cycle"], [416, "cycle"], [423, "cycle"], [425, "cycle"], [431, "cycle"], [436, "cycle"], [443, "cycle"], [444, "cycle"], [448, "cycle"], [449, "cycle"], [452, "cycle"], [453, "cycle"], [459, "cycle"], [460, "cycle"], [461, "cycle"], [462, "cycle"], [468, "cycle"], [470, "cycle"], [475, "cycle"], [478, "cycle"], [479, "cycle"], [480, "cycle"], [481, "cycle"], [482, "cycle"], [483, "cycle"], [492, "cycle"], [493, "cycle"], [494, "cycle"], [498, "cycle"], [499, "cycle"], [500, "cycle"], [501, "cycle"], [503, "cycle"], [517, "cycle"], [520, "cycle"], [526, "cycle"], [530, "cycle"], [532, "cycle"], [570, "cycle"], [592, "cycle"]], "items configuration": [[365, "items-configuration"]], "wug_matchstring": [[365, "wug-matchstring"], [532, "wug-matchstring"]], "wug_datatype": [[365, "wug-datatype"], [532, "wug-datatype"]], "Example: items.yaml": [[365, "example-items-yaml"]], "Methods / Functions": [[365, "methods-functions"]], "xiaomi_vac": [[367, "xiaomi-vac"]], "XMPP": [[368, "xmpp"]], "Requirements/Description": [[368, "requirements-description"]], "XEP supported": [[368, "xep-supported"]], "Example for an action/logic file": [[368, "example-for-an-action-logic-file"]], "yamaha": [[369, "yamaha"]], "yamahayxc": [[370, "yamahayxc"]], "Anmerkungen": [[370, "anmerkungen"]], "Beispiel der Nutzung per CLI-Plugin": [[370, "beispiel-der-nutzung-per-cli-plugin"]], "zigbee2mqtt": [[371, "zigbee2mqtt"]], "Plugin \u201aalexa\u2018 Konfiguration": [[374, "plugin-alexa-konfiguration"]], "Parameter": [[374, "parameter"], [375, "parameter"], [376, "parameter"], [377, "parameter"], [378, "parameter"], [379, "parameter"], [380, "parameter"], [381, "parameter"], [382, "parameter"], [383, "parameter"], [384, "parameter"], [385, "parameter"], [386, "parameter"], [387, "parameter"], [388, "parameter"], [389, "parameter"], [390, "parameter"], [391, "parameter"], [392, "parameter"], [393, "parameter"], [394, "parameter"], [395, "parameter"], [396, "parameter"], [397, "parameter"], [398, "parameter"], [399, "parameter"], [400, "parameter"], [401, "parameter"], [402, "parameter"], [403, "parameter"], [405, "parameter"], [406, "parameter"], [407, "parameter"], [408, "parameter"], [409, "parameter"], [410, "parameter"], [411, "parameter"], [412, "parameter"], [413, "parameter"], [414, "parameter"], [415, "parameter"], [416, "parameter"], [417, "parameter"], [418, "parameter"], [419, "parameter"], [420, "parameter"], [421, "parameter"], [422, "parameter"], [423, "parameter"], [424, "parameter"], [425, "parameter"], [426, "parameter"], [427, "parameter"], [428, "parameter"], [429, "parameter"], [430, "parameter"], [431, "parameter"], [432, "parameter"], [433, "parameter"], [434, "parameter"], [435, "parameter"], [436, "parameter"], [437, "parameter"], [438, "parameter"], [439, "parameter"], [440, "parameter"], [441, "parameter"], [442, "parameter"], [443, "parameter"], [444, "parameter"], [445, "parameter"], [446, "parameter"], [447, "parameter"], [448, "parameter"], [449, "parameter"], [450, "parameter"], [451, "parameter"], [452, "parameter"], [453, "parameter"], [454, "parameter"], [455, "parameter"], [456, "parameter"], [457, "parameter"], [458, "parameter"], [459, "parameter"], [460, "parameter"], [461, "parameter"], [462, "parameter"], [463, "parameter"], [464, "parameter"], [465, "parameter"], [466, "parameter"], [467, "parameter"], [468, "parameter"], [469, "parameter"], [470, "parameter"], [471, "parameter"], [472, "parameter"], [473, "parameter"], [474, "parameter"], [475, "parameter"], [476, "parameter"], [477, "parameter"], [478, "parameter"], [479, "parameter"], [480, "parameter"], [481, "parameter"], [482, "parameter"], [483, "parameter"], [484, "parameter"], [485, "parameter"], [486, "parameter"], [487, "parameter"], [488, "parameter"], [489, "parameter"], [490, "parameter"], [491, "parameter"], [492, "parameter"], [493, "parameter"], [494, "parameter"], [495, "parameter"], [496, "parameter"], [497, "parameter"], [498, "parameter"], [499, "parameter"], [500, "parameter"], [501, "parameter"], [502, "parameter"], [503, "parameter"], [504, "parameter"], [505, "parameter"], [506, "parameter"], [507, "parameter"], [508, "parameter"], [509, "parameter"], [510, "parameter"], [511, "parameter"], [512, "parameter"], [513, "parameter"], [514, "parameter"], [515, "parameter"], [516, "parameter"], [517, "parameter"], [518, "parameter"], [519, "parameter"], [520, "parameter"], [521, "parameter"], [522, "parameter"], [523, "parameter"], [524, "parameter"], [525, "parameter"], [526, "parameter"], [527, "parameter"], [528, "parameter"], [529, "parameter"], [530, "parameter"], [531, "parameter"], [532, "parameter"], [533, "parameter"], [534, "parameter"], [535, "parameter"], [536, "parameter"], [537, "parameter"], [538, "parameter"]], "service_host": [[374, "service-host"]], "service_port": [[374, "service-port"], [375, "service-port"]], "Logik Parameter": [[374, "logik-parameter"], [375, "logik-parameter"], [376, "logik-parameter"], [377, "logik-parameter"], [378, "logik-parameter"], [379, "logik-parameter"], [380, "logik-parameter"], [381, "logik-parameter"], [382, "logik-parameter"], [383, "logik-parameter"], [384, "logik-parameter"], [385, "logik-parameter"], [386, "logik-parameter"], [387, "logik-parameter"], [388, "logik-parameter"], [389, "logik-parameter"], [390, "logik-parameter"], [391, "logik-parameter"], [392, "logik-parameter"], [393, "logik-parameter"], [394, "logik-parameter"], [395, "logik-parameter"], [396, "logik-parameter"], [397, "logik-parameter"], [398, "logik-parameter"], [399, "logik-parameter"], [400, "logik-parameter"], [401, "logik-parameter"], [402, "logik-parameter"], [403, "logik-parameter"], [405, "logik-parameter"], [406, "logik-parameter"], [407, "logik-parameter"], [408, "logik-parameter"], [409, "logik-parameter"], [410, "logik-parameter"], [411, "logik-parameter"], [412, "logik-parameter"], [413, "logik-parameter"], [414, "logik-parameter"], [415, "logik-parameter"], [416, "logik-parameter"], [417, "logik-parameter"], [418, "logik-parameter"], [419, "logik-parameter"], [420, "logik-parameter"], [421, "logik-parameter"], [422, "logik-parameter"], [423, "logik-parameter"], [424, "logik-parameter"], [425, "logik-parameter"], [426, "logik-parameter"], [427, "logik-parameter"], [428, "logik-parameter"], [429, "logik-parameter"], [430, "logik-parameter"], [431, "logik-parameter"], [432, "logik-parameter"], [433, "logik-parameter"], [434, "logik-parameter"], [435, "logik-parameter"], [436, "logik-parameter"], [437, "logik-parameter"], [438, "logik-parameter"], [439, "logik-parameter"], [440, "logik-parameter"], [441, "logik-parameter"], [442, "logik-parameter"], [443, "logik-parameter"], [444, "logik-parameter"], [445, "logik-parameter"], [446, "logik-parameter"], [447, "logik-parameter"], [448, "logik-parameter"], [449, "logik-parameter"], [450, "logik-parameter"], [451, "logik-parameter"], [452, "logik-parameter"], [453, "logik-parameter"], [454, "logik-parameter"], [455, "logik-parameter"], [456, "logik-parameter"], [457, "logik-parameter"], [458, "logik-parameter"], [459, "logik-parameter"], [460, "logik-parameter"], [461, "logik-parameter"], [462, "logik-parameter"], [463, "logik-parameter"], [464, "logik-parameter"], [465, "logik-parameter"], [466, "logik-parameter"], [467, "logik-parameter"], [468, "logik-parameter"], [469, "logik-parameter"], [470, "logik-parameter"], [471, "logik-parameter"], [472, "logik-parameter"], [473, "logik-parameter"], [474, "logik-parameter"], [475, "logik-parameter"], [476, "logik-parameter"], [477, "logik-parameter"], [478, "logik-parameter"], [479, "logik-parameter"], [480, "logik-parameter"], [481, "logik-parameter"], [482, "logik-parameter"], [483, "logik-parameter"], [484, "logik-parameter"], [485, "logik-parameter"], [486, "logik-parameter"], [487, "logik-parameter"], [488, "logik-parameter"], [489, "logik-parameter"], [490, "logik-parameter"], [491, "logik-parameter"], [492, "logik-parameter"], [493, "logik-parameter"], [494, "logik-parameter"], [495, "logik-parameter"], [496, "logik-parameter"], [497, "logik-parameter"], [498, "logik-parameter"], [499, "logik-parameter"], [500, "logik-parameter"], [501, "logik-parameter"], [502, "logik-parameter"], [503, "logik-parameter"], [504, "logik-parameter"], [505, "logik-parameter"], [506, "logik-parameter"], [507, "logik-parameter"], [508, "logik-parameter"], [509, "logik-parameter"], [510, "logik-parameter"], [511, "logik-parameter"], [512, "logik-parameter"], [513, "logik-parameter"], [514, "logik-parameter"], [515, "logik-parameter"], [516, "logik-parameter"], [517, "logik-parameter"], [518, "logik-parameter"], [519, "logik-parameter"], [520, "logik-parameter"], [521, "logik-parameter"], [522, "logik-parameter"], [523, "logik-parameter"], [524, "logik-parameter"], [525, "logik-parameter"], [526, "logik-parameter"], [527, "logik-parameter"], [528, "logik-parameter"], [529, "logik-parameter"], [530, "logik-parameter"], [531, "logik-parameter"], [532, "logik-parameter"], [533, "logik-parameter"], [534, "logik-parameter"], [535, "logik-parameter"], [536, "logik-parameter"], [537, "logik-parameter"], [538, "logik-parameter"]], "Plugin Functions": [[374, "plugin-functions"], [375, "plugin-functions"], [376, "plugin-functions"], [377, "plugin-functions"], [378, "plugin-functions"], [379, "plugin-functions"], [380, "plugin-functions"], [381, "plugin-functions"], [382, "plugin-functions"], [383, "plugin-functions"], [384, "plugin-functions"], [385, "plugin-functions"], [386, "plugin-functions"], [387, "plugin-functions"], [388, "plugin-functions"], [389, "plugin-functions"], [390, "plugin-functions"], [391, "plugin-functions"], [392, "plugin-functions"], [393, "plugin-functions"], [394, "plugin-functions"], [395, "plugin-functions"], [396, "plugin-functions"], [397, "plugin-functions"], [398, "plugin-functions"], [399, "plugin-functions"], [400, "plugin-functions"], [401, "plugin-functions"], [402, "plugin-functions"], [403, "plugin-functions"], [405, "plugin-functions"], [406, "plugin-functions"], [407, "plugin-functions"], [408, "plugin-functions"], [409, "plugin-functions"], [410, "plugin-functions"], [411, "plugin-functions"], [412, "plugin-functions"], [413, "plugin-functions"], [414, "plugin-functions"], [415, "plugin-functions"], [416, "plugin-functions"], [417, "plugin-functions"], [418, "plugin-functions"], [419, "plugin-functions"], [420, "plugin-functions"], [421, "plugin-functions"], [422, "plugin-functions"], [423, "plugin-functions"], [424, "plugin-functions"], [425, "plugin-functions"], [426, "plugin-functions"], [427, "plugin-functions"], [428, "plugin-functions"], [429, "plugin-functions"], [430, "plugin-functions"], [431, "plugin-functions"], [432, "plugin-functions"], [433, "plugin-functions"], [434, "plugin-functions"], [435, "plugin-functions"], [436, "plugin-functions"], [437, "plugin-functions"], [438, "plugin-functions"], [439, "plugin-functions"], [440, "plugin-functions"], [441, "plugin-functions"], [442, "plugin-functions"], [443, "plugin-functions"], [444, "plugin-functions"], [445, "plugin-functions"], [446, "plugin-functions"], [447, "plugin-functions"], [448, "plugin-functions"], [449, "plugin-functions"], [450, "plugin-functions"], [451, "plugin-functions"], [452, "plugin-functions"], [453, "plugin-functions"], [454, "plugin-functions"], [455, "plugin-functions"], [456, "plugin-functions"], [457, "plugin-functions"], [458, "plugin-functions"], [459, "plugin-functions"], [460, "plugin-functions"], [461, "plugin-functions"], [462, "plugin-functions"], [463, "plugin-functions"], [464, "plugin-functions"], [465, "plugin-functions"], [466, "plugin-functions"], [467, "plugin-functions"], [468, "plugin-functions"], [469, "plugin-functions"], [470, "plugin-functions"], [471, "plugin-functions"], [472, "plugin-functions"], [473, "plugin-functions"], [474, "plugin-functions"], [475, "plugin-functions"], [476, "plugin-functions"], [477, "plugin-functions"], [478, "plugin-functions"], [479, "plugin-functions"], [480, "plugin-functions"], [481, "plugin-functions"], [482, "plugin-functions"], [483, "plugin-functions"], [484, "plugin-functions"], [485, "plugin-functions"], [486, "plugin-functions"], [487, "plugin-functions"], [488, "plugin-functions"], [489, "plugin-functions"], [490, "plugin-functions"], [491, "plugin-functions"], [492, "plugin-functions"], [493, "plugin-functions"], [494, "plugin-functions"], [495, "plugin-functions"], [496, "plugin-functions"], [497, "plugin-functions"], [498, "plugin-functions"], [499, "plugin-functions"], [500, "plugin-functions"], [501, "plugin-functions"], [502, "plugin-functions"], [503, "plugin-functions"], [504, "plugin-functions"], [505, "plugin-functions"], [506, "plugin-functions"], [507, "plugin-functions"], [508, "plugin-functions"], [509, "plugin-functions"], [510, "plugin-functions"], [511, "plugin-functions"], [512, "plugin-functions"], [513, "plugin-functions"], [514, "plugin-functions"], [515, "plugin-functions"], [516, "plugin-functions"], [517, "plugin-functions"], [518, "plugin-functions"], [519, "plugin-functions"], [520, "plugin-functions"], [521, "plugin-functions"], [522, "plugin-functions"], [523, "plugin-functions"], [524, "plugin-functions"], [525, "plugin-functions"], [526, "plugin-functions"], [527, "plugin-functions"], [528, "plugin-functions"], [529, "plugin-functions"], [530, "plugin-functions"], [531, "plugin-functions"], [532, "plugin-functions"], [533, "plugin-functions"], [534, "plugin-functions"], [535, "plugin-functions"], [536, "plugin-functions"], [537, "plugin-functions"], [538, "plugin-functions"]], "Plugin \u201aalexa4p3\u2018 Konfiguration": [[375, "plugin-alexa4p3-konfiguration"]], "alexa_actions": [[375, "alexa-actions"]], "alexa_alias": [[375, "alexa-alias"]], "alexa_auth_cred": [[375, "alexa-auth-cred"]], "alexa_camera_imageUri": [[375, "alexa-camera-imageuri"]], "alexa_color_temp_delta": [[375, "alexa-color-temp-delta"]], "alexa_color_value_type": [[375, "alexa-color-value-type"]], "alexa_csc_uri": [[375, "alexa-csc-uri"]], "alexa_description": [[375, "alexa-description"]], "alexa_device": [[375, "alexa-device"]], "alexa_icon": [[375, "alexa-icon"]], "alexa_item_range": [[375, "alexa-item-range"]], "alexa_item_turn_on": [[375, "alexa-item-turn-on"]], "alexa_name": [[375, "alexa-name"]], "alexa_proactivelyReported": [[375, "alexa-proactivelyreported"]], "alexa_range_delta": [[375, "alexa-range-delta"]], "alexa_retrievable": [[375, "alexa-retrievable"]], "alexa_stream_(1)1(2)(3)": [[375, "alexa-stream-1-1-2-3"]], "alexa_thermo_config": [[375, "alexa-thermo-config"]], "alexa_types": [[375, "alexa-types"]], "Plugin \u201aalexarc4shng\u2018 Konfiguration": [[376, "plugin-alexarc4shng-konfiguration"]], "alexa_credentials": [[376, "alexa-credentials"]], "cookiefile": [[376, "cookiefile"]], "host": [[376, "host"], [377, "host"], [380, "host"], [382, "host"], [383, "host"], [388, "host"], [393, "host"], [400, "host"], [405, "host"], [406, "host"], [408, "host"], [417, "host"], [427, "host"], [428, "host"], [432, "host"], [433, "host"], [434, "host"], [435, "host"], [440, "host"], [441, "host"], [442, "host"], [443, "host"], [444, "host"], [445, "host"], [451, "host"], [452, "host"], [453, "host"], [457, "host"], [459, "host"], [461, "host"], [464, "host"], [467, "host"], [470, "host"], [475, "host"], [488, "host"], [494, "host"], [495, "host"], [497, "host"], [498, "host"], [499, "host"], [500, "host"], [503, "host"], [507, "host"], [525, "host"]], "item_2_enable_alexa_rc": [[376, "item-2-enable-alexa-rc"]], "login_update_cycle": [[376, "login-update-cycle"]], "mfa_secret": [[376, "mfa-secret"]], "get_last_alexa()": [[376, "get-last-alexa"]], "get_list(type)": [[376, "get-list-type"]], "type": [[376, "type"], [508, "type"], [510, "type"], [517, "type"], [579, "type"]], "send_cmd(dvName, cmdName, mValue)": [[376, "send-cmd-dvname-cmdname-mvalue"]], "dvName": [[376, "dvname"]], "cmdName": [[376, "cmdname"]], "mValue": [[376, "mvalue"]], "Plugin \u201aapcups\u2018 Konfiguration": [[377, "plugin-apcups-konfiguration"]], "Plugin \u201aappletv\u2018 Konfiguration": [[378, "plugin-appletv-konfiguration"]], "scan_timeout": [[378, "scan-timeout"]], "is_on()": [[378, "is-on"]], "is_playing()": [[378, "is-playing"]], "pause()": [[378, "pause"], [399, "pause"]], "play()": [[378, "play"]], "Plugin \u201aartnet\u2018 Konfiguration": [[379, "plugin-artnet-konfiguration"]], "artnet_net": [[379, "artnet-net"]], "artnet_subnet": [[379, "artnet-subnet"]], "artnet_universe": [[379, "artnet-universe"]], "min_channels": [[379, "min-channels"]], "update_cycle": [[379, "update-cycle"], [401, "update-cycle"], [415, "update-cycle"], [424, "update-cycle"], [437, "update-cycle"], [438, "update-cycle"], [439, "update-cycle"], [509, "update-cycle"]], "artnet_address": [[379, "artnet-address"]], "send_frame(values)": [[379, "send-frame-values"]], "values": [[379, "values"], [379, "id2"]], "send_frame_starting_at(adr, values)": [[379, "send-frame-starting-at-adr-values"]], "adr": [[379, "adr"], [379, "id3"]], "send_single_value(adr, value)": [[379, "send-single-value-adr-value"]], "Plugin \u201aasterisk\u2018 Konfiguration": [[380, "plugin-asterisk-konfiguration"]], "password": [[380, "password"], [382, "password"], [383, "password"], [390, "password"], [399, "password"], [406, "password"], [411, "password"], [417, "password"], [421, "password"], [424, "password"], [429, "password"], [444, "password"], [445, "password"], [449, "password"], [451, "password"], [465, "password"], [478, "password"], [479, "password"], [492, "password"], [534, "password"]], "username": [[380, "username"], [382, "username"], [383, "username"], [406, "username"], [417, "username"], [429, "username"], [444, "username"], [445, "username"], [449, "username"], [451, "username"], [465, "username"]], "call(source, dest, context, callerid)": [[380, "call-source-dest-context-callerid"]], "source": [[380, "source"]], "dest": [[380, "dest"]], "context": [[380, "context"], [380, "id3"]], "callerid": [[380, "callerid"]], "key": [[380, "key"], [380, "id2"], [388, "key"], [394, "key"], [433, "key"], [462, "key"], [468, "key"]], "device": [[380, "device"], [392, "device"], [399, "device"], [403, "device"], [421, "device"], [422, "device"], [473, "device"], [497, "device"], [498, "device"], [499, "device"], [538, "device"]], "mailbox_count(mailbox, context)": [[380, "mailbox-count-mailbox-context"]], "mailbox": [[380, "mailbox"]], "Plugin \u201aavdevice\u2018 Konfiguration": [[381, "plugin-avdevice-konfiguration"]], "autoreconnect": [[381, "autoreconnect"], [400, "autoreconnect"], [408, "autoreconnect"], [435, "autoreconnect"], [440, "autoreconnect"], [441, "autoreconnect"], [464, "autoreconnect"], [467, "autoreconnect"], [507, "autoreconnect"]], "depend0_power0": [[381, "depend0-power0"]], "depend0_volume0": [[381, "depend0-volume0"]], "dependson_item": [[381, "dependson-item"]], "dependson_value": [[381, "dependson-value"]], "errorresponse": [[381, "errorresponse"]], "forcebuffer": [[381, "forcebuffer"]], "ignoreresponse": [[381, "ignoreresponse"]], "inputignoredisplay": [[381, "inputignoredisplay"]], "lineending_response": [[381, "lineending-response"]], "lineending_send": [[381, "lineending-send"]], "model": [[381, "model"], [400, "model"], [408, "model"], [464, "model"], [467, "model"]], "reconnectretries": [[381, "reconnectretries"]], "resendwait": [[381, "resendwait"]], "resetonerror": [[381, "resetonerror"]], "responsebuffer": [[381, "responsebuffer"]], "rs232_baudrate": [[381, "rs232-baudrate"]], "rs232_port": [[381, "rs232-port"]], "rs232_timeout": [[381, "rs232-timeout"]], "secondstokeep": [[381, "secondstokeep"]], "sendretries": [[381, "sendretries"]], "statusquery": [[381, "statusquery"]], "tcp_ip": [[381, "tcp-ip"]], "tcp_port": [[381, "tcp-port"]], "tcp_timeout": [[381, "tcp-timeout"]], "update_exclude": [[381, "update-exclude"]], "avdevice_depend": [[381, "avdevice-depend"]], "avdevice_init": [[381, "avdevice-init"]], "avdevice_speakers": [[381, "avdevice-speakers"]], "avdevice_zone0": [[381, "avdevice-zone0"]], "avdevice_zone0_depend": [[381, "avdevice-zone0-depend"]], "avdevice_zone0_init": [[381, "avdevice-zone0-init"]], "avdevice_zone0_speakers": [[381, "avdevice-zone0-speakers"]], "avdevice_zone1": [[381, "avdevice-zone1"]], "avdevice_zone1_depend": [[381, "avdevice-zone1-depend"]], "avdevice_zone1_init": [[381, "avdevice-zone1-init"]], "avdevice_zone1_speakers": [[381, "avdevice-zone1-speakers"]], "avdevice_zone2": [[381, "avdevice-zone2"]], "avdevice_zone2_depend": [[381, "avdevice-zone2-depend"]], "avdevice_zone2_init": [[381, "avdevice-zone2-init"]], "avdevice_zone2_speakers": [[381, "avdevice-zone2-speakers"]], "avdevice_zone3": [[381, "avdevice-zone3"]], "avdevice_zone3_depend": [[381, "avdevice-zone3-depend"]], "avdevice_zone3_init": [[381, "avdevice-zone3-init"]], "avdevice_zone3_speakers": [[381, "avdevice-zone3-speakers"]], "avdevice_zone4": [[381, "avdevice-zone4"]], "avdevice_zone4_depend": [[381, "avdevice-zone4-depend"]], "avdevice_zone4_init": [[381, "avdevice-zone4-init"]], "avdevice_zone4_speakers": [[381, "avdevice-zone4-speakers"]], "Plugin \u201aavm\u2018 Konfiguration": [[382, "plugin-avm-konfiguration"]], "avm_home_automation": [[382, "avm-home-automation"]], "call_monitor": [[382, "call-monitor"]], "call_monitor_incoming_filter": [[382, "call-monitor-incoming-filter"]], "log_entry_count": [[382, "log-entry-count"]], "ssl": [[382, "ssl"], [406, "ssl"], [429, "ssl"]], "tr064_item_blacklist": [[382, "tr064-item-blacklist"]], "verify": [[382, "verify"], [406, "verify"], [423, "verify"], [460, "verify"]], "avm_ain": [[382, "avm-ain"], [383, "avm-ain"]], "avm_data_cycle": [[382, "avm-data-cycle"]], "avm_data_type": [[382, "avm-data-type"]], "avm_deflection_index": [[382, "avm-deflection-index"]], "avm_incoming_allowed": [[382, "avm-incoming-allowed"]], "avm_mac": [[382, "avm-mac"]], "avm_read_after_write": [[382, "avm-read-after-write"]], "avm_tam_index": [[382, "avm-tam-index"]], "avm_target_number": [[382, "avm-target-number"]], "avm_wlan_index": [[382, "avm-wlan-index"]], "cancel_call()": [[382, "cancel-call"]], "get_call_origin()": [[382, "get-call-origin"]], "get_calllist(filter_incoming= \u201a\u2018, phonebook_id=0)": [[382, "get-calllist-filter-incoming-phonebook-id-0"]], "filter_incoming": [[382, "filter-incoming"]], "phonebook_id": [[382, "phonebook-id"], [382, "id2"], [382, "id5"]], "get_contact_name_by_phone_number(phone_number, phonebook_id=0)": [[382, "get-contact-name-by-phone-number-phone-number-phonebook-id-0"]], "phone_number": [[382, "phone-number"], [382, "id7"]], "get_deflection(deflection_id)": [[382, "get-deflection-deflection-id"]], "deflection_id": [[382, "deflection-id"], [382, "id6"]], "get_deflections()": [[382, "get-deflections"]], "get_device_log_from_lua()": [[382, "get-device-log-from-lua"]], "get_device_log_from_tr064()": [[382, "get-device-log-from-tr064"]], "get_host_details(index)": [[382, "get-host-details-index"]], "index": [[382, "index"], [382, "id4"], [479, "index"], [479, "id5"]], "get_hosts(only_active)": [[382, "get-hosts-only-active"]], "only_active": [[382, "only-active"], [382, "id3"]], "get_hosts_dict(only_active)": [[382, "get-hosts-dict-only-active"]], "get_hosts_list(identifier_list, filter_dict)": [[382, "get-hosts-list-identifier-list-filter-dict"]], "identifier_list": [[382, "identifier-list"]], "filter_dict": [[382, "filter-dict"]], "get_mesh_topology()": [[382, "get-mesh-topology"]], "get_number_of_deflections()": [[382, "get-number-of-deflections"]], "get_phone_name(index)": [[382, "get-phone-name-index"]], "get_phone_numbers_by_name(name, phonebook_id=0)": [[382, "get-phone-numbers-by-name-name-phonebook-id-0"]], "name": [[382, "name"], [396, "name"], [446, "name"], [463, "name"], [472, "name"], [479, "name"], [479, "id4"], [512, "name"]], "is_host_active(mac_address)": [[382, "is-host-active-mac-address"]], "mac_address": [[382, "mac-address"], [382, "id8"]], "reboot()": [[382, "reboot"]], "reconnect()": [[382, "reconnect"]], "set_call_origin(phone_name)": [[382, "set-call-origin-phone-name"]], "phone_name": [[382, "phone-name"]], "set_deflection_enable(deflection_id, enable)": [[382, "set-deflection-enable-deflection-id-enable"]], "enable": [[382, "enable"]], "start_call(phone_number)": [[382, "start-call-phone-number"]], "Plugin \u201aavm_smarthome\u2018 Konfiguration": [[383, "plugin-avm-smarthome-konfiguration"]], "avm_smarthome_data": [[383, "avm-smarthome-data"]], "Plugin \u201abeolink\u2018 Konfiguration": [[384, "plugin-beolink-konfiguration"]], "rescan_on_start": [[384, "rescan-on-start"]], "scan_fromip": [[384, "scan-fromip"]], "scan_toip": [[384, "scan-toip"]], "beo_command": [[384, "beo-command"]], "beo_id": [[384, "beo-id"]], "beo_status": [[384, "beo-status"]], "Plugin \u201ablockly\u2018 Konfiguration": [[385, "plugin-blockly-konfiguration"]], "section_prefix": [[385, "section-prefix"]], "Plugin \u201abose_soundtouch\u2018 Konfiguration": [[386, "plugin-bose-soundtouch-konfiguration"]], "cycle_time": [[386, "cycle-time"], [486, "cycle-time"]], "bose_soundtouch_action": [[386, "bose-soundtouch-action"]], "Plugin \u201absblan\u2018 Konfiguration": [[387, "plugin-bsblan-konfiguration"]], "bsblan_ip": [[387, "bsblan-ip"]], "Plugin \u201abuderus\u2018 Konfiguration": [[388, "plugin-buderus-konfiguration"]], "km_id": [[388, "km-id"]], "Plugin \u201abyd_bat\u2018 Konfiguration": [[389, "plugin-byd-bat-konfiguration"]], "diag_cycle": [[389, "diag-cycle"]], "imgpath": [[389, "imgpath"]], "log_age": [[389, "log-age"]], "log_data": [[389, "log-data"]], "byd_para": [[389, "byd-para"]], "byd_root": [[389, "byd-root"]], "Plugin \u201acasambi\u2018 Konfiguration": [[390, "plugin-casambi-konfiguration"]], "api_key": [[390, "api-key"], [430, "api-key"]], "email": [[390, "email"], [411, "email"]], "casambi_id": [[390, "casambi-id"]], "casambi_rx_key": [[390, "casambi-rx-key"]], "casambi_tx_key": [[390, "casambi-tx-key"]], "Plugin \u201acli\u2018 Konfiguration": [[391, "plugin-cli-konfiguration"]], "hashed_password": [[391, "hashed-password"]], "update": [[391, "update"]], "add_command(command, function, group, usage)": [[391, "add-command-command-function-group-usage"]], "function": [[391, "function"], [506, "function"]], "group": [[391, "group"], [398, "group"], [430, "group"], [527, "group"]], "usage": [[391, "usage"]], "remove_command(command)": [[391, "remove-command-command"]], "Plugin \u201aco2meter\u2018 Konfiguration": [[392, "plugin-co2meter-konfiguration"]], "time_sleep": [[392, "time-sleep"]], "Plugin \u201acomfoair\u2018 Konfiguration": [[393, "plugin-comfoair-konfiguration"]], "kwltype": [[393, "kwltype"]], "serialport": [[393, "serialport"], [400, "serialport"], [401, "serialport"], [402, "serialport"], [407, "serialport"], [408, "serialport"], [439, "serialport"], [464, "serialport"], [467, "serialport"], [497, "serialport"], [498, "serialport"], [499, "serialport"], [509, "serialport"], [522, "serialport"]], "Plugin \u201adarksky\u2018 Konfiguration": [[394, "plugin-darksky-konfiguration"]], "lang": [[394, "lang"], [462, "lang"], [468, "lang"]], "latitude": [[394, "latitude"], [462, "latitude"], [468, "latitude"], [502, "latitude"]], "longitude": [[394, "longitude"], [462, "longitude"], [468, "longitude"], [502, "longitude"]], "units": [[394, "units"], [462, "units"], [468, "units"]], "ds_matchstring": [[394, "ds-matchstring"]], "map_icon(icon)": [[394, "map-icon-icon"], [468, "map-icon-icon"]], "icon": [[394, "icon"], [430, "icon"], [468, "icon"], [527, "icon"]], "Plugin \u201adashbutton\u2018 Konfiguration": [[395, "plugin-dashbutton-konfiguration"]], "dashbutton_mac": [[395, "dashbutton-mac"]], "dashbutton_mode": [[395, "dashbutton-mode"]], "dashbutton_reset": [[395, "dashbutton-reset"]], "dashbutton_value": [[395, "dashbutton-value"]], "Plugin \u201adatabase\u2018 Konfiguration": [[396, "plugin-database-konfiguration"]], "connect": [[396, "connect"]], "copy_database": [[396, "copy-database"]], "copy_database_name": [[396, "copy-database-name"]], "count_logentries": [[396, "count-logentries"]], "default_maxage": [[396, "default-maxage"]], "driver": [[396, "driver"]], "max_delete_logentries": [[396, "max-delete-logentries"]], "precision": [[396, "precision"]], "prefix": [[396, "prefix"]], "removeold_cycle": [[396, "removeold-cycle"]], "database_maxage": [[396, "database-maxage"]], "db()": [[396, "db"]], "deleteItem(id)": [[396, "deleteitem-id"]], "id": [[396, "id"], [396, "id2"], [396, "id3"], [396, "id12"], [396, "id16"], [396, "id19"], [396, "id21"], [396, "id29"], [396, "id36"], [510, "id"], [510, "id2"]], "deleteLog(id, time, time_start, time_end, changed, changed_start, changed_end, cur)": [[396, "deletelog-id-time-time-start-time-end-changed-changed-start-changed-end-cur"]], "time": [[396, "time"], [396, "id4"], [396, "id13"], [396, "id20"], [396, "id22"], [396, "id30"], [396, "id37"]], "time_start": [[396, "time-start"], [396, "id5"], [396, "id23"]], "time_end": [[396, "time-end"], [396, "id6"], [396, "id24"]], "changed": [[396, "changed"], [396, "id7"], [396, "id14"], [396, "id25"], [396, "id34"], [396, "id41"]], "changed_start": [[396, "changed-start"], [396, "id8"], [396, "id26"]], "changed_end": [[396, "changed-end"], [396, "id9"], [396, "id27"]], "cur": [[396, "cur"], [396, "id10"], [396, "id11"], [396, "id15"], [396, "id17"], [396, "id18"], [396, "id28"], [396, "id35"], [396, "id42"]], "dump(dumpfile, id, time, time_start, time_end, changed, changed_start, changed_end, cur)": [[396, "dump-dumpfile-id-time-time-start-time-end-changed-changed-start-changed-end-cur"]], "dumpfile": [[396, "dumpfile"], [506, "dumpfile"]], "id(item)": [[396, "id-item"]], "insertItem(name, cur)": [[396, "insertitem-name-cur"]], "insertLog(id, time, duration, val, it, changed, cur)": [[396, "insertlog-id-time-duration-val-it-changed-cur"]], "duration": [[396, "duration"], [396, "id31"], [396, "id38"], [479, "duration"]], "val": [[396, "val"], [396, "id32"], [396, "id39"]], "it": [[396, "it"], [396, "id33"], [396, "id40"]], "readItem(id, cur)": [[396, "readitem-id-cur"]], "readItems(cur)": [[396, "readitems-cur"]], "readLog(id, time)": [[396, "readlog-id-time"]], "readLogs(id, time, time_start, time_end, changed, changed_start, changed_end, cur)": [[396, "readlogs-id-time-time-start-time-end-changed-changed-start-changed-end-cur"]], "updateItem(id, time, duration, val, it, changed, cur)": [[396, "updateitem-id-time-duration-val-it-changed-cur"]], "updateLog(id, time, duration, val, it, changed, cur)": [[396, "updatelog-id-time-duration-val-it-changed-cur"]], "Plugin \u201adatalog\u2018 Konfiguration": [[397, "plugin-datalog-konfiguration"]], "filepatterns": [[397, "filepatterns"]], "logpatterns": [[397, "logpatterns"]], "path": [[397, "path"], [506, "path"]], "Plugin \u201adb_addon\u2018 Konfiguration": [[398, "plugin-db-addon-konfiguration"]], "database_plugin_config": [[398, "database-plugin-config"]], "ignore_0": [[398, "ignore-0"]], "lock_db_for_query": [[398, "lock-db-for-query"]], "optimize_value_filter": [[398, "optimize-value-filter"]], "startup_run_delay": [[398, "startup-run-delay"]], "use_oldest_entry": [[398, "use-oldest-entry"]], "value_filter": [[398, "value-filter"]], "db_addon_database_item": [[398, "db-addon-database-item"]], "db_addon_ignore_value": [[398, "db-addon-ignore-value"]], "db_addon_ignore_value_list": [[398, "db-addon-ignore-value-list"]], "db_addon_params": [[398, "db-addon-params"]], "db_addon_params_dict": [[398, "db-addon-params-dict"]], "db_addon_startup": [[398, "db-addon-startup"]], "db_version()": [[398, "db-version"]], "fetch_log(func, item, timeframe, start, end, count, group, group2)": [[398, "fetch-log-func-item-timeframe-start-end-count-group-group2"]], "func": [[398, "func"]], "timeframe": [[398, "timeframe"]], "start": [[398, "start"], [479, "start"], [479, "id6"], [481, "start"], [506, "start"]], "end": [[398, "end"], [479, "end"], [479, "id7"], [506, "end"]], "count": [[398, "count"]], "group2": [[398, "group2"]], "suspend()": [[398, "suspend"], [484, "suspend"], [488, "suspend"]], "Plugin \u201adeebot_ozmo\u2018 Konfiguration": [[399, "plugin-deebot-ozmo-konfiguration"]], "account": [[399, "account"]], "continent": [[399, "continent"]], "country": [[399, "country"]], "interval": [[399, "interval"], [519, "interval"]], "charge()": [[399, "charge"]], "clean()": [[399, "clean"]], "clean_spot_area(area)": [[399, "clean-spot-area-area"]], "area": [[399, "area"]], "locate()": [[399, "locate"]], "resume()": [[399, "resume"]], "set_fan_speed(speed)": [[399, "set-fan-speed-speed"]], "speed": [[399, "speed"]], "set_water_level(level)": [[399, "set-water-level-level"]], "level": [[399, "level"]], "Plugin \u201adenon\u2018 Konfiguration": [[400, "plugin-denon-konfiguration"]], "autoconnect": [[400, "autoconnect"], [408, "autoconnect"], [435, "autoconnect"], [441, "autoconnect"], [464, "autoconnect"], [467, "autoconnect"]], "baudrate": [[400, "baudrate"], [401, "baudrate"], [408, "baudrate"], [439, "baudrate"], [464, "baudrate"], [467, "baudrate"], [514, "baudrate"]], "binary": [[400, "binary"], [408, "binary"], [464, "binary"], [467, "binary"]], "bytesize": [[400, "bytesize"], [408, "bytesize"], [464, "bytesize"], [467, "bytesize"]], "conn_type": [[400, "conn-type"], [408, "conn-type"], [467, "conn-type"]], "connect_cycle": [[400, "connect-cycle"], [408, "connect-cycle"], [435, "connect-cycle"], [440, "connect-cycle"], [441, "connect-cycle"], [464, "connect-cycle"], [467, "connect-cycle"], [507, "connect-cycle"]], "connect_retries": [[400, "connect-retries"], [408, "connect-retries"], [435, "connect-retries"], [440, "connect-retries"], [441, "connect-retries"], [464, "connect-retries"], [467, "connect-retries"], [507, "connect-retries"]], "delay_initial_read": [[400, "delay-initial-read"], [435, "delay-initial-read"], [441, "delay-initial-read"], [464, "delay-initial-read"], [467, "delay-initial-read"]], "parity": [[400, "parity"], [408, "parity"], [464, "parity"], [467, "parity"]], "resume_initial_read": [[400, "resume-initial-read"], [435, "resume-initial-read"], [441, "resume-initial-read"], [464, "resume-initial-read"], [467, "resume-initial-read"]], "retry_cycle": [[400, "retry-cycle"], [407, "retry-cycle"], [408, "retry-cycle"], [435, "retry-cycle"], [441, "retry-cycle"], [464, "retry-cycle"], [467, "retry-cycle"]], "retry_suspend": [[400, "retry-suspend"], [408, "retry-suspend"], [435, "retry-suspend"], [441, "retry-suspend"], [464, "retry-suspend"], [467, "retry-suspend"]], "send_retries": [[400, "send-retries"], [435, "send-retries"], [441, "send-retries"], [464, "send-retries"], [467, "send-retries"]], "sendretry_cycle": [[400, "sendretry-cycle"], [441, "sendretry-cycle"], [464, "sendretry-cycle"], [467, "sendretry-cycle"]], "stopbits": [[400, "stopbits"], [408, "stopbits"], [464, "stopbits"], [467, "stopbits"]], "suspend_item": [[400, "suspend-item"], [408, "suspend-item"], [435, "suspend-item"], [441, "suspend-item"], [464, "suspend-item"], [467, "suspend-item"]], "terminator": [[400, "terminator"], [408, "terminator"], [441, "terminator"], [464, "terminator"], [467, "terminator"]], "timeout": [[400, "timeout"], [401, "timeout"], [406, "timeout"], [408, "timeout"], [423, "timeout"], [435, "timeout"], [441, "timeout"], [459, "timeout"], [464, "timeout"], [467, "timeout"], [498, "timeout"], [499, "timeout"], [522, "timeout"]], "denon_command": [[400, "denon-command"]], "denon_lookup": [[400, "denon-lookup"]], "denon_read": [[400, "denon-read"]], "denon_read_cycle": [[400, "denon-read-cycle"]], "denon_read_group": [[400, "denon-read-group"]], "denon_read_group_trigger": [[400, "denon-read-group-trigger"]], "denon_read_initial": [[400, "denon-read-initial"]], "denon_readafterwrite": [[400, "denon-readafterwrite"]], "denon_write": [[400, "denon-write"]], "Plugin \u201adlms\u2018 Konfiguration": [[401, "plugin-dlms-konfiguration"]], "baudrate_fix": [[401, "baudrate-fix"]], "device_address": [[401, "device-address"]], "no_waiting": [[401, "no-waiting"]], "only_listen": [[401, "only-listen"]], "querycode": [[401, "querycode"]], "reset_baudrate": [[401, "reset-baudrate"]], "update_crontab": [[401, "update-crontab"]], "update_cycle_start_offset": [[401, "update-cycle-start-offset"]], "use_checksum": [[401, "use-checksum"]], "dlms_obis_code": [[401, "dlms-obis-code"]], "dlms_obis_readout": [[401, "dlms-obis-readout"]], "Plugin \u201admx\u2018 Konfiguration": [[402, "plugin-dmx-konfiguration"]], "interface": [[402, "interface"]], "Plugin \u201adrexelundweiss\u2018 Konfiguration": [[403, "plugin-drexelundweiss-konfiguration"]], "LU_ID": [[403, "lu-id"]], "PANEL_ID": [[403, "panel-id"]], "WP_ID": [[403, "wp-id"]], "busmonitor": [[403, "busmonitor"], [434, "busmonitor"]], "retrylimit": [[403, "retrylimit"]], "tty": [[403, "tty"], [414, "tty"]], "DuW_LU_register": [[403, "duw-lu-register"]], "DuW_PANEL_register": [[403, "duw-panel-register"]], "DuW_WP_register": [[403, "duw-wp-register"]], "Plugin \u201aebus\u2018 Konfiguration": [[405, "plugin-ebus-konfiguration"]], "ebus_cmd": [[405, "ebus-cmd"]], "ebus_type": [[405, "ebus-type"]], "Plugin \u201aenigma2\u2018 Konfiguration": [[406, "plugin-enigma2-konfiguration"]], "fast_cycle": [[406, "fast-cycle"]], "enigma2_data_type": [[406, "enigma2-data-type"]], "enigma2_page": [[406, "enigma2-page"]], "enigma2_remote_command_id": [[406, "enigma2-remote-command-id"]], "sref": [[406, "sref"]], "messagetext": [[406, "messagetext"]], "messagetype": [[406, "messagetype"]], "Plugin \u201aenocean\u2018 Konfiguration": [[407, "plugin-enocean-konfiguration"]], "log_unknown_messages": [[407, "log-unknown-messages"]], "retry": [[407, "retry"]], "tx_id": [[407, "tx-id"]], "block_dim_value": [[407, "block-dim-value"]], "block_switch": [[407, "block-switch"]], "color": [[407, "color"], [491, "color"]], "dim_speed": [[407, "dim-speed"]], "enocean_device": [[407, "enocean-device"]], "enocean_rocker_action": [[407, "enocean-rocker-action"]], "enocean_rocker_sequence": [[407, "enocean-rocker-sequence"]], "enocean_rtime": [[407, "enocean-rtime"]], "enocean_rx_eep": [[407, "enocean-rx-eep"]], "enocean_rx_id": [[407, "enocean-rx-id"]], "enocean_rx_key": [[407, "enocean-rx-key"]], "enocean_tx_eep": [[407, "enocean-tx-eep"]], "enocean_tx_id_offset": [[407, "enocean-tx-id-offset"]], "ref_level": [[407, "ref-level"]], "Plugin \u201aepson\u2018 Konfiguration": [[408, "plugin-epson-konfiguration"]], "command_class": [[408, "command-class"]], "epson_command": [[408, "epson-command"]], "epson_lookup": [[408, "epson-lookup"]], "epson_read": [[408, "epson-read"]], "epson_read_cycle": [[408, "epson-read-cycle"]], "epson_read_group": [[408, "epson-read-group"]], "epson_read_group_trigger": [[408, "epson-read-group-trigger"]], "epson_read_initial": [[408, "epson-read-initial"]], "epson_write": [[408, "epson-write"]], "Plugin \u201aeta_pu\u2018 Konfiguration": [[409, "plugin-eta-pu-konfiguration"]], "address": [[409, "address"], [472, "address"], [482, "address"]], "setname": [[409, "setname"]], "setpath": [[409, "setpath"]], "eta_pu_error": [[409, "eta-pu-error"]], "eta_pu_type": [[409, "eta-pu-type"]], "eta_pu_uri": [[409, "eta-pu-uri"]], "Plugin \u201aexecutor\u2018 Konfiguration": [[410, "plugin-executor-konfiguration"]], "script_entries": [[410, "script-entries"]], "scripts": [[410, "scripts"]], "Plugin \u201agarminconnect\u2018 Konfiguration": [[411, "plugin-garminconnect-konfiguration"]], "is_cn": [[411, "is-cn"]], "get_heart_rates(date)": [[411, "get-heart-rates-date"]], "date": [[411, "date"], [411, "id2"], [520, "date"], [520, "id2"], [520, "id4"]], "get_stats(date)": [[411, "get-stats-date"]], "Plugin \u201agpio\u2018 Konfiguration": [[412, "plugin-gpio-konfiguration"]], "bouncetime": [[412, "bouncetime"]], "initretries": [[412, "initretries"]], "mode": [[412, "mode"], [479, "mode"], [479, "id2"], [479, "id3"], [516, "mode"], [528, "mode"]], "pullupdown": [[412, "pullupdown"]], "gpio_in": [[412, "gpio-in"]], "gpio_init": [[412, "gpio-init"]], "gpio_invert": [[412, "gpio-invert"]], "gpio_out": [[412, "gpio-out"]], "gpio_pud": [[412, "gpio-pud"]], "Plugin \u201aharmony\u2018 Konfiguration": [[413, "plugin-harmony-konfiguration"]], "harmony_ip": [[413, "harmony-ip"]], "harmony_port": [[413, "harmony-port"]], "sleekxmpp_debug": [[413, "sleekxmpp-debug"]], "harmony_command_0": [[413, "harmony-command-0"]], "harmony_command_1": [[413, "harmony-command-1"]], "harmony_item": [[413, "harmony-item"]], "Plugin \u201ahelios\u2018 Konfiguration": [[414, "plugin-helios-konfiguration"]], "e0": [[414, "e0"]], "e1": [[414, "e1"]], "e10": [[414, "e10"]], "e2": [[414, "e2"]], "e3": [[414, "e3"]], "e4": [[414, "e4"]], "e5": [[414, "e5"]], "e6": [[414, "e6"]], "e7": [[414, "e7"]], "e8": [[414, "e8"]], "e9": [[414, "e9"]], "filter_warning": [[414, "filter-warning"]], "helios_var": [[414, "helios-var"]], "Plugin \u201ahelios_tcp\u2018 Konfiguration": [[415, "plugin-helios-tcp-konfiguration"]], "helios_ip": [[415, "helios-ip"]], "Plugin \u201ahomeconnect\u2018 Konfiguration": [[416, "plugin-homeconnect-konfiguration"]], "client_id": [[416, "client-id"], [530, "client-id"]], "client_secret": [[416, "client-secret"]], "simulate": [[416, "simulate"]], "ha_id": [[416, "ha-id"], [416, "id2"], [416, "id3"], [416, "id4"], [416, "id5"], [416, "id6"], [416, "id8"]], "homeconnect_data_type": [[416, "homeconnect-data-type"]], "get_hc()": [[416, "get-hc"]], "get_program_options(ha_id, program_key)": [[416, "get-program-options-ha-id-program-key"]], "program_key": [[416, "program-key"], [416, "id7"], [416, "id9"]], "get_programs_active(ha_id)": [[416, "get-programs-active-ha-id"]], "get_programs_available(ha_id)": [[416, "get-programs-available-ha-id"]], "get_programs_selected(ha_id)": [[416, "get-programs-selected-ha-id"]], "get_redirect_url()": [[416, "get-redirect-url"]], "start_program(ha_id, program_key, options)": [[416, "start-program-ha-id-program-key-options"]], "options": [[416, "options"], [416, "id10"]], "stop_program(ha_id, program_key, options)": [[416, "stop-program-ha-id-program-key-options"]], "Plugin \u201ahomematic\u2018 Konfiguration": [[417, "plugin-homematic-konfiguration"]], "callbackHost": [[417, "callbackhost"]], "callbackPort": [[417, "callbackport"]], "callbackPort_hmip": [[417, "callbackport-hmip"]], "customCallbackHost": [[417, "customcallbackhost"]], "learnmode_length": [[417, "learnmode-length"]], "proxyPort": [[417, "proxyport"]], "proxyPort_hmip": [[417, "proxyport-hmip"]], "hm_address": [[417, "hm-address"]], "hm_channel": [[417, "hm-channel"]], "hm_function": [[417, "hm-function"]], "Plugin \u201ahue\u2018 Konfiguration": [[418, "plugin-hue-konfiguration"]], "hue_bridge_id": [[418, "hue-bridge-id"]], "hue_lamp_id": [[418, "hue-lamp-id"]], "hue_listen_group": [[418, "hue-listen-group"]], "hue_send_group": [[418, "hue-send-group"]], "hue_transitiontime": [[418, "hue-transitiontime"]], "Plugin \u201ahue2\u2018 Konfiguration": [[419, "plugin-hue2-konfiguration"]], "bridge_ip": [[419, "bridge-ip"], [420, "bridge-ip"], [458, "bridge-ip"]], "bridge_port": [[419, "bridge-port"], [458, "bridge-port"]], "bridge_serial": [[419, "bridge-serial"], [420, "bridge-serial"]], "bridge_user": [[419, "bridge-user"], [420, "bridge-user"]], "polltime_bridge": [[419, "polltime-bridge"]], "polltime_lights": [[419, "polltime-lights"]], "polltime_sensors": [[419, "polltime-sensors"]], "dpt3_dim": [[419, "dpt3-dim"]], "hue2_function": [[419, "hue2-function"]], "hue2_id": [[419, "hue2-id"]], "hue2_reference_light_id": [[419, "hue2-reference-light-id"]], "hue2_resource": [[419, "hue2-resource"]], "hue2_transitionTime": [[419, "hue2-transitiontime"]], "Plugin \u201ahue3\u2018 Konfiguration": [[420, "plugin-hue3-konfiguration"]], "hue3_function": [[420, "hue3-function"]], "hue3_id": [[420, "hue3-id"]], "hue3_resource": [[420, "hue3-resource"]], "hue3_transition_time": [[420, "hue3-transition-time"]], "Plugin \u201ahusky\u2018 Konfiguration": [[421, "plugin-husky-konfiguration"]], "mapkey": [[421, "mapkey"]], "userid": [[421, "userid"]], "husky_control": [[421, "husky-control"], [422, "husky-control"]], "husky_info": [[421, "husky-info"], [422, "husky-info"]], "husky_operating": [[421, "husky-operating"]], "husky_state": [[421, "husky-state"], [422, "husky-state"]], "Plugin \u201ahusky2\u2018 Konfiguration": [[422, "plugin-husky2-konfiguration"]], "apisecret": [[422, "apisecret"]], "historylength": [[422, "historylength"]], "maxgpspoints": [[422, "maxgpspoints"]], "Plugin \u201aical\u2018 Konfiguration": [[423, "plugin-ical-konfiguration"]], "calendars": [[423, "calendars"]], "directory": [[423, "directory"]], "handle_login": [[423, "handle-login"]], "ical_calendar": [[423, "ical-calendar"]], "ical(ics= \u201aNone\u2018, delta=1, offset=0, prio=1, verify=True)": [[423, "ical-ics-none-delta-1-offset-0-prio-1-verify-true"]], "ics": [[423, "ics"]], "delta": [[423, "delta"]], "offset": [[423, "offset"]], "prio": [[423, "prio"], [592, "prio"]], "Plugin \u201aindego\u2018 Konfiguration": [[424, "plugin-indego-konfiguration"]], "img_pfad": [[424, "img-pfad"], [425, "img-pfad"]], "indego_url": [[424, "indego-url"], [425, "indego-url"]], "parent_item": [[424, "parent-item"], [425, "parent-item"]], "user": [[424, "user"], [436, "user"], [479, "user"], [526, "user"]], "indego_add_key": [[424, "indego-add-key"], [425, "indego-add-key"]], "indego_command": [[424, "indego-command"], [425, "indego-command"]], "indego_frequency": [[424, "indego-frequency"]], "indego_smart": [[424, "indego-smart"], [425, "indego-smart"]], "Plugin \u201aindego4shng\u2018 Konfiguration": [[425, "plugin-indego4shng-konfiguration"]], "indego_credentials": [[425, "indego-credentials"]], "path_2_weather_pics": [[425, "path-2-weather-pics"]], "indego_attr_name": [[425, "indego-attr-name"]], "indego_attr_type": [[425, "indego-attr-type"]], "indego_config": [[425, "indego-config"]], "indego_config_url": [[425, "indego-config-url"]], "indego_function_4_all": [[425, "indego-function-4-all"]], "indego_function_4_visu": [[425, "indego-function-4-visu"]], "indego_parse_2_attr": [[425, "indego-parse-2-attr"]], "indego_plugin_handled": [[425, "indego-plugin-handled"]], "send_command(payload= \u201a{\u201estate\u201c:\u201cmow\u201c}\u2018, trigger= \u201aLogic\u2018)": [[425, "send-command-payload-state-mow-trigger-logic"]], "payload": [[425, "payload"]], "trigger": [[425, "trigger"]], "Plugin \u201ainfluxdata\u2018 Konfiguration": [[426, "plugin-influxdata-konfiguration"]], "influx_host": [[426, "influx-host"]], "influx_keyword": [[426, "influx-keyword"]], "influx_port": [[426, "influx-port"]], "influx": [[426, "influx"]], "Plugin \u201ainfluxdb\u2018 Konfiguration": [[427, "plugin-influxdb-konfiguration"]], "fields": [[427, "fields"]], "http_port": [[427, "http-port"], [428, "http-port"]], "keyword": [[427, "keyword"]], "tags": [[427, "tags"], [428, "tags"]], "value_field": [[427, "value-field"], [428, "value-field"]], "write_http": [[427, "write-http"]], "influxdb_fields": [[427, "influxdb-fields"]], "influxdb_name": [[427, "influxdb-name"]], "influxdb_tags": [[427, "influxdb-tags"]], "Plugin \u201ainfluxdb2\u2018 Konfiguration": [[428, "plugin-influxdb2-konfiguration"]], "api_token": [[428, "api-token"]], "bucket": [[428, "bucket"]], "org": [[428, "org"]], "recognize_database": [[428, "recognize-database"]], "str_value_field": [[428, "str-value-field"]], "influxdb2_bucket": [[428, "influxdb2-bucket"]], "influxdb2_name": [[428, "influxdb2-name"]], "influxdb2_tags": [[428, "influxdb2-tags"]], "Plugin \u201aintercom_2n\u2018 Konfiguration": [[429, "plugin-intercom-2n-konfiguration"]], "auth_type": [[429, "auth-type"]], "intercom_ip": [[429, "intercom-ip"]], "Plugin \u201ajoin\u2018 Konfiguration": [[430, "plugin-join-konfiguration"]], "device_id": [[430, "device-id"], [430, "id2"]], "send(title= \u201aNone\u2018, text= \u201aNone\u2018, icon= \u201aNone\u2018, find= \u201aNone\u2018, smallicon= \u201aNone\u2018, device_id= \u201aNone\u2018, device_ids= \u201aNone\u2018, device_name= \u201aNone\u2018, url= \u201aNone\u2018, image= \u201aNone\u2018, sound= \u201aNone\u2018, group= \u201aNone\u2018, clipboard= \u201aNone\u2018, file= \u201aNone\u2018, callnumber= \u201aNone\u2018, smsnumber= \u201aNone\u2018, smstext= \u201aNone\u2018, mmsfile= \u201aNone\u2018, wallpaper= \u201aNone\u2018, lockwallpaper= \u201aNone\u2018, interruptionFilter= \u201aNone\u2018, mediaVolume= \u201aNone\u2018, ringVolume= \u201aNone\u2018, alarmVolume= \u201aNone\u2018)": [[430, "send-title-none-text-none-icon-none-find-none-smallicon-none-device-id-none-device-ids-none-device-name-none-url-none-image-none-sound-none-group-none-clipboard-none-file-none-callnumber-none-smsnumber-none-smstext-none-mmsfile-none-wallpaper-none-lockwallpaper-none-interruptionfilter-none-mediavolume-none-ringvolume-none-alarmvolume-none"]], "title": [[430, "title"], [469, "title"], [472, "title"], [472, "id9"], [472, "id12"], [527, "title"]], "text": [[430, "text"], [491, "text"]], "find": [[430, "find"]], "smallicon": [[430, "smallicon"]], "device_ids": [[430, "device-ids"]], "image": [[430, "image"], [469, "image"], [527, "image"]], "sound": [[430, "sound"]], "clipboard": [[430, "clipboard"]], "file": [[430, "file"]], "callnumber": [[430, "callnumber"]], "smsnumber": [[430, "smsnumber"]], "smstext": [[430, "smstext"]], "mmsfile": [[430, "mmsfile"]], "wallpaper": [[430, "wallpaper"]], "lockwallpaper": [[430, "lockwallpaper"]], "interruptionFilter": [[430, "interruptionfilter"]], "mediaVolume": [[430, "mediavolume"]], "ringVolume": [[430, "ringvolume"]], "alarmVolume": [[430, "alarmvolume"]], "Plugin \u201ajsonread\u2018 Konfiguration": [[431, "plugin-jsonread-konfiguration"]], "jsonread_filter": [[431, "jsonread-filter"]], "Plugin \u201ajvcproj\u2018 Konfiguration": [[432, "plugin-jvcproj-konfiguration"]], "gammaconf_dir": [[432, "gammaconf-dir"]], "jvcproj_cmd": [[432, "jvcproj-cmd"]], "jvcproj_gamma": [[432, "jvcproj-gamma"]], "Plugin \u201akathrein\u2018 Konfiguration": [[433, "plugin-kathrein-konfiguration"]], "push(key= \u201a1234\u2018)": [[433, "push-key-1234"]], "Plugin \u201aknx\u2018 Konfiguration": [[434, "plugin-knx-konfiguration"]], "date_ga": [[434, "date-ga"], [434, "id6"]], "enable_stats": [[434, "enable-stats"]], "log_own_packets": [[434, "log-own-packets"]], "loglevel_knxd_cache_problems": [[434, "loglevel-knxd-cache-problems"]], "project_file_password": [[434, "project-file-password"]], "projectpath": [[434, "projectpath"]], "provider": [[434, "provider"]], "readonly": [[434, "readonly"]], "send_time": [[434, "send-time"]], "time_ga": [[434, "time-ga"], [434, "id5"]], "use_project_file": [[434, "use-project-file"]], "knx_cache": [[434, "knx-cache"]], "knx_dpt": [[434, "knx-dpt"]], "knx_init": [[434, "knx-init"]], "knx_listen": [[434, "knx-listen"]], "knx_poll": [[434, "knx-poll"]], "knx_reply": [[434, "knx-reply"]], "knx_send": [[434, "knx-send"]], "knx_status": [[434, "knx-status"]], "encode(data, dpt)": [[434, "encode-data-dpt"]], "data": [[434, "data"], [434, "id3"], [457, "data"]], "dpt": [[434, "dpt"], [434, "id4"]], "groupread(ga, cache=False)": [[434, "groupread-ga-cache-false"]], "ga": [[434, "ga"], [434, "id2"]], "cache": [[434, "cache"], [463, "cache"]], "groupwrite(ga, data, dpt)": [[434, "groupwrite-ga-data-dpt"]], "send_time(time_ga, date_ga)": [[434, "send-time-time-ga-date-ga"]], "Plugin \u201akodi\u2018 Konfiguration": [[435, "plugin-kodi-konfiguration"]], "send_timeout": [[435, "send-timeout"]], "kodi_command": [[435, "kodi-command"]], "kodi_lookup": [[435, "kodi-lookup"]], "kodi_read": [[435, "kodi-read"]], "kodi_read_cycle": [[435, "kodi-read-cycle"]], "kodi_read_group": [[435, "kodi-read-group"]], "kodi_read_group_trigger": [[435, "kodi-read-group-trigger"]], "kodi_read_initial": [[435, "kodi-read-initial"]], "kodi_write": [[435, "kodi-write"]], "Plugin \u201akostal\u2018 Konfiguration": [[436, "plugin-kostal-konfiguration"]], "datastructure": [[436, "datastructure"]], "passwd": [[436, "passwd"], [526, "passwd"]], "Plugin \u201akostalmodbus\u2018 Konfiguration": [[437, "plugin-kostalmodbus-konfiguration"]], "inverter_ip": [[437, "inverter-ip"]], "modbus_port": [[437, "modbus-port"], [438, "modbus-port"], [517, "modbus-port"]], "kostal_06": [[437, "kostal-06"]], "kostal_100": [[437, "kostal-100"]], "kostal_104": [[437, "kostal-104"]], "kostal_1056": [[437, "kostal-1056"]], "kostal_1058": [[437, "kostal-1058"]], "kostal_106": [[437, "kostal-106"]], "kostal_1060": [[437, "kostal-1060"]], "kostal_1062": [[437, "kostal-1062"]], "kostal_1064": [[437, "kostal-1064"]], "kostal_1066": [[437, "kostal-1066"]], "kostal_108": [[437, "kostal-108"]], "kostal_110": [[437, "kostal-110"]], "kostal_112": [[437, "kostal-112"]], "kostal_114": [[437, "kostal-114"]], "kostal_116": [[437, "kostal-116"]], "kostal_118": [[437, "kostal-118"]], "kostal_120": [[437, "kostal-120"]], "kostal_122": [[437, "kostal-122"]], "kostal_124": [[437, "kostal-124"]], "kostal_14": [[437, "kostal-14"]], "kostal_144": [[437, "kostal-144"]], "kostal_150": [[437, "kostal-150"]], "kostal_152": [[437, "kostal-152"]], "kostal_154": [[437, "kostal-154"]], "kostal_156": [[437, "kostal-156"]], "kostal_158": [[437, "kostal-158"]], "kostal_160": [[437, "kostal-160"]], "kostal_162": [[437, "kostal-162"]], "kostal_164": [[437, "kostal-164"]], "kostal_166": [[437, "kostal-166"]], "kostal_168": [[437, "kostal-168"]], "kostal_170": [[437, "kostal-170"]], "kostal_172": [[437, "kostal-172"]], "kostal_174": [[437, "kostal-174"]], "kostal_178": [[437, "kostal-178"]], "kostal_190": [[437, "kostal-190"]], "kostal_194": [[437, "kostal-194"]], "kostal_200": [[437, "kostal-200"]], "kostal_202": [[437, "kostal-202"]], "kostal_208": [[437, "kostal-208"]], "kostal_210": [[437, "kostal-210"]], "kostal_214": [[437, "kostal-214"]], "kostal_216": [[437, "kostal-216"]], "kostal_218": [[437, "kostal-218"]], "kostal_220": [[437, "kostal-220"]], "kostal_222": [[437, "kostal-222"]], "kostal_224": [[437, "kostal-224"]], "kostal_226": [[437, "kostal-226"]], "kostal_228": [[437, "kostal-228"]], "kostal_230": [[437, "kostal-230"]], "kostal_232": [[437, "kostal-232"]], "kostal_234": [[437, "kostal-234"]], "kostal_236": [[437, "kostal-236"]], "kostal_238": [[437, "kostal-238"]], "kostal_240": [[437, "kostal-240"]], "kostal_242": [[437, "kostal-242"]], "kostal_244": [[437, "kostal-244"]], "kostal_246": [[437, "kostal-246"]], "kostal_248": [[437, "kostal-248"]], "kostal_250": [[437, "kostal-250"]], "kostal_252": [[437, "kostal-252"]], "kostal_254": [[437, "kostal-254"]], "kostal_256": [[437, "kostal-256"]], "kostal_258": [[437, "kostal-258"]], "kostal_260": [[437, "kostal-260"]], "kostal_266": [[437, "kostal-266"]], "kostal_268": [[437, "kostal-268"]], "kostal_270": [[437, "kostal-270"]], "kostal_276": [[437, "kostal-276"]], "kostal_278": [[437, "kostal-278"]], "kostal_280": [[437, "kostal-280"]], "kostal_286": [[437, "kostal-286"]], "kostal_30": [[437, "kostal-30"]], "kostal_32": [[437, "kostal-32"]], "kostal_320": [[437, "kostal-320"]], "kostal_322": [[437, "kostal-322"]], "kostal_324": [[437, "kostal-324"]], "kostal_326": [[437, "kostal-326"]], "kostal_34": [[437, "kostal-34"]], "kostal_36": [[437, "kostal-36"]], "kostal_38": [[437, "kostal-38"]], "kostal_384": [[437, "kostal-384"]], "kostal_420": [[437, "kostal-420"]], "kostal_428": [[437, "kostal-428"]], "kostal_436": [[437, "kostal-436"]], "kostal_446": [[437, "kostal-446"]], "kostal_454": [[437, "kostal-454"]], "kostal_46": [[437, "kostal-46"]], "kostal_512": [[437, "kostal-512"]], "kostal_514": [[437, "kostal-514"]], "kostal_515": [[437, "kostal-515"]], "kostal_517": [[437, "kostal-517"]], "kostal_525": [[437, "kostal-525"]], "kostal_529": [[437, "kostal-529"]], "kostal_531": [[437, "kostal-531"]], "kostal_535": [[437, "kostal-535"]], "kostal_54": [[437, "kostal-54"]], "kostal_559": [[437, "kostal-559"]], "kostal_56": [[437, "kostal-56"]], "kostal_575": [[437, "kostal-575"]], "kostal_577": [[437, "kostal-577"]], "kostal_582": [[437, "kostal-582"]], "kostal_586": [[437, "kostal-586"]], "kostal_588": [[437, "kostal-588"]], "kostal_768": [[437, "kostal-768"]], "kostal_800": [[437, "kostal-800"]], "kostal_98": [[437, "kostal-98"]], "Plugin \u201aksemmodbus\u2018 Konfiguration": [[438, "plugin-ksemmodbus-konfiguration"]], "ksem_ip": [[438, "ksem-ip"]], "ksem_0": [[438, "ksem-0"]], "ksem_16": [[438, "ksem-16"]], "ksem_18": [[438, "ksem-18"]], "ksem_2": [[438, "ksem-2"]], "ksem_24": [[438, "ksem-24"]], "ksem_4": [[438, "ksem-4"]], "ksem_512": [[438, "ksem-512"]], "ksem_516": [[438, "ksem-516"]], "ksem_520": [[438, "ksem-520"]], "ksem_524": [[438, "ksem-524"]], "ksem_544": [[438, "ksem-544"]], "ksem_548": [[438, "ksem-548"]], "ksem_6": [[438, "ksem-6"]], "Plugin \u201aleveljet\u2018 Konfiguration": [[439, "plugin-leveljet-konfiguration"]], "ljet_cmd": [[439, "ljet-cmd"]], "Plugin \u201alirc\u2018 Konfiguration": [[440, "plugin-lirc-konfiguration"]], "lirc_host": [[440, "lirc-host"]], "lirc_port": [[440, "lirc-port"]], "lirc_key": [[440, "lirc-key"]], "lirc_remote": [[440, "lirc-remote"]], "Plugin \u201alms\u2018 Konfiguration": [[441, "plugin-lms-konfiguration"]], "recursive_custom": [[441, "recursive-custom"]], "web_host": [[441, "web-host"]], "web_port": [[441, "web-port"], [507, "web-port"]], "sqb_command": [[441, "sqb-command"]], "sqb_custom1": [[441, "sqb-custom1"]], "sqb_lookup": [[441, "sqb-lookup"]], "sqb_read": [[441, "sqb-read"]], "sqb_read_cycle": [[441, "sqb-read-cycle"]], "sqb_read_group": [[441, "sqb-read-group"]], "sqb_read_group_trigger": [[441, "sqb-read-group-trigger"]], "sqb_read_initial": [[441, "sqb-read-initial"]], "sqb_write": [[441, "sqb-write"]], "Plugin \u201alogo\u2018 Konfiguration": [[442, "plugin-logo-konfiguration"]], "io_wait": [[442, "io-wait"], [461, "io-wait"]], "version": [[442, "version"], [500, "version"]], "logo_read": [[442, "logo-read"], [500, "logo-read"]], "logo_write": [[442, "logo-write"], [500, "logo-write"]], "Plugin \u201aluxtronic2\u2018 Konfiguration": [[443, "plugin-luxtronic2-konfiguration"]], "Plugin \u201amailrcv\u2018 Konfiguration": [[444, "plugin-mailrcv-konfiguration"]], "trashfolder": [[444, "trashfolder"]], "Plugin \u201amailsend\u2018 Konfiguration": [[445, "plugin-mailsend-konfiguration"]], "mail_from": [[445, "mail-from"]], "send(to, subject, message)": [[445, "send-to-subject-message"]], "to": [[445, "to"], [534, "to"]], "subject": [[445, "subject"]], "message": [[445, "message"], [469, "message"]], "Plugin \u201amemlog\u2018 Konfiguration": [[446, "plugin-memlog-konfiguration"]], "items": [[446, "items"], [463, "items"], [472, "items"]], "mappings": [[446, "mappings"]], "maxlen": [[446, "maxlen"], [463, "maxlen"]], "Plugin \u201amieleathome\u2018 Konfiguration": [[447, "plugin-mieleathome-konfiguration"]], "miele_client_country": [[447, "miele-client-country"]], "miele_client_id": [[447, "miele-client-id"]], "miele_client_secret": [[447, "miele-client-secret"]], "miele_cycle": [[447, "miele-cycle"]], "miele_pwd": [[447, "miele-pwd"]], "miele_user": [[447, "miele-user"]], "miele_command": [[447, "miele-command"]], "miele_deviceid": [[447, "miele-deviceid"]], "miele_parse_item": [[447, "miele-parse-item"]], "miele_visu_function": [[447, "miele-visu-function"]], "Plugin \u201amiflora\u2018 Konfiguration": [[448, "plugin-miflora-konfiguration"]], "bt_addr": [[448, "bt-addr"], [492, "bt-addr"]], "bt_library": [[448, "bt-library"]], "Plugin \u201amikrotik\u2018 Konfiguration": [[449, "plugin-mikrotik-konfiguration"]], "hostname": [[449, "hostname"]], "mikrotik_parameter": [[449, "mikrotik-parameter"]], "mikrotik_port": [[449, "mikrotik-port"]], "get_port_enabled(port)": [[449, "get-port-enabled-port"]], "get_port_poe(port)": [[449, "get-port-poe-port"]], "get_port_status(port)": [[449, "get-port-status-port"]], "set_port_enabled(port, state)": [[449, "set-port-enabled-port-state"]], "set_port_poe(port, state)": [[449, "set-port-poe-port-state"]], "Plugin \u201amilight\u2018 Konfiguration": [[450, "plugin-milight-konfiguration"]], "white_calibrate": [[450, "white-calibrate"]], "milight_disco_down": [[450, "milight-disco-down"]], "milight_disco_up": [[450, "milight-disco-up"]], "Plugin \u201amlgw\u2018 Konfiguration": [[451, "plugin-mlgw-konfiguration"]], "log_mlgwtelegrams": [[451, "log-mlgwtelegrams"]], "mlns": [[451, "mlns"]], "rooms": [[451, "rooms"]], "Plugin \u201amodbus_tcp\u2018 Konfiguration": [[452, "plugin-modbus-tcp-konfiguration"]], "crontab": [[452, "crontab"], [499, "crontab"]], "pause_item": [[452, "pause-item"], [488, "pause-item"], [512, "pause-item"], [537, "pause-item"]], "slaveUnit": [[452, "slaveunit"]], "modBusAddress": [[452, "modbusaddress"]], "modBusByteOrder": [[452, "modbusbyteorder"]], "modBusDataType": [[452, "modbusdatatype"]], "modBusDirection": [[452, "modbusdirection"]], "modBusFactor": [[452, "modbusfactor"]], "modBusObjectType": [[452, "modbusobjecttype"]], "modBusUnit": [[452, "modbusunit"]], "modBusWordOrder": [[452, "modbuswordorder"]], "Plugin \u201ampd\u2018 Konfiguration": [[453, "plugin-mpd-konfiguration"]], "mpd_command": [[453, "mpd-command"]], "mpd_database": [[453, "mpd-database"]], "mpd_localplaylist": [[453, "mpd-localplaylist"]], "mpd_rawcommand": [[453, "mpd-rawcommand"]], "mpd_songinfo": [[453, "mpd-songinfo"]], "mpd_statistic": [[453, "mpd-statistic"]], "mpd_status": [[453, "mpd-status"]], "mpd_url": [[453, "mpd-url"]], "Plugin \u201amqtt\u2018 Konfiguration": [[454, "plugin-mqtt-konfiguration"]], "mqtt_bool_values": [[454, "mqtt-bool-values"]], "mqtt_qos": [[454, "mqtt-qos"]], "mqtt_retain": [[454, "mqtt-retain"]], "mqtt_topic": [[454, "mqtt-topic"]], "mqtt_topic_in": [[454, "mqtt-topic-in"]], "mqtt_topic_init": [[454, "mqtt-topic-init"]], "mqtt_topic_out": [[454, "mqtt-topic-out"]], "Plugin \u201amvg_live\u2018 Konfiguration": [[455, "plugin-mvg-live-konfiguration"]], "get_station_departures(station)": [[455, "get-station-departures-station"]], "station": [[455, "station"]], "Plugin \u201aneato\u2018 Konfiguration": [[456, "plugin-neato-konfiguration"]], "account_email": [[456, "account-email"]], "account_pass": [[456, "account-pass"]], "robot_vendor": [[456, "robot-vendor"]], "token": [[456, "token"], [491, "token"], [512, "token"], [533, "token"]], "neato_attribute": [[456, "neato-attribute"]], "disable_schedule()": [[456, "disable-schedule"]], "dismiss_current_alert()": [[456, "dismiss-current-alert"]], "enable_schedule()": [[456, "enable-schedule"]], "get_map_boundaries(map_id)": [[456, "get-map-boundaries-map-id"]], "map_id": [[456, "map-id"], [456, "id2"]], "start_robot(boundary_id, map_id)": [[456, "start-robot-boundary-id-map-id"]], "boundary_id": [[456, "boundary-id"]], "Plugin \u201anetwork\u2018 Konfiguration": [[457, "plugin-network-konfiguration"]], "http": [[457, "http"]], "http_acl": [[457, "http-acl"]], "tcp": [[457, "tcp"]], "tcp_acl": [[457, "tcp-acl"]], "udp": [[457, "udp"]], "udp_acl": [[457, "udp-acl"]], "nw_http_listen": [[457, "nw-http-listen"]], "nw_tcp_listen": [[457, "nw-tcp-listen"]], "nw_udp_listen": [[457, "nw-udp-listen"]], "Plugin \u201anuki\u2018 Konfiguration": [[458, "plugin-nuki-konfiguration"]], "bridge_api_token": [[458, "bridge-api-token"]], "no_wait": [[458, "no-wait"]], "protocol": [[458, "protocol"], [522, "protocol"]], "Plugin \u201anut\u2018 Konfiguration": [[459, "plugin-nut-konfiguration"]], "ups": [[459, "ups"]], "nut_var": [[459, "nut-var"]], "Plugin \u201aodlinfo\u2018 Konfiguration": [[460, "plugin-odlinfo-konfiguration"]], "odl_data_type": [[460, "odl-data-type"]], "odl_station": [[460, "odl-station"]], "odlinfo_id": [[460, "odlinfo-id"]], "get_stations()": [[460, "get-stations"]], "get_stations_for_ids(odlinfo_ids)": [[460, "get-stations-for-ids-odlinfo-ids"]], "odlinfo_ids": [[460, "odlinfo-ids"]], "get_update_timestamp()": [[460, "get-update-timestamp"]], "Plugin \u201aonewire\u2018 Konfiguration": [[461, "plugin-onewire-konfiguration"]], "button_wait": [[461, "button-wait"]], "cycle_discovery": [[461, "cycle-discovery"]], "log_counter_cycle_discovery_time": [[461, "log-counter-cycle-discovery-time"]], "log_counter_cycle_time": [[461, "log-counter-cycle-time"]], "log_counter_io_loop_time": [[461, "log-counter-io-loop-time"]], "parasitic_power_wait": [[461, "parasitic-power-wait"]], "warn_after": [[461, "warn-after"]], "ow_addr": [[461, "ow-addr"]], "ow_sensor": [[461, "ow-sensor"]], "Plugin \u201aopenweathermap\u2018 Konfiguration": [[462, "plugin-openweathermap-konfiguration"]], "altitude": [[462, "altitude"]], "api_version": [[462, "api-version"]], "softfail_precipitation": [[462, "softfail-precipitation"]], "softfail_wind_gust": [[462, "softfail-wind-gust"]], "owm_coord_x": [[462, "owm-coord-x"]], "owm_coord_y": [[462, "owm-coord-y"]], "owm_coord_z": [[462, "owm-coord-z"]], "owm_match_prefix": [[462, "owm-match-prefix"]], "owm_matchstring": [[462, "owm-matchstring"], [462, "id2"]], "owm_raw_file": [[462, "owm-raw-file"]], "get_beaufort_description(speed_in_bft)": [[462, "get-beaufort-description-speed-in-bft"]], "speed_in_bft": [[462, "speed-in-bft"]], "get_beaufort_number(speed_in_mps)": [[462, "get-beaufort-number-speed-in-mps"]], "speed_in_mps": [[462, "speed-in-mps"]], "get_raw_data_file(data_source_key)": [[462, "get-raw-data-file-data-source-key"]], "data_source_key": [[462, "data-source-key"]], "get_value(owm_matchstring)": [[462, "get-value-owm-matchstring"]], "Plugin \u201aoperationlog\u2018 Konfiguration": [[463, "plugin-operationlog-konfiguration"]], "filepattern": [[463, "filepattern"]], "logdirectory": [[463, "logdirectory"]], "logger": [[463, "logger"]], "logtofile": [[463, "logtofile"]], "mapping": [[463, "mapping"]], "olog": [[463, "olog"]], "olog_level": [[463, "olog-level"]], "olog_rules": [[463, "olog-rules"]], "olog_txt": [[463, "olog-txt"]], "Plugin \u201aoppo\u2018 Konfiguration": [[464, "plugin-oppo-konfiguration"]], "oppo_command": [[464, "oppo-command"]], "oppo_lookup": [[464, "oppo-lookup"]], "oppo_read": [[464, "oppo-read"]], "oppo_read_cycle": [[464, "oppo-read-cycle"]], "oppo_read_group": [[464, "oppo-read-group"]], "oppo_read_group_trigger": [[464, "oppo-read-group-trigger"]], "oppo_read_initial": [[464, "oppo-read-initial"]], "oppo_write": [[464, "oppo-write"]], "Plugin \u201apanasonic_ac\u2018 Konfiguration": [[465, "plugin-panasonic-ac-konfiguration"]], "pcc_index": [[465, "pcc-index"]], "pcc_parameter": [[465, "pcc-parameter"]], "Plugin \u201aphilips_tv\u2018 Konfiguration": [[466, "plugin-philips-tv-konfiguration"]], "deviceID": [[466, "deviceid"]], "deviceKey": [[466, "devicekey"]], "philips_tv_rx_key": [[466, "philips-tv-rx-key"]], "philips_tv_tx_key": [[466, "philips-tv-tx-key"]], "Plugin \u201apioneer\u2018 Konfiguration": [[467, "plugin-pioneer-konfiguration"]], "pioneer_command": [[467, "pioneer-command"]], "pioneer_lookup": [[467, "pioneer-lookup"]], "pioneer_read": [[467, "pioneer-read"]], "pioneer_read_cycle": [[467, "pioneer-read-cycle"]], "pioneer_read_group": [[467, "pioneer-read-group"]], "pioneer_read_group_trigger": [[467, "pioneer-read-group-trigger"]], "pioneer_read_initial": [[467, "pioneer-read-initial"]], "pioneer_write": [[467, "pioneer-write"]], "Plugin \u201apiratewthr\u2018 Konfiguration": [[468, "plugin-piratewthr-konfiguration"]], "pw_matchstring": [[468, "pw-matchstring"]], "Plugin \u201aplex\u2018 Konfiguration": [[469, "plugin-plex-konfiguration"]], "displaytime": [[469, "displaytime"]], "plex_host": [[469, "plex-host"]], "plex_port": [[469, "plex-port"]], "notify(title, message, image= \u201ainfo\u2018)": [[469, "notify-title-message-image-info"]], "Plugin \u201apluggit\u2018 Konfiguration": [[470, "plugin-pluggit-konfiguration"]], "pluggit_convert": [[470, "pluggit-convert"]], "pluggit_read": [[470, "pluggit-read"]], "pluggit_write": [[470, "pluggit-write"]], "Plugin \u201aprowl\u2018 Konfiguration": [[471, "plugin-prowl-konfiguration"]], "prowl_event": [[471, "prowl-event"]], "prowl_swap": [[471, "prowl-swap"]], "prowl_text": [[471, "prowl-text"]], "prowl_url": [[471, "prowl-url"]], "prowl_values": [[471, "prowl-values"]], "notify(event= \u201a\u2018, description= \u201a\u2018, priority=None*, url= \u201aNone*\u2018, apikey= \u201aNone*\u2018, application= \u201aSmartHomeNG\u2018)": [[471, "notify-event-description-priority-none-url-none-apikey-none-application-smarthomeng"]], "event": [[471, "event"]], "description": [[471, "description"]], "priority": [[471, "priority"]], "application": [[471, "application"]], "Plugin \u201apushbullet\u2018 Konfiguration": [[472, "plugin-pushbullet-konfiguration"]], "deviceid": [[472, "deviceid"], [472, "id2"], [472, "id4"], [472, "id6"], [472, "id10"], [472, "id14"]], "address(name, address, deviceid, apikey)": [[472, "address-name-address-deviceid-apikey"]], "file(filepath, deviceid, apikey, body)": [[472, "file-filepath-deviceid-apikey-body"]], "filepath": [[472, "filepath"]], "body": [[472, "body"], [472, "id8"], [472, "id13"]], "link(title, url, deviceid, apikey, body)": [[472, "link-title-url-deviceid-apikey-body"]], "list(title, items, deviceid, apikey)": [[472, "list-title-items-deviceid-apikey"]], "note(title, body, deviceid, apikey)": [[472, "note-title-body-deviceid-apikey"]], "Plugin \u201apushover\u2018 Konfiguration": [[473, "plugin-pushover-konfiguration"]], "apiKey": [[473, "apikey"]], "userKey": [[473, "userkey"]], "Plugin \u201araumfeld\u2018 Konfiguration": [[474, "plugin-raumfeld-konfiguration"]], "Plugin \u201araumfeld_ng\u2018 Konfiguration": [[475, "plugin-raumfeld-ng-konfiguration"]], "rf_attr": [[475, "rf-attr"]], "rf_mode": [[475, "rf-mode"]], "rf_renderer_name": [[475, "rf-renderer-name"]], "rf_scope": [[475, "rf-scope"]], "Plugin \u201arcs1000n\u2018 Konfiguration": [[476, "plugin-rcs1000n-konfiguration"]], "rcs1000n_gpio": [[476, "rcs1000n-gpio"]], "rcs1000n_sendDuration": [[476, "rcs1000n-sendduration"]], "rcs_ButtonCode": [[476, "rcs-buttoncode"]], "rcs_SystemCode": [[476, "rcs-systemcode"]], "Plugin \u201arcswitch\u2018 Konfiguration": [[477, "plugin-rcswitch-konfiguration"]], "rcswitch_dir": [[477, "rcswitch-dir"]], "rcswitch_host": [[477, "rcswitch-host"]], "rcswitch_password": [[477, "rcswitch-password"]], "rcswitch_sendDuration": [[477, "rcswitch-sendduration"]], "rcswitch_user": [[477, "rcswitch-user"]], "rc_code": [[477, "rc-code"]], "rc_device": [[477, "rc-device"]], "Plugin \u201aresol\u2018 Konfiguration": [[478, "plugin-resol-konfiguration"]], "resol_bituse": [[478, "resol-bituse"]], "resol_command": [[478, "resol-command"]], "resol_destination": [[478, "resol-destination"]], "resol_factor": [[478, "resol-factor"]], "resol_isSigned": [[478, "resol-issigned"]], "resol_offset": [[478, "resol-offset"]], "resol_source": [[478, "resol-source"]], "Plugin \u201arobonect\u2018 Konfiguration": [[479, "plugin-robonect-konfiguration"]], "topic_prefix": [[479, "topic-prefix"]], "robonect_battery_index": [[479, "robonect-battery-index"]], "robonect_data_type": [[479, "robonect-data-type"]], "robonect_remote_index": [[479, "robonect-remote-index"]], "get_mode()": [[479, "get-mode"]], "get_mode_as_text(mode)": [[479, "get-mode-as-text-mode"]], "get_status()": [[479, "get-status"]], "get_status_as_text(status)": [[479, "get-status-as-text-status"]], "status": [[479, "status"]], "is_mower_offline()": [[479, "is-mower-offline"]], "set_mode_via_api(mode, remotestart, after, start, end, duration)": [[479, "set-mode-via-api-mode-remotestart-after-start-end-duration"]], "remotestart": [[479, "remotestart"]], "after": [[479, "after"]], "set_name_via_api(name)": [[479, "set-name-via-api-name"]], "set_remote_via_api(index, name, distance, visible, proportion)": [[479, "set-remote-via-api-index-name-distance-visible-proportion"]], "distance": [[479, "distance"]], "visible": [[479, "visible"]], "proportion": [[479, "proportion"]], "set_timer_via_api(index, enabled, start, end, mo, tu, we, th, fr, sa, su)": [[479, "set-timer-via-api-index-enabled-start-end-mo-tu-we-th-fr-sa-su"]], "enabled": [[479, "enabled"], [592, "enabled"]], "mo": [[479, "mo"]], "tu": [[479, "tu"]], "we": [[479, "we"]], "th": [[479, "th"]], "fr": [[479, "fr"]], "sa": [[479, "sa"]], "su": [[479, "su"]], "start_mower_via_api()": [[479, "start-mower-via-api"]], "stop_mower_via_api()": [[479, "stop-mower-via-api"]], "Plugin \u201aroomba\u2018 Konfiguration": [[480, "plugin-roomba-konfiguration"]], "socket_addr": [[480, "socket-addr"]], "socket_port": [[480, "socket-port"]], "socket_type": [[480, "socket-type"]], "roomba_cmd": [[480, "roomba-cmd"]], "roomba_get": [[480, "roomba-get"]], "roomba_raw": [[480, "roomba-raw"]], "Plugin \u201aroomba_980\u2018 Konfiguration": [[481, "plugin-roomba-980-konfiguration"]], "adress": [[481, "adress"]], "blid": [[481, "blid"], [482, "blid"]], "roombaPassword": [[481, "roombapassword"], [482, "roombapassword"]], "dock": [[481, "dock"]], "status_batterie": [[481, "status-batterie"]], "status_bin_full": [[481, "status-bin-full"]], "status_cleanMissionStatus_error": [[481, "status-cleanmissionstatus-error"]], "status_cleanMissionStatus_phase": [[481, "status-cleanmissionstatus-phase"]], "Plugin \u201aroombapysh\u2018 Konfiguration": [[482, "plugin-roombapysh-konfiguration"]], "Plugin \u201arpi1wire\u2018 Konfiguration": [[483, "plugin-rpi1wire-konfiguration"]], "dirname": [[483, "dirname"]], "rpi1wire_id": [[483, "rpi1wire-id"]], "rpi1wire_sys": [[483, "rpi1wire-sys"]], "Plugin \u201arpi_info\u2018 Konfiguration": [[484, "plugin-rpi-info-konfiguration"]], "poll_cycle": [[484, "poll-cycle"]], "rpiinfo_func": [[484, "rpiinfo-func"]], "rpiinfo_sys": [[484, "rpiinfo-sys"]], "cpu_temp()": [[484, "cpu-temp"]], "frequency()": [[484, "frequency"]], "frequency_capped()": [[484, "frequency-capped"]], "frequency_capped_last_reboot()": [[484, "frequency-capped-last-reboot"]], "temperature_limit()": [[484, "temperature-limit"]], "temperature_limit_last_reboot()": [[484, "temperature-limit-last-reboot"]], "throttled()": [[484, "throttled"]], "throttled_last_reboot()": [[484, "throttled-last-reboot"]], "under_voltage()": [[484, "under-voltage"]], "under_voltage_last_reboot()": [[484, "under-voltage-last-reboot"]], "uptime()": [[484, "uptime"]], "uptime_str()": [[484, "uptime-str"]], "Plugin \u201arrd\u2018 Konfiguration": [[485, "plugin-rrd-konfiguration"]], "rrd_dir": [[485, "rrd-dir"]], "step": [[485, "step"]], "rrd_ds_name": [[485, "rrd-ds-name"]], "rrd_max": [[485, "rrd-max"]], "rrd_min": [[485, "rrd-min"]], "rrd_no_series": [[485, "rrd-no-series"]], "rrd_step": [[485, "rrd-step"]], "rrd_type": [[485, "rrd-type"]], "Plugin \u201artr\u2018 Konfiguration": [[486, "plugin-rtr-konfiguration"]], "defaultBoostTime": [[486, "defaultboosttime"]], "defaultOnExpiredTimer": [[486, "defaultonexpiredtimer"]], "defaultValveProtect": [[486, "defaultvalveprotect"]], "default_Ki": [[486, "default-ki"], [487, "default-ki"]], "default_Kp": [[486, "default-kp"], [487, "default-kp"]], "rtr_Ki": [[486, "rtr-ki"]], "rtr_Kp": [[486, "rtr-kp"]], "rtr_temp_boost": [[486, "rtr-temp-boost"]], "rtr_temp_boost_time": [[486, "rtr-temp-boost-time"]], "rtr_temp_default": [[486, "rtr-temp-default"]], "rtr_temp_drop": [[486, "rtr-temp-drop"]], "rtr_valve_protect": [[486, "rtr-valve-protect"]], "Plugin \u201artr2\u2018 Konfiguration": [[487, "plugin-rtr2-konfiguration"]], "comfort_temp": [[487, "comfort-temp"]], "default_Kd": [[487, "default-kd"]], "fixed_reduction": [[487, "fixed-reduction"]], "frost_temp": [[487, "frost-temp"]], "hvac_mode": [[487, "hvac-mode"]], "max_output": [[487, "max-output"]], "min_output": [[487, "min-output"]], "night_reduction": [[487, "night-reduction"]], "standby_reduction": [[487, "standby-reduction"]], "valve_protect": [[487, "valve-protect"]], "rtr2_controller_settings": [[487, "rtr2-controller-settings"]], "rtr2_function": [[487, "rtr2-function"]], "rtr2_id": [[487, "rtr2-id"]], "rtr2_settings": [[487, "rtr2-settings"]], "Plugin \u201arussound\u2018 Konfiguration": [[488, "plugin-russound-konfiguration"]], "activate()": [[488, "activate"]], "Plugin \u201ashelly\u2018 Konfiguration": [[489, "plugin-shelly-konfiguration"]], "debuggen1devices": [[489, "debuggen1devices"]], "gen1debug": [[489, "gen1debug"]], "shelly_attr": [[489, "shelly-attr"]], "shelly_group": [[489, "shelly-group"]], "shelly_id": [[489, "shelly-id"]], "shelly_list_attrs": [[489, "shelly-list-attrs"]], "shelly_relay": [[489, "shelly-relay"]], "shelly_type": [[489, "shelly-type"]], "Plugin \u201asimulation\u2018 Konfiguration": [[490, "plugin-simulation-konfiguration"]], "callers": [[490, "callers"]], "data_file": [[490, "data-file"]], "sim": [[490, "sim"]], "Plugin \u201aslack\u2018 Konfiguration": [[491, "plugin-slack-konfiguration"]], "notify(channel, text, color= \u201anormal\u2018)": [[491, "notify-channel-text-color-normal"]], "channel": [[491, "channel"]], "Plugin \u201asma\u2018 Konfiguration": [[492, "plugin-sma-konfiguration"]], "allowed_timedelta": [[492, "allowed-timedelta"]], "sma": [[492, "sma"]], "Plugin \u201asma_em\u2018 Konfiguration": [[493, "plugin-sma-em-konfiguration"]], "serial": [[493, "serial"]], "sma_em_data_type": [[493, "sma-em-data-type"]], "Plugin \u201asma_mb\u2018 Konfiguration": [[494, "plugin-sma-mb-konfiguration"]], "smamb_datatype": [[494, "smamb-datatype"]], "smamb_register": [[494, "smamb-register"]], "Plugin \u201asmarttv\u2018 Konfiguration": [[495, "plugin-smarttv-konfiguration"]], "delay": [[495, "delay"]], "tv_version": [[495, "tv-version"]], "Plugin \u201asmartvisu\u2018 Konfiguration": [[496, "plugin-smartvisu-konfiguration"]], "create_masteritem_file": [[496, "create-masteritem-file"]], "default_acl": [[496, "default-acl"]], "generate_pages": [[496, "generate-pages"], [523, "generate-pages"]], "list_deprecated_warnings": [[496, "list-deprecated-warnings"]], "overwrite_templates": [[496, "overwrite-templates"], [523, "overwrite-templates"]], "visu_style": [[496, "visu-style"], [523, "visu-style"]], "sv_blocksize": [[496, "sv-blocksize"], [523, "sv-blocksize"]], "sv_name1": [[496, "sv-name1"], [523, "sv-name1"]], "sv_name2": [[496, "sv-name2"], [523, "sv-name2"]], "url(url, clientip= \u201a\u2018)": [[496, "url-url-clientip"], [524, "url-url-clientip"]], "clientip": [[496, "clientip"], [524, "clientip"]], "Plugin \u201asml\u2018 Konfiguration": [[497, "plugin-sml-konfiguration"]], "Plugin \u201asml2\u2018 Konfiguration": [[498, "plugin-sml2-konfiguration"]], "buffersize": [[498, "buffersize"], [499, "buffersize"]], "date_offset": [[498, "date-offset"], [499, "date-offset"]], "poly": [[498, "poly"], [499, "poly"]], "reflect_in": [[498, "reflect-in"], [499, "reflect-in"]], "reflect_out": [[498, "reflect-out"], [499, "reflect-out"]], "swap_crc_bytes": [[498, "swap-crc-bytes"], [499, "swap-crc-bytes"]], "use_polling": [[498, "use-polling"]], "xor_in": [[498, "xor-in"], [499, "xor-in"]], "xor_out": [[498, "xor-out"], [499, "xor-out"]], "Plugin \u201asmlx\u2018 Konfiguration": [[499, "plugin-smlx-konfiguration"]], "Plugin \u201asnap7_logo\u2018 Konfiguration": [[500, "plugin-snap7-logo-konfiguration"]], "tsap_client": [[500, "tsap-client"]], "tsap_server": [[500, "tsap-server"]], "Plugin \u201asnmp\u2018 Konfiguration": [[501, "plugin-snmp-konfiguration"]], "snmp_community": [[501, "snmp-community"]], "snmp_port": [[501, "snmp-port"]], "Plugin \u201asolarforecast\u2018 Konfiguration": [[502, "plugin-solarforecast-konfiguration"]], "azimuth": [[502, "azimuth"]], "declination": [[502, "declination"]], "kwp": [[502, "kwp"]], "service": [[502, "service"]], "solarforecast_attribute": [[502, "solarforecast-attribute"]], "is_power_available(power, hours=2)": [[502, "is-power-available-power-hours-2"]], "power": [[502, "power"]], "hours": [[502, "hours"]], "Plugin \u201asolarlog\u2018 Konfiguration": [[503, "plugin-solarlog-konfiguration"]], "fw2x": [[503, "fw2x"]], "Plugin \u201asonos\u2018 Konfiguration": [[504, "plugin-sonos-konfiguration"]], "discover_cycle": [[504, "discover-cycle"]], "local_webservice_path": [[504, "local-webservice-path"]], "local_webservice_path_snippet": [[504, "local-webservice-path-snippet"]], "snippet_duration_offset": [[504, "snippet-duration-offset"]], "speaker_ips": [[504, "speaker-ips"]], "tts": [[504, "tts"]], "webservice_ip": [[504, "webservice-ip"]], "webservice_port": [[504, "webservice-port"]], "sonos_attrib": [[504, "sonos-attrib"]], "sonos_dpt3_step": [[504, "sonos-dpt3-step"]], "sonos_dpt3_time": [[504, "sonos-dpt3-time"]], "sonos_recv": [[504, "sonos-recv"]], "sonos_send": [[504, "sonos-send"]], "sonos_uid": [[504, "sonos-uid"]], "play_all(alert_uri, speaker_list, alert_volume, alert_duration, fade_back)": [[504, "play-all-alert-uri-speaker-list-alert-volume-alert-duration-fade-back"]], "alert_uri": [[504, "alert-uri"]], "speaker_list": [[504, "speaker-list"]], "alert_volume": [[504, "alert-volume"]], "alert_duration": [[504, "alert-duration"]], "fade_back": [[504, "fade-back"]], "Plugin \u201aspeech\u2018 Konfiguration": [[505, "plugin-speech-konfiguration"]], "config_file": [[505, "config-file"]], "default_access": [[505, "default-access"]], "listen_ip": [[505, "listen-ip"]], "listen_port": [[505, "listen-port"]], "Plugin \u201asqlite_visu2_8\u2018 Konfiguration": [[506, "plugin-sqlite-visu2-8-konfiguration"]], "sqlite": [[506, "sqlite"]], "db(function, start, end= \u201anow\u2018)": [[506, "db-function-start-end-now"]], "filename": [[506, "filename"]], "old": [[506, "old"]], "new": [[506, "new"]], "Plugin \u201asqueezebox\u2018 Konfiguration": [[507, "plugin-squeezebox-konfiguration"]], "squeezebox_albumart": [[507, "squeezebox-albumart"]], "squeezebox_init": [[507, "squeezebox-init"]], "squeezebox_playerid": [[507, "squeezebox-playerid"]], "squeezebox_recv": [[507, "squeezebox-recv"]], "squeezebox_send": [[507, "squeezebox-send"]], "Plugin \u201astateengine\u2018 Konfiguration": [[508, "plugin-stateengine-konfiguration"]], "instant_leaveaction": [[508, "instant-leaveaction"]], "lamella_offset": [[508, "lamella-offset"]], "lamella_open_value": [[508, "lamella-open-value"]], "log_directory": [[508, "log-directory"]], "log_level": [[508, "log-level"]], "log_maxage": [[508, "log-maxage"]], "startup_delay_default": [[508, "startup-delay-default"]], "startup_log_level": [[508, "startup-log-level"]], "suspend_time_default": [[508, "suspend-time-default"]], "se_instant_leaveaction": [[508, "se-instant-leaveaction"]], "se_item_suspend_end": [[508, "se-item-suspend-end"]], "se_item_suspend_start": [[508, "se-item-suspend-start"]], "se_lastconditionset_item_id": [[508, "se-lastconditionset-item-id"]], "se_lastconditionset_item_name": [[508, "se-lastconditionset-item-name"]], "se_laststate_item_id": [[508, "se-laststate-item-id"]], "se_laststate_item_name": [[508, "se-laststate-item-name"]], "se_log_level": [[508, "se-log-level"]], "se_name": [[508, "se-name"]], "se_plugin": [[508, "se-plugin"]], "se_previousconditionset_item_id": [[508, "se-previousconditionset-item-id"]], "se_previousconditionset_item_name": [[508, "se-previousconditionset-item-name"]], "se_previousstate_conditionset_item_id": [[508, "se-previousstate-conditionset-item-id"]], "se_previousstate_conditionset_item_name": [[508, "se-previousstate-conditionset-item-name"]], "se_previousstate_item_id": [[508, "se-previousstate-item-id"]], "se_previousstate_item_name": [[508, "se-previousstate-item-name"]], "se_released_by": [[508, "se-released-by"]], "se_repeat_actions": [[508, "se-repeat-actions"]], "se_startup_delay": [[508, "se-startup-delay"]], "se_stateorder": [[508, "se-stateorder"]], "se_suspend_time": [[508, "se-suspend-time"]], "se_use": [[508, "se-use"]], "Plugin \u201asystemair\u2018 Konfiguration": [[509, "plugin-systemair-konfiguration"]], "slave_address": [[509, "slave-address"]], "coil_regaddr": [[509, "coil-regaddr"]], "systemair_regaddr": [[509, "systemair-regaddr"]], "Plugin \u201atankerkoenig\u2018 Konfiguration": [[510, "plugin-tankerkoenig-konfiguration"]], "details_update_cycle": [[510, "details-update-cycle"]], "price_update_cycle": [[510, "price-update-cycle"]], "tankerkoenig_admin": [[510, "tankerkoenig-admin"]], "tankerkoenig_attr": [[510, "tankerkoenig-attr"]], "tankerkoenig_id": [[510, "tankerkoenig-id"]], "get_petrol_station_detail(id)": [[510, "get-petrol-station-detail-id"]], "get_petrol_station_detail_reduced(id)": [[510, "get-petrol-station-detail-reduced-id"]], "get_petrol_station_prices(ids)": [[510, "get-petrol-station-prices-ids"]], "ids": [[510, "ids"]], "get_petrol_stations(lat, lon, type, sort, rad)": [[510, "get-petrol-stations-lat-lon-type-sort-rad"]], "lat": [[510, "lat"]], "lon": [[510, "lon"]], "sort": [[510, "sort"]], "rad": [[510, "rad"]], "Plugin \u201atasmota\u2018 Konfiguration": [[511, "plugin-tasmota-konfiguration"]], "full_topic": [[511, "full-topic"]], "telemetry_period": [[511, "telemetry-period"]], "tasmota_admin": [[511, "tasmota-admin"]], "tasmota_attr": [[511, "tasmota-attr"]], "tasmota_button": [[511, "tasmota-button"]], "tasmota_relay": [[511, "tasmota-relay"]], "tasmota_rf_details": [[511, "tasmota-rf-details"]], "tasmota_sml_attr": [[511, "tasmota-sml-attr"]], "tasmota_sml_device": [[511, "tasmota-sml-device"]], "tasmota_topic": [[511, "tasmota-topic"]], "tasmota_zb_attr": [[511, "tasmota-zb-attr"]], "tasmota_zb_cluster": [[511, "tasmota-zb-cluster"]], "tasmota_zb_device": [[511, "tasmota-zb-device"]], "tasmota_zb_group": [[511, "tasmota-zb-group"]], "Plugin \u201atelegram\u2018 Konfiguration": [[512, "plugin-telegram-konfiguration"]], "bye_msg": [[512, "bye-msg"]], "long_polling_timeout": [[512, "long-polling-timeout"]], "no_access_msg": [[512, "no-access-msg"]], "no_write_access_msg": [[512, "no-write-access-msg"]], "pretty_thread_names": [[512, "pretty-thread-names"]], "resend_attemps": [[512, "resend-attemps"]], "resend_delay": [[512, "resend-delay"]], "welcome_msg": [[512, "welcome-msg"]], "msg_broadcast(msg, chat_id)": [[512, "msg-broadcast-msg-chat-id"]], "msg": [[512, "msg"], [527, "msg"]], "chat_id": [[512, "chat-id"], [512, "id2"]], "photo_broadcast(photofile_or_url, caption, chat_id)": [[512, "photo-broadcast-photofile-or-url-caption-chat-id"]], "photofile_or_url": [[512, "photofile-or-url"]], "caption": [[512, "caption"]], "Plugin \u201atext_display\u2018 Konfiguration": [[513, "plugin-text-display-konfiguration"]], "text_display_content_source_item": [[513, "text-display-content-source-item"]], "text_display_cycle_time": [[513, "text-display-cycle-time"]], "text_display_default_message": [[513, "text-display-default-message"]], "text_display_sink_for_rings": [[513, "text-display-sink-for-rings"]], "text_display_sink_rings_with_prio": [[513, "text-display-sink-rings-with-prio"]], "text_display_target_ring": [[513, "text-display-target-ring"]], "Plugin \u201athz\u2018 Konfiguration": [[514, "plugin-thz-konfiguration"]], "max_update_period": [[514, "max-update-period"]], "min_update_period": [[514, "min-update-period"]], "poll_period": [[514, "poll-period"], [537, "poll-period"]], "serial_port": [[514, "serial-port"]], "server_host": [[514, "server-host"]], "server_port": [[514, "server-port"]], "thz": [[514, "thz"]], "Plugin \u201atimmy\u2018 Konfiguration": [[515, "plugin-timmy-konfiguration"]], "timmy_blink_cycles": [[515, "timmy-blink-cycles"]], "timmy_blink_loops": [[515, "timmy-blink-loops"]], "timmy_blink_pattern": [[515, "timmy-blink-pattern"]], "timmy_blink_target": [[515, "timmy-blink-target"]], "timmy_delay_off_delay_seconds": [[515, "timmy-delay-off-delay-seconds"]], "timmy_delay_on_delay_seconds": [[515, "timmy-delay-on-delay-seconds"]], "timmy_delay_target_item": [[515, "timmy-delay-target-item"]], "Plugin \u201atraffic\u2018 Konfiguration": [[516, "plugin-traffic-konfiguration"]], "get_route_info(origin, destination, alternatives, departure_time, mode)": [[516, "get-route-info-origin-destination-alternatives-departure-time-mode"]], "origin": [[516, "origin"]], "destination": [[516, "destination"]], "alternatives": [[516, "alternatives"]], "departure_time": [[516, "departure-time"]], "Plugin \u201atrovis557x\u2018 Konfiguration": [[517, "plugin-trovis557x-konfiguration"]], "modbus_debug": [[517, "modbus-debug"]], "modbus_mode": [[517, "modbus-mode"]], "modbus_speed": [[517, "modbus-speed"]], "modbus_timeout": [[517, "modbus-timeout"]], "modbus_trovis_address": [[517, "modbus-trovis-address"]], "desc": [[517, "desc"]], "invalid_to_zero": [[517, "invalid-to-zero"]], "liste": [[517, "liste"]], "trovis557x_var": [[517, "trovis557x-var"]], "werte": [[517, "werte"]], "Plugin \u201aunifi\u2018 Konfiguration": [[518, "plugin-unifi-konfiguration"]], "poll_cycle_time": [[518, "poll-cycle-time"]], "unifi_controller_url": [[518, "unifi-controller-url"]], "unifi_password": [[518, "unifi-password"]], "unifi_site_id": [[518, "unifi-site-id"]], "unifi_user": [[518, "unifi-user"]], "unifi_ap_mac": [[518, "unifi-ap-mac"]], "unifi_client_mac": [[518, "unifi-client-mac"]], "unifi_device_mac": [[518, "unifi-device-mac"]], "unifi_switch_mac": [[518, "unifi-switch-mac"]], "unifi_switch_port_no": [[518, "unifi-switch-port-no"]], "unifi_switch_port_profile_off": [[518, "unifi-switch-port-profile-off"]], "unifi_switch_port_profile_on": [[518, "unifi-switch-port-profile-on"]], "unifi_type": [[518, "unifi-type"]], "Plugin \u201auzsu\u2018 Konfiguration": [[519, "plugin-uzsu-konfiguration"]], "backintime": [[519, "backintime"], [519, "id3"]], "interpolation_interval": [[519, "interpolation-interval"]], "interpolation_precision": [[519, "interpolation-precision"]], "interpolation_type": [[519, "interpolation-type"]], "remove_duplicates": [[519, "remove-duplicates"]], "suncalculation_cron": [[519, "suncalculation-cron"]], "uzsu_item": [[519, "uzsu-item"]], "activate(activevalue, item)": [[519, "activate-activevalue-item"]], "activevalue": [[519, "activevalue"], [519, "id8"]], "clear(clear, item)": [[519, "clear-clear-item"]], "clear": [[519, "clear"], [519, "id4"]], "interpolation(intpl_type=None, interval=5, backintime=0)": [[519, "interpolation-intpl-type-none-interval-5-backintime-0"]], "intpl_type": [[519, "intpl-type"]], "itpl(clear=False, item)": [[519, "itpl-clear-false-item"]], "lastvalue(by= \u201aNone\u2018, item)": [[519, "lastvalue-by-none-item"]], "by": [[519, "by"]], "planned(item)": [[519, "planned-item"]], "resume(activevalue, item)": [[519, "resume-activevalue-item"]], "Plugin \u201avacations\u2018 Konfiguration": [[520, "plugin-vacations-konfiguration"]], "get_vacation(date, province)": [[520, "get-vacation-date-province"]], "province": [[520, "province"], [520, "id3"], [520, "id5"]], "get_vacation_name(date, province)": [[520, "get-vacation-name-date-province"]], "is_vacation(date, province)": [[520, "is-vacation-date-province"]], "Plugin \u201avicare\u2018 Konfiguration": [[521, "plugin-vicare-konfiguration"]], "accessToken": [[521, "accesstoken"]], "clientID": [[521, "clientid"]], "redirectUrl": [[521, "redirecturl"]], "refreshToken": [[521, "refreshtoken"]], "vicare_path": [[521, "vicare-path"]], "vicare_rx_key": [[521, "vicare-rx-key"]], "vicare_tx_key": [[521, "vicare-tx-key"]], "vicare_tx_path": [[521, "vicare-tx-path"]], "Plugin \u201aviessmann\u2018 Konfiguration": [[522, "plugin-viessmann-konfiguration"]], "heating_type": [[522, "heating-type"]], "addr": [[522, "addr"], [522, "id2"], [522, "id3"]], "length": [[522, "length"]], "unit": [[522, "unit"]], "Plugin \u201avisu_smartvisu\u2018 Konfiguration": [[523, "plugin-visu-smartvisu-konfiguration"]], "Plugin \u201avisu_websocket\u2018 Konfiguration": [[524, "plugin-visu-websocket-konfiguration"]], "Plugin \u201avolkszaehler\u2018 Konfiguration": [[525, "plugin-volkszaehler-konfiguration"]], "Plugin \u201awaterkotte\u2018 Konfiguration": [[526, "plugin-waterkotte-konfiguration"]], "waterkotte": [[526, "waterkotte"]], "Plugin \u201awebpush\u2018 Konfiguration": [[527, "plugin-webpush-konfiguration"]], "grouplist": [[527, "grouplist"]], "varpath": [[527, "varpath"]], "webpush_communication": [[527, "webpush-communication"]], "webpush_config": [[527, "webpush-config"]], "sendPushNotification(msg, group, title= \u201a\u2018, url= \u201a\u2018, requireInteraction=, icon= \u201a\u2018, badge= \u201a\u2018, image= \u201a\u2018, silent=False, vibrate=[], ttl=604800, highpriority=True, returnval=True, timestamp=True)": [[527, "sendpushnotification-msg-group-title-url-requireinteraction-icon-badge-image-silent-false-vibrate-ttl-604800-highpriority-true-returnval-true-timestamp-true"]], "requireInteraction": [[527, "requireinteraction"]], "badge": [[527, "badge"]], "silent": [[527, "silent"]], "vibrate": [[527, "vibrate"]], "ttl": [[527, "ttl"]], "highpriority": [[527, "highpriority"]], "returnval": [[527, "returnval"]], "timestamp": [[527, "timestamp"]], "Plugin \u201awebservices\u2018 Konfiguration": [[528, "plugin-webservices-konfiguration"]], "use_service_auth": [[528, "use-service-auth"]], "webservices_data": [[528, "webservices-data"]], "webservices_set": [[528, "webservices-set"]], "Plugin \u201awettercom\u2018 Konfiguration": [[529, "plugin-wettercom-konfiguration"]], "project": [[529, "project"]], "Plugin \u201awithings_health\u2018 Konfiguration": [[530, "plugin-withings-health-konfiguration"]], "consumer_secret": [[530, "consumer-secret"]], "user_id": [[530, "user-id"]], "withings_type": [[530, "withings-type"]], "get_callback_url()": [[530, "get-callback-url"]], "Plugin \u201awol\u2018 Konfiguration": [[531, "plugin-wol-konfiguration"]], "wol_ip": [[531, "wol-ip"]], "wol_mac": [[531, "wol-mac"]], "wake_on_lan(mac_adr, ip_adr)": [[531, "wake-on-lan-mac-adr-ip-adr"]], "mac_adr": [[531, "mac-adr"]], "ip_adr": [[531, "ip-adr"]], "Plugin \u201awunderground\u2018 Konfiguration": [[532, "plugin-wunderground-konfiguration"]], "wug_xmlstring": [[532, "wug-xmlstring"]], "Plugin \u201axiaomi_vac\u2018 Konfiguration": [[533, "plugin-xiaomi-vac-konfiguration"]], "read_cycle": [[533, "read-cycle"]], "robvac": [[533, "robvac"]], "Plugin \u201axmpp\u2018 Konfiguration": [[534, "plugin-xmpp-konfiguration"]], "jid": [[534, "jid"]], "plugins": [[534, "plugins"]], "server": [[534, "server"]], "use_ipv6": [[534, "use-ipv6"]], "send(to, msgsend, mt= \u201achat\u2018)": [[534, "send-to-msgsend-mt-chat"]], "msgsend": [[534, "msgsend"]], "mt": [[534, "mt"]], "Plugin \u201ayamaha\u2018 Konfiguration": [[535, "plugin-yamaha-konfiguration"]], "yamaha_cmd": [[535, "yamaha-cmd"]], "yamaha_host": [[535, "yamaha-host"]], "Plugin \u201ayamahayxc\u2018 Konfiguration": [[536, "plugin-yamahayxc-konfiguration"]], "yamahayxc_cmd": [[536, "yamahayxc-cmd"]], "yamahayxc_host": [[536, "yamahayxc-host"]], "yamahayxc_zone": [[536, "yamahayxc-zone"]], "Plugin \u201azigbee2mqtt\u2018 Konfiguration": [[537, "plugin-zigbee2mqtt-konfiguration"]], "base_topic": [[537, "base-topic"]], "read_at_init": [[537, "read-at-init"]], "z2m_gui": [[537, "z2m-gui"]], "z2m_attr": [[537, "z2m-attr"]], "z2m_bool_values": [[537, "z2m-bool-values"]], "z2m_readonly": [[537, "z2m-readonly"]], "z2m_topic": [[537, "z2m-topic"]], "z2m_writeonly": [[537, "z2m-writeonly"]], "Plugin \u201azwave\u2018 Konfiguration": [[538, "plugin-zwave-konfiguration"]], "config_path": [[538, "config-path"]], "logfile": [[538, "logfile"]], "loglevel": [[538, "loglevel"]], "sec_strategy": [[538, "sec-strategy"]], "zlogging": [[538, "zlogging"]], "zwave_node": [[538, "zwave-node"]], "zwave_value": [[538, "zwave-value"]], "Alle Plugins": [[545, "alle-plugins"], [546, "alle-plugins"]], "Anmerkungen f\u00fcr die obige Liste:": [[545, null], [547, null], [548, null], [550, null], [552, null], [554, null], [558, null]], "Gateway Plugins": [[548, "gateway-plugins"], [549, "gateway-plugins"]], "Interface Plugins": [[550, "interface-plugins"], [551, "interface-plugins"]], "Protokoll Plugins": [[552, "protokoll-plugins"], [553, "protokoll-plugins"]], "System Plugins": [[554, "system-plugins"], [555, "system-plugins"]], "Nicht klassifizierte Plugins": [[556, "nicht-klassifizierte-plugins"], [557, "nicht-klassifizierte-plugins"]], "Web/Cloud Plugins": [[558, "web-cloud-plugins"], [559, "web-cloud-plugins"]], "APIs von SmartHomeNG": [[560, "apis-von-smarthomeng"]], "Relative Item Referenzen": [[561, "relative-item-referenzen"]], "Syntax der relativen Referenzen": [[561, "syntax-der-relativen-referenzen"]], "Nutzung in eval_trigger und eval": [[561, "nutzung-in-eval-trigger-und-eval"]], "Nutzung im Zusammenhang mit Item-Attributen": [[561, null]], "Nutzung relativer Item Referenzen in Plugins": [[561, "nutzung-relativer-item-referenzen-in-plugins"]], "Funktionen eines Items": [[562, "funktionen-eines-items"]], "Beispiele f\u00fcr die Nutzung von Funktionen": [[562, "beispiele-fur-die-nutzung-von-funktionen"]], "Zugriff auf die Werte von Items": [[563, "zugriff-auf-die-werte-von-items"]], "Lesen einer Item Wertes": [[563, "lesen-einer-item-wertes"]], "Zugriff auf ein Listen-Element neu": [[563, "zugriff-auf-ein-listen-element-neu"]], "Zugriff auf ein Dict-Element neu": [[563, "zugriff-auf-ein-dict-element-neu"]], "Schreiben eines Item Wertes": [[563, "schreiben-eines-item-wertes"]], "Schreiben eines Listen-Elements neu": [[563, "schreiben-eines-listen-elements-neu"]], "Schreiben eines Dict-Elements neu": [[563, "schreiben-eines-dict-elements-neu"]], "Weitere Parameter Item Zugriff": [[563, "weitere-parameter-item-zugriff"]], "Erweiterter Zugriff auf List- und Dict-Items neu": [[563, "erweiterter-zugriff-auf-list-und-dict-items-neu"]], "List-Items": [[563, "list-items"]], "Dict-Items": [[563, "dict-items"]], "Methoden zum Zugriff auf Items": [[565, "methoden-zum-zugriff-auf-items"], [591, "methoden-zum-zugriff-auf-items"]], "return_item(path)": [[565, "return-item-path"], [591, "return-item-path"]], "return_items()": [[565, "return-items"], [591, "return-items"]], "match_items(regex)": [[565, "match-items-regex"], [591, "match-items-regex"]], "find_items(configattribute)": [[565, "find-items-configattribute"], [591, "find-items-configattribute"]], "find_children(parentitem, configattribute)": [[565, "find-children-parentitem-configattribute"], [591, "find-children-parentitem-configattribute"]], "Plugin-spezifische Attribute": [[566, "plugin-spezifische-attribute"]], "Vererbung von Attributen update": [[566, "vererbung-von-attributen-update"]], "Zugriff auf Attribute anderer Items update": [[566, "zugriff-auf-attribute-anderer-items-update"]], "Platzhalter in Attributwerten neu": [[566, "platzhalter-in-attributwerten-neu"]], "Properties eines Items": [[567, "properties-eines-items"], [591, "properties-eines-items"]], "autotimer": [[568, "autotimer"]], "crontab Update": [[569, "crontab-update"], [592, "crontab-update"]], "enforce_change": [[571, "enforce-change"]], "enforce_updates": [[572, "enforce-updates"]], "Attribut eval": [[573, "attribut-eval"]], "zus\u00e4tzliche Funktionen in eval Ausdr\u00fccken": [[573, "zusatzliche-funktionen-in-eval-ausdrucken"]], "Nutzung von Userfunctions": [[573, "nutzung-von-userfunctions"]], "Eval Syntax": [[573, "eval-syntax"]], "Attribut eval_trigger": [[573, "attribut-eval-trigger"]], "Attribut eval_on_trigger_only": [[573, "attribut-eval-on-trigger-only"]], "Gemeinsame Verwendung von eval und on_... Item Attributen": [[573, "gemeinsame-verwendung-von-eval-und-on-item-attributen"], [576, "gemeinsame-verwendung-von-eval-und-on-item-attributen"]], "Abfrage des Ausl\u00f6sers eines eval Ausdrucks": [[573, "abfrage-des-auslosers-eines-eval-ausdrucks"]], "Hysterese": [[574, "hysterese"]], "hysteresis_input": [[574, "hysteresis-input"]], "Oberhalb des oberen Schwellwertes": [[574, "oberhalb-des-oberen-schwellwertes"]], "zwischen den Schwellwerten": [[574, "zwischen-den-schwellwerten"]], "Unterhalb des unteren Schwellwertes": [[574, "unterhalb-des-unteren-schwellwertes"]], "hysteresis_upper_threshold": [[574, "hysteresis-upper-threshold"]], "hysteresis_lower_threshold": [[574, "hysteresis-lower-threshold"]], "zus\u00e4tzliche Statusinformationen": [[574, "zusatzliche-statusinformationen"]], "Stati eines Hysteresis Items": [[574, "id1"]], "log_change und log_text": [[575, "log-change-und-log-text"]], "Attribut log_change": [[575, "attribut-log-change"]], "Attribut log_level": [[575, "attribut-log-level"]], "eval-Ausduck in log_level": [[575, "eval-ausduck-in-log-level"]], "Attribut log_text": [[575, "attribut-log-text"]], "Variablen in log_text": [[575, "variablen-in-log-text"]], "eval-Ausdr\u00fccke in log_text": [[575, "eval-ausdrucke-in-log-text"]], "Attribut log_mapping": [[575, "attribut-log-mapping"]], "Attribut log_rules": [[575, "attribut-log-rules"]], "lowlimit": [[575, "lowlimit"]], "highlimit": [[575, "highlimit"]], "filter": [[575, "filter"]], "exclude": [[575, "exclude"]], "itemvalue": [[575, "itemvalue"]], "on_update und on_change": [[576, "on-update-und-on-change"]], "Attribut on_update": [[576, "attribut-on-update"]], "Attribut on_change": [[576, "attribut-on-change"]], "Standard Attribute Update": [[577, "standard-attribute-update"]], "struct": [[578, "struct"]], "SmartHomeNG Items": [[580, "smarthomeng-items"]], "Umgebungsbezogene Items": [[580, "umgebungsbezogene-items"]], "Tag/Nacht": [[580, "tag-nacht"]], "Mondlicht / -stand": [[580, "mondlicht-stand"]], "Sonnenaufgang / Sonnenstand": [[580, "sonnenaufgang-sonnenstand"]], "System Items": [[580, "system-items"]], "Libraries f\u00fcr Plugins und Logiken": [[581, "libraries-fur-plugins-und-logiken"]], "CherryPyFilter": [[583, "cherrypyfilter"]], "Benutzung des Filters": [[583, "benutzung-des-filters"], [583, "id1"], [583, "id2"]], "DuplicateFilter": [[583, "duplicatefilter"]], "Filter": [[583, "filter"]], "Logging Formatter": [[584, "logging-formatter"]], "Logging Handler": [[585, "logging-handler"]], "ShngTimedRotatingFileHandler": [[585, "shngtimedrotatingfilehandler"]], "Benutzung des Handlers": [[585, "benutzung-des-handlers"], [585, "id1"]], "DateTimeRotatingFileHandler": [[585, "datetimerotatingfilehandler"]], "ShngMemLogHandler": [[585, "shngmemloghandler"]], "Text Formatierung beim Logging": [[586, "text-formatierung-beim-logging"]], "Exceptions": [[588, "exceptions"]], "Exception LeaveLogic": [[588, "exception-leavelogic"]], "Funktionen und Klassen in Logiken": [[589, "funktionen-und-klassen-in-logiken"]], "Funktionen in Logiken": [[589, "funktionen-in-logiken"]], "bis SmartHomeNG v1.9.2": [[589, "bis-smarthomeng-v1-9-2"], [589, "id1"]], "ab SmartHomeNG v1.9.3": [[589, "ab-smarthomeng-v1-9-3"], [589, "id2"]], "Klassen in Logiken": [[589, "klassen-in-logiken"]], "Grundstruktur einer Logik": [[590, "grundstruktur-einer-logik"]], "Zugriff auf Items": [[591, "zugriff-auf-items"]], "Zugriff auf den Wert eines Items": [[591, "zugriff-auf-den-wert-eines-items"]], "Logik Konfiguration": [[592, "logik-konfiguration"]], "watch_item": [[592, "watch-item"]], "User Parameter": [[592, "user-parameter"]], "Logging in Logiken": [[593, "logging-in-logiken"]], "Logger Konfiguration": [[593, "logger-konfiguration"]], "Logging im Code": [[593, "logging-im-code"]], "Die Objekte logic und logics": [[594, "die-objekte-logic-und-logics"]], "Das logic Objekt": [[594, "das-logic-objekt"]], "Das trigger Dictionary": [[594, "das-trigger-dictionary"]], "Das logics Objekt": [[594, "das-logics-objekt"]], "Nutzung von MQTT in Logiken": [[595, "nutzung-von-mqtt-in-logiken"]], "Das mqtt Objekt": [[595, "das-mqtt-objekt"]], "mqtt.publish_topic()": [[595, "mqtt-publish-topic"]], "mqtt.subscribe_topic()": [[595, "mqtt-subscribe-topic"]], "mqtt.unsubscribe_topic()": [[595, "mqtt-unsubscribe-topic"]], "Persistente Variablen und Objekte": [[596, "persistente-variablen-und-objekte"]], "Existenz einer Variablen sicherstellen": [[596, "existenz-einer-variablen-sicherstellen"]], "Nutzung selbst definierter Parameter": [[596, "nutzung-selbst-definierter-parameter"]], "Einrichtung (Logik \u00fcbergreifend)": [[596, "einrichtung-logik-ubergreifend"]], "Unterschiede zu lokalen persistenten Variablen": [[596, "unterschiede-zu-lokalen-persistenten-variablen"]], "Nutzung von Plugin Funktionen": [[597, "nutzung-von-plugin-funktionen"]], "Dokumentation der Plugin Funktion(en)": [[597, "dokumentation-der-plugin-funktion-en"]], "Aufruf der Plugin Funktion(en)": [[597, "aufruf-der-plugin-funktion-en"]], "Bereits geladene Python Module": [[598, "bereits-geladene-python-module"]], "Import weiterer Python Module": [[598, "import-weiterer-python-module"]], "SmartHomeNG Methoden": [[599, "smarthomeng-methoden"]], "Feiertage, Daten und Zeiten": [[599, "feiertage-daten-und-zeiten"], [634, "feiertage-daten-und-zeiten"]], "Astronomie (Sonne und Mond)": [[599, "astronomie-sonne-und-mond"], [636, "astronomie-sonne-und-mond"]], "sh.sun": [[599, "sh-sun"], [636, "sh-sun"]], "sh.sun.pos()": [[599, "sh-sun-pos"], [636, "sh-sun-pos"]], "sh.sun.set()": [[599, "sh-sun-set"], [636, "sh-sun-set"]], "sh.sun.rise()": [[599, "sh-sun-rise"], [636, "sh-sun-rise"]], "sh.moon": [[599, "sh-moon"], [636, "sh-moon"]], "sh.moon.pos()": [[599, "sh-moon-pos"], [636, "sh-moon-pos"]], "sh.moon.set()": [[599, "sh-moon-set"], [636, "sh-moon-set"]], "sh.moon.rise()": [[599, "sh-moon-rise"], [636, "sh-moon-rise"]], "sh.moon.light()": [[599, "sh-moon-light"], [636, "sh-moon-light"]], "sh.moon.phase()": [[599, "sh-moon-phase"], [636, "sh-moon-phase"]], "sh.tools Objekt": [[599, "sh-tools-objekt"]], "sh.tools.ping()": [[599, "sh-tools-ping"]], "sh.tools.dewpoint()": [[599, "sh-tools-dewpoint"]], "sh.tools.fetch_url()": [[599, "sh-tools-fetch-url"]], "sh.tools.dt2ts(dt)": [[599, "sh-tools-dt2ts-dt"]], "sh.tools.dt2js(dt)": [[599, "sh-tools-dt2js-dt"]], "sh.tools.rel2abs(temp, hum)": [[599, "sh-tools-rel2abs-temp-hum"]], "sh.tools.runtime()": [[599, "sh-tools-runtime"]], "item_attribute_prefixes": [[601, "item-attribute-prefixes"]], "Plugins ohne Attribut-Pr\u00e4fixe": [[601, "plugins-ohne-attribut-prafixe"]], "Metadaten f\u00fcr Module": [[605, "metadaten-fur-module"], [614, "metadaten-fur-module"]], "Metadaten f\u00fcr Plugins": [[605, "metadaten-fur-plugins"], [619, "metadaten-fur-plugins"]], "Modul admin": [[612, "modul-admin"]], "API des Moduls admin.rest": [[612, "api-des-moduls-admin-rest"]], "API des Moduls api_plugins": [[612, "module-modules.admin.api_plugins"]], "API des Moduls api_plugin": [[612, "module-modules.admin.api_plugin"]], "API des Moduls (WebApi)": [[612, "api-des-moduls-webapi"]], "Modul http": [[613, "modul-http"]], "Modul mqtt": [[615, "modul-mqtt"]], "Module websocket": [[616, "module-websocket"]], "Netzwerk": [[617, "netzwerk"]], "Ports": [[617, "ports"]], "Port Nutzung durch SmartHomeNG": [[617, "id1"]], "Port Nutzung durch weitere Dienste": [[617, "id2"]], "asyncio Unterst\u00fctzung in Plugins Neu": [[618, "asyncio-unterstutzung-in-plugins-neu"]], "Methoden zur Unterst\u00fctzung von asyncio": [[618, "methoden-zur-unterstutzung-von-asyncio"]], "Plugin Typen": [[621, "plugin-typen"]], "Classic Plugin": [[621, "classic-plugin"]], "SmartPlugin": [[621, "smartplugin"]], "MqttPlugin": [[621, "mqttplugin"]], "SmartDevicePlugin": [[621, "smartdeviceplugin"]], "Plugin": [[622, "plugin"]], "Protokoll": [[622, "protokoll"]], "Verbindung": [[622, "verbindung"]], "DataTypes": [[622, "datatypes"]], "Class SmartDevicePlugin": [[623, "class-smartdeviceplugin"]], "Dokumentation des Plugins": [[625, "dokumentation-des-plugins"]], "Python Environment Update": [[627, "python-environment-update"]], "Python Version Installieren Neu": [[628, "python-version-installieren-neu"]], "Installation von ben\u00f6tigten Paketen": [[628, "installation-von-benotigten-paketen"]], "Download des Source Codes": [[628, "download-des-source-codes"]], "Das Archiv auspacken": [[628, "das-archiv-auspacken"]], "Source Code konfigurieren": [[628, "source-code-konfigurieren"]], "Den Build-Prozess starten": [[628, "den-build-prozess-starten"]], "Support Skripte f\u00fcr SmartHomeNG": [[629, "support-skripte-fur-smarthomeng"]], "make_venv Skript": [[629, "make-venv-skript"]], "act Skript": [[629, "act-skript"]], "Virtuelle Python Environments Update": [[630, "virtuelle-python-environments-update"]], "Installation von venv bzw. virtualenv": [[630, "installation-von-venv-bzw-virtualenv"]], "Erstellung von virtuellen Environments": [[630, "erstellung-von-virtuellen-environments"]], "L\u00f6schen eines virtuellen Environment": [[630, "loschen-eines-virtuellen-environment"]], "Virtuelle Environements als Dienst": [[630, "virtuelle-environements-als-dienst"]], "Referenz Update": [[631, "referenz-update"]], "Ablauf des Starts von SmartHomeNG": [[632, "ablauf-des-starts-von-smarthomeng"]], "Erste Schritte der Initialisierung": [[632, "erste-schritte-der-initialisierung"]], "Initialisierung des smarthome Objektes": [[632, "initialisierung-des-smarthome-objektes"]], "0 - Initialisierung": [[632, "initialisierung"]], "1 - Initialisierung: Logging initialisiert": [[632, "initialisierung-logging-initialisiert"]], "2 - Initialisierung: Voraussetzungen \u00fcberpr\u00fcft": [[632, "initialisierung-voraussetzungen-uberpruft"]], "3 - Initialisierung: Pr\u00fcfung der Prozessor-Geschwindigkeit": [[632, "initialisierung-prufung-der-prozessor-geschwindigkeit"]], "10 - Startet": [[632, "startet"]], "11 - Startet: Initialisiert und startet ladbare Module": [[632, "startet-initialisiert-und-startet-ladbare-module"]], "12 - Startet: Initialisiert Plugins": [[632, "startet-initialisiert-plugins"]], "13 - Startet: L\u00e4dt Item Definitionen": [[632, "startet-ladt-item-definitionen"]], "14 - Startet: Geladene Items vorbereiten": [[632, "startet-geladene-items-vorbereiten"]], "15 - Startet: Initialisiert Logiken": [[632, "startet-initialisiert-logiken"]], "16 - Startet: Startet Plugins": [[632, "startet-startet-plugins"]], "Laufzeit von SmartHomeNG": [[632, "laufzeit-von-smarthomeng"]], "20 - Aktiv": [[632, "aktiv"]], "Beendigung von SmartHomeNG": [[632, "beendigung-von-smarthomeng"]], "30 - Startet neu": [[632, "startet-neu"]], "31 - Stoppen": [[632, "stoppen"]], "32 - Stoppen: Threads beenden": [[632, "stoppen-threads-beenden"]], "33 - Angehalten": [[632, "angehalten"]], "Das shng_status dict": [[632, "das-shng-status-dict"]], "Feiertage": [[633, "feiertage"]], "Kommandozeilen-Optionen": [[635, "kommandozeilen-optionen"]], "SmartHomeNG (der Core)": [[637, "smarthomeng-der-core"]], "Erstellung und Speicherung": [[638, "erstellung-und-speicherung"]], "Verwendung der Admin GUI": [[638, "verwendung-der-admin-gui"]], "Initialisierung der Userfunctions": [[638, "initialisierung-der-userfunctions"]], "Aufruf einer Userfunction": [[638, "aufruf-einer-userfunction"]], "Logging aus Userfunctions": [[638, "logging-aus-userfunctions"]], "Nutzung von Item Werten": [[638, "nutzung-von-item-werten"]], "\u00dcbergabe als Parameter": [[638, "ubergabe-als-parameter"]], "durch das Smarthome-Objekt": [[638, "durch-das-smarthome-objekt"]], "Reload von Userfunctions": [[638, "reload-von-userfunctions"]], "Release 1.0 und davor": [[639, "release-1-0-und-davor"]], "Release 1.1 bis 1.5": [[640, "release-1-1-bis-1-5"]], "Release 1.6 - 11. Mai 2019": [[641, "release-1-6-11-mai-2019"]], "Absolute minimum Python Version": [[641, "absolute-minimum-python-version"]], "Bugfixes im CORE": [[641, "bugfixes-im-core"], [656, "bugfixes-im-core"], [675, "bugfixes-im-core"]], "Updates im CORE": [[641, "updates-im-core"], [655, "updates-im-core"], [675, "updates-im-core"]], "Neue Plugins": [[641, "neue-plugins"], [642, "neue-plugins"], [652, "neue-plugins"], [653, "neue-plugins"], [654, "neue-plugins"], [655, "neue-plugins"], [656, "neue-plugins"]], "Plugin Erweiterungen": [[641, "plugin-erweiterungen"], [642, "plugin-erweiterungen"]], "Veraltete Plugins": [[641, "veraltete-plugins"]], "Release 1.6.1 - 10. August 2019": [[642, "release-1-6-1-10-august-2019"]], "Release 1.7 - 6. April 2020": [[643, "release-1-7-6-april-2020"]], "Absolute Minimum Python Version": [[643, "absolute-minimum-python-version"], [644, "absolute-minimum-python-version"], [645, "absolute-minimum-python-version"], [691, "absolute-minimum-python-version"]], "\u00c4nderungen am Core": [[643, "anderungen-am-core"], [644, "anderungen-am-core"], [645, "anderungen-am-core"], [646, "anderungen-am-core"], [647, "anderungen-am-core"], [648, "anderungen-am-core"], [649, "anderungen-am-core"], [650, "anderungen-am-core"], [651, "anderungen-am-core"], [652, "anderungen-am-core"], [653, "anderungen-am-core"], [654, "anderungen-am-core"], [655, "anderungen-am-core"], [656, "anderungen-am-core"]], "Bugfixes in the CORE": [[643, "bugfixes-in-the-core"], [644, "bugfixes-in-the-core"], [645, "bugfixes-in-the-core"], [646, "bugfixes-in-the-core"], [647, "bugfixes-in-the-core"], [648, "bugfixes-in-the-core"], [649, "bugfixes-in-the-core"], [691, "bugfixes-in-the-core"]], "Updates in the CORE": [[643, "updates-in-the-core"], [644, "updates-in-the-core"], [645, "updates-in-the-core"], [646, "updates-in-the-core"], [647, "updates-in-the-core"], [649, "updates-in-the-core"], [651, "updates-in-the-core"], [653, "updates-in-the-core"], [654, "updates-in-the-core"], [656, "updates-in-the-core"], [691, "updates-in-the-core"]], "\u00c4nderungen bei Plugins": [[643, "anderungen-bei-plugins"], [644, "anderungen-bei-plugins"], [645, "anderungen-bei-plugins"], [646, "anderungen-bei-plugins"], [647, "anderungen-bei-plugins"], [648, "anderungen-bei-plugins"], [649, "anderungen-bei-plugins"], [650, "anderungen-bei-plugins"], [651, "anderungen-bei-plugins"], [652, "anderungen-bei-plugins"], [653, "anderungen-bei-plugins"], [654, "anderungen-bei-plugins"], [655, "anderungen-bei-plugins"], [656, "anderungen-bei-plugins"]], "New Plugins": [[643, "new-plugins"], [644, "new-plugins"], [645, "new-plugins"], [646, "new-plugins"], [649, "new-plugins"], [650, "new-plugins"], [651, "new-plugins"], [665, "new-plugins"], [666, "new-plugins"], [667, "new-plugins"], [669, "new-plugins"], [670, "new-plugins"], [691, "new-plugins"]], "Plugin Updates": [[643, "plugin-updates"], [644, "plugin-updates"], [645, "plugin-updates"], [647, "plugin-updates"], [648, "plugin-updates"], [649, "plugin-updates"], [650, "plugin-updates"], [651, "plugin-updates"], [652, "plugin-updates"], [653, "plugin-updates"], [654, "plugin-updates"], [655, "plugin-updates"], [656, "plugin-updates"], [691, "plugin-updates"]], "Outdated Plugins": [[643, "outdated-plugins"], [644, "outdated-plugins"], [645, "outdated-plugins"], [646, "outdated-plugins"], [649, "outdated-plugins"], [650, "outdated-plugins"], [651, "outdated-plugins"], [652, "outdated-plugins"], [653, "outdated-plugins"], [654, "outdated-plugins"], [655, "outdated-plugins"], [656, "outdated-plugins"], [691, "outdated-plugins"]], "Documentation": [[643, "documentation"], [644, "documentation"], [645, "documentation"], [646, "documentation"], [647, "documentation"], [648, "documentation"], [649, "documentation"], [650, "documentation"], [651, "documentation"], [691, "documentation"]], "Release 1.7.1 - 14. April 2020": [[644, "release-1-7-1-14-april-2020"]], "Release 1.7.2 - 23. Juni 2020": [[645, "release-1-7-2-23-juni-2020"]], "Release 1.8 - 15. Januar 2021": [[646, "release-1-8-15-januar-2021"]], "Plugin Updates and Bugfixes": [[646, "plugin-updates-and-bugfixes"]], "Retired Plugins": [[646, "retired-plugins"], [649, "retired-plugins"], [650, "retired-plugins"], [652, "retired-plugins"], [653, "retired-plugins"], [655, "retired-plugins"], [656, "retired-plugins"]], "Weitere \u00c4nderungen": [[646, "weitere-anderungen"], [647, "weitere-anderungen"], [648, "weitere-anderungen"], [649, "weitere-anderungen"], [650, "weitere-anderungen"], [651, "weitere-anderungen"], [652, "weitere-anderungen"], [653, "weitere-anderungen"], [654, "weitere-anderungen"], [655, "weitere-anderungen"], [656, "weitere-anderungen"]], "Release 1.8.1 - 24. Januar 2021": [[647, "release-1-8-1-24-januar-2021"]], "Release 1.8.2 - 21. Februar 2021": [[648, "release-1-8-2-21-februar-2021"]], "Release 1.9 - 28. Dezember 2021": [[649, "release-1-9-28-dezember-2021"]], "Release 1.9.1 - 13. Feb 2022": [[650, "release-1-9-1-13-feb-2022"]], "Updates to the CORE": [[650, "updates-to-the-core"]], "Release 1.9.2 - 2. Mai 2022": [[651, "release-1-9-2-2-mai-2022"]], "Release 1.9.3 - 31. Okt 2022": [[652, "release-1-9-3-31-okt-2022"]], "Allgemeine \u00c4nderungen": [[652, "allgemeine-anderungen"]], "Release 1.9.4 - 14. M\u00e4rz 2023": [[653, "release-1-9-4-14-marz-2023"]], "Allgmein": [[653, "allgmein"], [653, "id1"], [654, "allgmein"], [654, "id1"], [655, "allgmein"], [655, "id2"], [656, "allgmein"], [656, "id1"]], "Release 1.9.5 - 31. M\u00e4rz 2023": [[654, "release-1-9-5-31-marz-2023"]], "Release 1.10 - 29. Jan 2024": [[655, "release-1-10-29-jan-2024"]], "Release 1.10.x - tt. mmm 2024": [[656, "release-1-10-x-tt-mmm-2024"]], "Release Notes": [[657, "release-notes"]], "Release 0.1 - April 09th, 2011": [[658, "release-0-1-april-09th-2011"]], "Release 0.2 - June 21st, 2011": [[659, "release-0-2-june-21st-2011"]], "Features": [[659, "features"], [660, "features"], [662, "features"], [663, "features"], [664, "features"], [665, "features"], [666, "features"]], "Bug Fixes": [[659, "bug-fixes"], [660, "bug-fixes"], [662, "bug-fixes"], [663, "bug-fixes"], [664, "bug-fixes"], [665, "bug-fixes"], [666, "bug-fixes"]], "Release 0.3 - August 14th, 2011": [[660, "release-0-3-august-14th-2011"]], "Nonfunctional changes": [[660, "nonfunctional-changes"], [663, "nonfunctional-changes"]], "Release 0.4 - October 10th, 2011": [[661, "release-0-4-october-10th-2011"]], "Feature": [[661, "feature"]], "Release 0.5 - July 12th, 2012": [[662, "release-0-5-july-12th-2012"]], "Release 0.6 - June 21th, 2012": [[663, "release-0-6-june-21th-2012"]], "Release 0.7 - September 27th 2012": [[664, "release-0-7-september-27th-2012"]], "Release 0.8 - January 31st, 2013": [[665, "release-0-8-january-31st-2013"]], "Release 0.9 - June 6th 2013": [[666, "release-0-9-june-6th-2013"]], "Release 1.0 - November 14th, 2013": [[667, "release-1-0-november-14th-2013"]], "With Contributions from:": [[667, "with-contributions-from"]], "Base Features": [[667, "base-features"]], "Plugin Features": [[667, "plugin-features"]], "Changes:": [[667, "changes"]], "Migrate:": [[667, "migrate"]], "Release 1.1 - 13. April 2016": [[668, "release-1-1-13-april-2016"]], "Release 1.2 - 16. Mai 2016": [[669, "release-1-2-16-mai-2016"]], "New CORE features": [[669, "new-core-features"], [670, "new-core-features"]], "Removed CORE Libs": [[669, "removed-core-libs"], [670, "removed-core-libs"]], "Removed Plugins": [[669, "removed-plugins"], [670, "removed-plugins"]], "Release 1.3 - 5. August 2017": [[670, "release-1-3-5-august-2017"]], "Changes to existing Plugins": [[670, "changes-to-existing-plugins"]], "Release 1.4 - 17. Dezember 2017": [[671, "release-1-4-17-dezember-2017"]], "Absolute minimum Python Versionen auf 3.3 angehoben": [[671, "absolute-minimum-python-versionen-auf-3-3-angehoben"], [672, "absolute-minimum-python-versionen-auf-3-3-angehoben"]], "Neue Funktionen": [[671, "neue-funktionen"], [672, "neue-funktionen"], [673, "neue-funktionen"], [674, "neue-funktionen"]], "Neue Funktionen im CORE": [[671, "neue-funktionen-im-core"], [672, "neue-funktionen-im-core"], [673, "neue-funktionen-im-core"], [674, "neue-funktionen-im-core"]], "Entfernte CORE Bibliotheken": [[671, "entfernte-core-bibliotheken"], [674, "entfernte-core-bibliotheken"]], "Neue Plugins und Plugin-Erweiterungen": [[671, "neue-plugins-und-plugin-erweiterungen"], [672, "neue-plugins-und-plugin-erweiterungen"], [673, "neue-plugins-und-plugin-erweiterungen"], [674, "neue-plugins-und-plugin-erweiterungen"]], "Entfernte Plugins": [[671, "entfernte-plugins"], [674, "entfernte-plugins"]], "Release 1.4.1 - 23. Dezember 2017": [[672, "release-1-4-1-23-dezember-2017"]], "Release 1.4.2 - 2. Januar 2018": [[673, "release-1-4-2-2-januar-2018"]], "Release 1.5 - 8. Juli 2018": [[674, "release-1-5-8-juli-2018"]], "Absolute minimum Python Versionen auf 3.4 angehoben": [[674, "absolute-minimum-python-versionen-auf-3-4-angehoben"]], "Release 1.5.1 - 15. Juli 2018": [[675, "release-1-5-1-15-juli-2018"]], "Neue Plugin Versionen": [[675, "neue-plugin-versionen"]], "backup_restore.py": [[677, "backup-restore-py"]], "build_requirements.py": [[678, "build-requirements-py"]], "conf_to_yaml_converter.py": [[679, "conf-to-yaml-converter-py"]], "getshngpid": [[680, "getshngpid"]], "plugin_metadata_checker.py": [[681, "plugin-metadata-checker-py"]], "Automatische Generierung": [[682, "automatische-generierung"]], "Features der Generierung": [[682, "features-der-generierung"]], "Zus\u00e4tzliche Infos in der Navigation anzeigen": [[682, "zusatzliche-infos-in-der-navigation-anzeigen"]], "Generierung einer Konfigurations-Navigation": [[682, "generierung-einer-konfigurations-navigation"]], "Trenner in der Navigation": [[682, "trenner-in-der-navigation"]], "Unterschiedliche Visu-Styles": [[682, "unterschiedliche-visu-styles"]], "Unterschiedliche Blockgr\u00f6\u00dfen": [[682, "unterschiedliche-blockgroszen"]], "Unterschiedliche Blocktypen": [[682, "unterschiedliche-blocktypen"]], "Manuell erstellte Seiten": [[682, "manuell-erstellte-seiten"]], "Deprecated Widget Warnings": [[682, "deprecated-widget-warnings"]], "Navigation Structure Definition": [[682, "navigation-structure-definition"]], "Seiten aus mehreren Sub-Trees": [[682, "seiten-aus-mehreren-sub-trees"]], "Vollst\u00e4ndiges Beispiel": [[683, "vollstandiges-beispiel"]], "\u00c4nderungen ab v1.8": [[684, "anderungen-ab-v1-8"]], "Installation von Widgets": [[685, "installation-von-widgets"]], "smartVISU Widget-Handling": [[685, "smartvisu-widget-handling"]], "Beispiele f\u00fcr Plugins, welche Widgets mitbringen": [[685, "beispiele-fur-plugins-welche-widgets-mitbringen"]], "Nutzung der Widgets": [[685, "nutzung-der-widgets"]], "Einbindung von Widgets in Plugins": [[685, "einbindung-von-widgets-in-plugins"]], "Item Attribute zur Generierung": [[686, "item-attribute-zur-generierung"]], "Widgets f\u00fcr Plugins": [[687, "widgets-fur-plugins"]], "Ein Widget zu einem Plugin hinzuf\u00fcgen": [[687, "ein-widget-zu-einem-plugin-hinzufugen"]], "Notwendige Modifikationen der smartVISU vor v2.9": [[687, "notwendige-modifikationen-der-smartvisu-vor-v2-9"]], "Durchgef\u00fchrte Modifikationen": [[687, "durchgefuhrte-modifikationen"]], "NGINX als ReverseProxy": [[688, "nginx-als-reverseproxy"]], "Annahmen": [[688, "annahmen"]], "Basiskonfiguration": [[688, "basiskonfiguration"]], "NGINX installieren:": [[688, "nginx-installieren"]], "GeoIP installieren:": [[688, "geoip-installieren"]], "Let\u2019s Encrypt Server-Zertifikate": [[688, "lets-encrypt-server-zertifikate"]], "NGINX Konfiguration": [[688, "nginx-konfiguration"]], "/etc/nginx/conf.d/...conf erstellen": [[688, "etc-nginx-conf-d-mydomain-myds-me-conf-erstellen"]], "Passwort-Files f\u00fcr unterschiedliche User f\u00fcr smartVISU, Alexa, Network Plugin erstellen": [[688, "passwort-files-fur-unterschiedliche-user-fur-smartvisu-alexa-network-plugin-erstellen"]], "Nacharbeiten: Port 80 in NGINX deaktivieren": [[688, "nacharbeiten-port-80-in-nginx-deaktivieren"]], "Client Zertifikate erstellen (optional)": [[688, "client-zertifikate-erstellen-optional"]], "openssl.cnf editieren": [[688, "openssl-cnf-editieren"]], "Client Zertifikate in NGINX nutzen (optional)": [[688, "client-zertifikate-in-nginx-nutzen-optional"]], "Erweiterung: LUA Script f\u00fcr Apple Ger\u00e4te": [[688, "erweiterung-lua-script-fur-apple-gerate"]], "Erweiterung: St\u00e4rkere Diffie-Hellman-Parameter": [[688, "erweiterung-starkere-diffie-hellman-parameter"]], "Wartung: Zertifikat nach 3 Monaten erneuern": [[688, "wartung-zertifikat-nach-3-monaten-erneuern"]], "Visualisierung mit smartVISU Update": [[689, "visualisierung-mit-smartvisu-update"]], "Generierung der Visu Seiten": [[689, "generierung-der-visu-seiten"]], "Optionale Definition der Navigationsstruktur": [[689, "optionale-definition-der-navigationsstruktur"]], "Kommunikation mit der Visu": [[689, "kommunikation-mit-der-visu"]], "Websocket Kommunikation": [[690, "websocket-kommunikation"]], "Release 1.x - tt. mmm 2020": [[691, "release-1-x-tt-mmm-2020"]], "Neuerungen im Release v1.11": [[692, "neuerungen-im-release-v1-11"]], "Neuerungen der letzten Releases": [[693, "neuerungen-der-letzten-releases"]], "Neuerungen im Release v1.10": [[693, "neuerungen-im-release-v1-10"]], "Neuerungen bei Plugins": [[693, "neuerungen-bei-plugins"]], "Neuerungen f\u00fcr Plugin Entwickler": [[693, "neuerungen-fur-plugin-entwickler"]], "Tipps & Tricks": [[693, "tipps-tricks"]]}, "indexentries": {"admin gui": [[0, "index-0"], [1, "index-0"], [1, "index-1"], [1, "index-3"], [1, "index-4"], [1, "index-6"], [1, "index-7"], [2, "index-0"], [2, "index-1"], [3, "index-0"], [3, "index-1"], [4, "index-3"], [4, "index-4"], [5, "index-0"], [5, "index-1"], [6, "index-0"], [6, "index-1"], [7, "index-0"], [7, "index-1"], [8, "index-0"], [8, "index-1"], [9, "index-0"], [9, "index-1"]], "administrations gui": [[0, "index-2"]], "administrations-interface": [[0, "index-1"], [0, "index-3"]], "webinterfaces": [[0, "index-2"], [0, "index-3"], [120, "index-3"]], "backup": [[1, "index-3"], [1, "index-4"], [102, "index-1"], [102, "index-3"]], "conf-yaml konverter": [[1, "index-12"], [1, "index-13"]], "cache pr\u00fcfung": [[1, "index-14"], [1, "index-15"]], "dienste": [[1, "index-0"], [1, "index-1"], [1, "index-11"], [1, "index-13"], [1, "index-15"], [1, "index-9"]], "restore": [[1, "index-6"], [1, "index-7"], [102, "index-4"], [102, "index-6"]], "sicherung der konfiguration": [[1, "index-2"]], "wiederherstellen der konfiguration": [[1, "index-5"]], "yaml syntax-pr\u00fcfer": [[1, "index-10"], [1, "index-11"]], "eval syntax-pr\u00fcfer": [[1, "index-8"], [1, "index-9"]], "item baum": [[2, "index-4"]], "items": [[2, "index-0"], [2, "index-1"], [2, "index-3"], [2, "index-4"], [2, "index-6"], [11, "index-0"], [11, "index-1"], [13, "index-0"], [13, "index-1"], [13, "index-4"], [94, "index-0"], [105, "index-0"], [561, "index-0"], [562, "index-0"], [562, "index-1"], [563, "index-0"], [563, "index-1"], [564, "index-0"], [564, "index-1"], [566, "index-0"], [566, "index-3"], [566, "index-5"], [566, "index-7"], [567, "index-0"], [567, "index-1"], [571, "index-0"], [572, "index-0"], [574, "index-0"], [577, "index-0"], [578, "index-2"], [578, "index-3"], [578, "index-4"], [579, "index-2"], [591, "index-4"], [591, "index-5"]], "itemtree": [[2, "index-2"], [2, "index-3"]], "struktur templates": [[2, "index-5"], [2, "index-6"]], "editor": [[3, "index-2"]], "logiken": [[3, "index-0"], [3, "index-1"], [3, "index-2"], [21, "index-0"], [21, "index-1"], [42, "index-0"], [108, "index-0"], [117, "index-0"], [117, "index-1"], [117, "index-2"], [153, "index-0"], [587, "index-0"], [587, "index-1"], [588, "index-0"], [588, "index-1"], [588, "index-2"], [589, "index-0"], [589, "index-1"], [589, "index-2"], [589, "index-3"], [590, "index-0"], [590, "index-1"], [591, "index-0"], [591, "index-1"], [591, "index-2"], [591, "index-3"], [592, "index-0"], [592, "index-1"], [592, "index-2"], [592, "index-3"], [593, "index-1"], [594, "index-0"], [594, "index-1"], [594, "index-2"], [594, "index-3"], [594, "index-4"], [594, "index-5"], [595, "index-0"], [595, "index-1"], [596, "index-0"], [596, "index-1"], [597, "index-0"], [598, "index-0"], [598, "index-1"], [599, "index-0"], [599, "index-1"], [599, "index-2"], [599, "index-3"], [599, "index-4"], [599, "index-5"], [599, "index-6"], [600, "index-0"], [600, "index-1"], [634, "index-0"], [634, "index-1"], [634, "index-2"], [634, "index-3"], [634, "index-4"]], "konfiguration": [[4, "index-6"], [8, "index-11"], [8, "index-13"], [8, "index-14"], [8, "index-15"], [8, "index-16"], [101, "index-0"], [102, "index-0"], [102, "index-3"], [102, "index-6"], [104, "index-1"], [104, "index-2"], [117, "index-0"], [118, "index-0"], [120, "index-2"], [120, "index-3"], [120, "index-4"], [121, "index-2"], [122, "index-2"], [125, "index-0"], [125, "index-1"], [125, "index-2"], [125, "index-3"], [226, "index-0"], [322, "index-0"], [592, "index-0"], [592, "index-1"], [633, "index-0"]], "liste der logger": [[4, "index-5"]], "logging": [[4, "index-1"], [4, "index-2"], [4, "index-5"], [4, "index-6"], [115, "index-0"], [582, "index-0"], [582, "index-1"], [585, "index-0"], [585, "index-1"], [586, "index-0"], [586, "index-1"], [593, "index-0"]], "logs": [[4, "index-0"], [4, "index-4"]], "logs anzeige": [[4, "index-2"]], "logs anzeigen": [[4, "index-3"]], "plugin konfiguration": [[5, "index-2"], [111, "index-0"]], "plugins": [[5, "index-0"], [5, "index-1"], [23, "index-0"], [23, "index-1"], [31, "index-0"], [32, "index-0"], [65, "index-0"], [95, "index-0"], [163, "index-0"], [164, "index-0"], [165, "index-0"], [166, "index-0"], [167, "index-0"], [168, "index-0"], [169, "index-0"], [170, "index-0"], [171, "index-1"], [172, "index-0"], [174, "index-0"], [178, "index-0"], [179, "index-0"], [181, "index-0"], [184, "index-0"], [187, "index-0"], [188, "index-0"], [189, "index-0"], [191, "index-0"], [192, "index-0"], [194, "index-0"], [196, "index-0"], [197, "index-0"], [200, "index-0"], [201, "index-0"], [203, "index-0"], [204, "index-0"], [210, "index-0"], [212, "index-0"], [213, "index-0"], [217, "index-0"], [220, "index-0"], [222, "index-0"], [223, "index-0"], [228, "index-0"], [229, "index-0"], [230, "index-0"], [232, "index-0"], [233, "index-0"], [237, "index-0"], [238, "index-0"], [241, "index-0"], [242, "index-0"], [243, "index-0"], [244, "index-0"], [246, "index-0"], [249, "index-1"], [250, "index-0"], [252, "index-0"], [255, "index-0"], [256, "index-0"], [259, "index-0"], [261, "index-0"], [262, "index-0"], [263, "index-0"], [264, "index-0"], [265, "index-0"], [266, "index-0"], [267, "index-0"], [268, "index-0"], [271, "index-0"], [276, "index-0"], [277, "index-0"], [279, "index-0"], [284, "index-0"], [286, "index-0"], [287, "index-0"], [289, "index-0"], [291, "index-1"], [295, "index-0"], [300, "index-0"], [302, "index-0"], [306, "index-0"], [311, "index-0"], [313, "index-0"], [314, "index-0"], [316, "index-0"], [319, "index-0"], [320, "index-0"], [336, "index-0"], [337, "index-1"], [338, "index-0"], [346, "index-0"], [347, "index-0"], [348, "index-0"], [349, "index-0"], [351, "index-0"], [354, "index-0"], [357, "index-0"], [359, "index-0"], [360, "index-0"], [362, "index-0"], [363, "index-0"], [366, "index-0"], [367, "index-0"], [369, "index-0"], [374, "index-0"], [375, "index-0"], [376, "index-0"], [377, "index-0"], [378, "index-0"], [379, "index-0"], [380, "index-0"], [381, "index-0"], [382, "index-0"], [383, "index-0"], [384, "index-0"], [385, "index-0"], [386, "index-0"], [387, "index-0"], [388, "index-0"], [389, "index-0"], [390, "index-0"], [391, "index-0"], [392, "index-0"], [393, "index-0"], [394, "index-0"], [395, "index-0"], [396, "index-0"], [397, "index-0"], [398, "index-0"], [399, "index-0"], [400, "index-0"], [401, "index-0"], [402, "index-0"], [403, "index-0"], [405, "index-0"], [406, "index-0"], [407, "index-0"], [408, "index-0"], [409, "index-0"], [410, "index-0"], [411, "index-0"], [412, "index-0"], [413, "index-0"], [414, "index-0"], [415, "index-0"], [416, "index-0"], [417, "index-0"], [418, "index-0"], [419, "index-0"], [420, "index-0"], [421, "index-0"], [422, "index-0"], [423, "index-0"], [424, "index-0"], [425, "index-0"], [426, "index-0"], [427, "index-0"], [428, "index-0"], [429, "index-0"], [430, "index-0"], [431, "index-0"], [432, "index-0"], [433, "index-0"], [434, "index-0"], [435, "index-0"], [436, "index-0"], [437, "index-0"], [438, "index-0"], [439, "index-0"], [440, "index-0"], [441, "index-0"], [442, "index-0"], [443, "index-0"], [444, "index-0"], [445, "index-0"], [446, "index-0"], [447, "index-0"], [448, "index-0"], [449, "index-0"], [450, "index-0"], [451, "index-0"], [452, "index-0"], [453, "index-0"], [454, "index-0"], [455, "index-0"], [456, "index-0"], [457, "index-0"], [458, "index-0"], [459, "index-0"], [460, "index-0"], [461, "index-0"], [462, "index-0"], [463, "index-0"], [464, "index-0"], [465, "index-0"], [466, "index-0"], [467, "index-0"], [468, "index-0"], [469, "index-0"], [470, "index-0"], [471, "index-0"], [472, "index-0"], [473, "index-0"], [474, "index-0"], [475, "index-0"], [476, "index-0"], [477, "index-0"], [478, "index-0"], [479, "index-0"], [480, "index-0"], [481, "index-0"], [482, "index-0"], [483, "index-0"], [484, "index-0"], [485, "index-0"], [486, "index-0"], [487, "index-0"], [488, "index-0"], [489, "index-0"], [490, "index-0"], [491, "index-0"], [492, "index-0"], [493, "index-0"], [494, "index-0"], [495, "index-0"], [496, "index-0"], [497, "index-0"], [498, "index-0"], [499, "index-0"], [500, "index-0"], [501, "index-0"], [502, "index-0"], [503, "index-0"], [504, "index-0"], [505, "index-0"], [506, "index-0"], [507, "index-0"], [508, "index-0"], [509, "index-0"], [510, "index-0"], [511, "index-0"], [512, "index-0"], [513, "index-0"], [514, "index-0"], [515, "index-0"], [516, "index-0"], [517, "index-0"], [518, "index-0"], [519, "index-0"], [520, "index-0"], [521, "index-0"], [522, "index-0"], [523, "index-0"], [524, "index-0"], [525, "index-0"], [526, "index-0"], [527, "index-0"], [528, "index-0"], [529, "index-0"], [530, "index-0"], [531, "index-0"], [532, "index-0"], [533, "index-0"], [534, "index-0"], [535, "index-0"], [536, "index-0"], [537, "index-0"], [538, "index-0"], [618, "index-2"], [626, "index-0"]], "szenen": [[6, "index-0"], [6, "index-1"]], "szenen konfiguration": [[6, "index-2"]], "scheduler": [[7, "index-0"], [7, "index-1"]], "konfiguration (admin gui)": [[8, "index-12"]], "konfiguraton": [[8, "index-10"]], "pypi check": [[8, "index-5"], [8, "index-6"]], "ressource graphen": [[8, "index-3"], [8, "index-4"]], "system": [[8, "index-0"], [8, "index-1"], [8, "index-10"], [96, "index-0"], [554, "index-0"]], "system konfiguration": [[8, "index-9"]], "systemeigenschaften": [[8, "index-4"], [8, "index-6"], [8, "index-8"]], "systeminformation": [[8, "index-2"]], "urheberrechtshinweise": [[8, "index-7"], [8, "index-8"]], "admin modul": [[8, "index-13"], [8, "index-14"], [119, "index-2"], [612, "index-1"]], "allgemein": [[8, "index-10"], [321, "index-0"]], "http modul": [[8, "index-11"], [8, "index-12"], [613, "index-1"]], "mqtt modul": [[8, "index-15"], [8, "index-16"], [615, "index-1"]], "\u00fcbersicht": [[8, "index-2"], [577, "index-1"]], "threads": [[9, "index-0"], [9, "index-1"]], "beispiele": [[10, "index-0"], [11, "index-0"], [11, "index-1"], [12, "index-0"], [12, "index-1"], [12, "index-2"], [12, "index-3"], [14, "index-0"], [14, "index-1"], [21, "index-0"], [21, "index-1"], [24, "index-0"], [24, "index-1"], [26, "index-0"], [26, "index-1"]], "tipps & tricks": [[10, "index-1"], [13, "index-0"], [13, "index-1"], [13, "index-5"], [13, "index-6"], [13, "index-7"], [22, "index-0"], [23, "index-0"], [23, "index-1"], [25, "index-0"], [26, "index-2"], [26, "index-3"], [27, "index-0"], [27, "index-1"], [27, "index-2"]], "eval": [[12, "index-2"], [12, "index-3"], [14, "index-1"], [573, "index-0"], [573, "index-1"]], "eval_trigger": [[12, "index-0"], [12, "index-1"], [14, "index-0"], [573, "index-2"], [573, "index-3"]], "items: erstellen eines zeitgiedes": [[13, "index-5"]], "items: erstellung von tag-/nacht-items f\u00fcr knx": [[13, "index-7"]], "items: wert invertieren": [[13, "index-6"]], "timer": [[13, "index-3"]], "zeitglied": [[13, "index-2"], [13, "index-4"]], "plugins: ein plugin aus develop installieren": [[22, "index-0"]], "structs": [[24, "index-0"], [24, "index-1"], [26, "index-0"], [26, "index-1"], [26, "index-2"], [26, "index-3"], [53, "index-12"], [53, "index-14"], [97, "index-0"], [114, "index-0"], [603, "index-1"], [603, "index-3"]], "structs bequem kopieren": [[25, "index-0"]], "smarthomeng umziehen": [[27, "index-0"], [27, "index-1"]], "umzug": [[27, "index-2"]], "mqtt-pluginname (in kleinbuchstaben)": [[31, "index-0"], [31, "index-1"]], "pluginname (in kleinbuchstaben)": [[32, "index-0"], [32, "index-1"]], "core": [[38, "index-0"]], "entwicklung": [[38, "index-0"], [41, "index-0"], [42, "index-0"], [43, "index-0"], [65, "index-0"], [620, "index-2"], [623, "index-2"], [624, "index-2"]], "base (attribut von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.BASE"]], "modul": [[40, "module-lib.smarthome"], [43, "index-2"], [119, "index-0"], [120, "index-0"], [121, "index-0"], [122, "index-0"], [126, "module-lib.config"], [127, "module-lib.connection"], [128, "module-lib.constants"], [129, "module-lib.daemon"], [130, "module-lib.db"], [131, "module-lib.env"], [132, "module-lib.item"], [135, "module-lib.item_conversion"], [136, "module-lib.log"], [137, "module-lib.logic"], [138, "module-lib.logutils"], [139, "module-lib.metadata"], [140, "module-lib.module"], [141, "module-lib.network"], [142, "module-lib.orb"], [143, "module-lib.plugin"], [146, "module-lib.scene"], [147, "module-lib.scheduler"], [148, "module-lib.shtime"], [149, "module-lib.shyaml"], [150, "module-lib.tools"], [151, "module-lib.translation"], [152, "module-lib.utils"], [606, "index-1"], [612, "module-modules.admin.api_plugin"], [612, "module-modules.admin.api_plugins"], [613, "module-modules.http"], [615, "module-modules.mqtt"]], "smarthome (klasse in lib.smarthome)": [[40, "lib.smarthome.SmartHome"]], "add_event_listener() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.add_event_listener"]], "add_item() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.add_item"]], "checkconfigfiles() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.checkConfigFiles"]], "create_directories() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.create_directories"]], "find_children() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.find_children"]], "find_items() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.find_items"]], "getbasedir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.getBaseDir"]], "get_basedir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_basedir"]], "get_confdir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_confdir"]], "get_config_dir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_config_dir"]], "get_config_file() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_config_file"]], "get_defaultlanguage() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_defaultlanguage"]], "get_etcdir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_etcdir"]], "get_instance() (statische methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_instance"]], "get_module() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_module"]], "get_structsdir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_structsdir"]], "get_vardir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_vardir"]], "init_logging() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.init_logging"]], "initialize_dir_vars() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.initialize_dir_vars"]], "initialize_vars() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.initialize_vars"]], "lat (lib.smarthome.smarthome property)": [[40, "lib.smarthome.SmartHome.lat"]], "lib.smarthome": [[40, "module-lib.smarthome"]], "list_threads() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.list_threads"]], "lon (lib.smarthome.smarthome property)": [[40, "lib.smarthome.SmartHome.lon"]], "match_items() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.match_items"]], "now() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.now"]], "object_refcount() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.object_refcount"]], "reload_logics() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.reload_logics"]], "restart() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.restart"]], "return_event_listeners() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_event_listeners"]], "return_item() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_item"]], "return_items() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_items"]], "return_logic() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_logic"]], "return_logics() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_logics"]], "return_modules() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_modules"]], "return_plugins() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_plugins"]], "runtime() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.runtime"]], "set_defaultlanguage() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.set_defaultlanguage"]], "start() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.start"]], "stop() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.stop"]], "string2bool() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.string2bool"]], "tzinfo() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.tzinfo"]], "utcinfo() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.utcinfo"]], "utcnow() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.utcnow"]], "globale metadaten": [[43, "index-3"], [53, "index-4"], [606, "index-2"], [610, "index-2"]], "metadaten": [[43, "index-2"], [53, "index-3"], [605, "index-0"], [605, "index-1"], [606, "index-1"], [610, "index-1"]], "modul metadaten": [[43, "index-1"], [43, "index-3"], [43, "index-4"], [43, "index-5"], [53, "index-5"], [53, "index-6"], [606, "index-0"], [606, "index-2"], [608, "index-0"], [608, "index-1"]], "module": [[43, "index-0"], [110, "index-0"], [118, "index-0"], [119, "index-1"], [120, "index-1"], [121, "index-1"], [122, "index-1"], [611, "index-0"], [611, "index-1"], [612, "index-0"], [613, "index-0"]], "parameter": [[43, "index-4"], [43, "index-5"], [43, "index-6"], [43, "index-7"], [53, "index-5"], [53, "index-6"], [53, "index-7"], [53, "index-8"], [608, "index-0"], [608, "index-1"], [608, "index-2"], [608, "index-3"]], "plugin metadaten": [[43, "index-6"], [43, "index-7"], [53, "index-10"], [53, "index-11"], [53, "index-12"], [53, "index-13"], [53, "index-14"], [53, "index-15"], [53, "index-16"], [53, "index-17"], [53, "index-18"], [53, "index-2"], [53, "index-4"], [53, "index-7"], [53, "index-8"], [53, "index-9"], [601, "index-0"], [601, "index-1"], [602, "index-0"], [602, "index-1"], [603, "index-0"], [603, "index-1"], [603, "index-2"], [603, "index-3"], [604, "index-0"], [604, "index-1"], [608, "index-2"], [608, "index-3"], [609, "index-0"], [609, "index-1"], [610, "index-0"], [610, "index-2"]], "modules": [[44, "index-0"], [45, "index-0"], [616, "index-0"]], "http": [[44, "index-0"], [44, "index-1"], [120, "index-0"], [120, "index-1"], [120, "index-2"], [613, "index-0"], [613, "index-1"]], "http module": [[44, "index-1"]], "mqtt": [[45, "index-1"], [45, "index-0"], [54, "index-2"], [63, "index-2"], [121, "index-0"], [121, "index-1"], [121, "index-2"], [252, "index-1"], [291, "index-2"], [337, "index-2"], [595, "index-0"], [595, "index-1"], [615, "index-1"], [620, "index-3"]], "mqtt module": [[45, "index-1"]], "asyncio": [[46, "index-1"]], "asyncio in plugins": [[46, "index-0"], [618, "index-0"], [618, "index-1"], [618, "index-2"]], "plugin": [[46, "index-1"], [53, "index-3"], [54, "index-1"], [55, "index-1"], [63, "index-1"], [66, "index-1"], [610, "index-1"], [620, "index-1"], [623, "index-1"], [624, "index-1"]], "multi-language support": [[50, "index-0"]], "translations": [[50, "index-1"]], "metadata": [[53, "index-0"]], "plugin metadata": [[53, "index-1"], [681, "index-1"]], "item_attributes": [[53, "index-10"], [53, "index-9"], [602, "index-0"], [602, "index-1"]], "item_structs": [[53, "index-11"], [53, "index-13"], [603, "index-0"], [603, "index-2"]], "logic_parameters": [[53, "index-15"], [53, "index-16"], [604, "index-0"], [604, "index-1"]], "plugin_functions": [[53, "index-17"], [53, "index-18"], [609, "index-0"], [609, "index-1"]], "sample mqtt plugin": [[54, "index-0"], [54, "index-1"], [54, "index-2"]], "sample plugin": [[55, "index-0"], [55, "index-1"]], "new": [[56, "index-0"], [61, "index-0"]], "webinterface": [[56, "index-0"]], "drittanbieterkomponenten": [[57, "index-0"]], "web interface": [[57, "index-0"], [58, "index-0"], [59, "index-0"], [60, "index-0"], [61, "index-0"], [62, "index-0"]], "automatische updates": [[58, "index-0"]], "interaktion mit dem plugin": [[62, "index-0"]], "class": [[63, "index-0"], [66, "index-0"], [620, "index-0"], [623, "index-0"], [624, "index-0"]], "class mqttplugin": [[63, "index-1"], [63, "index-2"], [620, "index-1"], [620, "index-2"], [620, "index-3"]], "mqttplugin": [[63, "index-0"], [620, "index-0"], [621, "index-2"]], "plugin checker": [[64, "index-0"]], "check_plugin.py": [[64, "index-1"]], "class smartplugin": [[66, "index-1"], [624, "index-1"], [624, "index-2"]], "smartplugin": [[66, "index-0"], [621, "index-0"], [624, "index-0"]], "fehlersuche": [[70, "index-0"], [71, "index-0"], [71, "index-1"], [71, "index-2"], [71, "index-3"], [71, "index-4"]], "checkliste": [[71, "index-0"]], "l\u00e4uft smarthomeng?": [[71, "index-1"]], "smarthomeng im debugmodus starten": [[71, "index-2"]], "zugriff auf den knx via eibd": [[71, "index-3"]], "zugriff auf den knx via knxd": [[71, "index-4"]], "admonition arten": [[72, "index-0"]], "doku erstellung": [[72, "index-0"], [74, "index-0"]], "verwendung von tabs": [[74, "index-0"]], "hardware anforderungen": [[79, "index-1"]], "linux": [[79, "index-0"], [82, "index-0"]], "macos": [[79, "index-0"]], "software anforderungen": [[79, "index-2"]], "unix": [[79, "index-0"]], "windows": [[79, "index-0"]], "debian installieren": [[82, "index-0"]], "smarthomeng installieren": [[83, "index-0"]], "mqtt broker installieren": [[84, "index-0"]], "mosquitto installieren": [[84, "index-1"]], "installation": [[85, "index-0"], [225, "index-0"]], "smartvisu": [[85, "index-0"], [156, "index-0"], [302, "index-1"], [303, "index-0"], [304, "index-0"], [354, "index-2"], [682, "index-0"], [682, "index-8"], [683, "index-0"], [683, "index-1"], [685, "index-0"], [689, "index-1"], [689, "index-2"], [689, "index-3"]], "knxd installieren": [[86, "index-0"]], "onewire installieren": [[87, "index-0"]], "samba installieren": [[88, "index-0"]], "smarthomeng als dienst": [[89, "index-0"]], "esphome": [[90, "index-0"]], "esphome dashboard installation": [[90, "index-0"]], "komplettanleitung": [[91, "index-0"]], "konfiguration \u00fcber die gui": [[93, "index-0"], [94, "index-0"], [95, "index-0"], [96, "index-0"]], "kommandozeile": [[102, "index-1"], [102, "index-2"], [102, "index-4"], [102, "index-5"]], "sichern": [[102, "index-2"]], "sichern und wiederherstellen": [[102, "index-0"]], "wiederherstellen": [[102, "index-5"]], "/etc/holidays.yaml": [[104, "index-0"]], "feiertage": [[104, "index-2"], [599, "index-4"], [599, "index-6"], [599, "index-7"], [599, "index-9"], [633, "index-0"], [633, "index-1"], [634, "index-2"], [634, "index-4"], [634, "index-5"], [634, "index-7"]], "konfigurationsdateien": [[104, "index-0"], [105, "index-1"], [108, "index-1"], [111, "index-1"], [119, "index-3"], [120, "index-5"], [121, "index-3"], [122, "index-3"], [679, "index-3"]], "holidays": [[104, "index-1"], [599, "index-3"], [599, "index-5"], [599, "index-8"], [634, "index-1"], [634, "index-3"], [634, "index-6"]], "/items/*.yaml": [[105, "index-1"]], "konfigurationsdateien /items/*.yaml": [[105, "index-0"]], "yaml syntax": [[106, "index-0"]], "/etc/logic.yaml": [[108, "index-1"]], "konfigurationsdatei /etc/logic.yaml": [[108, "index-0"]], "konfigurationsdatei": [[110, "index-0"], [119, "index-2"]], "/etc/plugin.yaml": [[111, "index-1"]], "konfigurationsdatei /etc/plugin.yaml": [[111, "index-0"]], "struct.yaml": [[114, "index-0"]], "standardparameter": [[117, "index-1"], [117, "index-2"], [592, "index-2"], [592, "index-3"], [600, "index-0"], [600, "index-1"]], "/etc/module.yaml (admin)": [[119, "index-3"]], "admin": [[119, "index-0"], [119, "index-1"], [612, "index-0"]], "/etc/module.yaml (http)": [[120, "index-5"]], "webservices": [[120, "index-4"], [360, "index-1"]], "/etc/module.yaml (mqtt)": [[121, "index-3"]], "/etc/module.yaml (websocket)": [[122, "index-3"]], "websocket": [[122, "index-0"], [122, "index-1"], [122, "index-2"], [156, "index-1"], [303, "index-1"], [304, "index-1"], [616, "index-0"], [616, "index-1"]], "functions": [[125, "index-2"]], "userfunctions": [[125, "index-0"], [125, "index-3"]], "uf": [[125, "index-1"]], "add_struct_to_item_template() (im modul lib.config)": [[126, "lib.config.add_struct_to_item_template"]], "lib.config": [[126, "module-lib.config"]], "merge() (im modul lib.config)": [[126, "lib.config.merge"]], "merge_structlists() (im modul lib.config)": [[126, "lib.config.merge_structlists"]], "nested_get() (im modul lib.config)": [[126, "lib.config.nested_get"]], "nested_put() (im modul lib.config)": [[126, "lib.config.nested_put"]], "parse() (im modul lib.config)": [[126, "lib.config.parse"]], "parse_basename() (im modul lib.config)": [[126, "lib.config.parse_basename"]], "parse_conf() (im modul lib.config)": [[126, "lib.config.parse_conf"]], "parse_itemsdir() (im modul lib.config)": [[126, "lib.config.parse_itemsdir"]], "parse_yaml() (im modul lib.config)": [[126, "lib.config.parse_yaml"]], "remove_comments() (im modul lib.config)": [[126, "lib.config.remove_comments"]], "remove_digits() (im modul lib.config)": [[126, "lib.config.remove_digits"]], "remove_invalid() (im modul lib.config)": [[126, "lib.config.remove_invalid"]], "remove_keys() (im modul lib.config)": [[126, "lib.config.remove_keys"]], "remove_keyword() (im modul lib.config)": [[126, "lib.config.remove_keyword"]], "remove_reserved() (im modul lib.config)": [[126, "lib.config.remove_reserved"]], "remove_special_listentries() (im modul lib.config)": [[126, "lib.config.remove_special_listentries"]], "replace_struct_instance() (im modul lib.config)": [[126, "lib.config.replace_struct_instance"]], "sanitize_items() (im modul lib.config)": [[126, "lib.config.sanitize_items"]], "search_for_struct_in_items() (im modul lib.config)": [[126, "lib.config.search_for_struct_in_items"]], "set_attr_for_subtree() (im modul lib.config)": [[126, "lib.config.set_attr_for_subtree"]], "strip_quotes() (im modul lib.config)": [[126, "lib.config.strip_quotes"]], "base (klasse in lib.connection)": [[127, "lib.connection.Base"]], "client (klasse in lib.connection)": [[127, "lib.connection.Client"]], "connections (klasse in lib.connection)": [[127, "lib.connection.Connections"]], "server (klasse in lib.connection)": [[127, "lib.connection.Server"]], "stream (klasse in lib.connection)": [[127, "lib.connection.Stream"]], "accept() (methode von lib.connection.server)": [[127, "lib.connection.Server.accept"]], "balance() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.balance"]], "check() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.check"]], "close() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.close"]], "close() (methode von lib.connection.server)": [[127, "lib.connection.Server.close"]], "close() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.close"]], "connect() (methode von lib.connection.client)": [[127, "lib.connection.Client.connect"]], "connect() (methode von lib.connection.server)": [[127, "lib.connection.Server.connect"]], "discard_buffers() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.discard_buffers"]], "found_balance() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.found_balance"]], "found_terminator() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.found_terminator"]], "handle_close() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.handle_close"]], "handle_connect() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.handle_connect"]], "handle_connection() (methode von lib.connection.server)": [[127, "lib.connection.Server.handle_connection"]], "lib.connection": [[127, "module-lib.connection"]], "monitor() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.monitor"]], "poll() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.poll"]], "register_connection() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.register_connection"]], "register_server() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.register_server"]], "send() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.send"]], "trigger() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.trigger"]], "unregister_connection() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.unregister_connection"]], "lib.constants": [[128, "module-lib.constants"]], "check_sh_is_running() (im modul lib.daemon)": [[129, "lib.daemon.check_sh_is_running"]], "daemonize() (im modul lib.daemon)": [[129, "lib.daemon.daemonize"]], "kill() (im modul lib.daemon)": [[129, "lib.daemon.kill"]], "lib.daemon": [[129, "module-lib.daemon"]], "read_pidfile() (im modul lib.daemon)": [[129, "lib.daemon.read_pidfile"]], "remove_pidfile() (im modul lib.daemon)": [[129, "lib.daemon.remove_pidfile"]], "write_pidfile() (im modul lib.daemon)": [[129, "lib.daemon.write_pidfile"]], "database (klasse in lib.db)": [[130, "lib.db.Database"]], "close() (methode von lib.db.database)": [[130, "lib.db.Database.close"]], "commit() (methode von lib.db.database)": [[130, "lib.db.Database.commit"]], "connect() (methode von lib.db.database)": [[130, "lib.db.Database.connect"]], "connected() (methode von lib.db.database)": [[130, "lib.db.Database.connected"]], "cursor() (methode von lib.db.database)": [[130, "lib.db.Database.cursor"]], "execute() (methode von lib.db.database)": [[130, "lib.db.Database.execute"]], "fetchall() (methode von lib.db.database)": [[130, "lib.db.Database.fetchall"]], "fetchone() (methode von lib.db.database)": [[130, "lib.db.Database.fetchone"]], "lib.db": [[130, "module-lib.db"]], "lock() (methode von lib.db.database)": [[130, "lib.db.Database.lock"]], "release() (methode von lib.db.database)": [[130, "lib.db.Database.release"]], "rollback() (methode von lib.db.database)": [[130, "lib.db.Database.rollback"]], "setup() (methode von lib.db.database)": [[130, "lib.db.Database.setup"]], "verify() (methode von lib.db.database)": [[130, "lib.db.Database.verify"]], "bft_to_text() (im modul lib.env)": [[131, "lib.env.bft_to_text"]], "c_to_f() (im modul lib.env)": [[131, "lib.env.c_to_f"]], "degrees_to_direction_16() (im modul lib.env)": [[131, "lib.env.degrees_to_direction_16"]], "degrees_to_direction_8() (im modul lib.env)": [[131, "lib.env.degrees_to_direction_8"]], "f_to_c() (im modul lib.env)": [[131, "lib.env.f_to_c"]], "kmh_to_bft() (im modul lib.env)": [[131, "lib.env.kmh_to_bft"]], "kmh_to_kn() (im modul lib.env)": [[131, "lib.env.kmh_to_kn"]], "kmh_to_mph() (im modul lib.env)": [[131, "lib.env.kmh_to_mph"]], "kmh_to_mps() (im modul lib.env)": [[131, "lib.env.kmh_to_mps"]], "kmh_to_ms() (im modul lib.env)": [[131, "lib.env.kmh_to_ms"]], "kn_to_kmh() (im modul lib.env)": [[131, "lib.env.kn_to_kmh"]], "lib.env": [[131, "module-lib.env"]], "location_address() (im modul lib.env)": [[131, "lib.env.location_address"]], "location_name() (im modul lib.env)": [[131, "lib.env.location_name"]], "meter_to_miles() (im modul lib.env)": [[131, "lib.env.meter_to_miles"]], "meter_to_nauticalmiles() (im modul lib.env)": [[131, "lib.env.meter_to_nauticalmiles"]], "miles_to_meter() (im modul lib.env)": [[131, "lib.env.miles_to_meter"]], "mph_to_kmh() (im modul lib.env)": [[131, "lib.env.mph_to_kmh"]], "mps_to_kmh() (im modul lib.env)": [[131, "lib.env.mps_to_kmh"]], "ms_to_bft() (im modul lib.env)": [[131, "lib.env.ms_to_bft"]], "ms_to_kmh() (im modul lib.env)": [[131, "lib.env.ms_to_kmh"]], "nauticalmiles_to_meter() (im modul lib.env)": [[131, "lib.env.nauticalmiles_to_meter"]], "lib.item": [[132, "module-lib.item"]], "item (klasse in lib.item.item)": [[133, "lib.item.item.Item"]], "item.dicthandler (klasse in lib.item.item)": [[133, "lib.item.item.Item.DictHandler"]], "item.listhandler (klasse in lib.item.item)": [[133, "lib.item.item.Item.ListHandler"]], "item.typehandler (klasse in lib.item.item)": [[133, "lib.item.item.Item.TypeHandler"]], "add_logic_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.add_logic_trigger"]], "add_method_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.add_method_trigger"]], "age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.age"]], "append() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.append"]], "autotimer() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.autotimer"]], "changed_by() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.changed_by"]], "clear() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.clear"]], "clear() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.clear"]], "delete() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.delete"]], "delete() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.delete"]], "expand_relativepathes() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.expand_relativepathes"]], "extend() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.extend"]], "fade() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.fade"]], "find_attribute() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.find_attribute"]], "get() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.get"]], "get_absolutepath() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_absolutepath"]], "get_calling_item_from_frame() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_calling_item_from_frame"]], "get_children_path() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_children_path"]], "get_class_from_frame() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_class_from_frame"]], "get_hysteresis_item_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_hysteresis_item_triggers"]], "get_item_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_item_triggers"]], "get_logic_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_logic_triggers"]], "get_method_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_method_triggers"]], "get_stack_info() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_stack_info"]], "get_stringwithabsolutepathes() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_stringwithabsolutepathes"]], "hysteresis_data() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.hysteresis_data"]], "hysteresis_state() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.hysteresis_state"]], "id() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.id"]], "insert() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.insert"]], "item_functions (attribut von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.item_functions"]], "item_functions (attribut von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.item_functions"]], "item_functions (attribut von lib.item.item.item.typehandler)": [[133, "lib.item.item.Item.TypeHandler.item_functions"]], "jsonvars() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.jsonvars"]], "last_change() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.last_change"]], "last_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.last_trigger"]], "last_update() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.last_update"]], "path() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.path"]], "pop() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.pop"]], "pop() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.pop"]], "popitem() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.popitem"]], "prepend() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.prepend"]], "prev_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_age"]], "prev_change() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_change"]], "prev_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_trigger"]], "prev_trigger_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_trigger_age"]], "prev_update() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_update"]], "prev_update_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_update_age"]], "prev_value() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_value"]], "remove() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove"]], "remove() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.remove"]], "remove_logic_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove_logic_trigger"]], "remove_method_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove_method_trigger"]], "remove_timer() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove_timer"]], "return_children() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.return_children"]], "return_parent() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.return_parent"]], "set() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.set"]], "timer() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.timer"]], "to_json() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.to_json"]], "trigger_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.trigger_age"]], "triggered_by() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.triggered_by"]], "type() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.type"]], "update() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.update"]], "update_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.update_age"]], "updated_by() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.updated_by"]], "items (klasse in lib.item)": [[134, "lib.item.Items"]], "add_item() (methode von lib.item.items)": [[134, "lib.item.Items.add_item"]], "add_plugin_attribute() (methode von lib.item.items)": [[134, "lib.item.Items.add_plugin_attribute"]], "add_plugin_attribute_prefix() (methode von lib.item.items)": [[134, "lib.item.Items.add_plugin_attribute_prefix"]], "add_struct_definition() (methode von lib.item.items)": [[134, "lib.item.Items.add_struct_definition"]], "find_children() (methode von lib.item.items)": [[134, "lib.item.Items.find_children"]], "find_items() (methode von lib.item.items)": [[134, "lib.item.Items.find_items"]], "get_instance() (statische methode von lib.item.items)": [[134, "lib.item.Items.get_instance"]], "get_plugin_attribute_type() (methode von lib.item.items)": [[134, "lib.item.Items.get_plugin_attribute_type"]], "get_toplevel_items() (methode von lib.item.items)": [[134, "lib.item.Items.get_toplevel_items"]], "item_count() (methode von lib.item.items)": [[134, "lib.item.Items.item_count"]], "load_itemdefinitions() (methode von lib.item.items)": [[134, "lib.item.Items.load_itemdefinitions"]], "match_items() (methode von lib.item.items)": [[134, "lib.item.Items.match_items"]], "plugin_attribute_exists() (methode von lib.item.items)": [[134, "lib.item.Items.plugin_attribute_exists"]], "plugin_attribute_prefixes (attribut von lib.item.items)": [[134, "lib.item.Items.plugin_attribute_prefixes"]], "plugin_attributes (attribut von lib.item.items)": [[134, "lib.item.Items.plugin_attributes"]], "plugin_prefixes_tuple (attribut von lib.item.items)": [[134, "lib.item.Items.plugin_prefixes_tuple"]], "remove_item() (methode von lib.item.items)": [[134, "lib.item.Items.remove_item"]], "return_item() (methode von lib.item.items)": [[134, "lib.item.Items.return_item"]], "return_items() (methode von lib.item.items)": [[134, "lib.item.Items.return_items"]], "return_struct_definitions() (methode von lib.item.items)": [[134, "lib.item.Items.return_struct_definitions"]], "stop() (methode von lib.item.items)": [[134, "lib.item.Items.stop"]], "structs (attribut von lib.item.items)": [[134, "lib.item.Items.structs"]], "convert_yaml() (im modul lib.item_conversion)": [[135, "lib.item_conversion.convert_yaml"]], "is_ruamelyaml_installed() (im modul lib.item_conversion)": [[135, "lib.item_conversion.is_ruamelyaml_installed"]], "lib.item_conversion": [[135, "module-lib.item_conversion"]], "parse_for_convert() (im modul lib.item_conversion)": [[135, "lib.item_conversion.parse_for_convert"]], "yaml_save() (im modul lib.item_conversion)": [[135, "lib.item_conversion.yaml_save"]], "dbghigh_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.DBGHIGH_level"]], "dbglow_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.DBGLOW_level"]], "dbgmed_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.DBGMED_level"]], "datetimerotatingfilehandler (klasse in lib.log)": [[136, "lib.log.DateTimeRotatingFileHandler"]], "log (klasse in lib.log)": [[136, "lib.log.Log"]], "logs (klasse in lib.log)": [[136, "lib.log.Logs"]], "notice_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.NOTICE_level"]], "shngmemloghandler (klasse in lib.log)": [[136, "lib.log.ShngMemLogHandler"]], "shngtimedrotatingfilehandler (klasse in lib.log)": [[136, "lib.log.ShngTimedRotatingFileHandler"]], "add() (methode von lib.log.log)": [[136, "lib.log.Log.add"]], "add_all_handlers_logger() (methode von lib.log.logs)": [[136, "lib.log.Logs.add_all_handlers_logger"]], "add_log() (methode von lib.log.logs)": [[136, "lib.log.Logs.add_log"]], "add_logging_level() (methode von lib.log.logs)": [[136, "lib.log.Logs.add_logging_level"]], "clean() (methode von lib.log.log)": [[136, "lib.log.Log.clean"]], "close() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.close"]], "configure_logging() (methode von lib.log.logs)": [[136, "lib.log.Logs.configure_logging"]], "dorollover() (methode von lib.log.shngtimedrotatingfilehandler)": [[136, "lib.log.ShngTimedRotatingFileHandler.doRollover"]], "do_rollover() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.do_rollover"]], "emit() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.emit"]], "emit() (methode von lib.log.shngmemloghandler)": [[136, "lib.log.ShngMemLogHandler.emit"]], "export() (methode von lib.log.log)": [[136, "lib.log.Log.export"]], "getfilestodelete() (methode von lib.log.shngtimedrotatingfilehandler)": [[136, "lib.log.ShngTimedRotatingFileHandler.getFilesToDelete"]], "get_all_handlernames() (methode von lib.log.logs)": [[136, "lib.log.Logs.get_all_handlernames"]], "get_filename() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.get_filename"]], "get_files_to_delete() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.get_files_to_delete"]], "get_handler_by_name() (methode von lib.log.logs)": [[136, "lib.log.Logs.get_handler_by_name"]], "get_shng_logging_levels() (methode von lib.log.logs)": [[136, "lib.log.Logs.get_shng_logging_levels"]], "initmemlog() (methode von lib.log.logs)": [[136, "lib.log.Logs.initMemLog"]], "last() (methode von lib.log.log)": [[136, "lib.log.Log.last"]], "lib.log": [[136, "module-lib.log"]], "load() (methode von lib.log.shngmemloghandler)": [[136, "lib.log.ShngMemLogHandler.load"]], "load_logging_config() (methode von lib.log.logs)": [[136, "lib.log.Logs.load_logging_config"]], "load_logging_config_for_edit() (methode von lib.log.logs)": [[136, "lib.log.Logs.load_logging_config_for_edit"]], "logging_levels (attribut von lib.log.logs)": [[136, "lib.log.Logs.logging_levels"]], "next_rollover_time() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.next_rollover_time"]], "parsefilename() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.parseFilename"]], "return_logs() (methode von lib.log.logs)": [[136, "lib.log.Logs.return_logs"]], "root_handler_name (attribut von lib.log.logs)": [[136, "lib.log.Logs.root_handler_name"]], "save_logging_config() (methode von lib.log.logs)": [[136, "lib.log.Logs.save_logging_config"]], "logic (klasse in lib.logic)": [[137, "lib.logic.Logic"]], "logics (klasse in lib.logic)": [[137, "lib.logic.Logics"]], "add_method_trigger() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.add_method_trigger"]], "conf (lib.logic.logic property)": [[137, "lib.logic.Logic.conf"]], "crontab (lib.logic.logic property)": [[137, "lib.logic.Logic.crontab"]], "cycle (lib.logic.logic property)": [[137, "lib.logic.Logic.cycle"]], "delete_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.delete_logic"]], "description (lib.logic.logic property)": [[137, "lib.logic.Logic.description"]], "disable() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.disable"]], "disable_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.disable_logic"]], "enable() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.enable"]], "enable_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.enable_logic"]], "filename (lib.logic.logic property)": [[137, "lib.logic.Logic.filename"]], "filename_used_count() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.filename_used_count"]], "get_instance() (statische methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_instance"]], "get_loaded_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_loaded_logics"]], "get_logic_info() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_logic_info"]], "get_logiccrontab() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_logiccrontab"]], "get_logics_dir() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_logics_dir"]], "get_method_triggers() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.get_method_triggers"]], "groupnames (lib.logic.logic property)": [[137, "lib.logic.Logic.groupnames"]], "id() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.id"]], "is_enabled() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.is_enabled"]], "is_logic_enabled() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.is_logic_enabled"]], "is_logic_loaded() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.is_logic_loaded"]], "is_userlogic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.is_userlogic"]], "last_run() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.last_run"]], "lib.logic": [[137, "module-lib.logic"]], "lname (lib.logic.logic property)": [[137, "lib.logic.Logic.lname"]], "load_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.load_logic"]], "log_readonly_warning() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.log_readonly_warning"]], "name (lib.logic.logic property)": [[137, "lib.logic.Logic.name"]], "pathname (lib.logic.logic property)": [[137, "lib.logic.Logic.pathname"]], "plugins (attribut von lib.logic.logics)": [[137, "lib.logic.Logics.plugins"]], "prio (lib.logic.logic property)": [[137, "lib.logic.Logic.prio"]], "read_config_section() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.read_config_section"]], "reload_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.reload_logics"]], "return_config_type() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_config_type"]], "return_defined_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_defined_logics"]], "return_loaded_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_loaded_logics"]], "return_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_logic"]], "return_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_logics"]], "return_logictype() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_logictype"]], "scheduler (attribut von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler"]], "scheduler_add() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler_add"]], "scheduler_change() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler_change"]], "scheduler_remove() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler_remove"]], "set_config_section_key() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.set_config_section_key"]], "set_last_run() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.set_last_run"]], "toggle_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.toggle_logic"]], "trigger() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.trigger"]], "trigger_dict (lib.logic.logic property)": [[137, "lib.logic.Logic.trigger_dict"]], "trigger_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.trigger_logic"]], "unload_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.unload_logic"]], "update_config_section() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.update_config_section"]], "visu_access() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.visu_access"]], "watch_item (lib.logic.logic property)": [[137, "lib.logic.Logic.watch_item"]], "duplicatefilter (klasse in lib.logutils)": [[138, "lib.logutils.DuplicateFilter"]], "filter (klasse in lib.logutils)": [[138, "lib.logutils.Filter"]], "filter() (methode von lib.logutils.duplicatefilter)": [[138, "lib.logutils.DuplicateFilter.filter"]], "filter() (methode von lib.logutils.filter)": [[138, "lib.logutils.Filter.filter"]], "lib.logutils": [[138, "module-lib.logutils"]], "metadata (klasse in lib.metadata)": [[139, "lib.metadata.Metadata"]], "check_itemattribute() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.check_itemattribute"]], "check_parameters() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.check_parameters"]], "get_bool() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_bool"]], "get_global_plugin_parameters() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_global_plugin_parameters"]], "get_itemdefinition() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition"]], "get_itemdefinition_listlen() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_listlen"]], "get_itemdefinition_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_subtype"]], "get_itemdefinition_type() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_type"]], "get_itemdefinition_type_with_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_type_with_subtype"]], "get_itemdefinitionlist() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinitionlist"]], "get_mlstring() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_mlstring"]], "get_parameter_defaultvalue() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_defaultvalue"]], "get_parameter_listlen() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_listlen"]], "get_parameter_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_subtype"]], "get_parameter_type() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_type"]], "get_parameter_type_with_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_type_with_subtype"]], "get_parameterdefinition() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameterdefinition"]], "get_parameterlist() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameterlist"]], "get_plugin_function_defstrings() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_plugin_function_defstrings"]], "get_string() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_string"]], "get_version() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_version"]], "lib.metadata": [[139, "module-lib.metadata"]], "test_pythoncompatibility() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_pythoncompatibility"]], "test_sdpcompatibility() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_sdpcompatibility"]], "test_shngcompatibility() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_shngcompatibility"]], "test_version() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_version"]], "modules (klasse in lib.module)": [[140, "lib.module.Modules"]], "get_instance() (statische methode von lib.module.modules)": [[140, "lib.module.Modules.get_instance"]], "get_module() (methode von lib.module.modules)": [[140, "lib.module.Modules.get_module"]], "lib.module": [[140, "module-lib.module"]], "return_modules() (methode von lib.module.modules)": [[140, "lib.module.Modules.return_modules"]], "start() (methode von lib.module.modules)": [[140, "lib.module.Modules.start"]], "stop() (methode von lib.module.modules)": [[140, "lib.module.Modules.stop"]], "connectionclient (klasse in lib.network)": [[141, "lib.network.ConnectionClient"]], "connections (klasse in lib.network)": [[141, "lib.network.Connections"]], "httpdigestauth() (methode von lib.network.http)": [[141, "lib.network.Http.HTTPDigestAuth"]], "http (klasse in lib.network)": [[141, "lib.network.Http"]], "mode_binary (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_BINARY"]], "mode_fixed_length (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_FIXED_LENGTH"]], "mode_text (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_TEXT"]], "mode_text_line (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_TEXT_LINE"]], "network (klasse in lib.network)": [[141, "lib.network.Network"]], "tcp_client (klasse in lib.network)": [[141, "lib.network.Tcp_client"]], "tcp_server (klasse in lib.network)": [[141, "lib.network.Tcp_server"]], "udp_server (klasse in lib.network)": [[141, "lib.network.Udp_server"]], "check() (methode von lib.network.connections)": [[141, "lib.network.Connections.check"]], "clean_uri() (statische methode von lib.network.network)": [[141, "lib.network.Network.clean_uri"]], "close() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.close"]], "close() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.close"]], "close() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.close"]], "close() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.close"]], "connect() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.connect"]], "connected() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.connected"]], "disconnect() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.disconnect"]], "download() (methode von lib.network.http)": [[141, "lib.network.Http.download"]], "family_to_string() (statische methode von lib.network.network)": [[141, "lib.network.Network.family_to_string"]], "get_binary() (methode von lib.network.http)": [[141, "lib.network.Http.get_binary"]], "get_json() (methode von lib.network.http)": [[141, "lib.network.Http.get_json"]], "get_text() (methode von lib.network.http)": [[141, "lib.network.Http.get_text"]], "ip_port_to_socket() (statische methode von lib.network.network)": [[141, "lib.network.Network.ip_port_to_socket"]], "lib.network": [[141, "module-lib.network"]], "listening() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.listening"]], "listening() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.listening"]], "monitor() (methode von lib.network.connections)": [[141, "lib.network.Connections.monitor"]], "open() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.open"]], "ping() (statische methode von lib.network.network)": [[141, "lib.network.Network.ping"]], "ping_port() (statische methode von lib.network.network)": [[141, "lib.network.Network.ping_port"]], "post_json() (methode von lib.network.http)": [[141, "lib.network.Http.post_json"]], "response_cookies() (methode von lib.network.http)": [[141, "lib.network.Http.response_cookies"]], "response_headers() (methode von lib.network.http)": [[141, "lib.network.Http.response_headers"]], "response_object() (methode von lib.network.http)": [[141, "lib.network.Http.response_object"]], "response_status() (methode von lib.network.http)": [[141, "lib.network.Http.response_status"]], "send() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.send"]], "send() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.send"]], "send() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.send"]], "send_echo_off() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.send_echo_off"]], "send_echo_on() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.send_echo_on"]], "send_wol() (statische methode von lib.network.network)": [[141, "lib.network.Network.send_wol"]], "set_callbacks() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.set_callbacks"]], "set_callbacks() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.set_callbacks"]], "set_callbacks() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.set_callbacks"]], "set_callbacks() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.set_callbacks"]], "socket (lib.network.connectionclient property)": [[141, "lib.network.ConnectionClient.socket"]], "start() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.start"]], "start() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.start"]], "unmonitor() (methode von lib.network.connections)": [[141, "lib.network.Connections.unmonitor"]], "validate_inet_addr() (statische methode von lib.network.network)": [[141, "lib.network.Network.validate_inet_addr"]], "orb (klasse in lib.orb)": [[142, "lib.orb.Orb"]], "get_observer_and_orb() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.get_observer_and_orb"]], "lib.orb": [[142, "module-lib.orb"]], "midnight() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.midnight"]], "noon() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.noon"]], "pos() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.pos"]], "rise() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.rise"]], "set() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.set"]], "lib.plugin": [[143, "module-lib.plugin"]], "plugins (klasse in lib.plugin)": [[144, "lib.plugin.Plugins"]], "plugins.pyobject (klasse in lib.plugin)": [[144, "lib.plugin.Plugins.PyObject"]], "get() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get"]], "get_instance() (statische methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_instance"]], "get_loaded_plugin_instances() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_loaded_plugin_instances"]], "get_loaded_plugins() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_loaded_plugins"]], "get_logic_parameters() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_logic_parameters"]], "get_pluginthread() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_pluginthread"]], "refcnt (attribut von lib.plugin.plugins.pyobject)": [[144, "lib.plugin.Plugins.PyObject.refcnt"]], "return_plugin() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.return_plugin"]], "return_plugins() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.return_plugins"]], "start() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.start"]], "stop() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.stop"]], "unload_plugin() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.unload_plugin"]], "pluginwrapper (klasse in lib.plugin)": [[145, "lib.plugin.PluginWrapper"]], "get_ident() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.get_ident"]], "get_implementation() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.get_implementation"]], "get_name() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.get_name"]], "run() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.run"]], "stop() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.stop"]], "scenes (klasse in lib.scene)": [[146, "lib.scene.Scenes"]], "get_instance() (statische methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_instance"]], "get_loaded_scenes() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_loaded_scenes"]], "get_scene_action_name() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_scene_action_name"]], "get_scene_actions() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_scene_actions"]], "lib.scene": [[146, "module-lib.scene"]], "reload_scenes() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.reload_scenes"]], "return_scene_value_actions() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.return_scene_value_actions"]], "leavelogic": [[147, "lib.scheduler.LeaveLogic"], [588, "index-2"]], "scheduler (klasse in lib.scheduler)": [[147, "lib.scheduler.Scheduler"]], "add() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.add"]], "change() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.change"]], "check_caller() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.check_caller"]], "get() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get"]], "get_idle_worker_count() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_idle_worker_count"]], "get_instance() (statische methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_instance"]], "get_worker_count() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_worker_count"]], "get_worker_names() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_worker_names"]], "lib.scheduler": [[147, "module-lib.scheduler"]], "remove() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.remove"]], "return_next() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.return_next"]], "run() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.run"]], "set_worker_warn_count() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.set_worker_warn_count"]], "stop() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.stop"]], "trigger() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.trigger"]], "shtime (klasse in lib.shtime)": [[148, "lib.shtime.Shtime"]], "add_custom_holiday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.add_custom_holiday"]], "add_custom_holiday_range() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.add_custom_holiday_range"]], "beginning_of_month() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.beginning_of_month"]], "beginning_of_week() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.beginning_of_week"]], "beginning_of_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.beginning_of_year"]], "calendar_week() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.calendar_week"]], "current_day() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_day"]], "current_month() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_month"]], "current_monthname() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_monthname"]], "current_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_year"]], "date_transform() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.date_transform"]], "datetime_transform() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.datetime_transform"]], "day_of_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.day_of_year"]], "get_instance() (statische methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.get_instance"]], "holiday_list() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.holiday_list"]], "holiday_name() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.holiday_name"]], "holidays (attribut von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.holidays"]], "is_holiday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.is_holiday"]], "is_public_holiday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.is_public_holiday"]], "is_weekend() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.is_weekend"]], "length_of_month() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.length_of_month"]], "length_of_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.length_of_year"]], "lib.shtime": [[148, "module-lib.shtime"]], "now() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.now"]], "public_holiday_list() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.public_holiday_list"]], "public_holidays (attribut von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.public_holidays"]], "runtime() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.runtime"]], "runtime_as_dict() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.runtime_as_dict"]], "seconds_to_displaystring() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.seconds_to_displaystring"]], "set_tz() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.set_tz"]], "set_tzinfo() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.set_tzinfo"]], "time_diff() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.time_diff"]], "time_since() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.time_since"]], "time_until() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.time_until"]], "to_seconds() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.to_seconds"]], "today() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.today"]], "tomorrow() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tomorrow"]], "translate() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.translate"]], "tz() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tz"]], "tzinfo() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tzinfo"]], "tzlocal() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tzlocal"]], "tzname() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tzname"]], "tznamedst() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tznameDST"]], "tznamest() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tznameST"]], "utcinfo() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.utcinfo"]], "utcnow() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.utcnow"]], "weekday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.weekday"]], "weekday_name() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.weekday_name"]], "yesterday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.yesterday"]], "convert_linenumber() (im modul lib.shyaml)": [[149, "lib.shyaml.convert_linenumber"]], "data (attribut von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.data"]], "editing_is_enabled() (im modul lib.shyaml)": [[149, "lib.shyaml.editing_is_enabled"]], "filename (attribut von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.filename"]], "get_commentedseq() (im modul lib.shyaml)": [[149, "lib.shyaml.get_commentedseq"]], "get_emptynode() (im modul lib.shyaml)": [[149, "lib.shyaml.get_emptynode"]], "get_key() (im modul lib.shyaml)": [[149, "lib.shyaml.get_key"]], "get_parent() (im modul lib.shyaml)": [[149, "lib.shyaml.get_parent"]], "getnode() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getnode"]], "getnodetype() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getnodetype"]], "getvalue() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getvalue"]], "getvaluetype() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getvaluetype"]], "lib.shyaml": [[149, "module-lib.shyaml"]], "load() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.load"]], "save() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.save"]], "setindict() (im modul lib.shyaml)": [[149, "lib.shyaml.setInDict"]], "setleafvalue() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.setleafvalue"]], "setvalue() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.setvalue"]], "writebacktofile() (im modul lib.shyaml)": [[149, "lib.shyaml.writeBackToFile"]], "yaml_dump_roundtrip() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_dump_roundtrip"]], "yaml_load() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_load"]], "yaml_load_fromstring() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_load_fromstring"]], "yaml_load_roundtrip() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_load_roundtrip"]], "yaml_save() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_save"]], "yaml_save_roundtrip() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_save_roundtrip"]], "yamlfile (klasse in lib.shyaml)": [[149, "lib.shyaml.yamlfile"]], "tools (klasse in lib.tools)": [[150, "lib.tools.Tools"]], "abs2rel() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.abs2rel"]], "dewpoint() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.dewpoint"]], "dt2js() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.dt2js"]], "dt2ts() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.dt2ts"]], "fetch_url() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.fetch_url"]], "lib.tools": [[150, "module-lib.tools"]], "ping() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.ping"]], "rel2abs() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.rel2abs"]], "runtime() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.runtime"]], "initialize_translations() (im modul lib.translation)": [[151, "lib.translation.initialize_translations"]], "lib.translation": [[151, "module-lib.translation"]], "load_translations() (im modul lib.translation)": [[151, "lib.translation.load_translations"]], "reload_translations() (im modul lib.translation)": [[151, "lib.translation.reload_translations"]], "set_default_language() (im modul lib.translation)": [[151, "lib.translation.set_default_language"]], "set_fallback_language_order() (im modul lib.translation)": [[151, "lib.translation.set_fallback_language_order"]], "translate() (im modul lib.translation)": [[151, "lib.translation.translate"]], "utils (klasse in lib.utils)": [[152, "lib.utils.Utils"]], "version (klasse in lib.utils)": [[152, "lib.utils.Version"]], "check_hashed_password() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.check_hashed_password"]], "check_list() (statische methode von lib.utils.version)": [[152, "lib.utils.Version.check_list"]], "compare() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.compare"]], "create_hash() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.create_hash"]], "execute_subprocess() (im modul lib.utils)": [[152, "lib.utils.execute_subprocess"]], "execute_subprocess() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.execute_subprocess"]], "format() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.format"]], "get_all_addresses_for_addressfamily() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_all_addresses_for_addressfamily"]], "get_all_local_ipv4_addresses() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_all_local_ipv4_addresses"]], "get_all_local_ipv6_addresses() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_all_local_ipv6_addresses"]], "get_local_ipv4_address() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_local_ipv4_address"]], "get_local_ipv6_address() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_local_ipv6_address"]], "get_python_version() (im modul lib.utils)": [[152, "lib.utils.get_python_version"]], "get_type() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_type"]], "is_float() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_float"]], "is_hash() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_hash"]], "is_hostname() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_hostname"]], "is_int() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_int"]], "is_ip() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_ip"]], "is_ipv4() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_ipv4"]], "is_ipv6() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_ipv6"]], "is_knx_groupaddress() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_knx_groupaddress"]], "is_mac() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_mac"]], "is_timeframe() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_timeframe"]], "lib.utils": [[152, "module-lib.utils"]], "running_virtual() (im modul lib.utils)": [[152, "lib.utils.running_virtual"]], "string_to_list() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.string_to_list"]], "strip_quotes() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.strip_quotes"]], "strip_quotes_fromlist() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.strip_quotes_fromlist"]], "strip_square_brackets() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.strip_square_brackets"]], "to_bool() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.to_bool"]], "to_list() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.to_list"]], "to_string() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.to_string"]], "to_timeframe() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.to_timeframe"]], "nutzdaten protokoll - server (smarthomeng) requests": [[156, "index-0"], [303, "index-0"]], "smartvisu nutzdaten protokoll - server (smarthomeng) requests": [[156, "index-1"], [303, "index-1"]], "alexa": [[163, "index-1"], [164, "index-1"]], "alexa4p3 (amazon echo/alexa unterst\u00fctzung)": [[163, "index-0"]], "alexa4p3 plugin": [[163, "index-1"]], "alexarc4shng (remote control for alexa devices)": [[164, "index-0"]], "alexarc4shng plugin": [[164, "index-1"]], "apcups": [[165, "index-0"], [165, "index-1"]], "appletv": [[166, "index-0"], [166, "index-1"]], "artnet": [[167, "index-0"], [167, "index-1"]], "asterisk": [[168, "index-0"], [168, "index-1"]], "avdevice": [[169, "index-0"], [169, "index-1"]], "avm": [[170, "index-0"], [170, "index-1"]], "avm_smarthome": [[171, "index-1"]], "avm_smarthome plugin": [[171, "index-0"]], "blockly": [[172, "index-0"], [172, "index-1"]], "bose_soundtouch": [[174, "index-0"], [174, "index-1"]], "byd_bat": [[178, "index-0"], [178, "index-1"]], "casambi": [[179, "index-0"], [179, "index-1"]], "cli": [[181, "index-1"]], "cli (commandline interface)": [[181, "index-0"]], "wetter": [[184, "index-2"], [262, "index-2"], [268, "index-3"], [366, "index-2"]], "darksky": [[184, "index-1"], [184, "index-2"], [184, "index-3"]], "darksky (darksky.net / forecast.io wetterdaten)": [[184, "index-0"]], "struct": [[184, "index-3"], [262, "index-3"], [268, "index-4"], [578, "index-0"], [578, "index-1"], [578, "index-3"]], "database": [[187, "index-1"]], "database (datenbank unterst\u00fctzung)": [[187, "index-0"]], "datalog": [[188, "index-0"], [188, "index-1"]], "db_addon": [[189, "index-1"]], "db_addon (datenbank unterst\u00fctzung)": [[189, "index-0"]], "denon": [[191, "index-0"], [191, "index-1"]], "dlms": [[192, "index-1"]], "dlms (auslesen von smartmetern via dlms)": [[192, "index-0"]], "dmx": [[194, "index-0"], [194, "index-1"]], "drexelundweiss": [[196, "index-0"], [196, "index-1"]], "ebus": [[197, "index-0"], [197, "index-1"]], "enocean": [[200, "index-0"], [200, "index-1"]], "epson": [[201, "index-0"], [201, "index-1"]], "executor": [[203, "index-0"], [203, "index-1"]], "gpio": [[204, "index-0"], [204, "index-1"]], "homematic (homematic unterst\u00fctzung)": [[210, "index-0"]], "homematic homematicip": [[210, "index-1"]], "hue2 (philips hue v2)": [[212, "index-0"]], "hue2 hue": [[212, "index-1"]], "hue3": [[213, "index-0"]], "hue3 hue": [[213, "index-1"]], "ical": [[217, "index-0"], [217, "index-1"]], "indego (anbindung der bosch-indego connect m\u00e4her)": [[220, "index-0"]], "indego4shng": [[220, "index-1"]], "influxdb": [[222, "index-0"], [222, "index-1"], [223, "index-2"], [225, "index-0"], [226, "index-0"]], "influxdb2": [[223, "index-0"], [223, "index-1"]], "influxdb2 plugin": [[223, "index-2"]], "join": [[228, "index-0"], [228, "index-1"]], "jsonread": [[229, "index-0"], [229, "index-1"]], "jvcproj": [[230, "index-0"], [230, "index-1"]], "knx": [[232, "index-1"]], "knx (knx bus unterst\u00fctzung)": [[232, "index-0"]], "kodi": [[233, "index-0"], [233, "index-1"]], "lirc": [[237, "index-0"], [237, "index-1"]], "lms": [[238, "index-0"], [238, "index-1"]], "mailrcv": [[241, "index-0"], [241, "index-1"]], "mailsend": [[242, "index-0"], [242, "index-1"]], "memlog": [[243, "index-0"], [243, "index-1"]], "mieleathome": [[244, "index-0"], [244, "index-1"]], "mikrotik": [[246, "index-0"], [246, "index-1"]], "modbus_tcp": [[249, "index-1"]], "modbus_tcp plugin": [[249, "index-0"]], "mpd": [[250, "index-0"]], "mqtt (mqtt protokoll implementierung)": [[252, "index-0"]], "mqtt plugin": [[252, "index-1"]], "neato": [[255, "index-0"], [255, "index-1"]], "network": [[256, "index-0"], [256, "index-1"]], "nut": [[259, "index-0"], [259, "index-1"]], "onewire": [[261, "index-0"], [261, "index-1"]], "openweathermap": [[262, "index-1"], [262, "index-2"], [262, "index-3"]], "openweathermap (openweathermap.org wetterdaten)": [[262, "index-0"]], "operationlog": [[263, "index-0"], [263, "index-1"]], "oppo": [[264, "index-0"], [264, "index-1"]], "panasonic_ac": [[265, "index-0"], [265, "index-1"]], "philips_tv": [[266, "index-0"], [266, "index-1"]], "pioneer": [[267, "index-0"], [267, "index-1"]], "pirateweather.net": [[268, "index-2"]], "piratewthr": [[268, "index-1"], [268, "index-3"], [268, "index-4"]], "piratewthr (pirateweather.net / forecast.io wetterdaten)": [[268, "index-0"]], "pluggit": [[271, "index-0"]], "pluggit plugin": [[271, "index-1"]], "raumfeld_ng": [[276, "index-0"], [276, "index-1"]], "rcs1000n": [[277, "index-1"]], "rcs1000n (brennenstuhl rcs 1000 n)": [[277, "index-0"]], "resol": [[279, "index-1"]], "resol (resol unterst\u00fctzung)": [[279, "index-0"]], "roombapysh": [[284, "index-0"], [284, "index-1"]], "rpi_info": [[286, "index-0"], [286, "index-1"]], "rrd": [[287, "index-0"], [287, "index-1"]], "rtr2 (raumtemperatur regler v2)": [[289, "index-0"]], "rtr2 rtr": [[289, "index-1"]], "shelly": [[291, "index-0"], [291, "index-1"]], "shelly plugin": [[291, "index-2"]], "simulation": [[295, "index-0"], [295, "index-1"]], "sma_mb": [[300, "index-1"]], "sma_mb (sma-modbus)": [[300, "index-0"]], "smartvisu (smartvisu unterst\u00fctzung)": [[302, "index-0"]], "smartvisu plugin": [[302, "index-1"]], "nutzdaten protokoll - client requests": [[304, "index-0"]], "smartvisu nutzdaten protokoll - client requests": [[304, "index-1"]], "sml2": [[306, "index-0"], [306, "index-1"]], "solarforecast": [[311, "index-1"]], "solarforecast (solarforecast rest api unterst\u00fctzung)": [[311, "index-0"]], "solarlog": [[313, "index-0"], [313, "index-1"]], "sonos": [[314, "index-0"], [314, "index-1"]], "speech": [[316, "index-0"], [316, "index-1"]], "squeezebox": [[319, "index-0"], [319, "index-1"]], "stateengine": [[320, "index-0"], [320, "index-1"], [321, "index-0"], [322, "index-0"], [323, "index-0"], [324, "index-0"], [325, "index-0"], [326, "index-0"], [327, "index-0"], [328, "index-0"], [329, "index-0"], [330, "index-0"], [331, "index-0"], [332, "index-0"], [333, "index-0"]], "regelwerk-item": [[323, "index-0"]], "zustand-item": [[324, "index-0"]], "bedingungen": [[325, "index-0"]], "aktionen": [[326, "index-0"]], "ausf\u00fchrungszeitpunkt": [[327, "index-0"]], "beispiel": [[328, "index-0"], [683, "index-0"]], "zustand-templates": [[329, "index-0"]], "funktionen und variablen": [[330, "index-0"]], "besondere zust\u00e4nde": [[331, "index-0"]], "aktionen - einzeln": [[332, "index-0"]], "sonstiges": [[333, "index-0"]], "tankerkoenig": [[336, "index-0"], [336, "index-1"]], "tasmota": [[337, "index-0"], [337, "index-1"]], "tasmota plugin": [[337, "index-2"]], "telegram": [[338, "index-0"], [338, "index-1"]], "unifi": [[346, "index-0"], [346, "index-1"]], "uzsu": [[347, "index-0"], [347, "index-1"]], "ferien": [[348, "index-2"]], "vacations": [[348, "index-1"]], "vacations (deutsche schulferien)": [[348, "index-0"]], "vactions": [[348, "index-2"]], "vicare": [[349, "index-0"], [349, "index-1"]], "viessmann": [[351, "index-0"], [351, "index-1"]], "visu_smartvisu": [[354, "index-1"]], "visu_smartvisu (smartvisu unterst\u00fctzung)": [[354, "index-0"]], "visu_smartvisu plugin": [[354, "index-2"]], "visu_websocket": [[357, "index-1"]], "visu_websocket (websocket protokoll unterst\u00fctzung)": [[357, "index-0"]], "webpush": [[359, "index-0"], [359, "index-1"]], "rest interface": [[360, "index-2"]], "webservices (rest interface)": [[360, "index-0"]], "withings_health": [[362, "index-0"], [362, "index-1"]], "wol": [[363, "index-1"]], "wol (wake on lan)": [[363, "index-0"]], "wunderground": [[366, "index-1"], [366, "index-2"]], "wunderground (wunderground wetterdaten)": [[366, "index-0"]], "xiaomi_vac": [[367, "index-0"], [367, "index-1"]], "yamaha": [[369, "index-1"]], "yamaha (raumtemperatur regler v2)": [[369, "index-0"]], "alexa konfiguration": [[374, "index-0"]], "alexa4p3 konfiguration": [[375, "index-0"]], "alexarc4shng konfiguration": [[376, "index-0"]], "apcups konfiguration": [[377, "index-0"]], "appletv konfiguration": [[378, "index-0"]], "artnet konfiguration": [[379, "index-0"]], "asterisk konfiguration": [[380, "index-0"]], "avdevice konfiguration": [[381, "index-0"]], "avm konfiguration": [[382, "index-0"]], "avm_smarthome konfiguration": [[383, "index-0"]], "beolink konfiguration": [[384, "index-0"]], "blockly konfiguration": [[385, "index-0"]], "bose_soundtouch konfiguration": [[386, "index-0"]], "bsblan konfiguration": [[387, "index-0"]], "buderus konfiguration": [[388, "index-0"]], "byd_bat konfiguration": [[389, "index-0"]], "casambi konfiguration": [[390, "index-0"]], "cli konfiguration": [[391, "index-0"]], "co2meter konfiguration": [[392, "index-0"]], "comfoair konfiguration": [[393, "index-0"]], "darksky konfiguration": [[394, "index-0"]], "dashbutton konfiguration": [[395, "index-0"]], "database konfiguration": [[396, "index-0"]], "datalog konfiguration": [[397, "index-0"]], "db_addon konfiguration": [[398, "index-0"]], "deebot_ozmo konfiguration": [[399, "index-0"]], "denon konfiguration": [[400, "index-0"]], "dlms konfiguration": [[401, "index-0"]], "dmx konfiguration": [[402, "index-0"]], "drexelundweiss konfiguration": [[403, "index-0"]], "ebus konfiguration": [[405, "index-0"]], "enigma2 konfiguration": [[406, "index-0"]], "enocean konfiguration": [[407, "index-0"]], "epson konfiguration": [[408, "index-0"]], "eta_pu konfiguration": [[409, "index-0"]], "executor konfiguration": [[410, "index-0"]], "garminconnect konfiguration": [[411, "index-0"]], "gpio konfiguration": [[412, "index-0"]], "harmony konfiguration": [[413, "index-0"]], "helios konfiguration": [[414, "index-0"]], "helios_tcp konfiguration": [[415, "index-0"]], "homeconnect konfiguration": [[416, "index-0"]], "homematic konfiguration": [[417, "index-0"]], "hue konfiguration": [[418, "index-0"]], "hue2 konfiguration": [[419, "index-0"]], "hue3 konfiguration": [[420, "index-0"]], "husky konfiguration": [[421, "index-0"]], "husky2 konfiguration": [[422, "index-0"]], "ical konfiguration": [[423, "index-0"]], "indego konfiguration": [[424, "index-0"]], "indego4shng konfiguration": [[425, "index-0"]], "influxdata konfiguration": [[426, "index-0"]], "influxdb konfiguration": [[427, "index-0"]], "influxdb2 konfiguration": [[428, "index-0"]], "intercom_2n konfiguration": [[429, "index-0"]], "join konfiguration": [[430, "index-0"]], "jsonread konfiguration": [[431, "index-0"]], "jvcproj konfiguration": [[432, "index-0"]], "kathrein konfiguration": [[433, "index-0"]], "knx konfiguration": [[434, "index-0"]], "kodi konfiguration": [[435, "index-0"]], "kostal konfiguration": [[436, "index-0"]], "kostalmodbus konfiguration": [[437, "index-0"]], "ksemmodbus konfiguration": [[438, "index-0"]], "leveljet konfiguration": [[439, "index-0"]], "lirc konfiguration": [[440, "index-0"]], "lms konfiguration": [[441, "index-0"]], "logo konfiguration": [[442, "index-0"]], "luxtronic2 konfiguration": [[443, "index-0"]], "mailrcv konfiguration": [[444, "index-0"]], "mailsend konfiguration": [[445, "index-0"]], "memlog konfiguration": [[446, "index-0"]], "mieleathome konfiguration": [[447, "index-0"]], "miflora konfiguration": [[448, "index-0"]], "mikrotik konfiguration": [[449, "index-0"]], "milight konfiguration": [[450, "index-0"]], "mlgw konfiguration": [[451, "index-0"]], "modbus_tcp konfiguration": [[452, "index-0"]], "mpd konfiguration": [[453, "index-0"]], "mqtt konfiguration": [[454, "index-0"]], "mvg_live konfiguration": [[455, "index-0"]], "neato konfiguration": [[456, "index-0"]], "network konfiguration": [[457, "index-0"]], "nuki konfiguration": [[458, "index-0"]], "nut konfiguration": [[459, "index-0"]], "odlinfo konfiguration": [[460, "index-0"]], "onewire konfiguration": [[461, "index-0"]], "openweathermap konfiguration": [[462, "index-0"]], "operationlog konfiguration": [[463, "index-0"]], "oppo konfiguration": [[464, "index-0"]], "panasonic_ac konfiguration": [[465, "index-0"]], "philips_tv konfiguration": [[466, "index-0"]], "pioneer konfiguration": [[467, "index-0"]], "piratewthr konfiguration": [[468, "index-0"]], "plex konfiguration": [[469, "index-0"]], "pluggit konfiguration": [[470, "index-0"]], "prowl konfiguration": [[471, "index-0"]], "pushbullet konfiguration": [[472, "index-0"]], "pushover konfiguration": [[473, "index-0"]], "raumfeld konfiguration": [[474, "index-0"]], "raumfeld_ng konfiguration": [[475, "index-0"]], "rcs1000n konfiguration": [[476, "index-0"]], "rcswitch konfiguration": [[477, "index-0"]], "resol konfiguration": [[478, "index-0"]], "robonect konfiguration": [[479, "index-0"]], "roomba konfiguration": [[480, "index-0"]], "roomba_980 konfiguration": [[481, "index-0"]], "roombapysh konfiguration": [[482, "index-0"]], "rpi1wire konfiguration": [[483, "index-0"]], "rpi_info konfiguration": [[484, "index-0"]], "rrd konfiguration": [[485, "index-0"]], "rtr konfiguration": [[486, "index-0"]], "rtr2 konfiguration": [[487, "index-0"]], "russound konfiguration": [[488, "index-0"]], "shelly konfiguration": [[489, "index-0"]], "simulation konfiguration": [[490, "index-0"]], "slack konfiguration": [[491, "index-0"]], "sma konfiguration": [[492, "index-0"]], "sma_em konfiguration": [[493, "index-0"]], "sma_mb konfiguration": [[494, "index-0"]], "smarttv konfiguration": [[495, "index-0"]], "smartvisu konfiguration": [[496, "index-0"]], "sml konfiguration": [[497, "index-0"]], "sml2 konfiguration": [[498, "index-0"]], "smlx konfiguration": [[499, "index-0"]], "snap7_logo konfiguration": [[500, "index-0"]], "snmp konfiguration": [[501, "index-0"]], "solarforecast konfiguration": [[502, "index-0"]], "solarlog konfiguration": [[503, "index-0"]], "sonos konfiguration": [[504, "index-0"]], "speech konfiguration": [[505, "index-0"]], "sqlite_visu2_8 konfiguration": [[506, "index-0"]], "squeezebox konfiguration": [[507, "index-0"]], "stateengine konfiguration": [[508, "index-0"]], "systemair konfiguration": [[509, "index-0"]], "tankerkoenig konfiguration": [[510, "index-0"]], "tasmota konfiguration": [[511, "index-0"]], "telegram konfiguration": [[512, "index-0"]], "text_display konfiguration": [[513, "index-0"]], "thz konfiguration": [[514, "index-0"]], "timmy konfiguration": [[515, "index-0"]], "traffic konfiguration": [[516, "index-0"]], "trovis557x konfiguration": [[517, "index-0"]], "unifi konfiguration": [[518, "index-0"]], "uzsu konfiguration": [[519, "index-0"]], "vacations konfiguration": [[520, "index-0"]], "vicare konfiguration": [[521, "index-0"]], "viessmann konfiguration": [[522, "index-0"]], "visu_smartvisu konfiguration": [[523, "index-0"]], "visu_websocket konfiguration": [[524, "index-0"]], "volkszaehler konfiguration": [[525, "index-0"]], "waterkotte konfiguration": [[526, "index-0"]], "webpush konfiguration": [[527, "index-0"]], "webservices konfiguration": [[528, "index-0"]], "wettercom konfiguration": [[529, "index-0"]], "withings_health konfiguration": [[530, "index-0"]], "wol konfiguration": [[531, "index-0"]], "wunderground konfiguration": [[532, "index-0"]], "xiaomi_vac konfiguration": [[533, "index-0"]], "xmpp konfiguration": [[534, "index-0"]], "yamaha konfiguration": [[535, "index-0"]], "yamahayxc konfiguration": [[536, "index-0"]], "zigbee2mqtt konfiguration": [[537, "index-0"]], "zwave konfiguration": [[538, "index-0"]], "alle plugins": [[545, "index-0"]], "plugin type": [[545, "index-0"], [548, "index-0"], [550, "index-0"], [552, "index-0"], [554, "index-0"], [558, "index-0"]], "gateway": [[548, "index-0"]], "interface": [[550, "index-0"]], "protokoll": [[552, "index-0"]], "web/cloud": [[558, "index-0"]], "relative referenzen": [[561, "index-0"], [561, "index-1"]], "funktionen": [[562, "index-0"], [562, "index-1"], [589, "index-0"], [589, "index-1"], [599, "index-10"], [599, "index-7"], [599, "index-8"], [599, "index-9"], [634, "index-5"], [634, "index-6"], [634, "index-7"], [634, "index-8"]], "wert lesen": [[563, "index-0"]], "wert schreiben": [[563, "index-1"]], "referenz": [[564, "index-0"], [564, "index-1"], [582, "index-0"], [582, "index-1"], [583, "index-0"], [583, "index-1"], [584, "index-0"], [584, "index-1"], [585, "index-0"], [585, "index-1"], [586, "index-0"], [586, "index-1"], [587, "index-0"], [587, "index-1"], [605, "index-0"], [605, "index-1"], [611, "index-0"], [611, "index-1"], [617, "index-0"], [617, "index-1"], [618, "index-0"], [621, "index-0"], [621, "index-2"], [621, "index-4"], [621, "index-5"], [625, "index-0"], [625, "index-1"], [626, "index-0"], [627, "index-0"], [627, "index-1"], [631, "index-0"], [637, "index-0"], [637, "index-1"]], "platzhalter in attributwerten": [[566, "index-6"], [566, "index-7"]], "vererbung von attributen": [[566, "index-2"], [566, "index-3"]], "zugriff auf attribute anderer items": [[566, "index-4"], [566, "index-5"]], "plugin-spezifische attribute": [[566, "index-0"], [566, "index-1"]], "properties": [[567, "index-0"], [567, "index-1"], [591, "index-4"], [591, "index-5"]], "standard-attribute": [[568, "index-0"], [569, "index-0"], [570, "index-0"], [571, "index-1"], [572, "index-1"], [573, "index-0"], [573, "index-2"], [574, "index-3"], [574, "index-6"], [574, "index-9"], [575, "index-0"], [576, "index-0"], [576, "index-2"], [577, "index-0"], [577, "index-1"], [577, "index-10"], [577, "index-12"], [577, "index-14"], [577, "index-16"], [577, "index-18"], [577, "index-2"], [577, "index-4"], [577, "index-6"], [577, "index-8"], [578, "index-0"], [579, "index-0"]], "autotimer": [[568, "index-0"], [568, "index-1"]], "crontab": [[569, "index-0"], [569, "index-1"]], "cycle": [[570, "index-0"], [570, "index-1"]], "enforce_change": [[571, "index-0"], [571, "index-1"], [571, "index-2"]], "enforce_updates": [[572, "index-0"], [572, "index-1"], [572, "index-2"]], "hysterese": [[574, "index-0"], [574, "index-1"]], "item standardattribute": [[574, "index-2"], [574, "index-5"], [574, "index-8"]], "hysteresis_input": [[574, "index-2"], [574, "index-3"], [574, "index-4"]], "hysteresis_lower_threshold": [[574, "index-10"], [574, "index-8"], [574, "index-9"]], "hysteresis_upper_threshold": [[574, "index-5"], [574, "index-6"], [574, "index-7"]], "log_change": [[575, "index-0"], [575, "index-1"], [577, "index-8"], [577, "index-9"]], "on_change": [[576, "index-2"], [576, "index-3"]], "on_update": [[576, "index-0"], [576, "index-1"]], "cache": [[577, "index-2"], [577, "index-3"]], "initial_value": [[577, "index-4"], [577, "index-5"]], "log_level": [[577, "index-10"], [577, "index-11"]], "log_text": [[577, "index-12"], [577, "index-13"]], "name": [[577, "index-14"], [577, "index-15"]], "remark": [[577, "index-16"], [577, "index-17"]], "threshold": [[577, "index-18"], [577, "index-19"]], "value": [[577, "index-6"], [577, "index-7"]], "item-struktur template": [[578, "index-1"], [578, "index-2"], [578, "index-5"]], "template": [[578, "index-4"]], "datentypen": [[579, "index-2"], [579, "index-3"]], "type": [[579, "index-0"], [579, "index-1"]], "logging filter": [[583, "index-0"], [583, "index-1"]], "logging formatter": [[584, "index-0"], [584, "index-1"]], "text formatierung": [[586, "index-0"], [586, "index-1"]], "struktur": [[588, "index-0"], [588, "index-1"], [590, "index-0"], [590, "index-1"]], "klassen": [[589, "index-2"], [589, "index-3"]], "item wert": [[591, "index-2"], [591, "index-3"]], "zugriff auf items": [[591, "index-0"], [591, "index-1"]], "logging in logiken": [[593, "index-0"], [593, "index-1"]], "logic objekt": [[594, "index-0"], [594, "index-1"]], "logics objekt": [[594, "index-4"], [594, "index-5"]], "trigger dict": [[594, "index-2"], [594, "index-3"]], "persistente variablen": [[596, "index-0"], [596, "index-1"]], "plugin funktionen": [[597, "index-0"]], "python module": [[598, "index-0"], [598, "index-1"]], "datum und zeit": [[599, "index-10"], [599, "index-2"], [634, "index-0"], [634, "index-8"]], "smarthomeng methoden": [[599, "index-0"], [599, "index-1"]], "item_attribute_prefixes": [[601, "index-0"], [601, "index-1"]], "administration interface": [[612, "index-1"]], "plugincontroller (klasse in modules.admin.api_plugin)": [[612, "modules.admin.api_plugin.PluginController"]], "pluginsapicontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsAPIController"]], "pluginsconfigcontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsConfigController"]], "pluginscontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsController"]], "pluginsinfocontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsInfoController"]], "pluginsinstalledcontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsInstalledController"]], "pluginslogicparameterscontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsLogicParametersController"]], "add() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.add"]], "blog_urls (attribut von modules.admin.api_plugins.pluginsinfocontroller)": [[612, "modules.admin.api_plugins.PluginsInfoController.blog_urls"]], "delete() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.delete"]], "get_body() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.get_body"]], "get_config_filename() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.get_config_filename"]], "handle_plugin_action() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.handle_plugin_action"]], "modules.admin.api_plugin": [[612, "module-modules.admin.api_plugin"]], "modules.admin.api_plugins": [[612, "module-modules.admin.api_plugins"]], "read() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.read"]], "read() (methode von modules.admin.api_plugins.pluginsapicontroller)": [[612, "modules.admin.api_plugins.PluginsAPIController.read"]], "read() (methode von modules.admin.api_plugins.pluginsconfigcontroller)": [[612, "modules.admin.api_plugins.PluginsConfigController.read"]], "read() (methode von modules.admin.api_plugins.pluginscontroller)": [[612, "modules.admin.api_plugins.PluginsController.read"]], "read() (methode von modules.admin.api_plugins.pluginsinfocontroller)": [[612, "modules.admin.api_plugins.PluginsInfoController.read"]], "read() (methode von modules.admin.api_plugins.pluginsinstalledcontroller)": [[612, "modules.admin.api_plugins.PluginsInstalledController.read"]], "read() (methode von modules.admin.api_plugins.pluginslogicparameterscontroller)": [[612, "modules.admin.api_plugins.PluginsLogicParametersController.read"]], "stop() (methode von modules.admin.api_plugins.pluginsinfocontroller)": [[612, "modules.admin.api_plugins.PluginsInfoController.stop"]], "test_for_old_config() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.test_for_old_config"]], "update() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.update"]], "cherrypyfilter (klasse in modules.http)": [[613, "modules.http.CherryPyFilter"]], "http (klasse in modules.http)": [[613, "modules.http.Http"]], "moduleapp (klasse in modules.http)": [[613, "modules.http.ModuleApp"]], "filter() (methode von modules.http.cherrypyfilter)": [[613, "modules.http.CherryPyFilter.filter"]], "get_local_hostname() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_hostname"]], "get_local_ip_address() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_ip_address"]], "get_local_port() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_port"]], "get_local_servicesport() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_servicesport"]], "get_service_password() (methode von modules.http.http)": [[613, "modules.http.Http.get_service_password"]], "get_service_user() (methode von modules.http.http)": [[613, "modules.http.Http.get_service_user"]], "get_services_for_plugin() (methode von modules.http.http)": [[613, "modules.http.Http.get_services_for_plugin"]], "get_user_dict() (methode von modules.http.http)": [[613, "modules.http.Http.get_user_dict"]], "get_webifs_for_plugin() (methode von modules.http.http)": [[613, "modules.http.Http.get_webifs_for_plugin"]], "gstatic_dir (attribut von modules.http.http)": [[613, "modules.http.Http.gstatic_dir"]], "gtemplates_dir (attribut von modules.http.http)": [[613, "modules.http.Http.gtemplates_dir"]], "index() (methode von modules.http.moduleapp)": [[613, "modules.http.ModuleApp.index"]], "init_template_environment() (methode von modules.http.http)": [[613, "modules.http.Http.init_template_environment"]], "is_port_in_use() (methode von modules.http.http)": [[613, "modules.http.Http.is_port_in_use"]], "is_staticfile() (methode von modules.http.http)": [[613, "modules.http.Http.is_staticfile"]], "log_server_info() (methode von modules.http.http)": [[613, "modules.http.Http.log_server_info"]], "modules.http": [[613, "module-modules.http"]], "register_service() (methode von modules.http.http)": [[613, "modules.http.Http.register_service"]], "register_visu() (methode von modules.http.http)": [[613, "modules.http.Http.register_visu"]], "register_webif() (methode von modules.http.http)": [[613, "modules.http.Http.register_webif"]], "start() (methode von modules.http.http)": [[613, "modules.http.Http.start"]], "stop() (methode von modules.http.http)": [[613, "modules.http.Http.stop"]], "validate_password() (methode von modules.http.http)": [[613, "modules.http.Http.validate_password"]], "validate_service_password() (methode von modules.http.http)": [[613, "modules.http.Http.validate_service_password"]], "version (attribut von modules.http.http)": [[613, "modules.http.Http.version"]], "webif_mount_prefix (attribut von modules.http.http)": [[613, "modules.http.Http.webif_mount_prefix"]], "modules mqtt": [[615, "index-0"]], "mqtt (klasse in modules.mqtt)": [[615, "modules.mqtt.Mqtt"]], "broker_uptime() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.broker_uptime"]], "cast_from_mqtt() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.cast_from_mqtt"]], "cast_to_mqtt() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.cast_to_mqtt"]], "get_broker_config() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.get_broker_config"]], "get_broker_info() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.get_broker_info"]], "longname (attribut von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.longname"]], "modules.mqtt": [[615, "module-modules.mqtt"]], "publish_topic() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.publish_topic"]], "scheduler (attribut von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.scheduler"]], "start() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.start"]], "stop() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.stop"]], "subscribe_topic() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.subscribe_topic"]], "unsubscribe_topic() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.unsubscribe_topic"]], "version (attribut von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.version"]], "websocket module": [[616, "index-1"]], "netzwerk": [[617, "index-0"], [617, "index-1"]], "smartplugin (klasse in lib.model.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin"], [624, "lib.model.smartplugin.SmartPlugin"]], "asyncio_state() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.asyncio_state"], [624, "lib.model.smartplugin.SmartPlugin.asyncio_state"]], "get_command_from_run_queue() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.get_command_from_run_queue"], [624, "lib.model.smartplugin.SmartPlugin.get_command_from_run_queue"]], "list_asyncio_tasks() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.list_asyncio_tasks"], [624, "lib.model.smartplugin.SmartPlugin.list_asyncio_tasks"]], "put_command_to_run_queue() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.put_command_to_run_queue"], [624, "lib.model.smartplugin.SmartPlugin.put_command_to_run_queue"]], "run_asyncio_coro() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.run_asyncio_coro"], [624, "lib.model.smartplugin.SmartPlugin.run_asyncio_coro"]], "start_asyncio() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.start_asyncio"], [624, "lib.model.smartplugin.SmartPlugin.start_asyncio"]], "stop_asyncio() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.stop_asyncio"], [624, "lib.model.smartplugin.SmartPlugin.stop_asyncio"]], "wait_for_asyncio_termination() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.wait_for_asyncio_termination"], [624, "lib.model.smartplugin.SmartPlugin.wait_for_asyncio_termination"]], "mqttplugin (klasse in lib.model.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin"]], "add_subscription() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.add_subscription"]], "broker_config (attribut von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.broker_config"]], "broker_monitoring (attribut von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.broker_monitoring"]], "broker_uptime() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.broker_uptime"]], "get_broker_info() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.get_broker_info"]], "mqtt_init() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.mqtt_init"]], "publish_topic() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.publish_topic"]], "start_subscriptions() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.start_subscriptions"]], "stop_subscriptions() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.stop_subscriptions"]], "translate() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.translate"]], "mqttplugin referenz": [[621, "index-3"]], "sdp": [[621, "index-5"]], "sdp referenz": [[621, "index-7"]], "smartdeviceplugin": [[621, "index-4"], [623, "index-0"]], "smartdeviceplugin referenz": [[621, "index-6"]], "smartplugin referenz": [[621, "index-1"]], "class smartdeviceplugin": [[623, "index-1"], [623, "index-2"]], "allow_multiinstance (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.ALLOW_MULTIINSTANCE"]], "plugin_version (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.PLUGIN_VERSION"]], "stop_on_item_change (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.STOP_ON_ITEM_CHANGE"]], "add_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.add_item"]], "alive (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.alive"]], "callerinfo() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.callerinfo"]], "deinit() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.deinit"]], "get_classname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_classname"]], "get_configname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_configname"]], "get_fullname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_fullname"]], "get_iattr_value() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_iattr_value"]], "get_info() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_info"]], "get_instance_name() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_instance_name"]], "get_item_config() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_config"]], "get_item_list() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_list"]], "get_item_mapping() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_mapping"]], "get_item_mapping_list() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_mapping_list"]], "get_item_path_list() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_path_list"]], "get_items_for_mapping() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_items_for_mapping"]], "get_loginstance() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_loginstance"]], "get_mappings() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_mappings"]], "get_module() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_module"]], "get_parameter_value() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_parameter_value"]], "get_parameter_value_for_display() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_parameter_value_for_display"]], "get_plugin_dir() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_plugin_dir"]], "get_sh() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_sh"]], "get_shortname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_shortname"]], "get_trigger_items() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_trigger_items"]], "get_version() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_version"]], "has_iattr() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.has_iattr"]], "init_webinterface() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.init_webinterface"]], "is_multi_instance_capable() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.is_multi_instance_capable"]], "logger (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.logger"]], "now() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.now"]], "parse_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.parse_item"]], "parse_logic() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.parse_logic"]], "path_join() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.path_join"]], "poll_device() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.poll_device"]], "register_updating() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.register_updating"]], "remove_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.remove_item"]], "run() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.run"]], "scheduler_add() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_add"]], "scheduler_change() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_change"]], "scheduler_get() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_get"]], "scheduler_get_all() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_get_all"]], "scheduler_remove() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_remove"]], "scheduler_remove_all() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_remove_all"]], "scheduler_return_next() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_return_next"]], "scheduler_trigger() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_trigger"]], "set_attr_value() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.set_attr_value"]], "shtime (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.shtime"]], "stop() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.stop"]], "translate() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.translate"]], "unparse_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.unparse_item"]], "update_config_section() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.update_config_section"]], "update_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.update_item"]], "dokumentation f\u00fcr plugins": [[625, "index-0"]], "plugins referenz": [[625, "index-2"], [626, "index-1"]], "user_doc": [[625, "index-1"], [625, "index-2"]], "python": [[627, "index-0"], [627, "index-1"]], "python installieren": [[628, "index-0"]], "support skripte": [[629, "index-0"], [629, "index-1"]], "virtual python environments": [[629, "index-0"], [630, "index-0"]], "virtuelle umgebungen": [[629, "index-1"], [630, "index-1"]], "virtuelle environements als dienst": [[630, "index-2"]], "ablauf des startups": [[632, "index-0"]], "smarthomeng initialisierung": [[632, "index-1"]], "smarthomeng status": [[632, "index-3"]], "shng_status": [[632, "index-2"]], "smarthomeng": [[637, "index-0"], [637, "index-1"]], "backup und restore tool": [[677, "index-0"], [677, "index-1"]], "tools": [[677, "index-1"], [678, "index-1"], [679, "index-2"], [680, "index-1"], [681, "index-2"]], "build tool f\u00fcr python requirements": [[678, "index-0"], [678, "index-1"]], "conf zu yaml konverter": [[679, "index-0"], [679, "index-1"], [679, "index-2"], [679, "index-3"]], "yaml": [[679, "index-1"]], "getshngpid": [[680, "index-0"], [680, "index-1"]], "metadata checker": [[681, "index-0"], [681, "index-2"]], "plugin_metadata_checker": [[681, "index-1"]], "automatische generierung": [[682, "index-0"]], "konfigurationsseiten": [[682, "index-2"]], "manuell erstellte visu seiten": [[682, "index-7"], [682, "index-8"]], "trenner in der navigation": [[682, "index-3"]], "unterschiedliche blockgr\u00f6\u00dfen": [[682, "index-5"]], "unterschiedliche blocktypen": [[682, "index-6"]], "unterschiedliche visu-styles": [[682, "index-4"]], "zus\u00e4tzliche infos in der navigation anzeigen": [[682, "index-1"]], "smartvisu autogenerierung": [[682, "index-1"], [682, "index-2"], [682, "index-3"], [682, "index-4"], [682, "index-5"], [682, "index-6"], [682, "index-7"]], "hello world beispiel": [[683, "index-1"]], "installation von widgets": [[685, "index-0"]], "nginx als reverseproxy": [[688, "index-0"]], "definition der navigationsstruktur": [[689, "index-2"]], "kommunikation mit der visu": [[689, "index-3"]], "visualisierung mit smartvisu": [[689, "index-0"], [689, "index-1"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["admin/admin", "admin/dienste", "admin/items", "admin/logiken", "admin/logs", "admin/plugins", "admin/scenes", "admin/scheduler", "admin/system", "admin/threads", "beispiele/beispiele", "beispiele/items/items", "beispiele/items/items_eval_evaltrigger", "beispiele/items/items_tipps_und_tricks", "beispiele/knxd", "beispiele/logiken/beispiel_beaufort", "beispiele/logiken/beispiel_berechnung_zeitdaten", "beispiele/logiken/beispiel_blinken", "beispiele/logiken/beispiel_dpt2", "beispiele/logiken/beispiel_icon_zenith", "beispiele/logiken/beispiel_nachdimmen", "beispiele/logiken/logiken", "beispiele/plugins/plugin_aus_develop", "beispiele/plugins/plugins", "beispiele/structs/1_structs", "beispiele/structs/item_strukturen_kopieren", "beispiele/structs/structs", "beispiele/umzug", "datenschutz", "dev/README", "dev/sample_module/README", "dev/sample_mqttplugin/user_doc", "dev/sample_plugin/user_doc", "dev/sample_smartdevice_plugin/user_doc", "dev/sample_smartdevice_standalone_plugin/user_doc", "dummy_for_readmes", "einleitung", "entwicklung/build_doc", "entwicklung/core/core", "entwicklung/core/core_libraries", "entwicklung/core/core_shng", "entwicklung/entwicklung", "entwicklung/logiken/logiken", "entwicklung/module/module", "entwicklung/module/module_http", "entwicklung/module/module_mqtt", "entwicklung/plugins/async_in_plugins", "entwicklung/plugins/entwicklungsrichtlinien", "entwicklung/plugins/kurzanleitung/kurzanleitung", "entwicklung/plugins/kurzanleitung/libraries_plugins", "entwicklung/plugins/kurzanleitung/multilanguage", "entwicklung/plugins/kurzanleitung/plugin_documentation_files", "entwicklung/plugins/kurzanleitung/plugin_in5minutes", "entwicklung/plugins/kurzanleitung/plugin_metadata", "entwicklung/plugins/kurzanleitung/samplemqttplugin", "entwicklung/plugins/kurzanleitung/sampleplugin", "entwicklung/plugins/kurzanleitung/webinterface", "entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components", "entwicklung/plugins/kurzanleitung/webinterface_automatic_update", "entwicklung/plugins/kurzanleitung/webinterface_extend_plugin", "entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface", "entwicklung/plugins/kurzanleitung/webinterface_multilanguage", "entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction", "entwicklung/plugins/mqttplugin", "entwicklung/plugins/plugin_checker", "entwicklung/plugins/plugins", "entwicklung/plugins/smartplugin", "entwicklung/plugins/vorueberlegungen", "entwicklung/virtual_env", "faq", "fehlersuche", "fehlersuche_checkliste", "gedankenstuetzen/admonition_arten", "gedankenstuetzen/knxd_compilieren", "gedankenstuetzen/tabs", "genindex", "ideen_kommendes_release", "impressum", "index", "installation/anforderungen", "installation/docker", "installation/installation", "installation/komplettanleitung/01_debian", "installation/komplettanleitung/02_smarthomeng", "installation/komplettanleitung/03_mosquitto", "installation/komplettanleitung/04_smartvisu", "installation/komplettanleitung/05_knxd", "installation/komplettanleitung/06_onewire", "installation/komplettanleitung/07_samba", "installation/komplettanleitung/08_shng_daemon", "installation/komplettanleitung/09_esphome", "installation/komplettanleitung/komplettanleitung", "installation/update_upgrade", "konfiguration/admin_gui/admin_gui", "konfiguration/admin_gui/admin_gui_items", "konfiguration/admin_gui/admin_gui_plugins", "konfiguration/admin_gui/admin_gui_system", "konfiguration/item_structs", "konfiguration/items/initiale_itemkonfiguration", "konfiguration/items/items", "konfiguration/items/ueberblick", "konfiguration/konfiguration", "konfiguration/konfiguration_backup_restore", "konfiguration/konfiguration_ueberblick", "konfiguration/konfigurationsdateien/holidays", "konfiguration/konfigurationsdateien/items", "konfiguration/konfigurationsdateien/konfigdateien", "konfiguration/konfigurationsdateien/logging", "konfiguration/konfigurationsdateien/logic", "konfiguration/konfigurationsdateien/logics", "konfiguration/konfigurationsdateien/module", "konfiguration/konfigurationsdateien/plugin", "konfiguration/konfigurationsdateien/scenes", "konfiguration/konfigurationsdateien/smarthome", "konfiguration/konfigurationsdateien/struct", "konfiguration/logging", "konfiguration/logging_best_practices", "konfiguration/logiken", "konfiguration/module/module", "konfiguration/module/module_admin", "konfiguration/module/module_http", "konfiguration/module/module_mqtt", "konfiguration/module/module_websocket", "konfiguration/plugins", "konfiguration/szenen", "konfiguration/userfunctions", "lib/config", "lib/connection", "lib/constants", "lib/daemon", "lib/db", "lib/env", "lib/item", "lib/item_class_item", "lib/item_class_items", "lib/item_conversion", "lib/log", "lib/logic", "lib/logutils", "lib/metadata", "lib/module", "lib/network", "lib/orb", "lib/plugin", "lib/plugin_class_plugins", "lib/plugin_class_pluginwrapper", "lib/scene", "lib/scheduler", "lib/shtime", "lib/shyaml", "lib/tools", "lib/translation", "lib/utils", "logiken/logics", "modules/admin/README", "modules/admin/websocket_admingui_requests", "modules/admin/websocket_shng_requests", "modules/http/README", "modules/mqtt/README", "plugins/README", "plugins/alexa/README", "plugins/alexa/nginx", "plugins/alexa4p3/README", "plugins/alexa4p3/user_doc", "plugins/alexarc4shng/user_doc", "plugins/apcups/user_doc", "plugins/appletv/user_doc", "plugins/artnet/user_doc", "plugins/asterisk/user_doc", "plugins/avdevice/user_doc", "plugins/avm/user_doc", "plugins/avm_smarthome/user_doc", "plugins/blockly/user_doc", "plugins/bose_soundtouch/README", "plugins/bose_soundtouch/user_doc", "plugins/bsblan/README", "plugins/buderus/README", "plugins/buderus/URLs", "plugins/byd_bat/user_doc", "plugins/casambi/user_doc", "plugins/cli/README", "plugins/cli/user_doc", "plugins/co2meter/README", "plugins/comfoair/README", "plugins/darksky/user_doc", "plugins/dashbutton/README", "plugins/database/README", "plugins/database/user_doc", "plugins/datalog/user_doc", "plugins/db_addon/user_doc", "plugins/deebot_ozmo/README", "plugins/denon/user_doc", "plugins/dlms/user_doc", "plugins/dmx/README", "plugins/dmx/user_doc", "plugins/drexelundweiss/README", "plugins/drexelundweiss/user_doc", "plugins/ebus/user_doc", "plugins/enigma2/README", "plugins/enocean/README", "plugins/enocean/user_doc", "plugins/epson/user_doc", "plugins/eta_pu/README", "plugins/executor/user_doc", "plugins/gpio/user_doc", "plugins/harmony/README", "plugins/helios/README", "plugins/helios_tcp/user_doc", "plugins/homeconnect/README", "plugins/homematic/README", "plugins/homematic/user_doc", "plugins/hue/README", "plugins/hue2/user_doc", "plugins/hue3/user_doc", "plugins/husky/user_doc", "plugins/husky2/user_doc", "plugins/ical/README", "plugins/ical/user_doc", "plugins/indego/README", "plugins/indego4shng/README", "plugins/indego4shng/user_doc", "plugins/influxdata/README", "plugins/influxdb/user_doc", "plugins/influxdb2/user_doc", "plugins/influxdb2/user_doc/influxdb_einfuehrung", "plugins/influxdb2/user_doc/influxdb_installation", "plugins/influxdb2/user_doc/influxdb_konfiguration", "plugins/intercom_2n/README", "plugins/join/user_doc", "plugins/jsonread/user_doc", "plugins/jvcproj/user_doc", "plugins/kathrein/README", "plugins/knx/user_doc", "plugins/kodi/user_doc", "plugins/kostal/README", "plugins/kostalmodbus/README", "plugins/ksemmodbus/README", "plugins/lirc/user_doc", "plugins/lms/user_doc", "plugins/logo/README", "plugins/luxtronic2/README", "plugins/mailrcv/user_doc", "plugins/mailsend/user_doc", "plugins/memlog/user_doc", "plugins/mieleathome/user_doc", "plugins/miflora/README", "plugins/mikrotik/user_doc", "plugins/milight/README", "plugins/mlgw/README", "plugins/modbus_tcp/user_doc", "plugins/mpd/user_doc", "plugins/mqtt/README", "plugins/mqtt/user_doc", "plugins/mvg_live/README", "plugins/neato/README", "plugins/neato/user_doc", "plugins/network/user_doc", "plugins/nuki/README", "plugins/nut/README", "plugins/nut/user_doc", "plugins/odlinfo/README", "plugins/onewire/user_doc", "plugins/openweathermap/user_doc", "plugins/operationlog/user_doc", "plugins/oppo/user_doc", "plugins/panasonic_ac/user_doc", "plugins/philips_tv/user_doc", "plugins/pioneer/user_doc", "plugins/piratewthr/user_doc", "plugins/plex/README", "plugins/pluggit/README", "plugins/pluggit/user_doc", "plugins/prowl/user_doc", "plugins/pushbullet/README", "plugins/pushover/README", "plugins/raumfeld/README", "plugins/raumfeld_ng/user_doc", "plugins/rcs1000n/user_doc", "plugins/rcswitch/README", "plugins/resol/user_doc", "plugins/robonect/README", "plugins/roomba/README", "plugins/roomba_980/README", "plugins/roombapysh/README", "plugins/roombapysh/user_doc", "plugins/rpi1wire/user_doc", "plugins/rpi_info/user_doc", "plugins/rrd/user_doc", "plugins/rtr/README", "plugins/rtr2/user_doc", "plugins/russound/README", "plugins/shelly/user_doc", "plugins/shelly/user_doc/device_installation", "plugins/shelly/user_doc/plugin_configuration", "plugins/simulation/README", "plugins/simulation/user_doc", "plugins/slack/README", "plugins/sma/README", "plugins/sma_em/README", "plugins/sma_mb/README", "plugins/sma_mb/user_doc", "plugins/smarttv/README", "plugins/smartvisu/user_doc", "plugins/smartvisu/user_doc/websocket_shng_requests", "plugins/smartvisu/user_doc/websocket_visu_requests", "plugins/sml/README", "plugins/sml2/user_doc", "plugins/smlx/user_doc", "plugins/snap7_logo/README", "plugins/snap7_logo/user_doc", "plugins/snmp/user_doc", "plugins/solarforecast/user_doc", "plugins/solarlog/README", "plugins/solarlog/user_doc", "plugins/sonos/user_doc", "plugins/speech/README", "plugins/speech/user_doc", "plugins/sqlite_visu2_8/README", "plugins/squeezebox/README", "plugins/squeezebox/user_doc", "plugins/stateengine/user_doc", "plugins/stateengine/user_doc/01_allgemein", "plugins/stateengine/user_doc/02_konfiguration", "plugins/stateengine/user_doc/03_regelwerk", "plugins/stateengine/user_doc/04_zustand", "plugins/stateengine/user_doc/05_bedingungen", "plugins/stateengine/user_doc/06_aktionen", "plugins/stateengine/user_doc/07_zeitpunkt", "plugins/stateengine/user_doc/08_beispiel", "plugins/stateengine/user_doc/09_vorlagen", "plugins/stateengine/user_doc/10_funktionen_variablen", "plugins/stateengine/user_doc/11_sonderzustaende", "plugins/stateengine/user_doc/12_aktioneneinzeln", "plugins/stateengine/user_doc/13_sonstiges", "plugins/systemair/README", "plugins/tankerkoenig/README", "plugins/tankerkoenig/user_doc", "plugins/tasmota/user_doc", "plugins/telegram/user_doc", "plugins/text_display/README", "plugins/text_display/user_doc", "plugins/thz/README", "plugins/timmy/README", "plugins/timmy/user_doc", "plugins/traffic/README", "plugins/trovis557x/README", "plugins/unifi/user_doc", "plugins/uzsu/user_doc", "plugins/vacations/user_doc", "plugins/vicare/user_doc", "plugins/viessmann/README", "plugins/viessmann/user_doc", "plugins/visu_smartvisu/README", "plugins/visu_smartvisu/developer_doc", "plugins/visu_smartvisu/user_doc", "plugins/visu_websocket/README", "plugins/visu_websocket/developer_doc", "plugins/visu_websocket/user_doc", "plugins/volkszaehler/README", "plugins/webpush/user_doc", "plugins/webservices/user_doc", "plugins/wettercom/README", "plugins/withings_health/user_doc", "plugins/wol/user_doc", "plugins/wunderground/README", "plugins/wunderground/README_OLD", "plugins/wunderground/user_doc", "plugins/xiaomi_vac/user_doc", "plugins/xmpp/README", "plugins/yamaha/user_doc", "plugins/yamahayxc/user_doc", "plugins/zigbee2mqtt/user_doc", "plugins/zwave/README", "plugins_all", "plugins_doc/config/alexa", "plugins_doc/config/alexa4p3", "plugins_doc/config/alexarc4shng", "plugins_doc/config/apcups", "plugins_doc/config/appletv", "plugins_doc/config/artnet", "plugins_doc/config/asterisk", "plugins_doc/config/avdevice", "plugins_doc/config/avm", "plugins_doc/config/avm_smarthome", "plugins_doc/config/beolink", "plugins_doc/config/blockly", "plugins_doc/config/bose_soundtouch", "plugins_doc/config/bsblan", "plugins_doc/config/buderus", "plugins_doc/config/byd_bat", "plugins_doc/config/casambi", "plugins_doc/config/cli", "plugins_doc/config/co2meter", "plugins_doc/config/comfoair", "plugins_doc/config/darksky", "plugins_doc/config/dashbutton", "plugins_doc/config/database", "plugins_doc/config/datalog", "plugins_doc/config/db_addon", "plugins_doc/config/deebot_ozmo", "plugins_doc/config/denon", "plugins_doc/config/dlms", "plugins_doc/config/dmx", "plugins_doc/config/drexelundweiss", "plugins_doc/config/dummy_config", "plugins_doc/config/ebus", "plugins_doc/config/enigma2", "plugins_doc/config/enocean", "plugins_doc/config/epson", "plugins_doc/config/eta_pu", "plugins_doc/config/executor", "plugins_doc/config/garminconnect", "plugins_doc/config/gpio", "plugins_doc/config/harmony", "plugins_doc/config/helios", "plugins_doc/config/helios_tcp", "plugins_doc/config/homeconnect", "plugins_doc/config/homematic", "plugins_doc/config/hue", "plugins_doc/config/hue2", "plugins_doc/config/hue3", "plugins_doc/config/husky", "plugins_doc/config/husky2", "plugins_doc/config/ical", "plugins_doc/config/indego", "plugins_doc/config/indego4shng", "plugins_doc/config/influxdata", "plugins_doc/config/influxdb", "plugins_doc/config/influxdb2", "plugins_doc/config/intercom_2n", "plugins_doc/config/join", "plugins_doc/config/jsonread", "plugins_doc/config/jvcproj", "plugins_doc/config/kathrein", "plugins_doc/config/knx", "plugins_doc/config/kodi", "plugins_doc/config/kostal", "plugins_doc/config/kostalmodbus", "plugins_doc/config/ksemmodbus", "plugins_doc/config/leveljet", "plugins_doc/config/lirc", "plugins_doc/config/lms", "plugins_doc/config/logo", "plugins_doc/config/luxtronic2", "plugins_doc/config/mailrcv", "plugins_doc/config/mailsend", "plugins_doc/config/memlog", "plugins_doc/config/mieleathome", "plugins_doc/config/miflora", "plugins_doc/config/mikrotik", "plugins_doc/config/milight", "plugins_doc/config/mlgw", "plugins_doc/config/modbus_tcp", "plugins_doc/config/mpd", "plugins_doc/config/mqtt", "plugins_doc/config/mvg_live", "plugins_doc/config/neato", "plugins_doc/config/network", "plugins_doc/config/nuki", "plugins_doc/config/nut", "plugins_doc/config/odlinfo", "plugins_doc/config/onewire", "plugins_doc/config/openweathermap", "plugins_doc/config/operationlog", "plugins_doc/config/oppo", "plugins_doc/config/panasonic_ac", "plugins_doc/config/philips_tv", "plugins_doc/config/pioneer", "plugins_doc/config/piratewthr", "plugins_doc/config/plex", "plugins_doc/config/pluggit", "plugins_doc/config/prowl", "plugins_doc/config/pushbullet", "plugins_doc/config/pushover", "plugins_doc/config/raumfeld", "plugins_doc/config/raumfeld_ng", "plugins_doc/config/rcs1000n", "plugins_doc/config/rcswitch", "plugins_doc/config/resol", "plugins_doc/config/robonect", "plugins_doc/config/roomba", "plugins_doc/config/roomba_980", "plugins_doc/config/roombapysh", "plugins_doc/config/rpi1wire", "plugins_doc/config/rpi_info", "plugins_doc/config/rrd", "plugins_doc/config/rtr", "plugins_doc/config/rtr2", "plugins_doc/config/russound", "plugins_doc/config/shelly", "plugins_doc/config/simulation", "plugins_doc/config/slack", "plugins_doc/config/sma", "plugins_doc/config/sma_em", "plugins_doc/config/sma_mb", "plugins_doc/config/smarttv", "plugins_doc/config/smartvisu", "plugins_doc/config/sml", "plugins_doc/config/sml2", "plugins_doc/config/smlx", "plugins_doc/config/snap7_logo", "plugins_doc/config/snmp", "plugins_doc/config/solarforecast", "plugins_doc/config/solarlog", "plugins_doc/config/sonos", "plugins_doc/config/speech", "plugins_doc/config/sqlite_visu2_8", "plugins_doc/config/squeezebox", "plugins_doc/config/stateengine", "plugins_doc/config/systemair", "plugins_doc/config/tankerkoenig", "plugins_doc/config/tasmota", "plugins_doc/config/telegram", "plugins_doc/config/text_display", "plugins_doc/config/thz", "plugins_doc/config/timmy", "plugins_doc/config/traffic", "plugins_doc/config/trovis557x", "plugins_doc/config/unifi", "plugins_doc/config/uzsu", "plugins_doc/config/vacations", "plugins_doc/config/vicare", "plugins_doc/config/viessmann", "plugins_doc/config/visu_smartvisu", "plugins_doc/config/visu_websocket", "plugins_doc/config/volkszaehler", "plugins_doc/config/waterkotte", "plugins_doc/config/webpush", "plugins_doc/config/webservices", "plugins_doc/config/wettercom", "plugins_doc/config/withings_health", "plugins_doc/config/wol", "plugins_doc/config/wunderground", "plugins_doc/config/xiaomi_vac", "plugins_doc/config/xmpp", "plugins_doc/config/yamaha", "plugins_doc/config/yamahayxc", "plugins_doc/config/zigbee2mqtt", "plugins_doc/config/zwave", "plugins_doc/dummy_all", "plugins_doc/dummy_gateway", "plugins_doc/dummy_interface", "plugins_doc/dummy_protocol", "plugins_doc/dummy_system", "plugins_doc/dummy_web", "plugins_doc/plugins_all", "plugins_doc/plugins_all_header", "plugins_doc/plugins_footer", "plugins_doc/plugins_gateway", "plugins_doc/plugins_gateway_header", "plugins_doc/plugins_interface", "plugins_doc/plugins_interface_header", "plugins_doc/plugins_protocol", "plugins_doc/plugins_protocol_header", "plugins_doc/plugins_system", "plugins_doc/plugins_system_header", "plugins_doc/plugins_unclassified", "plugins_doc/plugins_unclassified_header", "plugins_doc/plugins_web", "plugins_doc/plugins_web_header", "referenz/APIs", "referenz/items/attributes_relative_referenzen", "referenz/items/funktionen", "referenz/items/item_zugriff", "referenz/items/items", "referenz/items/methoden", "referenz/items/plugin_attribute", "referenz/items/properties", "referenz/items/standard_attribute/autotimer", "referenz/items/standard_attribute/crontab", "referenz/items/standard_attribute/cycle", "referenz/items/standard_attribute/enforce_change", "referenz/items/standard_attribute/enforce_updates", "referenz/items/standard_attribute/eval", "referenz/items/standard_attribute/hysteresis", "referenz/items/standard_attribute/log_change", "referenz/items/standard_attribute/on_update", "referenz/items/standard_attribute/standard_attribute", "referenz/items/standard_attribute/struct", "referenz/items/standard_attribute/type", "referenz/items/systemitems", "referenz/libraries_plugins_logics", "referenz/logging/logging", "referenz/logging/logging_filter", "referenz/logging/logging_formatter", "referenz/logging/logging_handler", "referenz/logging/logging_textformatierung", "referenz/logiken/logiken", "referenz/logiken/logiken_exceptions", "referenz/logiken/logiken_funktionen", "referenz/logiken/logiken_grundstruktur", "referenz/logiken/logiken_items", "referenz/logiken/logiken_konfiguration", "referenz/logiken/logiken_logging", "referenz/logiken/logiken_logic_objekt", "referenz/logiken/logiken_mqtt", "referenz/logiken/logiken_persistente_vars", "referenz/logiken/logiken_plugin_funktionen", "referenz/logiken/logiken_python_module", "referenz/logiken/logiken_smarthomeng_methoden", "referenz/logiken/logiken_standardparameter", "referenz/metadata/item_attribute_prefixes", "referenz/metadata/item_attributes", "referenz/metadata/item_structs", "referenz/metadata/logic_parameters", "referenz/metadata/metadata", "referenz/metadata/module_global", "referenz/metadata/parameter_keys", "referenz/metadata/parameters", "referenz/metadata/plugin_functions", "referenz/metadata/plugin_global", "referenz/module/module", "referenz/module/module_admin", "referenz/module/module_http", "referenz/module/module_metadata", "referenz/module/module_mqtt", "referenz/module/module_websocket", "referenz/netzwerk", "referenz/plugins/asyncio_support", "referenz/plugins/plugin_metadata", "referenz/plugins/plugin_typen/mqttplugin_class", "referenz/plugins/plugin_typen/plugin_typen", "referenz/plugins/plugin_typen/smartdeviceplugin", "referenz/plugins/plugin_typen/smartdeviceplugin_class", "referenz/plugins/plugin_typen/smartplugin_class", "referenz/plugins/plugin_user_doc", "referenz/plugins/plugins", "referenz/python/python", "referenz/python/python_installation", "referenz/python/support_skripte", "referenz/python/virtual_environments", "referenz/referenz", "referenz/smarthomeng/ablauf_startup", "referenz/smarthomeng/feiertage", "referenz/smarthomeng/feiertage_datum_zeit", "referenz/smarthomeng/kommandozeilen_optionen", "referenz/smarthomeng/methoden_sonne_mond", "referenz/smarthomeng/smarthomeng", "referenz/userfunctions/userfunctions", "release/1_00_release_sh_py", "release/1_01_and_newer", "release/1_06", "release/1_06_1", "release/1_07", "release/1_07_1", "release/1_07_2", "release/1_08", "release/1_08_1", "release/1_08_2", "release/1_09", "release/1_09_1", "release/1_09_2", "release/1_09_3", "release/1_09_4", "release/1_09_5", "release/1_10", "release/1_10_x", "release/release", "release/smarthome_py/0_1", "release/smarthome_py/0_2", "release/smarthome_py/0_3", "release/smarthome_py/0_4", "release/smarthome_py/0_5", "release/smarthome_py/0_6", "release/smarthome_py/0_7", "release/smarthome_py/0_8", "release/smarthome_py/0_9", "release/smarthome_py/1_0", "release/smarthomeng_older/1_01", "release/smarthomeng_older/1_02", "release/smarthomeng_older/1_03", "release/smarthomeng_older/1_04", "release/smarthomeng_older/1_04_1", "release/smarthomeng_older/1_04_2", "release/smarthomeng_older/1_05", "release/smarthomeng_older/1_05_1", "tools/tools", "tools/tools_backup_restore", "tools/tools_build_requirements", "tools/tools_conf_to_yaml_converter", "tools/tools_getshngpid", "tools/tools_plugin_metadata_checker", "visualisierung/automatic_generation", "visualisierung/beispiel", "visualisierung/changes_in_1.8", "visualisierung/install_widgets", "visualisierung/item_attributes", "visualisierung/plugin_widgets", "visualisierung/reverse_proxy", "visualisierung/visualisierung", "visualisierung/websocket_communication", "vorlagen/1_x_vorlage_Release_Notes", "was_ist_neu", "was_war_neu"], "filenames": ["admin/admin.rst", "admin/dienste.rst", "admin/items.rst", "admin/logiken.rst", "admin/logs.rst", "admin/plugins.rst", "admin/scenes.rst", "admin/scheduler.rst", "admin/system.rst", "admin/threads.rst", "beispiele/beispiele.rst", "beispiele/items/items.rst", "beispiele/items/items_eval_evaltrigger.rst", "beispiele/items/items_tipps_und_tricks.rst", "beispiele/knxd.rst", "beispiele/logiken/beispiel_beaufort.rst", "beispiele/logiken/beispiel_berechnung_zeitdaten.rst", "beispiele/logiken/beispiel_blinken.rst", "beispiele/logiken/beispiel_dpt2.rst", "beispiele/logiken/beispiel_icon_zenith.rst", "beispiele/logiken/beispiel_nachdimmen.rst", "beispiele/logiken/logiken.rst", "beispiele/plugins/plugin_aus_develop.rst", "beispiele/plugins/plugins.rst", "beispiele/structs/1_structs.rst", "beispiele/structs/item_strukturen_kopieren.rst", "beispiele/structs/structs.rst", "beispiele/umzug.rst", "datenschutz.rst", "dev/README.md", "dev/sample_module/README.md", "dev/sample_mqttplugin/user_doc.rst", "dev/sample_plugin/user_doc.rst", "dev/sample_smartdevice_plugin/user_doc.rst", "dev/sample_smartdevice_standalone_plugin/user_doc.rst", "dummy_for_readmes.rst", "einleitung.rst", "entwicklung/build_doc.rst", "entwicklung/core/core.rst", "entwicklung/core/core_libraries.rst", "entwicklung/core/core_shng.rst", "entwicklung/entwicklung.rst", "entwicklung/logiken/logiken.rst", "entwicklung/module/module.rst", "entwicklung/module/module_http.rst", "entwicklung/module/module_mqtt.rst", "entwicklung/plugins/async_in_plugins.rst", "entwicklung/plugins/entwicklungsrichtlinien.rst", "entwicklung/plugins/kurzanleitung/kurzanleitung.rst", "entwicklung/plugins/kurzanleitung/libraries_plugins.rst", "entwicklung/plugins/kurzanleitung/multilanguage.rst", "entwicklung/plugins/kurzanleitung/plugin_documentation_files.rst", "entwicklung/plugins/kurzanleitung/plugin_in5minutes.rst", "entwicklung/plugins/kurzanleitung/plugin_metadata.rst", "entwicklung/plugins/kurzanleitung/samplemqttplugin.rst", "entwicklung/plugins/kurzanleitung/sampleplugin.rst", "entwicklung/plugins/kurzanleitung/webinterface.rst", "entwicklung/plugins/kurzanleitung/webinterface_3rdparty_components.rst", "entwicklung/plugins/kurzanleitung/webinterface_automatic_update.rst", "entwicklung/plugins/kurzanleitung/webinterface_extend_plugin.rst", "entwicklung/plugins/kurzanleitung/webinterface_filling_webinterface.rst", "entwicklung/plugins/kurzanleitung/webinterface_multilanguage.rst", "entwicklung/plugins/kurzanleitung/webinterface_plugin_interaction.rst", "entwicklung/plugins/mqttplugin.rst", "entwicklung/plugins/plugin_checker.rst", "entwicklung/plugins/plugins.rst", "entwicklung/plugins/smartplugin.rst", "entwicklung/plugins/vorueberlegungen.rst", "entwicklung/virtual_env.rst", "faq.rst", "fehlersuche.rst", "fehlersuche_checkliste.rst", "gedankenstuetzen/admonition_arten.rst", "gedankenstuetzen/knxd_compilieren.rst", "gedankenstuetzen/tabs.rst", "genindex.rst", "ideen_kommendes_release.rst", "impressum.rst", "index.rst", "installation/anforderungen.rst", "installation/docker.rst", "installation/installation.rst", "installation/komplettanleitung/01_debian.rst", "installation/komplettanleitung/02_smarthomeng.rst", "installation/komplettanleitung/03_mosquitto.rst", "installation/komplettanleitung/04_smartvisu.rst", "installation/komplettanleitung/05_knxd.rst", "installation/komplettanleitung/06_onewire.rst", "installation/komplettanleitung/07_samba.rst", "installation/komplettanleitung/08_shng_daemon.rst", "installation/komplettanleitung/09_esphome.rst", "installation/komplettanleitung/komplettanleitung.rst", "installation/update_upgrade.rst", "konfiguration/admin_gui/admin_gui.rst", "konfiguration/admin_gui/admin_gui_items.rst", "konfiguration/admin_gui/admin_gui_plugins.rst", "konfiguration/admin_gui/admin_gui_system.rst", "konfiguration/item_structs.rst", "konfiguration/items/initiale_itemkonfiguration.rst", "konfiguration/items/items.rst", "konfiguration/items/ueberblick.rst", "konfiguration/konfiguration.rst", "konfiguration/konfiguration_backup_restore.rst", "konfiguration/konfiguration_ueberblick.rst", "konfiguration/konfigurationsdateien/holidays.rst", "konfiguration/konfigurationsdateien/items.rst", "konfiguration/konfigurationsdateien/konfigdateien.rst", "konfiguration/konfigurationsdateien/logging.rst", "konfiguration/konfigurationsdateien/logic.rst", "konfiguration/konfigurationsdateien/logics.rst", "konfiguration/konfigurationsdateien/module.rst", "konfiguration/konfigurationsdateien/plugin.rst", "konfiguration/konfigurationsdateien/scenes.rst", "konfiguration/konfigurationsdateien/smarthome.rst", "konfiguration/konfigurationsdateien/struct.rst", "konfiguration/logging.rst", "konfiguration/logging_best_practices.rst", "konfiguration/logiken.rst", "konfiguration/module/module.rst", "konfiguration/module/module_admin.rst", "konfiguration/module/module_http.rst", "konfiguration/module/module_mqtt.rst", "konfiguration/module/module_websocket.rst", "konfiguration/plugins.rst", "konfiguration/szenen.rst", "konfiguration/userfunctions.rst", "lib/config.rst", "lib/connection.rst", "lib/constants.rst", "lib/daemon.rst", "lib/db.rst", "lib/env.rst", "lib/item.rst", "lib/item_class_item.rst", "lib/item_class_items.rst", "lib/item_conversion.rst", "lib/log.rst", "lib/logic.rst", "lib/logutils.rst", "lib/metadata.rst", "lib/module.rst", "lib/network.rst", "lib/orb.rst", "lib/plugin.rst", "lib/plugin_class_plugins.rst", "lib/plugin_class_pluginwrapper.rst", "lib/scene.rst", "lib/scheduler.rst", "lib/shtime.rst", "lib/shyaml.rst", "lib/tools.rst", "lib/translation.rst", "lib/utils.rst", "logiken/logics.rst", "modules/admin/README.md", "modules/admin/websocket_admingui_requests.rst", "modules/admin/websocket_shng_requests.rst", "modules/http/README.md", "modules/mqtt/README.md", "plugins/README.md", "plugins/alexa/README.md", "plugins/alexa/nginx.md", "plugins/alexa4p3/README.md", "plugins/alexa4p3/user_doc.rst", "plugins/alexarc4shng/user_doc.rst", "plugins/apcups/user_doc.rst", "plugins/appletv/user_doc.rst", "plugins/artnet/user_doc.rst", "plugins/asterisk/user_doc.rst", "plugins/avdevice/user_doc.rst", "plugins/avm/user_doc.rst", "plugins/avm_smarthome/user_doc.rst", "plugins/blockly/user_doc.rst", "plugins/bose_soundtouch/README.md", "plugins/bose_soundtouch/user_doc.rst", "plugins/bsblan/README.md", "plugins/buderus/README.md", "plugins/buderus/URLs.md", "plugins/byd_bat/user_doc.rst", "plugins/casambi/user_doc.rst", "plugins/cli/README.md", "plugins/cli/user_doc.rst", "plugins/co2meter/README.md", "plugins/comfoair/README.md", "plugins/darksky/user_doc.rst", "plugins/dashbutton/README.md", "plugins/database/README.md", "plugins/database/user_doc.rst", "plugins/datalog/user_doc.rst", "plugins/db_addon/user_doc.rst", "plugins/deebot_ozmo/README.md", "plugins/denon/user_doc.rst", "plugins/dlms/user_doc.rst", "plugins/dmx/README.md", "plugins/dmx/user_doc.rst", "plugins/drexelundweiss/README.md", "plugins/drexelundweiss/user_doc.rst", "plugins/ebus/user_doc.rst", "plugins/enigma2/README.md", "plugins/enocean/README.md", "plugins/enocean/user_doc.rst", "plugins/epson/user_doc.rst", "plugins/eta_pu/README.md", "plugins/executor/user_doc.rst", "plugins/gpio/user_doc.rst", "plugins/harmony/README.md", "plugins/helios/README.md", "plugins/helios_tcp/user_doc.rst", "plugins/homeconnect/README.md", "plugins/homematic/README.md", "plugins/homematic/user_doc.rst", "plugins/hue/README.md", "plugins/hue2/user_doc.rst", "plugins/hue3/user_doc.rst", "plugins/husky/user_doc.rst", "plugins/husky2/user_doc.rst", "plugins/ical/README.md", "plugins/ical/user_doc.rst", "plugins/indego/README.md", "plugins/indego4shng/README.md", "plugins/indego4shng/user_doc.rst", "plugins/influxdata/README.md", "plugins/influxdb/user_doc.rst", "plugins/influxdb2/user_doc.rst", "plugins/influxdb2/user_doc/influxdb_einfuehrung.rst", "plugins/influxdb2/user_doc/influxdb_installation.rst", "plugins/influxdb2/user_doc/influxdb_konfiguration.rst", "plugins/intercom_2n/README.md", "plugins/join/user_doc.rst", "plugins/jsonread/user_doc.rst", "plugins/jvcproj/user_doc.rst", "plugins/kathrein/README.md", "plugins/knx/user_doc.rst", "plugins/kodi/user_doc.rst", "plugins/kostal/README.md", "plugins/kostalmodbus/README.md", "plugins/ksemmodbus/README.md", "plugins/lirc/user_doc.rst", "plugins/lms/user_doc.rst", "plugins/logo/README.md", "plugins/luxtronic2/README.md", "plugins/mailrcv/user_doc.rst", "plugins/mailsend/user_doc.rst", "plugins/memlog/user_doc.rst", "plugins/mieleathome/user_doc.rst", "plugins/miflora/README.md", "plugins/mikrotik/user_doc.rst", "plugins/milight/README.md", "plugins/mlgw/README.md", "plugins/modbus_tcp/user_doc.rst", "plugins/mpd/user_doc.rst", "plugins/mqtt/README.md", "plugins/mqtt/user_doc.rst", "plugins/mvg_live/README.md", "plugins/neato/README.md", "plugins/neato/user_doc.rst", "plugins/network/user_doc.rst", "plugins/nuki/README.md", "plugins/nut/README.md", "plugins/nut/user_doc.rst", "plugins/odlinfo/README.md", "plugins/onewire/user_doc.rst", "plugins/openweathermap/user_doc.rst", "plugins/operationlog/user_doc.rst", "plugins/oppo/user_doc.rst", "plugins/panasonic_ac/user_doc.rst", "plugins/philips_tv/user_doc.rst", "plugins/pioneer/user_doc.rst", "plugins/piratewthr/user_doc.rst", "plugins/plex/README.md", "plugins/pluggit/README.md", "plugins/pluggit/user_doc.rst", "plugins/prowl/user_doc.rst", "plugins/pushbullet/README.md", "plugins/pushover/README.md", "plugins/raumfeld/README.md", "plugins/raumfeld_ng/user_doc.rst", "plugins/rcs1000n/user_doc.rst", "plugins/rcswitch/README.md", "plugins/resol/user_doc.rst", "plugins/robonect/README.md", "plugins/roomba/README.md", "plugins/roomba_980/README.md", "plugins/roombapysh/README.md", "plugins/roombapysh/user_doc.rst", "plugins/rpi1wire/user_doc.rst", "plugins/rpi_info/user_doc.rst", "plugins/rrd/user_doc.rst", "plugins/rtr/README.md", "plugins/rtr2/user_doc.rst", "plugins/russound/README.md", "plugins/shelly/user_doc.rst", "plugins/shelly/user_doc/device_installation.rst", "plugins/shelly/user_doc/plugin_configuration.rst", "plugins/simulation/README.md", "plugins/simulation/user_doc.rst", "plugins/slack/README.md", "plugins/sma/README.md", "plugins/sma_em/README.md", "plugins/sma_mb/README.md", "plugins/sma_mb/user_doc.rst", "plugins/smarttv/README.md", "plugins/smartvisu/user_doc.rst", "plugins/smartvisu/user_doc/websocket_shng_requests.rst", "plugins/smartvisu/user_doc/websocket_visu_requests.rst", "plugins/sml/README.md", "plugins/sml2/user_doc.rst", "plugins/smlx/user_doc.rst", "plugins/snap7_logo/README.md", "plugins/snap7_logo/user_doc.rst", "plugins/snmp/user_doc.rst", "plugins/solarforecast/user_doc.rst", "plugins/solarlog/README.md", "plugins/solarlog/user_doc.rst", "plugins/sonos/user_doc.rst", "plugins/speech/README.md", "plugins/speech/user_doc.rst", "plugins/sqlite_visu2_8/README.md", "plugins/squeezebox/README.md", "plugins/squeezebox/user_doc.rst", "plugins/stateengine/user_doc.rst", "plugins/stateengine/user_doc/01_allgemein.rst", "plugins/stateengine/user_doc/02_konfiguration.rst", "plugins/stateengine/user_doc/03_regelwerk.rst", "plugins/stateengine/user_doc/04_zustand.rst", "plugins/stateengine/user_doc/05_bedingungen.rst", "plugins/stateengine/user_doc/06_aktionen.rst", "plugins/stateengine/user_doc/07_zeitpunkt.rst", "plugins/stateengine/user_doc/08_beispiel.rst", "plugins/stateengine/user_doc/09_vorlagen.rst", "plugins/stateengine/user_doc/10_funktionen_variablen.rst", "plugins/stateengine/user_doc/11_sonderzustaende.rst", "plugins/stateengine/user_doc/12_aktioneneinzeln.rst", "plugins/stateengine/user_doc/13_sonstiges.rst", "plugins/systemair/README.md", "plugins/tankerkoenig/README.md", "plugins/tankerkoenig/user_doc.rst", "plugins/tasmota/user_doc.rst", "plugins/telegram/user_doc.rst", "plugins/text_display/README.md", "plugins/text_display/user_doc.rst", "plugins/thz/README.md", "plugins/timmy/README.md", "plugins/timmy/user_doc.rst", "plugins/traffic/README.md", "plugins/trovis557x/README.md", "plugins/unifi/user_doc.rst", "plugins/uzsu/user_doc.rst", "plugins/vacations/user_doc.rst", "plugins/vicare/user_doc.rst", "plugins/viessmann/README.md", "plugins/viessmann/user_doc.rst", "plugins/visu_smartvisu/README.md", "plugins/visu_smartvisu/developer_doc.md", "plugins/visu_smartvisu/user_doc.rst", "plugins/visu_websocket/README.md", "plugins/visu_websocket/developer_doc.rst", "plugins/visu_websocket/user_doc.rst", "plugins/volkszaehler/README.md", "plugins/webpush/user_doc.rst", "plugins/webservices/user_doc.rst", "plugins/wettercom/README.md", "plugins/withings_health/user_doc.rst", "plugins/wol/user_doc.rst", "plugins/wunderground/README.md", "plugins/wunderground/README_OLD.md", "plugins/wunderground/user_doc.rst", "plugins/xiaomi_vac/user_doc.rst", "plugins/xmpp/README.md", "plugins/yamaha/user_doc.rst", "plugins/yamahayxc/user_doc.rst", "plugins/zigbee2mqtt/user_doc.rst", "plugins/zwave/README.md", "plugins_all.rst", "plugins_doc/config/alexa.rst", "plugins_doc/config/alexa4p3.rst", "plugins_doc/config/alexarc4shng.rst", "plugins_doc/config/apcups.rst", "plugins_doc/config/appletv.rst", "plugins_doc/config/artnet.rst", "plugins_doc/config/asterisk.rst", "plugins_doc/config/avdevice.rst", "plugins_doc/config/avm.rst", "plugins_doc/config/avm_smarthome.rst", "plugins_doc/config/beolink.rst", "plugins_doc/config/blockly.rst", "plugins_doc/config/bose_soundtouch.rst", "plugins_doc/config/bsblan.rst", "plugins_doc/config/buderus.rst", "plugins_doc/config/byd_bat.rst", "plugins_doc/config/casambi.rst", "plugins_doc/config/cli.rst", "plugins_doc/config/co2meter.rst", "plugins_doc/config/comfoair.rst", "plugins_doc/config/darksky.rst", "plugins_doc/config/dashbutton.rst", "plugins_doc/config/database.rst", "plugins_doc/config/datalog.rst", "plugins_doc/config/db_addon.rst", "plugins_doc/config/deebot_ozmo.rst", "plugins_doc/config/denon.rst", "plugins_doc/config/dlms.rst", "plugins_doc/config/dmx.rst", "plugins_doc/config/drexelundweiss.rst", "plugins_doc/config/dummy_config.rst", "plugins_doc/config/ebus.rst", "plugins_doc/config/enigma2.rst", "plugins_doc/config/enocean.rst", "plugins_doc/config/epson.rst", "plugins_doc/config/eta_pu.rst", "plugins_doc/config/executor.rst", "plugins_doc/config/garminconnect.rst", "plugins_doc/config/gpio.rst", "plugins_doc/config/harmony.rst", "plugins_doc/config/helios.rst", "plugins_doc/config/helios_tcp.rst", "plugins_doc/config/homeconnect.rst", "plugins_doc/config/homematic.rst", "plugins_doc/config/hue.rst", "plugins_doc/config/hue2.rst", "plugins_doc/config/hue3.rst", "plugins_doc/config/husky.rst", "plugins_doc/config/husky2.rst", "plugins_doc/config/ical.rst", "plugins_doc/config/indego.rst", "plugins_doc/config/indego4shng.rst", "plugins_doc/config/influxdata.rst", "plugins_doc/config/influxdb.rst", "plugins_doc/config/influxdb2.rst", "plugins_doc/config/intercom_2n.rst", "plugins_doc/config/join.rst", "plugins_doc/config/jsonread.rst", "plugins_doc/config/jvcproj.rst", "plugins_doc/config/kathrein.rst", "plugins_doc/config/knx.rst", "plugins_doc/config/kodi.rst", "plugins_doc/config/kostal.rst", "plugins_doc/config/kostalmodbus.rst", "plugins_doc/config/ksemmodbus.rst", "plugins_doc/config/leveljet.rst", "plugins_doc/config/lirc.rst", "plugins_doc/config/lms.rst", "plugins_doc/config/logo.rst", "plugins_doc/config/luxtronic2.rst", "plugins_doc/config/mailrcv.rst", "plugins_doc/config/mailsend.rst", "plugins_doc/config/memlog.rst", "plugins_doc/config/mieleathome.rst", "plugins_doc/config/miflora.rst", "plugins_doc/config/mikrotik.rst", "plugins_doc/config/milight.rst", "plugins_doc/config/mlgw.rst", "plugins_doc/config/modbus_tcp.rst", "plugins_doc/config/mpd.rst", "plugins_doc/config/mqtt.rst", "plugins_doc/config/mvg_live.rst", "plugins_doc/config/neato.rst", "plugins_doc/config/network.rst", "plugins_doc/config/nuki.rst", "plugins_doc/config/nut.rst", "plugins_doc/config/odlinfo.rst", "plugins_doc/config/onewire.rst", "plugins_doc/config/openweathermap.rst", "plugins_doc/config/operationlog.rst", "plugins_doc/config/oppo.rst", "plugins_doc/config/panasonic_ac.rst", "plugins_doc/config/philips_tv.rst", "plugins_doc/config/pioneer.rst", "plugins_doc/config/piratewthr.rst", "plugins_doc/config/plex.rst", "plugins_doc/config/pluggit.rst", "plugins_doc/config/prowl.rst", "plugins_doc/config/pushbullet.rst", "plugins_doc/config/pushover.rst", "plugins_doc/config/raumfeld.rst", "plugins_doc/config/raumfeld_ng.rst", "plugins_doc/config/rcs1000n.rst", "plugins_doc/config/rcswitch.rst", "plugins_doc/config/resol.rst", "plugins_doc/config/robonect.rst", "plugins_doc/config/roomba.rst", "plugins_doc/config/roomba_980.rst", "plugins_doc/config/roombapysh.rst", "plugins_doc/config/rpi1wire.rst", "plugins_doc/config/rpi_info.rst", "plugins_doc/config/rrd.rst", "plugins_doc/config/rtr.rst", "plugins_doc/config/rtr2.rst", "plugins_doc/config/russound.rst", "plugins_doc/config/shelly.rst", "plugins_doc/config/simulation.rst", "plugins_doc/config/slack.rst", "plugins_doc/config/sma.rst", "plugins_doc/config/sma_em.rst", "plugins_doc/config/sma_mb.rst", "plugins_doc/config/smarttv.rst", "plugins_doc/config/smartvisu.rst", "plugins_doc/config/sml.rst", "plugins_doc/config/sml2.rst", "plugins_doc/config/smlx.rst", "plugins_doc/config/snap7_logo.rst", "plugins_doc/config/snmp.rst", "plugins_doc/config/solarforecast.rst", "plugins_doc/config/solarlog.rst", "plugins_doc/config/sonos.rst", "plugins_doc/config/speech.rst", "plugins_doc/config/sqlite_visu2_8.rst", "plugins_doc/config/squeezebox.rst", "plugins_doc/config/stateengine.rst", "plugins_doc/config/systemair.rst", "plugins_doc/config/tankerkoenig.rst", "plugins_doc/config/tasmota.rst", "plugins_doc/config/telegram.rst", "plugins_doc/config/text_display.rst", "plugins_doc/config/thz.rst", "plugins_doc/config/timmy.rst", "plugins_doc/config/traffic.rst", "plugins_doc/config/trovis557x.rst", "plugins_doc/config/unifi.rst", "plugins_doc/config/uzsu.rst", "plugins_doc/config/vacations.rst", "plugins_doc/config/vicare.rst", "plugins_doc/config/viessmann.rst", "plugins_doc/config/visu_smartvisu.rst", "plugins_doc/config/visu_websocket.rst", "plugins_doc/config/volkszaehler.rst", "plugins_doc/config/waterkotte.rst", "plugins_doc/config/webpush.rst", "plugins_doc/config/webservices.rst", "plugins_doc/config/wettercom.rst", "plugins_doc/config/withings_health.rst", "plugins_doc/config/wol.rst", "plugins_doc/config/wunderground.rst", "plugins_doc/config/xiaomi_vac.rst", "plugins_doc/config/xmpp.rst", "plugins_doc/config/yamaha.rst", "plugins_doc/config/yamahayxc.rst", "plugins_doc/config/zigbee2mqtt.rst", "plugins_doc/config/zwave.rst", "plugins_doc/dummy_all.rst", "plugins_doc/dummy_gateway.rst", "plugins_doc/dummy_interface.rst", "plugins_doc/dummy_protocol.rst", "plugins_doc/dummy_system.rst", "plugins_doc/dummy_web.rst", "plugins_doc/plugins_all.rst", "plugins_doc/plugins_all_header.rst", "plugins_doc/plugins_footer.rst", "plugins_doc/plugins_gateway.rst", "plugins_doc/plugins_gateway_header.rst", "plugins_doc/plugins_interface.rst", "plugins_doc/plugins_interface_header.rst", "plugins_doc/plugins_protocol.rst", "plugins_doc/plugins_protocol_header.rst", "plugins_doc/plugins_system.rst", "plugins_doc/plugins_system_header.rst", "plugins_doc/plugins_unclassified.rst", "plugins_doc/plugins_unclassified_header.rst", "plugins_doc/plugins_web.rst", "plugins_doc/plugins_web_header.rst", "referenz/APIs.rst", "referenz/items/attributes_relative_referenzen.rst", "referenz/items/funktionen.rst", "referenz/items/item_zugriff.rst", "referenz/items/items.rst", "referenz/items/methoden.rst", "referenz/items/plugin_attribute.rst", "referenz/items/properties.rst", "referenz/items/standard_attribute/autotimer.rst", "referenz/items/standard_attribute/crontab.rst", "referenz/items/standard_attribute/cycle.rst", "referenz/items/standard_attribute/enforce_change.rst", "referenz/items/standard_attribute/enforce_updates.rst", "referenz/items/standard_attribute/eval.rst", "referenz/items/standard_attribute/hysteresis.rst", "referenz/items/standard_attribute/log_change.rst", "referenz/items/standard_attribute/on_update.rst", "referenz/items/standard_attribute/standard_attribute.rst", "referenz/items/standard_attribute/struct.rst", "referenz/items/standard_attribute/type.rst", "referenz/items/systemitems.rst", "referenz/libraries_plugins_logics.rst", "referenz/logging/logging.rst", "referenz/logging/logging_filter.rst", "referenz/logging/logging_formatter.rst", "referenz/logging/logging_handler.rst", "referenz/logging/logging_textformatierung.rst", "referenz/logiken/logiken.rst", "referenz/logiken/logiken_exceptions.rst", "referenz/logiken/logiken_funktionen.rst", "referenz/logiken/logiken_grundstruktur.rst", "referenz/logiken/logiken_items.rst", "referenz/logiken/logiken_konfiguration.rst", "referenz/logiken/logiken_logging.rst", "referenz/logiken/logiken_logic_objekt.rst", "referenz/logiken/logiken_mqtt.rst", "referenz/logiken/logiken_persistente_vars.rst", "referenz/logiken/logiken_plugin_funktionen.rst", "referenz/logiken/logiken_python_module.rst", "referenz/logiken/logiken_smarthomeng_methoden.rst", "referenz/logiken/logiken_standardparameter.rst", "referenz/metadata/item_attribute_prefixes.rst", "referenz/metadata/item_attributes.rst", "referenz/metadata/item_structs.rst", "referenz/metadata/logic_parameters.rst", "referenz/metadata/metadata.rst", "referenz/metadata/module_global.rst", "referenz/metadata/parameter_keys.rst", "referenz/metadata/parameters.rst", "referenz/metadata/plugin_functions.rst", "referenz/metadata/plugin_global.rst", "referenz/module/module.rst", "referenz/module/module_admin.rst", "referenz/module/module_http.rst", "referenz/module/module_metadata.rst", "referenz/module/module_mqtt.rst", "referenz/module/module_websocket.rst", "referenz/netzwerk.rst", "referenz/plugins/asyncio_support.rst", "referenz/plugins/plugin_metadata.rst", "referenz/plugins/plugin_typen/mqttplugin_class.rst", "referenz/plugins/plugin_typen/plugin_typen.rst", "referenz/plugins/plugin_typen/smartdeviceplugin.rst", "referenz/plugins/plugin_typen/smartdeviceplugin_class.rst", "referenz/plugins/plugin_typen/smartplugin_class.rst", "referenz/plugins/plugin_user_doc.rst", "referenz/plugins/plugins.rst", "referenz/python/python.rst", "referenz/python/python_installation.rst", "referenz/python/support_skripte.rst", "referenz/python/virtual_environments.rst", "referenz/referenz.rst", "referenz/smarthomeng/ablauf_startup.rst", "referenz/smarthomeng/feiertage.rst", "referenz/smarthomeng/feiertage_datum_zeit.rst", "referenz/smarthomeng/kommandozeilen_optionen.rst", "referenz/smarthomeng/methoden_sonne_mond.rst", "referenz/smarthomeng/smarthomeng.rst", "referenz/userfunctions/userfunctions.rst", "release/1_00_release_sh_py.rst", "release/1_01_and_newer.rst", "release/1_06.rst", "release/1_06_1.rst", "release/1_07.rst", "release/1_07_1.rst", "release/1_07_2.rst", "release/1_08.rst", "release/1_08_1.rst", "release/1_08_2.rst", "release/1_09.rst", "release/1_09_1.rst", "release/1_09_2.rst", "release/1_09_3.rst", "release/1_09_4.rst", "release/1_09_5.rst", "release/1_10.rst", "release/1_10_x.rst", "release/release.rst", "release/smarthome_py/0_1.rst", "release/smarthome_py/0_2.rst", "release/smarthome_py/0_3.rst", "release/smarthome_py/0_4.rst", "release/smarthome_py/0_5.rst", "release/smarthome_py/0_6.rst", "release/smarthome_py/0_7.rst", "release/smarthome_py/0_8.rst", "release/smarthome_py/0_9.rst", "release/smarthome_py/1_0.rst", "release/smarthomeng_older/1_01.rst", "release/smarthomeng_older/1_02.rst", "release/smarthomeng_older/1_03.rst", "release/smarthomeng_older/1_04.rst", "release/smarthomeng_older/1_04_1.rst", "release/smarthomeng_older/1_04_2.rst", "release/smarthomeng_older/1_05.rst", "release/smarthomeng_older/1_05_1.rst", "tools/tools.rst", "tools/tools_backup_restore.rst", "tools/tools_build_requirements.rst", "tools/tools_conf_to_yaml_converter.rst", "tools/tools_getshngpid.rst", "tools/tools_plugin_metadata_checker.rst", "visualisierung/automatic_generation.rst", "visualisierung/beispiel.rst", "visualisierung/changes_in_1.8.rst", "visualisierung/install_widgets.rst", "visualisierung/item_attributes.rst", "visualisierung/plugin_widgets.rst", "visualisierung/reverse_proxy.rst", "visualisierung/visualisierung.rst", "visualisierung/websocket_communication.rst", "vorlagen/1_x_vorlage_Release_Notes.rst", "was_ist_neu.rst", "was_war_neu.rst"], "titles": ["Administrations-Interface Update", "Dienste", "Items", "Logiken", "Logs", "Plugins", "Szenen", "Scheduler", "System", "Threads", "Beispiele, Tipps & Tricks Update", "Items", "eval und eval_trigger", "Tipps und Tricks Update", "knxd: Hinweise und Konfiguration", "Berechnung der Windst\u00e4rke", "Berechnung von Zeitdaten", "Blinken per Logik", "Darstellung von DPT 2 Werten", "Steuerung des dyn.zenith-Icons", "Nachdimmen von Leuchten", "Logiken", "Ein Plugin aus develop installieren", "Plugins", "structs (Item Strukturen)", "Item Strukturen bequem kopieren", "Structs", "SmartHomeNG umziehen Neu", "Datenschutzerkla\u0308rung", "Plugin development guidelines", "Module sample", "Mqtt-Pluginname (in Kleinbuchstaben)", "Pluginname (in Kleinbuchstaben)", "Sample Plugin <- hier den Namen des Plugins einsetzen", "Sample Plugin <- hier den Namen des Plugins einsetzen", "<no title>", "Einleitung", "Bau der Dokumentation", "Entwicklung des Core", "Programm Module", "Der Core von SmartHomeNG", "Entwicklung", "Logiken under construction", "Module", "Module http", "Module mqtt", "AsyncIO in Plugins neu", "Entwicklungsrichtlinien under construction", "Kurzanleitung update", "Programm Module zur Nutzung in Plugins", "Unterst\u00fctzung mehrerer Sprachen Update", "Plugin-Dokumentation", "In wenigen Minuten zum eigenen Plugin", "Plugin-Metadata update", "Beispielplugin mit MQTT-Unterst\u00fctzung", "Beispielplugin update", "Webinterface update", "Komponenten von Drittanbietern f\u00fcr Webinterfaces", "Automatische Updates der Daten im Webinterface new", "Erweitern eines bestehenden Plugins", "Das Webinterface mit Inhalt f\u00fcllen", "Unterst\u00fctzung mehrerer Sprachen new", "Interaktion des Webinterface mit dem Plugin new", "Class MqttPlugin", "Plugin-Checker neu", "Plugins Update", "Class SmartPlugin", "Vor\u00fcberlegungen", "Virtuelle Umgebungen", "FAQ - H\u00e4ufig gestellte Fragen", "Fehlersuche", "Checkliste f\u00fcr die Fehlersuche", "Admonition Arten", "Alternativ knxd compilieren", "Verwendung von Tabs", "Stichwort Verzeichnis", "Ideen f\u00fcr das Release 1.9", "Impressum", "SmartHomeNG", "Hard- u. Software Anforderungen", "Installation \u00fcber Docker", "Installation", "Debian Linux installieren", "SmartHomeNG installieren", "MQTT Broker installieren", "smartVISU installieren", "knxd installieren", "Onewire installieren", "Samba installieren", "SmartHomeNG als Dienst update", "ESPHome Dashboard new", "Komplettanleitung", "Update von einer \u00e4lteren Version", "Konfiguration \u00fcber die GUI", "Konfiguration von Items", "Konfiguration von Plugins", "Systemkonfiguration", "structs (Item Strukturen)", "Initiale Item-Konfiguration", "Items", "\u00dcberblick", "Konfiguration Update", "Konfiguration Sichern und Wiederherstellen", "Allgemeines zur Konfiguration", "holidays.yaml", "items/*.yaml", "Konfiguration \u00fcber Dateien", "logging.yaml", "logic.yaml", "logics/*.py", "module.yaml", "plugin.yaml", "scenes/*.yaml", "smarthome.yaml", "struct.yaml und struct_*.yaml", "Logging", "Logging - Best Practices", "Logiken", "Module", "Module admin", "Module http", "Module mqtt", "Module websocket Neu", "Plugins", "Szenen", "Userfunctions", "lib.config", "lib.connection", "lib.constants", "lib.daemon", "lib.db", "lib.env", "Items-API", "Class Item", "Class Items", "lib.item_conversion", "lib.log", "Logics-API", "lib.logutils", "lib.metadata", "lib.module", "lib.network", "lib.orb", "Plugins-API", "Class Plugins", "Class PluginWrapper", "lib.scene", "Scheduler-API", "Shtime-API", "lib.shyaml", "lib.tools", "lib.translation", "lib.utils", "Logiken", "Module admin (README)", "Requests von der Admin GUI an SmartHomeNG", "Requests von SmartHomeNG an die smartVISU", "Module http (README)", "Module mqtt (README)", "SmartHomeNG Plugins", "Alexa", "NGINX", "alexa4p3", "alexa4p3", "alexarc4shng", "apcups", "appletv", "artnet", "asterisk", "avdevice", "avm", "avm_smarthome", "blockly", "Bose Soundtouch Plugin", "bose_soundtouch", "Plugin for BSB-Lan-Adapter", "Buderus Plugin", "REST URLs KM200", "byd_bat", "casambi", "CLI", "cli", "CO2Meter", "ComfoAir", "darksky", "Dashbutton Plugin", "Database", "database", "datalog", "db_addon", "Plugin for Deebot Ozmo 920 / 950 / 960", "denon", "dlms", "DMX", "dmx", "Drexel & Weiss", "drexelundweiss", "ebus", "Enigma2", "Items", "enocean", "epson", "eta_pu - ETA Pellet Unit PU", "executor", "gpio", "Harmony Hub Plugin", "helios - Helios ECx00Pro / Vallox xx SE Plugin", "helios_tcp", "HomeConnect", "homematic", "homematic", "Phillips HUE", "hue2", "hue3", "husky", "husky2", "iCal", "ical", "indego Plugin", "Indego4shNG", "indego4shng", "influxdata", "influxdb", "influxdb2", "InfluxDB Einf\u00fchrung", "InfluxDB Installation", "InfluxDB Konfiguration", "Intercom-2N Plugin", "join", "jsonread", "jvcproj", "kathrein", "knx", "kodi", "kostal", "Modbus Plugin for Kostal inverters", "Modbus Plugin for Kostal Smart Energy Meter", "lirc", "lms", "logo", "luxtronic2", "mailrcv", "mailsend", "memlog", "mieleathome", "miflora", "mikrotik", "milight", "mlgw Plugin - Bang & Olufsen Masterlink Gateway", "modbus_tcp", "mpd", "Sample Plugin <- put the name of your plugin here", "mqtt", "mvg_live - MVG Live", "Neato/Vorwerk Vacuum Robot", "neato", "network", "Nuki", "NUT - Network UPS Tools plugin", "nut", "ODLInfo", "onewire", "openweathermap", "operationlog", "oppo", "panasonic_ac", "philips_tv", "pioneer", "piratewthr", "plex", "pluggit", "pluggit", "prowl", "Pushbullet", "Pushover", "Raumfeld", "raumfeld_ng", "rcs1000n", "RCswitch", "resol", "Robonect Plugin", "Roomba", "roomba_980", "roombapysh", "Roomba f\u00fcr SmartHomeNG", "rpi1wire", "rpi_info", "rrd", "RTR plug-in", "rtr2", "Russound", "shelly", "Shelly Device in Betrieb nehmen", "Konfiguration des Plugins", "Simulation", "simulation", "smarthome-slack", "SMA", "SMA-EM Plugin", "<no title>", "sma_mb", "SmartTV", "smartvisu", "Requests von SmartHomeNG an die smartVISU", "Requests von der smartVISU an SmartHomeNG", "Sml", "sml2", "smlx", "snap7_logo", "snap7_logo", "snmp", "solarforecast", "Solarlog", "solarlog", "sonos", "Speech", "speech", "SQLite (for SmartVisu >= 2.8)", "Squeezebox", "squeezebox", "stateengine", "Allgemein", "Konfiguration", "Regelwerk-Item", "Zustand-Item", "Bedingungen", "Aktionen", "Ausf\u00fchrungszeitpunkt", "Beispiel", "Zustand-Templates", "Funktionen und Variablen", "Besondere Zust\u00e4nde", "Aktionen - einzeln", "Sonstiges", "Systemair", "TankerKoenig", "tankerkoenig", "tasmota", "telegram", "text_display", "text_display", "THZ", "Timmy Plugin for SmarthomeNG", "timmy", "Traffic", "<no title>", "unifi", "uzsu", "vacations", "vicare", "viessmann", "viessmann", "Visualisation (smartVISU support)", "visu_smartvisu", "visu_smartvisu", "Visualisation (Websocket Protocol)", "visu_websocket", "visu_websocket", "Volkszaehler Plugin", "webpush", "webservices", "wettercom Plugin", "withings_health", "wol", "wunderground", "Wunderground", "wunderground", "xiaomi_vac", "XMPP", "yamaha", "yamahayxc", "zigbee2mqtt", "<no title>", "Plugins", "Plugin \u201aalexa\u2018 Konfiguration", "Plugin \u201aalexa4p3\u2018 Konfiguration", "Plugin \u201aalexarc4shng\u2018 Konfiguration", "Plugin \u201aapcups\u2018 Konfiguration", "Plugin \u201aappletv\u2018 Konfiguration", "Plugin \u201aartnet\u2018 Konfiguration", "Plugin \u201aasterisk\u2018 Konfiguration", "Plugin \u201aavdevice\u2018 Konfiguration", "Plugin \u201aavm\u2018 Konfiguration", "Plugin \u201aavm_smarthome\u2018 Konfiguration", "Plugin \u201abeolink\u2018 Konfiguration", "Plugin \u201ablockly\u2018 Konfiguration", "Plugin \u201abose_soundtouch\u2018 Konfiguration", "Plugin \u201absblan\u2018 Konfiguration", "Plugin \u201abuderus\u2018 Konfiguration", "Plugin \u201abyd_bat\u2018 Konfiguration", "Plugin \u201acasambi\u2018 Konfiguration", "Plugin \u201acli\u2018 Konfiguration", "Plugin \u201aco2meter\u2018 Konfiguration", "Plugin \u201acomfoair\u2018 Konfiguration", "Plugin \u201adarksky\u2018 Konfiguration", "Plugin \u201adashbutton\u2018 Konfiguration", "Plugin \u201adatabase\u2018 Konfiguration", "Plugin \u201adatalog\u2018 Konfiguration", "Plugin \u201adb_addon\u2018 Konfiguration", "Plugin \u201adeebot_ozmo\u2018 Konfiguration", "Plugin \u201adenon\u2018 Konfiguration", "Plugin \u201adlms\u2018 Konfiguration", "Plugin \u201admx\u2018 Konfiguration", "Plugin \u201adrexelundweiss\u2018 Konfiguration", "<no title>", "Plugin \u201aebus\u2018 Konfiguration", "Plugin \u201aenigma2\u2018 Konfiguration", "Plugin \u201aenocean\u2018 Konfiguration", "Plugin \u201aepson\u2018 Konfiguration", "Plugin \u201aeta_pu\u2018 Konfiguration", "Plugin \u201aexecutor\u2018 Konfiguration", "Plugin \u201agarminconnect\u2018 Konfiguration", "Plugin \u201agpio\u2018 Konfiguration", "Plugin \u201aharmony\u2018 Konfiguration", "Plugin \u201ahelios\u2018 Konfiguration", "Plugin \u201ahelios_tcp\u2018 Konfiguration", "Plugin \u201ahomeconnect\u2018 Konfiguration", "Plugin \u201ahomematic\u2018 Konfiguration", "Plugin \u201ahue\u2018 Konfiguration", "Plugin \u201ahue2\u2018 Konfiguration", "Plugin \u201ahue3\u2018 Konfiguration", "Plugin \u201ahusky\u2018 Konfiguration", "Plugin \u201ahusky2\u2018 Konfiguration", "Plugin \u201aical\u2018 Konfiguration", "Plugin \u201aindego\u2018 Konfiguration", "Plugin \u201aindego4shng\u2018 Konfiguration", "Plugin \u201ainfluxdata\u2018 Konfiguration", "Plugin \u201ainfluxdb\u2018 Konfiguration", "Plugin \u201ainfluxdb2\u2018 Konfiguration", "Plugin \u201aintercom_2n\u2018 Konfiguration", "Plugin \u201ajoin\u2018 Konfiguration", "Plugin \u201ajsonread\u2018 Konfiguration", "Plugin \u201ajvcproj\u2018 Konfiguration", "Plugin \u201akathrein\u2018 Konfiguration", "Plugin \u201aknx\u2018 Konfiguration", "Plugin \u201akodi\u2018 Konfiguration", "Plugin \u201akostal\u2018 Konfiguration", "Plugin \u201akostalmodbus\u2018 Konfiguration", "Plugin \u201aksemmodbus\u2018 Konfiguration", "Plugin \u201aleveljet\u2018 Konfiguration", "Plugin \u201alirc\u2018 Konfiguration", "Plugin \u201alms\u2018 Konfiguration", "Plugin \u201alogo\u2018 Konfiguration", "Plugin \u201aluxtronic2\u2018 Konfiguration", "Plugin \u201amailrcv\u2018 Konfiguration", "Plugin \u201amailsend\u2018 Konfiguration", "Plugin \u201amemlog\u2018 Konfiguration", "Plugin \u201amieleathome\u2018 Konfiguration", "Plugin \u201amiflora\u2018 Konfiguration", "Plugin \u201amikrotik\u2018 Konfiguration", "Plugin \u201amilight\u2018 Konfiguration", "Plugin \u201amlgw\u2018 Konfiguration", "Plugin \u201amodbus_tcp\u2018 Konfiguration", "Plugin \u201ampd\u2018 Konfiguration", "Plugin \u201amqtt\u2018 Konfiguration", "Plugin \u201amvg_live\u2018 Konfiguration", "Plugin \u201aneato\u2018 Konfiguration", "Plugin \u201anetwork\u2018 Konfiguration", "Plugin \u201anuki\u2018 Konfiguration", "Plugin \u201anut\u2018 Konfiguration", "Plugin \u201aodlinfo\u2018 Konfiguration", "Plugin \u201aonewire\u2018 Konfiguration", "Plugin \u201aopenweathermap\u2018 Konfiguration", "Plugin \u201aoperationlog\u2018 Konfiguration", "Plugin \u201aoppo\u2018 Konfiguration", "Plugin \u201apanasonic_ac\u2018 Konfiguration", "Plugin \u201aphilips_tv\u2018 Konfiguration", "Plugin \u201apioneer\u2018 Konfiguration", "Plugin \u201apiratewthr\u2018 Konfiguration", "Plugin \u201aplex\u2018 Konfiguration", "Plugin \u201apluggit\u2018 Konfiguration", "Plugin \u201aprowl\u2018 Konfiguration", "Plugin \u201apushbullet\u2018 Konfiguration", "Plugin \u201apushover\u2018 Konfiguration", "Plugin \u201araumfeld\u2018 Konfiguration", "Plugin \u201araumfeld_ng\u2018 Konfiguration", "Plugin \u201arcs1000n\u2018 Konfiguration", "Plugin \u201arcswitch\u2018 Konfiguration", "Plugin \u201aresol\u2018 Konfiguration", "Plugin \u201arobonect\u2018 Konfiguration", "Plugin \u201aroomba\u2018 Konfiguration", "Plugin \u201aroomba_980\u2018 Konfiguration", "Plugin \u201aroombapysh\u2018 Konfiguration", "Plugin \u201arpi1wire\u2018 Konfiguration", "Plugin \u201arpi_info\u2018 Konfiguration", "Plugin \u201arrd\u2018 Konfiguration", "Plugin \u201artr\u2018 Konfiguration", "Plugin \u201artr2\u2018 Konfiguration", "Plugin \u201arussound\u2018 Konfiguration", "Plugin \u201ashelly\u2018 Konfiguration", "Plugin \u201asimulation\u2018 Konfiguration", "Plugin \u201aslack\u2018 Konfiguration", "Plugin \u201asma\u2018 Konfiguration", "Plugin \u201asma_em\u2018 Konfiguration", "Plugin \u201asma_mb\u2018 Konfiguration", "Plugin \u201asmarttv\u2018 Konfiguration", "Plugin \u201asmartvisu\u2018 Konfiguration", "Plugin \u201asml\u2018 Konfiguration", "Plugin \u201asml2\u2018 Konfiguration", "Plugin \u201asmlx\u2018 Konfiguration", "Plugin \u201asnap7_logo\u2018 Konfiguration", "Plugin \u201asnmp\u2018 Konfiguration", "Plugin \u201asolarforecast\u2018 Konfiguration", "Plugin \u201asolarlog\u2018 Konfiguration", "Plugin \u201asonos\u2018 Konfiguration", "Plugin \u201aspeech\u2018 Konfiguration", "Plugin \u201asqlite_visu2_8\u2018 Konfiguration", "Plugin \u201asqueezebox\u2018 Konfiguration", "Plugin \u201astateengine\u2018 Konfiguration", "Plugin \u201asystemair\u2018 Konfiguration", "Plugin \u201atankerkoenig\u2018 Konfiguration", "Plugin \u201atasmota\u2018 Konfiguration", "Plugin \u201atelegram\u2018 Konfiguration", "Plugin \u201atext_display\u2018 Konfiguration", "Plugin \u201athz\u2018 Konfiguration", "Plugin \u201atimmy\u2018 Konfiguration", "Plugin \u201atraffic\u2018 Konfiguration", "Plugin \u201atrovis557x\u2018 Konfiguration", "Plugin \u201aunifi\u2018 Konfiguration", "Plugin \u201auzsu\u2018 Konfiguration", "Plugin \u201avacations\u2018 Konfiguration", "Plugin \u201avicare\u2018 Konfiguration", "Plugin \u201aviessmann\u2018 Konfiguration", "Plugin \u201avisu_smartvisu\u2018 Konfiguration", "Plugin \u201avisu_websocket\u2018 Konfiguration", "Plugin \u201avolkszaehler\u2018 Konfiguration", "Plugin \u201awaterkotte\u2018 Konfiguration", "Plugin \u201awebpush\u2018 Konfiguration", "Plugin \u201awebservices\u2018 Konfiguration", "Plugin \u201awettercom\u2018 Konfiguration", "Plugin \u201awithings_health\u2018 Konfiguration", "Plugin \u201awol\u2018 Konfiguration", "Plugin \u201awunderground\u2018 Konfiguration", "Plugin \u201axiaomi_vac\u2018 Konfiguration", "Plugin \u201axmpp\u2018 Konfiguration", "Plugin \u201ayamaha\u2018 Konfiguration", "Plugin \u201ayamahayxc\u2018 Konfiguration", "Plugin \u201azigbee2mqtt\u2018 Konfiguration", "Plugin \u201azwave\u2018 Konfiguration", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "Alle Plugins", "Alle Plugins", "<no title>", "Gateway Plugins", "Gateway Plugins", "Interface Plugins", "Interface Plugins", "Protokoll Plugins", "Protokoll Plugins", "System Plugins", "System Plugins", "Nicht klassifizierte Plugins", "Nicht klassifizierte Plugins", "Web/Cloud Plugins", "Web/Cloud Plugins", "APIs von SmartHomeNG", "Relative Item Referenzen", "Funktionen eines Items", "Zugriff auf die Werte von Items", "Items", "Methoden zum Zugriff auf Items", "Plugin-spezifische Attribute", "Properties eines Items", "autotimer", "crontab Update", "cycle", "enforce_change", "enforce_updates", "eval und eval_trigger", "Hysterese", "log_change und log_text", "on_update und on_change", "Standard Attribute Update", "struct", "type", "SmartHomeNG Items", "Libraries f\u00fcr Plugins und Logiken", "Logging", "Logging Filter", "Logging Formatter", "Logging Handler", "Text Formatierung beim Logging", "Logiken", "Exceptions", "Funktionen und Klassen in Logiken", "Grundstruktur einer Logik", "Zugriff auf Items", "Logik Konfiguration", "Logging in Logiken", "Die Objekte logic und logics", "Nutzung von MQTT in Logiken", "Persistente Variablen und Objekte", "Nutzung von Plugin Funktionen", "Bereits geladene Python Module", "SmartHomeNG Methoden", "Standardparameter", "item_attribute_prefixes", "item_attributes", "item_structs", "logic_parameters", "Metadaten", "module", "<no title>", "parameters", "plugin_functions", "plugin", "Module", "Modul admin", "Modul http", "Metadaten f\u00fcr Module", "Modul mqtt", "Module websocket", "Netzwerk", "asyncio Unterst\u00fctzung in Plugins Neu", "Metadaten f\u00fcr Plugins", "Class MqttPlugin", "Plugin Typen", "Plugin", "Class SmartDevicePlugin", "Class SmartPlugin", "Dokumentation des Plugins", "Plugins Update", "Python Environment Update", "Python Version Installieren Neu", "Support Skripte f\u00fcr SmartHomeNG", "Virtuelle Python Environments Update", "Referenz Update", "Ablauf des Starts von SmartHomeNG", "Feiertage", "Feiertage, Daten und Zeiten", "Kommandozeilen-Optionen", "Astronomie (Sonne und Mond)", "SmartHomeNG (der Core)", "Userfunctions", "Release 1.0 und davor", "Release 1.1 bis 1.5", "Release 1.6 - 11. Mai 2019", "Release 1.6.1 - 10. August 2019", "Release 1.7 - 6. April 2020", "Release 1.7.1 - 14. April 2020", "Release 1.7.2 - 23. Juni 2020", "Release 1.8 - 15. Januar 2021", "Release 1.8.1 - 24. Januar 2021", "Release 1.8.2 - 21. Februar 2021", "Release 1.9 - 28. Dezember 2021", "Release 1.9.1 - 13. Feb 2022", "Release 1.9.2 - 2. Mai 2022", "Release 1.9.3 - 31. Okt 2022", "Release 1.9.4 - 14. M\u00e4rz 2023", "Release 1.9.5 - 31. M\u00e4rz 2023", "Release 1.10 - 29. Jan 2024", "Release 1.10.x - tt. mmm 2024", "Release Notes", "Release 0.1 - April 09th, 2011", "Release 0.2 - June 21st, 2011", "Release 0.3 - August 14th, 2011", "Release 0.4 - October 10th, 2011", "Release 0.5 - July 12th, 2012", "Release 0.6 - June 21th, 2012", "Release 0.7 - September 27th 2012", "Release 0.8 - January 31st, 2013", "Release 0.9 - June 6th 2013", "Release 1.0 - November 14th, 2013", "Release 1.1 - 13. April 2016", "Release 1.2 - 16. Mai 2016", "Release 1.3 - 5. August 2017", "Release 1.4 - 17. Dezember 2017", "Release 1.4.1 - 23. Dezember 2017", "Release 1.4.2 - 2. Januar 2018", "Release 1.5 - 8. Juli 2018", "Release 1.5.1 - 15. Juli 2018", "Tools", "backup_restore.py", "build_requirements.py", "conf_to_yaml_converter.py", "getshngpid", "plugin_metadata_checker.py", "Automatische Generierung", "Vollst\u00e4ndiges Beispiel", "\u00c4nderungen ab v1.8", "Installation von Widgets", "Item Attribute zur Generierung", "Widgets f\u00fcr Plugins", "NGINX als ReverseProxy", "Visualisierung mit smartVISU Update", "Websocket Kommunikation", "Release 1.x - tt. mmm 2020", "Neuerungen im Release v1.11", "Neuerungen der letzten Releases"], "terms": {"seit": [0, 2, 6, 16, 22, 27, 28, 43, 44, 46, 47, 51, 52, 53, 54, 55, 56, 58, 60, 61, 62, 65, 68, 71, 73, 76, 77, 78, 82, 83, 84, 86, 92, 95, 96, 97, 100, 103, 104, 106, 107, 109, 115, 119, 120, 123, 124, 156, 162, 163, 164, 165, 166, 170, 179, 184, 187, 189, 192, 200, 204, 210, 212, 213, 219, 220, 223, 226, 232, 243, 244, 249, 252, 255, 259, 260, 261, 262, 263, 265, 266, 268, 283, 284, 289, 292, 303, 309, 310, 311, 314, 321, 323, 325, 328, 333, 348, 349, 351, 357, 359, 360, 366, 367, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 562, 567, 573, 576, 577, 578, 580, 585, 586, 591, 597, 599, 601, 602, 604, 606, 607, 608, 609, 610, 613, 616, 625, 630, 632, 634, 638, 641, 671, 674, 675, 680, 683, 684, 685, 686, 687, 690, 693], "smarthomeng": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 21, 22, 24, 29, 30, 31, 33, 34, 37, 38, 39, 41, 42, 43, 44, 45, 46, 48, 50, 51, 53, 54, 55, 56, 57, 64, 65, 66, 67, 68, 76, 79, 80, 81, 82, 84, 88, 90, 91, 93, 95, 96, 97, 98, 100, 102, 104, 105, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 129, 131, 132, 133, 134, 136, 137, 139, 140, 141, 143, 146, 148, 149, 151, 152, 153, 157, 158, 160, 162, 163, 164, 166, 169, 170, 172, 173, 174, 175, 176, 178, 179, 181, 183, 184, 186, 187, 192, 198, 199, 200, 203, 205, 208, 209, 210, 212, 213, 214, 215, 216, 217, 219, 220, 222, 223, 226, 232, 235, 236, 239, 244, 248, 249, 250, 251, 252, 254, 255, 257, 258, 259, 261, 263, 265, 266, 270, 272, 274, 276, 278, 282, 283, 289, 290, 291, 292, 293, 299, 301, 302, 306, 307, 309, 310, 314, 315, 317, 319, 321, 322, 324, 325, 328, 329, 330, 331, 332, 337, 344, 345, 347, 348, 349, 351, 352, 353, 354, 355, 359, 360, 362, 363, 365, 366, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 555, 556, 557, 558, 561, 562, 564, 566, 567, 568, 569, 570, 572, 573, 575, 576, 577, 579, 582, 583, 584, 585, 586, 587, 590, 591, 592, 593, 594, 595, 596, 597, 598, 601, 602, 603, 604, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 618, 621, 622, 623, 624, 626, 627, 628, 630, 631, 634, 635, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 668, 669, 670, 671, 672, 673, 674, 675, 676, 678, 679, 680, 682, 684, 687, 688, 689, 690, 691, 693], "v1": [0, 1, 3, 12, 30, 44, 45, 50, 53, 54, 55, 56, 57, 66, 68, 71, 78, 79, 83, 85, 89, 91, 97, 100, 102, 103, 108, 109, 111, 113, 114, 122, 124, 133, 152, 154, 157, 158, 163, 170, 173, 176, 179, 180, 184, 192, 210, 213, 218, 219, 220, 222, 223, 232, 248, 249, 251, 252, 255, 261, 275, 291, 293, 309, 348, 355, 356, 357, 360, 366, 370, 388, 391, 410, 413, 419, 424, 425, 448, 479, 493, 545, 548, 550, 552, 554, 558, 562, 566, 567, 568, 570, 573, 575, 576, 577, 579, 591, 594, 598, 603, 612, 613, 615, 618, 624, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 672, 674, 681, 682, 687, 689, 691], "6": [0, 13, 15, 16, 25, 30, 42, 43, 44, 45, 53, 54, 55, 64, 70, 79, 86, 97, 106, 107, 108, 111, 115, 116, 122, 125, 133, 158, 161, 165, 166, 169, 173, 176, 183, 184, 187, 189, 192, 195, 196, 197, 198, 205, 207, 210, 219, 220, 226, 227, 231, 232, 234, 239, 245, 248, 249, 254, 255, 257, 262, 269, 270, 271, 279, 282, 284, 290, 293, 309, 310, 319, 321, 324, 325, 328, 329, 334, 338, 339, 340, 342, 343, 347, 355, 361, 378, 381, 386, 392, 401, 406, 410, 411, 414, 415, 417, 421, 425, 429, 431, 432, 433, 434, 436, 448, 452, 453, 460, 461, 464, 469, 477, 479, 481, 482, 486, 487, 489, 492, 493, 495, 496, 497, 501, 508, 509, 512, 513, 515, 519, 520, 522, 528, 531, 545, 548, 550, 552, 554, 558, 562, 567, 569, 577, 585, 586, 588, 591, 592, 599, 606, 610, 613, 615, 636, 638, 639, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 675, 681, 691], "steht": [0, 1, 4, 42, 52, 56, 67, 68, 70, 83, 87, 92, 97, 98, 106, 121, 123, 164, 169, 187, 200, 203, 215, 219, 224, 232, 262, 285, 293, 295, 314, 322, 325, 329, 331, 360, 461, 492, 528, 530, 545, 547, 548, 550, 552, 554, 558, 561, 595, 596, 599, 636, 638, 641, 679], "graphisch": [0, 47, 82, 83, 93, 109, 111, 113, 118, 119, 120, 121, 122, 385, 426, 427, 545, 554, 577, 612, 671], "verfug": [0, 1, 2, 3, 4, 27, 43, 52, 56, 58, 59, 67, 68, 70, 76, 82, 92, 93, 97, 100, 104, 110, 118, 120, 121, 123, 153, 154, 164, 165, 166, 169, 170, 187, 189, 191, 201, 207, 210, 215, 219, 222, 228, 230, 232, 233, 238, 241, 243, 262, 264, 265, 267, 268, 285, 286, 293, 295, 319, 321, 329, 330, 370, 373, 417, 460, 522, 545, 547, 548, 550, 552, 554, 558, 560, 561, 576, 585, 587, 589, 595, 596, 597, 599, 612, 622, 633, 634, 636, 638, 641, 652, 653, 655, 656, 671, 674, 679, 682, 685], "welch": [0, 1, 2, 3, 4, 8, 9, 13, 16, 22, 27, 37, 40, 41, 42, 43, 45, 48, 52, 53, 57, 58, 62, 64, 67, 69, 71, 76, 83, 86, 90, 92, 94, 97, 98, 101, 103, 104, 105, 106, 108, 109, 111, 112, 115, 116, 117, 120, 121, 122, 123, 154, 155, 162, 168, 169, 170, 184, 187, 192, 196, 197, 200, 212, 213, 215, 219, 226, 230, 232, 255, 262, 268, 276, 282, 289, 291, 293, 302, 304, 314, 320, 321, 325, 326, 328, 329, 330, 331, 332, 337, 338, 354, 370, 371, 373, 375, 376, 382, 384, 391, 396, 397, 401, 405, 407, 409, 415, 417, 419, 420, 421, 422, 426, 427, 428, 451, 452, 454, 469, 475, 489, 496, 506, 508, 523, 532, 534, 545, 548, 550, 552, 556, 557, 562, 563, 566, 567, 572, 573, 574, 575, 576, 577, 585, 589, 591, 592, 594, 595, 599, 600, 603, 609, 612, 614, 615, 618, 619, 621, 622, 630, 632, 634, 636, 641, 670, 674, 679, 682, 686, 687, 688, 689, 690, 693], "vollstand": [0, 4, 22, 43, 50, 53, 56, 62, 64, 83, 92, 93, 106, 108, 109, 169, 170, 187, 200, 212, 213, 215, 224, 225, 230, 265, 284, 289, 291, 293, 295, 310, 314, 321, 325, 326, 337, 351, 354, 373, 382, 511, 561, 563, 573, 576, 582, 584, 594, 601, 602, 603, 604, 608, 609, 612, 632, 641, 644, 647, 648, 671, 674, 678, 681, 682, 684, 692, 693], "ermoglicht": [0, 3, 12, 45, 52, 53, 56, 60, 85, 97, 106, 169, 189, 196, 220, 223, 244, 262, 284, 302, 310, 329, 331, 333, 343, 347, 351, 362, 411, 423, 426, 427, 428, 430, 445, 496, 519, 520, 523, 536, 545, 548, 549, 550, 551, 554, 558, 575, 576, 577, 585, 590, 594, 599, 603, 612, 615, 622, 634, 671, 687, 689, 690], "Das": [0, 1, 2, 3, 4, 8, 12, 13, 14, 15, 20, 22, 24, 25, 27, 36, 37, 40, 42, 47, 48, 50, 51, 52, 53, 56, 58, 59, 62, 64, 68, 71, 74, 78, 79, 82, 83, 85, 86, 87, 90, 92, 95, 97, 98, 100, 102, 103, 105, 106, 107, 111, 112, 115, 116, 120, 122, 123, 124, 155, 162, 163, 164, 165, 166, 167, 169, 170, 171, 172, 174, 178, 179, 181, 184, 187, 188, 189, 191, 192, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 215, 217, 219, 220, 222, 223, 225, 226, 228, 229, 230, 232, 233, 237, 238, 241, 242, 243, 244, 249, 250, 252, 255, 256, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 277, 283, 284, 285, 286, 287, 289, 291, 293, 295, 302, 304, 306, 307, 309, 310, 311, 313, 314, 316, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 332, 333, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 354, 357, 360, 362, 366, 367, 369, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 561, 562, 563, 566, 567, 568, 569, 570, 571, 573, 574, 575, 576, 577, 579, 583, 585, 587, 588, 589, 590, 591, 592, 596, 599, 603, 610, 612, 621, 622, 627, 629, 630, 634, 636, 638, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675, 677, 678, 681, 682, 683, 686, 687, 688, 689, 690, 693], "folgend": [0, 1, 8, 12, 13, 15, 16, 22, 24, 27, 37, 39, 40, 42, 43, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 66, 67, 69, 70, 71, 73, 76, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 96, 97, 98, 100, 102, 104, 106, 112, 114, 115, 116, 117, 123, 124, 125, 131, 154, 155, 156, 162, 164, 165, 166, 167, 169, 170, 171, 172, 178, 179, 181, 184, 187, 189, 191, 192, 194, 196, 200, 201, 203, 207, 210, 212, 213, 219, 220, 222, 223, 224, 225, 226, 229, 232, 237, 241, 243, 244, 250, 252, 255, 256, 261, 262, 263, 264, 265, 266, 267, 268, 277, 285, 287, 289, 291, 293, 295, 300, 302, 303, 304, 306, 307, 310, 314, 319, 320, 321, 324, 325, 326, 328, 329, 330, 331, 333, 337, 338, 339, 340, 347, 348, 351, 357, 359, 360, 362, 366, 367, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 572, 573, 574, 575, 577, 579, 581, 582, 584, 585, 586, 588, 589, 591, 592, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 608, 609, 610, 611, 612, 614, 617, 618, 619, 620, 622, 623, 624, 625, 628, 629, 630, 632, 633, 634, 635, 637, 638, 639, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 678, 681, 682, 683, 684, 687, 688, 689, 693], "aufruf": [0, 5, 24, 27, 42, 46, 52, 58, 59, 64, 71, 76, 83, 85, 100, 103, 120, 124, 125, 160, 243, 244, 263, 272, 283, 292, 323, 325, 330, 331, 347, 351, 377, 382, 434, 445, 486, 508, 545, 558, 561, 562, 570, 575, 577, 581, 586, 589, 590, 591, 593, 595, 629, 630, 687, 688], "gestartet": [0, 3, 4, 5, 12, 20, 22, 27, 37, 42, 52, 53, 56, 76, 80, 82, 83, 84, 86, 87, 89, 90, 92, 95, 96, 102, 103, 106, 108, 112, 125, 164, 165, 187, 189, 192, 196, 210, 212, 213, 225, 232, 244, 295, 328, 338, 346, 367, 396, 504, 562, 573, 599, 610, 617, 628, 630, 632, 634, 635, 638, 642, 671, 688], "http": [0, 22, 28, 31, 33, 34, 43, 45, 52, 54, 55, 56, 57, 60, 66, 83, 84, 85, 87, 110, 111, 113, 118, 119, 122, 123, 141, 155, 158, 160, 161, 162, 164, 166, 170, 171, 172, 175, 179, 183, 184, 187, 192, 195, 198, 200, 202, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 223, 225, 226, 227, 229, 234, 239, 247, 250, 251, 252, 255, 256, 257, 258, 262, 265, 266, 268, 272, 273, 275, 281, 285, 289, 292, 298, 302, 304, 305, 306, 307, 309, 311, 312, 313, 314, 315, 316, 338, 341, 348, 349, 356, 357, 360, 362, 366, 368, 369, 376, 382, 383, 406, 409, 423, 427, 428, 431, 436, 440, 458, 459, 472, 507, 525, 528, 545, 550, 552, 583, 606, 611, 612, 615, 617, 622, 624, 641, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 671, 674, 675, 688], "ip": [0, 14, 27, 43, 44, 45, 53, 58, 62, 69, 71, 78, 82, 83, 85, 86, 87, 88, 90, 103, 111, 119, 120, 121, 122, 141, 152, 155, 157, 158, 160, 161, 162, 166, 167, 169, 170, 173, 175, 176, 178, 180, 181, 191, 198, 201, 202, 205, 207, 211, 222, 223, 225, 227, 231, 234, 235, 236, 247, 256, 257, 258, 259, 264, 267, 270, 276, 278, 281, 282, 283, 290, 292, 299, 300, 301, 304, 310, 314, 315, 331, 356, 357, 360, 362, 363, 365, 368, 374, 377, 380, 381, 382, 383, 384, 387, 388, 393, 405, 406, 409, 413, 415, 417, 418, 419, 420, 428, 429, 432, 433, 434, 437, 438, 440, 442, 449, 450, 451, 452, 453, 458, 459, 461, 469, 470, 475, 477, 480, 481, 482, 488, 494, 495, 496, 498, 499, 500, 501, 503, 504, 505, 507, 514, 531, 535, 545, 550, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 617, 643, 646, 649, 650, 655, 674, 684, 688, 690], "Ihres": [0, 164], "serv": [0, 1, 4, 9, 14, 44, 71, 82, 85, 87, 88, 110, 127, 141, 157, 161, 163, 181, 217, 218, 219, 220, 221, 225, 227, 229, 238, 240, 244, 248, 256, 258, 259, 261, 274, 278, 292, 302, 315, 318, 319, 338, 356, 357, 358, 362, 368, 423, 425, 428, 444, 477, 507, 512, 514, 525, 527, 545, 550, 612, 613, 641, 646, 648, 649, 650, 653, 655, 689], "8383": [0, 44, 45, 83, 103, 120, 157, 158, 179, 184, 187, 192, 200, 210, 212, 213, 220, 252, 255, 265, 266, 268, 289, 302, 311, 314, 348, 349, 357, 360, 366, 613, 615, 617], "admin": [0, 2, 4, 5, 27, 42, 43, 44, 45, 52, 53, 55, 56, 66, 71, 86, 87, 92, 97, 98, 102, 103, 104, 108, 110, 117, 118, 120, 121, 125, 136, 157, 158, 170, 179, 187, 192, 200, 204, 210, 212, 213, 226, 232, 247, 249, 255, 265, 266, 285, 289, 300, 302, 309, 311, 314, 328, 338, 349, 360, 380, 391, 398, 417, 419, 420, 426, 427, 445, 449, 510, 562, 563, 567, 569, 574, 577, 590, 591, 592, 600, 601, 602, 603, 604, 607, 608, 609, 610, 611, 613, 615, 617, 618, 624, 632, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 677, 680, 693], "uber": [0, 1, 2, 3, 4, 5, 8, 13, 20, 25, 27, 44, 47, 48, 52, 56, 58, 60, 62, 65, 67, 68, 71, 76, 79, 82, 83, 85, 86, 87, 89, 90, 92, 94, 96, 98, 101, 102, 103, 111, 112, 113, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 131, 153, 154, 155, 160, 163, 164, 165, 169, 170, 171, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 215, 219, 220, 224, 226, 229, 230, 232, 233, 238, 242, 243, 244, 249, 252, 255, 259, 261, 262, 263, 264, 265, 266, 267, 268, 277, 279, 283, 285, 289, 291, 292, 293, 300, 302, 304, 306, 307, 310, 311, 314, 316, 319, 321, 323, 325, 326, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 347, 348, 349, 351, 357, 359, 360, 362, 363, 366, 367, 369, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 552, 558, 561, 562, 563, 567, 572, 573, 574, 575, 577, 578, 583, 585, 587, 591, 592, 594, 596, 597, 599, 600, 612, 613, 614, 616, 617, 619, 622, 632, 634, 636, 638, 641, 671, 672, 674, 682, 688, 689, 690, 692, 693], "systemkonfiguration": [0, 93, 95, 104, 207, 633], "eingestellt": [0, 2, 13, 50, 56, 85, 162, 167, 169, 170, 196, 210, 219, 233, 244, 289, 330, 338, 351, 375, 434, 479, 508, 641, 674, 682], "werd": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 16, 18, 22, 24, 25, 27, 28, 31, 32, 33, 34, 37, 39, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 100, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 131, 153, 155, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 214, 215, 217, 219, 220, 222, 223, 224, 225, 226, 229, 230, 232, 233, 238, 241, 243, 244, 246, 249, 250, 252, 255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 277, 279, 282, 283, 284, 285, 287, 289, 291, 292, 293, 295, 300, 302, 304, 306, 307, 308, 309, 310, 311, 313, 314, 316, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 336, 337, 338, 339, 340, 343, 345, 346, 347, 348, 349, 351, 354, 357, 359, 360, 362, 363, 366, 367, 369, 370, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 551, 561, 562, 563, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 628, 629, 630, 631, 632, 633, 634, 635, 638, 641, 642, 643, 644, 645, 646, 650, 652, 653, 654, 655, 656, 671, 672, 673, 674, 678, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693], "dass": [0, 1, 2, 4, 8, 12, 13, 24, 25, 27, 28, 36, 37, 42, 43, 46, 47, 50, 51, 52, 53, 58, 60, 61, 62, 67, 71, 76, 78, 79, 80, 82, 83, 84, 86, 95, 97, 98, 103, 105, 106, 107, 111, 112, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 155, 164, 169, 178, 187, 189, 203, 210, 212, 213, 215, 219, 223, 226, 229, 256, 260, 262, 263, 272, 276, 283, 285, 289, 293, 302, 304, 310, 313, 314, 325, 326, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 360, 362, 369, 373, 374, 375, 376, 381, 382, 384, 385, 386, 387, 388, 389, 391, 392, 393, 395, 396, 397, 399, 400, 402, 403, 406, 407, 408, 409, 411, 413, 414, 416, 417, 418, 420, 422, 423, 424, 425, 426, 428, 429, 433, 435, 436, 437, 438, 441, 442, 443, 447, 448, 449, 450, 451, 454, 455, 456, 458, 459, 460, 461, 463, 464, 465, 467, 469, 470, 472, 473, 474, 475, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 488, 489, 490, 491, 492, 493, 494, 495, 497, 500, 501, 503, 505, 506, 507, 508, 509, 510, 513, 514, 515, 516, 517, 518, 521, 522, 523, 524, 525, 526, 527, 529, 532, 534, 537, 538, 545, 547, 548, 550, 551, 552, 554, 558, 561, 562, 563, 566, 567, 570, 571, 572, 573, 574, 576, 577, 579, 588, 589, 591, 592, 593, 594, 595, 596, 600, 601, 602, 603, 604, 606, 608, 609, 610, 622, 628, 630, 632, 638, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675, 682, 685, 686, 688, 689, 693], "automat": [0, 1, 12, 28, 43, 44, 48, 50, 51, 52, 53, 56, 60, 62, 68, 76, 78, 79, 82, 83, 85, 87, 89, 90, 92, 102, 113, 119, 122, 155, 162, 165, 169, 170, 188, 189, 191, 192, 196, 201, 212, 213, 215, 219, 220, 222, 237, 238, 243, 249, 255, 262, 264, 267, 283, 295, 304, 306, 307, 314, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 338, 339, 340, 347, 354, 359, 367, 370, 373, 376, 381, 400, 401, 403, 408, 412, 423, 435, 440, 441, 443, 464, 466, 467, 486, 504, 507, 508, 519, 533, 534, 608, 612, 613, 625, 641, 655, 671, 674, 684, 685, 688, 689, 693], "verweist": [0, 53, 103, 572, 610], "fall": [0, 1, 3, 4, 5, 8, 12, 22, 24, 27, 28, 31, 32, 37, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 58, 62, 64, 67, 68, 71, 76, 79, 82, 83, 84, 85, 86, 87, 92, 93, 96, 97, 98, 101, 102, 103, 104, 106, 109, 111, 112, 113, 115, 116, 117, 119, 120, 121, 155, 164, 168, 170, 187, 196, 200, 210, 219, 223, 225, 226, 238, 244, 259, 260, 261, 262, 265, 272, 283, 289, 292, 293, 295, 302, 304, 314, 316, 321, 322, 323, 325, 326, 328, 329, 330, 331, 332, 337, 354, 359, 360, 362, 371, 373, 374, 375, 382, 386, 387, 388, 391, 392, 393, 394, 395, 396, 398, 399, 402, 403, 406, 407, 409, 411, 413, 414, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 429, 433, 436, 437, 438, 440, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 468, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 519, 520, 522, 523, 524, 525, 529, 532, 534, 538, 545, 547, 548, 550, 551, 552, 554, 558, 561, 563, 566, 568, 570, 572, 573, 575, 577, 587, 588, 591, 592, 593, 594, 595, 596, 598, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 612, 613, 615, 617, 625, 630, 632, 634, 635, 638, 641, 642, 653, 671, 672, 673, 674, 678, 681, 682, 684, 687, 693], "konfiguration": [0, 1, 3, 10, 42, 43, 52, 53, 54, 55, 56, 61, 71, 81, 82, 84, 86, 87, 90, 92, 97, 104, 105, 107, 108, 109, 110, 113, 114, 117, 123, 153, 154, 207, 283, 292, 304, 320, 321, 326, 327, 329, 330, 331, 545, 548, 550, 552, 554, 558, 566, 578, 579, 580, 583, 585, 586, 587, 590, 594, 597, 601, 602, 603, 604, 607, 608, 609, 610, 611, 612, 614, 619, 622, 625, 628, 635, 638, 641, 669, 671, 673, 674, 677, 679, 693], "fur": [0, 1, 2, 3, 4, 7, 8, 10, 14, 16, 19, 20, 22, 25, 27, 31, 33, 34, 37, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 56, 58, 59, 60, 61, 62, 64, 67, 68, 70, 72, 73, 74, 79, 80, 81, 84, 85, 86, 87, 89, 90, 91, 92, 94, 95, 96, 97, 100, 101, 102, 103, 104, 106, 107, 109, 110, 111, 112, 113, 115, 117, 119, 120, 121, 122, 123, 124, 125, 131, 153, 155, 159, 163, 164, 165, 166, 167, 168, 169, 171, 172, 178, 179, 181, 184, 191, 194, 196, 197, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 224, 225, 226, 228, 229, 230, 232, 237, 238, 241, 243, 244, 249, 250, 252, 255, 256, 260, 261, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 278, 279, 282, 283, 285, 287, 289, 291, 295, 302, 304, 306, 307, 309, 311, 313, 314, 316, 319, 321, 322, 323, 327, 329, 330, 331, 332, 333, 337, 338, 339, 340, 345, 347, 348, 349, 351, 352, 359, 360, 362, 366, 369, 370, 371, 373, 374, 375, 377, 379, 380, 381, 382, 383, 385, 386, 387, 388, 391, 392, 393, 394, 395, 396, 398, 399, 400, 401, 402, 403, 406, 407, 408, 409, 410, 412, 413, 414, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 431, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 448, 449, 450, 451, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 467, 468, 469, 470, 471, 472, 473, 474, 476, 477, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 528, 529, 530, 531, 532, 533, 534, 536, 537, 538, 561, 563, 564, 565, 566, 567, 568, 569, 570, 572, 573, 574, 575, 576, 577, 579, 584, 585, 587, 589, 591, 592, 593, 594, 595, 596, 597, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 615, 616, 617, 621, 622, 625, 626, 627, 628, 630, 632, 634, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 670, 671, 672, 673, 674, 675, 678, 679, 682, 683, 684, 686, 689, 690, 691], "modul": [0, 1, 2, 4, 14, 31, 33, 34, 40, 50, 52, 54, 55, 56, 57, 58, 60, 66, 82, 85, 102, 103, 106, 107, 113, 115, 116, 123, 127, 132, 136, 138, 139, 143, 151, 155, 162, 166, 172, 173, 176, 177, 178, 186, 192, 200, 204, 205, 209, 214, 222, 223, 227, 234, 240, 250, 251, 257, 261, 269, 277, 278, 280, 281, 284, 285, 291, 302, 306, 307, 337, 360, 367, 368, 369, 370, 371, 381, 388, 396, 407, 412, 454, 479, 489, 508, 511, 533, 537, 545, 548, 550, 552, 573, 581, 582, 583, 585, 587, 589, 595, 599, 601, 602, 604, 607, 609, 617, 624, 634, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 674, 675, 678, 684, 688, 689, 690, 691], "user": [0, 1, 2, 12, 37, 40, 44, 45, 47, 53, 54, 55, 58, 60, 71, 78, 83, 84, 88, 89, 90, 92, 98, 103, 111, 120, 121, 134, 137, 141, 164, 168, 170, 176, 182, 186, 192, 198, 200, 202, 205, 209, 211, 216, 218, 219, 220, 227, 234, 239, 245, 247, 249, 253, 254, 255, 257, 260, 266, 273, 274, 278, 294, 296, 297, 298, 301, 304, 306, 307, 315, 335, 338, 344, 346, 352, 353, 355, 356, 357, 362, 364, 366, 368, 375, 376, 409, 411, 418, 423, 425, 447, 462, 477, 492, 512, 530, 586, 610, 612, 613, 615, 616, 630, 638, 641, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 660, 665, 666, 668, 670, 675, 691], "passwort": [0, 1, 5, 8, 44, 45, 47, 82, 120, 162, 164, 215, 218, 220, 232, 244, 255, 338, 375, 380, 382, 383, 390, 391, 399, 406, 411, 417, 421, 424, 425, 429, 434, 436, 444, 445, 447, 451, 466, 477, 478, 479, 481, 482, 492, 518, 526, 534, 613, 615], "kombination": [0, 16, 46, 58, 192, 203, 224, 256, 262, 316, 330, 347, 568], "konfiguriert": [0, 2, 3, 4, 8, 20, 22, 27, 42, 43, 45, 47, 52, 53, 56, 58, 60, 69, 71, 82, 83, 84, 85, 86, 92, 93, 95, 96, 97, 98, 103, 104, 106, 107, 108, 109, 110, 111, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 153, 154, 155, 162, 165, 168, 169, 170, 171, 181, 184, 187, 188, 189, 196, 197, 200, 203, 212, 213, 220, 223, 226, 229, 232, 233, 237, 243, 261, 262, 263, 265, 268, 276, 277, 285, 287, 289, 291, 292, 293, 295, 304, 310, 313, 314, 320, 325, 337, 346, 347, 351, 360, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 550, 551, 563, 566, 574, 575, 577, 583, 585, 590, 592, 593, 594, 595, 597, 599, 600, 601, 602, 604, 607, 608, 609, 610, 612, 614, 615, 617, 619, 622, 632, 633, 634, 641, 671, 674, 682, 688, 689, 690, 693], "wurd": [0, 1, 4, 8, 20, 24, 27, 33, 34, 37, 42, 43, 48, 50, 52, 53, 57, 58, 60, 61, 62, 69, 71, 73, 77, 79, 80, 82, 83, 89, 90, 92, 95, 96, 97, 100, 102, 103, 106, 108, 111, 112, 116, 117, 155, 162, 164, 165, 168, 169, 170, 184, 187, 189, 191, 192, 196, 197, 200, 201, 203, 210, 212, 213, 214, 215, 219, 222, 223, 226, 232, 233, 237, 243, 249, 250, 256, 259, 260, 261, 262, 263, 267, 268, 272, 276, 277, 283, 284, 287, 289, 291, 292, 293, 295, 304, 306, 307, 309, 313, 314, 316, 321, 322, 324, 325, 326, 328, 330, 331, 332, 333, 338, 339, 340, 343, 347, 359, 360, 363, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 556, 557, 561, 562, 563, 566, 567, 569, 571, 572, 573, 575, 576, 577, 588, 589, 591, 592, 593, 594, 595, 596, 599, 600, 603, 608, 625, 628, 632, 634, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 654, 655, 656, 671, 672, 674, 675, 682, 683, 686, 687, 688, 689, 691, 693], "benotigt": [0, 1, 8, 12, 13, 27, 31, 32, 33, 34, 37, 43, 46, 52, 53, 54, 55, 68, 73, 79, 80, 81, 82, 83, 85, 87, 90, 92, 97, 98, 115, 118, 122, 162, 166, 169, 170, 171, 172, 178, 179, 184, 187, 192, 194, 200, 207, 214, 215, 230, 250, 261, 262, 265, 268, 271, 272, 276, 277, 279, 289, 291, 300, 306, 307, 310, 314, 323, 326, 329, 331, 332, 336, 337, 338, 346, 351, 359, 360, 362, 363, 369, 370, 371, 374, 375, 381, 382, 383, 386, 387, 388, 391, 392, 393, 394, 395, 396, 399, 402, 403, 405, 406, 407, 409, 413, 414, 416, 417, 418, 419, 420, 423, 424, 425, 426, 429, 431, 433, 436, 437, 438, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 468, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 496, 497, 500, 503, 505, 506, 507, 508, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 527, 529, 532, 533, 534, 538, 545, 550, 584, 621, 622, 625, 627, 630, 632, 638, 671, 678, 684], "zuzugreif": [0, 52, 100, 262, 419, 420, 560, 563, 566, 591, 693], "anson": [0, 12, 20, 52, 57, 62, 82, 162, 169, 170, 179, 184, 192, 210, 219, 232, 252, 255, 261, 309, 330, 339, 340, 343, 348, 357, 360, 366, 381, 423, 519, 528, 601], "direkt": [0, 4, 16, 42, 43, 47, 62, 67, 80, 82, 84, 85, 92, 96, 97, 101, 103, 106, 112, 120, 124, 155, 162, 164, 169, 170, 172, 179, 184, 187, 189, 191, 192, 196, 200, 201, 203, 204, 210, 212, 213, 220, 229, 252, 255, 259, 262, 264, 265, 266, 267, 268, 285, 289, 295, 302, 304, 311, 314, 323, 325, 326, 327, 330, 332, 337, 338, 347, 348, 349, 351, 357, 360, 366, 371, 376, 412, 434, 453, 508, 550, 551, 562, 566, 573, 583, 586, 591, 622, 641, 685, 688, 689], "ubersichtsseit": [0, 8, 120], "systemeigenschaft": [0, 671, 680, 693], "angezeigt": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 43, 44, 51, 53, 56, 60, 62, 88, 90, 93, 97, 115, 119, 120, 121, 123, 162, 163, 164, 165, 170, 178, 179, 184, 187, 192, 200, 203, 210, 212, 213, 219, 220, 229, 232, 237, 244, 246, 252, 255, 261, 263, 265, 266, 268, 272, 284, 289, 295, 302, 314, 320, 321, 338, 339, 340, 347, 348, 349, 357, 359, 360, 362, 363, 366, 375, 381, 406, 434, 446, 463, 469, 496, 508, 523, 527, 563, 566, 577, 580, 585, 597, 601, 602, 603, 604, 608, 609, 613, 628, 632, 641, 671, 673, 674, 680, 682, 683, 686, 693], "Wenn": [0, 2, 3, 4, 5, 8, 12, 13, 20, 25, 27, 28, 31, 33, 34, 37, 42, 43, 45, 47, 48, 50, 51, 52, 53, 54, 58, 60, 62, 68, 71, 79, 82, 83, 84, 85, 86, 87, 89, 90, 92, 93, 95, 96, 97, 100, 102, 103, 105, 106, 111, 112, 115, 116, 117, 120, 121, 123, 124, 125, 154, 162, 164, 165, 166, 167, 169, 181, 184, 187, 200, 203, 210, 212, 213, 214, 219, 222, 229, 230, 232, 233, 241, 244, 250, 255, 256, 261, 262, 263, 268, 272, 283, 289, 293, 302, 306, 307, 313, 316, 321, 325, 326, 328, 331, 332, 333, 337, 338, 339, 340, 347, 349, 351, 360, 362, 363, 369, 370, 373, 376, 381, 382, 391, 396, 400, 401, 407, 408, 409, 412, 423, 426, 427, 428, 434, 435, 441, 449, 452, 453, 454, 457, 461, 462, 463, 464, 467, 471, 472, 479, 485, 486, 487, 490, 496, 497, 508, 513, 523, 524, 527, 537, 561, 563, 566, 568, 570, 572, 573, 574, 575, 576, 577, 579, 584, 589, 591, 592, 593, 595, 596, 597, 599, 600, 603, 608, 609, 610, 612, 615, 621, 622, 628, 629, 630, 634, 638, 641, 682, 685, 686, 689, 690, 692], "anmeld": [0, 5, 8, 82, 83, 84, 120, 164, 170, 215, 292, 359, 382, 383, 444, 445, 674], "notwend": [0, 1, 27, 47, 52, 54, 55, 56, 58, 62, 76, 79, 82, 89, 102, 106, 111, 113, 115, 116, 154, 162, 164, 165, 167, 169, 184, 189, 192, 194, 213, 233, 244, 262, 268, 289, 326, 329, 351, 371, 381, 382, 383, 406, 436, 561, 566, 569, 575, 577, 586, 589, 592, 593, 596, 601, 612, 622, 625, 635, 682, 683, 688, 693], "session": [0, 55, 71, 180, 181, 218, 219, 220, 227, 650, 652], "beschrankt": [0, 43, 53, 351, 601, 602, 604, 607, 608, 609], "Ein": [0, 8, 13, 17, 23, 28, 43, 48, 50, 51, 52, 53, 54, 55, 56, 67, 70, 79, 83, 84, 89, 90, 92, 98, 100, 103, 106, 112, 115, 123, 159, 164, 165, 169, 178, 187, 192, 197, 200, 204, 207, 210, 212, 213, 214, 215, 224, 229, 232, 238, 241, 250, 256, 262, 263, 265, 272, 276, 283, 284, 289, 291, 293, 306, 307, 314, 320, 325, 326, 329, 330, 331, 332, 333, 337, 338, 339, 340, 343, 345, 347, 360, 370, 373, 380, 396, 397, 405, 412, 419, 420, 433, 434, 458, 478, 512, 515, 545, 548, 549, 550, 551, 552, 553, 554, 558, 559, 561, 563, 573, 575, 577, 579, 593, 594, 595, 596, 614, 618, 619, 621, 625, 629, 635, 642, 649, 682, 683, 688, 693], "beend": [0, 27, 42, 45, 46, 53, 83, 86, 92, 102, 155, 187, 233, 283, 304, 324, 331, 380, 381, 396, 588, 610, 615, 635], "brows": [0, 5, 8, 22, 28, 37, 44, 52, 56, 60, 62, 83, 85, 90, 92, 103, 122, 155, 157, 164, 187, 225, 273, 292, 304, 312, 313, 315, 352, 355, 356, 357, 359, 376, 496, 524, 527, 545, 558, 612, 613, 644, 646, 651, 652, 653, 670, 688, 689, 690], "meldet": [0, 103], "anwend": [0, 5, 12, 14, 37, 46, 48, 76, 78, 80, 83, 98, 101, 103, 106, 115, 120, 121, 172, 212, 213, 256, 272, 325, 326, 351, 495, 498, 499, 522, 545, 547, 548, 550, 552, 554, 558, 579, 597, 638, 641, 652, 653, 654, 655, 656, 671, 672, 674, 675], "ab": [0, 1, 2, 3, 12, 14, 54, 56, 70, 71, 77, 79, 83, 84, 86, 88, 97, 98, 100, 102, 103, 104, 106, 108, 109, 111, 114, 115, 125, 155, 164, 165, 166, 167, 169, 170, 184, 189, 192, 220, 225, 230, 261, 262, 295, 302, 304, 306, 307, 314, 319, 324, 328, 329, 338, 343, 347, 363, 379, 380, 381, 412, 453, 460, 502, 504, 562, 566, 567, 568, 570, 575, 577, 591, 594, 595, 598, 599, 612, 618, 632, 638, 641, 649, 671, 672, 674, 675, 682, 687, 688, 689, 693], "hierzu": [0, 4, 25, 42, 58, 85, 96, 97, 98, 104, 116, 131, 162, 184, 191, 200, 201, 212, 213, 255, 260, 264, 265, 267, 268, 279, 289, 295, 302, 314, 323, 324, 331, 337, 354, 533, 566, 622, 633, 641, 687], "abmeld": [0, 8, 83], "button": [0, 1, 2, 3, 4, 5, 8, 22, 42, 54, 55, 56, 58, 62, 71, 83, 85, 95, 96, 98, 170, 185, 187, 189, 200, 211, 212, 213, 226, 227, 244, 253, 254, 255, 281, 282, 283, 292, 293, 294, 301, 302, 337, 359, 395, 420, 495, 545, 550, 641, 643, 645, 646, 649, 651, 653, 655, 656, 665, 682], "navigation": [0, 4, 48, 51, 52, 65, 76, 223, 226, 292, 352, 354, 373, 496, 523, 545, 547, 548, 550, 552, 554, 558, 597, 625, 645, 646, 650, 655, 683, 686, 689], "genutzt": [0, 1, 4, 5, 8, 13, 16, 27, 31, 33, 34, 43, 45, 46, 48, 51, 52, 53, 54, 56, 58, 60, 67, 68, 69, 71, 74, 79, 82, 83, 84, 86, 89, 90, 92, 96, 97, 100, 103, 104, 105, 106, 108, 109, 111, 112, 116, 117, 118, 120, 121, 122, 131, 155, 162, 163, 164, 166, 169, 170, 179, 184, 187, 188, 189, 192, 196, 203, 210, 212, 214, 219, 220, 225, 232, 233, 238, 243, 244, 250, 252, 255, 256, 259, 261, 262, 263, 272, 289, 291, 293, 295, 302, 304, 306, 307, 319, 323, 325, 328, 329, 330, 331, 333, 337, 338, 347, 348, 351, 357, 360, 362, 366, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 562, 563, 565, 567, 569, 573, 575, 576, 580, 581, 583, 585, 586, 589, 590, 591, 592, 595, 596, 597, 598, 601, 602, 605, 609, 611, 612, 614, 615, 619, 625, 632, 641, 643, 644, 645, 646, 674, 679, 682, 689, 690, 691, 693], "Eine": [0, 2, 3, 6, 16, 28, 37, 40, 42, 45, 46, 47, 48, 52, 54, 55, 56, 58, 68, 69, 71, 77, 79, 80, 83, 84, 85, 87, 92, 97, 98, 103, 109, 115, 117, 122, 155, 162, 163, 165, 169, 171, 184, 187, 192, 194, 197, 200, 203, 215, 219, 220, 224, 230, 233, 241, 243, 250, 261, 262, 265, 268, 276, 289, 293, 304, 313, 314, 325, 326, 328, 329, 330, 331, 337, 338, 339, 340, 359, 360, 381, 425, 434, 447, 471, 507, 534, 561, 562, 568, 575, 576, 577, 579, 584, 589, 590, 591, 592, 594, 595, 596, 597, 598, 600, 614, 615, 619, 622, 635, 682, 688, 689, 692, 693], "erfolgt": [0, 6, 13, 15, 24, 28, 32, 37, 46, 50, 52, 53, 55, 60, 69, 71, 76, 82, 83, 85, 87, 90, 97, 98, 103, 106, 112, 115, 116, 123, 124, 162, 170, 179, 189, 192, 194, 200, 212, 213, 219, 232, 243, 263, 265, 266, 272, 285, 289, 293, 314, 326, 328, 332, 338, 339, 340, 349, 370, 412, 496, 511, 512, 522, 537, 545, 548, 556, 557, 562, 567, 570, 573, 575, 577, 588, 589, 591, 598, 602, 603, 625, 638, 641, 671, 682, 687, 688, 689], "gespeichert": [0, 2, 5, 15, 27, 37, 42, 45, 47, 48, 52, 53, 56, 58, 76, 77, 90, 97, 103, 106, 124, 164, 165, 178, 187, 203, 212, 213, 219, 224, 226, 232, 261, 262, 263, 289, 295, 314, 326, 330, 332, 338, 347, 349, 381, 396, 422, 423, 424, 425, 427, 428, 436, 504, 560, 579, 596, 610, 614, 615, 619, 630, 632, 672, 673], "tok": [0, 8, 119, 154, 208, 222, 223, 254, 255, 257, 296, 338, 349, 362, 367, 428, 458, 521, 612, 642, 646, 652, 653, 655, 674], "ablauft": [0, 37, 58], "Die": [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 15, 16, 20, 24, 25, 27, 28, 31, 32, 33, 34, 36, 37, 39, 40, 42, 43, 44, 45, 48, 49, 50, 51, 53, 56, 58, 59, 60, 63, 66, 67, 68, 69, 70, 71, 73, 77, 78, 79, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 93, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 131, 153, 155, 156, 159, 162, 163, 164, 165, 167, 168, 169, 170, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 214, 215, 220, 222, 223, 224, 225, 228, 229, 230, 232, 233, 241, 242, 243, 244, 246, 250, 252, 255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 271, 272, 276, 279, 283, 284, 285, 286, 287, 289, 292, 293, 295, 300, 302, 303, 304, 306, 307, 309, 310, 311, 313, 314, 319, 321, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 343, 347, 348, 349, 351, 354, 357, 359, 360, 362, 366, 367, 370, 371, 373, 376, 379, 380, 381, 382, 391, 396, 406, 409, 412, 413, 431, 432, 434, 446, 447, 457, 458, 460, 462, 463, 469, 471, 481, 482, 487, 496, 504, 506, 508, 511, 519, 524, 527, 531, 533, 534, 536, 537, 538, 545, 548, 554, 555, 556, 557, 560, 561, 562, 563, 565, 566, 567, 568, 569, 573, 574, 575, 576, 577, 579, 582, 583, 584, 585, 586, 588, 590, 591, 592, 595, 596, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 628, 629, 630, 632, 633, 634, 635, 636, 638, 639, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 678, 682, 683, 685, 686, 687, 688, 689, 690, 691, 692, 693], "lebensdau": 0, "tab": [0, 1, 2, 3, 4, 7, 8, 52, 54, 55, 56, 58, 60, 85, 96, 103, 106, 164, 170, 178, 179, 184, 187, 189, 192, 200, 204, 210, 212, 213, 220, 232, 244, 252, 254, 255, 265, 266, 268, 289, 302, 314, 337, 348, 357, 363, 366, 625, 635, 643, 645, 646, 649, 650, 651, 653, 655, 656, 680], "konfigurierbar": [0, 60, 95, 115, 116, 189, 262, 310, 351, 585, 641], "Auf": [1, 2, 3, 4, 6, 8, 16, 27, 44, 54, 55, 56, 58, 69, 73, 83, 105, 106, 115, 116, 120, 122, 162, 163, 164, 169, 170, 184, 187, 200, 210, 212, 213, 217, 229, 232, 260, 261, 268, 289, 299, 310, 323, 328, 329, 336, 339, 340, 351, 359, 396, 472, 477, 490, 495, 563, 567, 573, 576, 590, 591, 597, 598, 613, 616, 622, 628, 690], "temporar": [1, 261], "sprach": [1, 43, 47, 53, 56, 82, 93, 106, 159, 169, 215, 262, 316, 373, 394, 462, 468, 505, 516, 532, 545, 558, 601, 602, 604, 606, 607, 608, 609, 610], "umgeschaltet": [1, 381, 395], "ausserd": [1, 2, 4, 53, 56, 58, 60, 82, 83, 100, 103, 106, 112, 121, 123, 164, 166, 169, 179, 184, 187, 192, 200, 207, 210, 212, 213, 217, 220, 229, 230, 243, 252, 255, 265, 266, 268, 289, 293, 302, 311, 314, 324, 326, 328, 329, 330, 331, 332, 333, 347, 348, 349, 357, 360, 362, 366, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 573, 583, 587, 602, 604, 646, 655, 687, 688], "moglich": [1, 5, 15, 22, 25, 27, 36, 42, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 62, 67, 71, 74, 76, 78, 79, 80, 83, 84, 85, 92, 97, 106, 110, 112, 115, 116, 118, 120, 122, 123, 124, 125, 155, 159, 162, 164, 167, 169, 170, 172, 179, 184, 187, 188, 189, 196, 204, 210, 215, 229, 232, 243, 244, 255, 260, 261, 262, 263, 268, 271, 272, 276, 285, 287, 302, 304, 310, 314, 319, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 337, 338, 339, 340, 347, 351, 354, 360, 370, 375, 376, 378, 381, 382, 383, 384, 388, 390, 391, 393, 394, 395, 397, 398, 400, 402, 405, 406, 407, 408, 409, 412, 415, 416, 419, 420, 422, 423, 425, 433, 434, 436, 439, 442, 443, 448, 449, 450, 452, 453, 454, 456, 458, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 475, 476, 477, 479, 480, 482, 483, 484, 485, 487, 489, 490, 491, 492, 493, 494, 496, 497, 498, 499, 500, 501, 502, 504, 506, 508, 510, 511, 512, 516, 518, 519, 521, 523, 524, 526, 527, 530, 533, 534, 535, 536, 562, 563, 566, 568, 570, 573, 575, 579, 584, 585, 586, 590, 592, 594, 595, 596, 599, 603, 613, 616, 621, 622, 626, 630, 638, 641, 642, 671, 672, 674, 681, 682, 687, 689, 690, 693], "neu": [1, 3, 4, 5, 8, 12, 22, 43, 47, 52, 53, 54, 55, 58, 62, 67, 69, 79, 82, 83, 84, 85, 86, 87, 92, 94, 95, 96, 97, 98, 100, 102, 103, 111, 112, 113, 116, 123, 124, 125, 153, 156, 168, 169, 170, 181, 186, 187, 189, 200, 207, 210, 213, 215, 219, 220, 225, 232, 233, 244, 249, 253, 262, 263, 265, 271, 285, 289, 292, 293, 295, 301, 302, 303, 308, 309, 313, 314, 324, 326, 328, 329, 330, 332, 333, 337, 338, 339, 340, 346, 349, 351, 360, 362, 364, 370, 379, 380, 381, 382, 400, 408, 419, 420, 422, 435, 441, 449, 453, 462, 464, 467, 488, 495, 500, 504, 506, 508, 512, 519, 520, 522, 533, 545, 548, 550, 561, 562, 564, 567, 572, 573, 575, 576, 577, 585, 586, 589, 590, 591, 596, 606, 610, 612, 616, 621, 622, 626, 627, 635, 638, 643, 644, 645, 646, 647, 648, 649, 650, 651, 682, 684, 687, 688, 689, 691, 693], "start": [1, 8, 24, 27, 40, 42, 43, 44, 45, 46, 52, 53, 54, 55, 58, 63, 66, 69, 76, 79, 80, 82, 84, 85, 86, 87, 92, 96, 97, 103, 104, 106, 107, 108, 113, 115, 116, 120, 123, 133, 134, 136, 140, 141, 142, 144, 145, 147, 155, 157, 158, 164, 165, 168, 169, 178, 183, 187, 189, 200, 203, 205, 208, 211, 215, 217, 218, 219, 225, 227, 232, 235, 236, 244, 254, 255, 261, 262, 263, 275, 276, 278, 281, 282, 284, 287, 288, 289, 294, 295, 302, 304, 305, 306, 307, 314, 316, 325, 328, 338, 341, 347, 351, 352, 353, 356, 357, 362, 363, 367, 380, 381, 384, 396, 399, 400, 401, 408, 421, 422, 423, 428, 434, 435, 441, 454, 456, 464, 467, 482, 485, 507, 508, 512, 519, 533, 537, 561, 566, 569, 573, 577, 580, 588, 590, 592, 595, 596, 606, 610, 612, 613, 615, 616, 618, 620, 624, 627, 630, 635, 637, 638, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 663, 667, 670, 673, 675, 682, 687, 688, 689], "password": [1, 8, 44, 45, 47, 82, 83, 84, 88, 103, 120, 121, 141, 150, 152, 170, 176, 180, 198, 214, 218, 227, 234, 241, 248, 254, 266, 278, 282, 283, 292, 297, 346, 368, 599, 613, 615, 646, 649], "hash": [1, 8, 120, 152, 180, 211, 368, 391], "erzeug": [1, 42, 53, 113, 115, 120, 155, 187, 263, 304, 351, 388, 396, 426, 496, 545, 554, 575, 629, 635, 677, 683, 685, 688], "z": [1, 8, 13, 16, 24, 25, 28, 43, 45, 48, 50, 52, 53, 56, 58, 62, 67, 71, 76, 80, 82, 83, 85, 86, 87, 88, 92, 97, 98, 100, 103, 107, 112, 113, 115, 116, 117, 120, 122, 123, 124, 126, 148, 161, 162, 168, 169, 178, 179, 184, 187, 192, 197, 200, 203, 210, 212, 213, 215, 217, 219, 223, 226, 232, 241, 243, 244, 255, 259, 261, 262, 263, 268, 272, 276, 277, 283, 289, 290, 292, 293, 295, 299, 300, 302, 306, 307, 314, 315, 316, 319, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 337, 339, 340, 343, 347, 349, 351, 354, 359, 360, 362, 366, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 561, 562, 563, 566, 567, 568, 569, 572, 573, 574, 575, 577, 579, 584, 585, 591, 592, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 615, 622, 628, 630, 632, 634, 636, 638, 641, 646, 671, 674, 675, 682, 688], "b": [1, 8, 12, 13, 14, 16, 24, 25, 28, 43, 45, 47, 48, 50, 52, 53, 56, 58, 62, 67, 71, 73, 74, 76, 80, 82, 83, 85, 86, 87, 88, 97, 98, 100, 103, 104, 112, 113, 115, 116, 117, 120, 122, 123, 124, 126, 162, 168, 169, 177, 179, 184, 187, 193, 194, 197, 199, 200, 203, 210, 212, 213, 215, 217, 219, 223, 226, 232, 241, 243, 244, 247, 248, 254, 255, 259, 261, 263, 268, 272, 276, 277, 278, 283, 285, 289, 292, 293, 295, 299, 300, 302, 306, 307, 314, 316, 319, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 337, 338, 339, 340, 343, 347, 349, 351, 354, 359, 360, 362, 366, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 561, 562, 563, 566, 567, 568, 569, 572, 573, 574, 575, 577, 579, 585, 591, 592, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 615, 622, 628, 630, 632, 634, 636, 638, 641, 643, 671, 674, 675, 677, 682, 688], "cli": [1, 18, 48, 67, 83, 103, 111, 117, 169, 238, 328, 331, 441, 507, 545, 554, 585, 592, 600, 646, 649, 653, 659, 660, 664, 665, 666, 670, 671, 672, 673, 681], "plugin": [1, 2, 6, 8, 10, 12, 13, 16, 18, 27, 30, 31, 32, 39, 40, 44, 45, 47, 48, 50, 54, 55, 56, 57, 58, 60, 63, 66, 68, 69, 74, 78, 79, 93, 98, 100, 102, 104, 105, 106, 107, 109, 110, 112, 113, 114, 117, 118, 120, 121, 126, 127, 128, 130, 131, 132, 133, 134, 136, 137, 139, 140, 141, 145, 149, 151, 155, 156, 158, 163, 165, 172, 174, 178, 179, 184, 196, 199, 203, 204, 207, 209, 210, 216, 217, 220, 226, 233, 237, 242, 246, 252, 266, 268, 279, 284, 286, 291, 292, 299, 302, 303, 304, 311, 316, 318, 319, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 336, 345, 346, 347, 348, 349, 350, 354, 357, 364, 366, 367, 371, 547, 560, 562, 563, 564, 567, 572, 573, 577, 585, 586, 587, 591, 592, 600, 606, 607, 611, 612, 613, 615, 616, 617, 620, 623, 624, 630, 658, 659, 660, 661, 662, 663, 664, 678, 681, 682, 684, 689, 690, 692], "weiterhin": [1, 5, 47, 52, 53, 62, 98, 103, 106, 120, 124, 162, 200, 207, 219, 263, 285, 289, 291, 293, 306, 307, 314, 327, 338, 351, 562, 587, 589, 599, 632, 633, 634, 641, 652, 653, 654, 655, 656, 671, 682, 688, 689], "status": [1, 13, 53, 55, 56, 71, 79, 84, 86, 89, 90, 112, 124, 130, 141, 155, 164, 166, 169, 170, 173, 177, 178, 179, 186, 207, 211, 212, 213, 215, 218, 219, 227, 234, 243, 244, 248, 257, 258, 259, 262, 263, 284, 289, 290, 291, 294, 295, 297, 300, 304, 305, 306, 307, 314, 315, 323, 324, 325, 326, 329, 330, 332, 333, 337, 338, 341, 347, 349, 351, 356, 357, 367, 370, 376, 382, 406, 416, 419, 420, 421, 422, 436, 449, 453, 460, 481, 482, 487, 488, 492, 497, 498, 499, 504, 508, 519, 537, 545, 547, 548, 550, 552, 554, 558, 567, 574, 585, 591, 610, 612, 632, 641, 643, 646, 648, 649, 652, 654, 655, 656, 681, 682], "angeseh": [1, 58, 289], "soweit": [1, 28, 48, 51, 52, 53, 54, 55, 71, 77, 260, 291, 293, 328], "selb": [1, 13, 27, 43, 45, 52, 53, 54, 55, 58, 67, 79, 83, 92, 103, 106, 109, 115, 121, 123, 155, 163, 164, 171, 189, 191, 201, 212, 213, 219, 220, 238, 243, 260, 264, 267, 291, 293, 304, 314, 322, 324, 329, 331, 332, 333, 359, 367, 369, 370, 418, 434, 486, 519, 532, 548, 549, 561, 571, 572, 573, 576, 585, 589, 594, 595, 599, 601, 602, 603, 604, 607, 608, 609, 615, 622, 625, 634, 671, 682, 685, 686, 688, 689, 693], "rechn": [1, 13, 27, 28, 45, 71, 79, 82, 83, 84, 88, 90, 92, 121, 165, 203, 255, 259, 338, 367, 615, 617, 688], "lauf": [1, 42, 67, 68, 71, 76, 79, 83, 89, 165, 187, 210, 226, 261, 270, 271, 338, 360, 496, 524, 550, 551, 568, 588, 589, 594, 595, 596, 630, 632, 671, 672, 673, 693], "konn": [1, 2, 3, 4, 5, 6, 8, 9, 16, 18, 24, 25, 27, 31, 32, 33, 34, 39, 42, 43, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 64, 65, 67, 68, 71, 76, 79, 80, 82, 83, 85, 86, 88, 90, 92, 93, 94, 95, 96, 97, 98, 100, 103, 104, 106, 108, 109, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 131, 153, 162, 163, 164, 165, 166, 168, 169, 170, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 197, 200, 201, 203, 207, 210, 212, 213, 214, 215, 217, 219, 220, 222, 226, 229, 230, 238, 241, 243, 244, 249, 250, 252, 255, 256, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 279, 284, 285, 287, 289, 293, 302, 304, 306, 307, 314, 316, 319, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 343, 345, 346, 347, 348, 351, 354, 357, 359, 360, 366, 367, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 560, 561, 562, 563, 565, 566, 567, 568, 569, 570, 573, 574, 575, 576, 577, 579, 581, 583, 585, 586, 587, 588, 589, 591, 592, 593, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 611, 614, 617, 618, 619, 622, 625, 630, 631, 632, 633, 634, 638, 641, 642, 643, 644, 645, 646, 652, 671, 674, 682, 685, 686, 687, 688, 691, 692, 693], "funktion": [1, 5, 16, 42, 43, 47, 54, 55, 56, 61, 71, 86, 96, 103, 106, 113, 116, 117, 120, 125, 131, 155, 162, 165, 187, 189, 191, 201, 212, 213, 219, 220, 233, 238, 244, 255, 264, 267, 284, 289, 295, 304, 320, 321, 323, 325, 326, 328, 329, 332, 337, 339, 340, 347, 348, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 554, 555, 558, 563, 564, 565, 566, 567, 570, 576, 577, 581, 587, 588, 590, 591, 592, 594, 595, 598, 599, 600, 601, 602, 604, 606, 607, 608, 610, 618, 619, 622, 625, 632, 634, 636, 638, 641, 642, 643, 677, 688, 689, 693], "ausgelost": [1, 3, 42, 52, 62, 89, 112, 117, 155, 189, 219, 241, 304, 321, 325, 328, 331, 338, 351, 362, 425, 508, 567, 572, 573, 575, 576, 588, 591, 592, 594, 600, 632], "cor": [1, 8, 10, 43, 45, 47, 50, 57, 73, 78, 79, 83, 84, 92, 96, 107, 108, 110, 115, 116, 118, 119, 126, 132, 134, 136, 137, 140, 143, 149, 151, 155, 162, 219, 278, 304, 356, 357, 554, 555, 580, 585, 611, 612, 615, 632, 642, 667, 678, 681, 689, 693], "Diese": [1, 2, 10, 14, 18, 25, 27, 28, 31, 32, 37, 43, 46, 48, 50, 51, 52, 53, 54, 55, 56, 58, 60, 62, 67, 68, 72, 73, 74, 76, 78, 79, 82, 83, 85, 91, 92, 97, 106, 108, 109, 111, 112, 113, 116, 117, 118, 123, 124, 125, 131, 155, 162, 166, 169, 170, 172, 178, 179, 184, 187, 189, 191, 192, 194, 200, 201, 210, 212, 213, 215, 219, 222, 223, 230, 232, 238, 252, 255, 262, 263, 264, 265, 267, 268, 277, 279, 285, 287, 289, 291, 293, 295, 302, 304, 313, 314, 316, 323, 325, 326, 328, 329, 330, 331, 332, 336, 338, 347, 348, 351, 354, 357, 359, 360, 362, 366, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 554, 555, 560, 563, 566, 573, 574, 575, 577, 580, 583, 586, 591, 592, 594, 596, 597, 599, 600, 601, 602, 603, 604, 607, 608, 609, 625, 629, 632, 634, 638, 641, 646, 652, 653, 655, 656, 680, 682, 685, 687, 688, 689, 691, 693], "setzt": [1, 12, 16, 25, 60, 79, 83, 122, 164, 167, 170, 213, 224, 241, 262, 314, 325, 326, 329, 332, 347, 360, 382, 406, 434, 453, 479, 486, 517, 527, 562, 567, 568, 569, 573, 577, 585, 591, 592, 594, 599, 635], "voraus": [1, 16, 79, 689], "lauft": [1, 8, 12, 27, 45, 46, 52, 67, 68, 80, 84, 86, 89, 90, 92, 102, 121, 122, 155, 168, 172, 187, 207, 302, 304, 370, 405, 406, 472, 477, 545, 550, 568, 580, 615, 617, 632, 641, 649, 671, 672, 674, 675, 682, 688, 693], "backup": [1, 27, 90, 92, 102, 113, 136, 195, 585, 635, 643, 648, 649, 655, 656, 677], "herunterlad": [1, 82, 92, 222, 223, 260, 440, 688], "konfigurationsdat": [1, 102, 187, 419, 420], "zip": [1, 22, 92, 102, 172, 648], "archiv": [1, 22, 92, 102, 219, 231, 368, 433, 627], "enthalt": [1, 16, 27, 38, 43, 47, 48, 50, 51, 52, 53, 68, 73, 81, 83, 84, 86, 97, 102, 103, 104, 105, 106, 109, 111, 112, 125, 163, 164, 167, 169, 170, 187, 189, 200, 213, 219, 220, 223, 224, 229, 232, 241, 261, 262, 263, 265, 289, 293, 295, 302, 304, 306, 307, 310, 314, 316, 320, 326, 328, 329, 330, 332, 336, 338, 351, 359, 374, 375, 377, 382, 386, 387, 388, 391, 392, 393, 395, 396, 399, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 429, 433, 434, 436, 437, 438, 442, 443, 445, 448, 450, 451, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 528, 529, 532, 534, 538, 545, 546, 547, 548, 550, 552, 554, 556, 557, 558, 561, 566, 567, 574, 575, 576, 577, 589, 591, 593, 594, 595, 601, 602, 603, 604, 607, 608, 609, 630, 632, 633, 635, 638, 641, 642, 682, 686, 687, 692, 693], "konfigurationsdatei": [1, 2, 4, 6, 8, 27, 42, 52, 53, 69, 83, 84, 85, 87, 92, 94, 96, 97, 100, 101, 102, 103, 105, 111, 112, 114, 117, 120, 123, 124, 153, 165, 169, 212, 213, 230, 316, 325, 371, 432, 440, 505, 561, 566, 567, 577, 578, 579, 584, 590, 591, 592, 593, 594, 597, 600, 601, 602, 603, 632, 671, 677, 679, 682], "etc": [1, 2, 5, 8, 13, 22, 27, 40, 42, 43, 44, 45, 53, 54, 55, 58, 66, 69, 71, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 96, 97, 98, 100, 102, 104, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 123, 126, 130, 133, 137, 143, 145, 148, 153, 160, 164, 165, 166, 167, 168, 169, 170, 172, 181, 183, 184, 188, 189, 191, 192, 193, 194, 195, 196, 197, 200, 201, 212, 213, 217, 219, 220, 223, 227, 229, 230, 232, 233, 237, 238, 243, 244, 251, 252, 261, 262, 263, 264, 267, 268, 271, 272, 276, 278, 285, 301, 304, 306, 307, 309, 315, 318, 319, 322, 323, 324, 325, 326, 328, 329, 330, 332, 333, 335, 337, 346, 347, 352, 355, 356, 357, 360, 361, 365, 368, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 550, 554, 566, 572, 573, 575, 577, 580, 583, 584, 585, 590, 592, 593, 594, 596, 597, 599, 600, 601, 602, 604, 607, 608, 609, 612, 613, 614, 615, 616, 619, 624, 630, 632, 634, 635, 636, 638, 641, 642, 643, 645, 646, 647, 649, 650, 651, 652, 653, 655, 669, 670, 671, 673, 674, 677, 679, 682, 684, 690, 693], "verzeichnis": [1, 22, 39, 42, 43, 44, 47, 48, 50, 52, 53, 59, 60, 64, 80, 82, 83, 85, 90, 92, 97, 98, 102, 108, 111, 113, 114, 117, 120, 122, 123, 125, 153, 162, 172, 178, 192, 203, 282, 283, 284, 285, 302, 322, 338, 354, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 556, 557, 579, 590, 592, 600, 601, 602, 603, 608, 610, 613, 614, 616, 619, 628, 629, 630, 635, 638, 671, 674, 676, 677, 678, 687, 688, 690, 693], "logging": [1, 22, 40, 44, 52, 66, 71, 102, 103, 106, 113, 126, 136, 138, 141, 186, 188, 195, 200, 216, 218, 227, 232, 243, 248, 253, 254, 255, 263, 273, 293, 306, 307, 312, 317, 318, 331, 368, 463, 575, 577, 613, 618, 624, 635, 641, 642, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 669, 670, 672, 674, 675], "logic": [1, 40, 42, 45, 52, 54, 55, 66, 71, 102, 106, 109, 112, 117, 133, 139, 144, 147, 153, 168, 180, 181, 193, 198, 205, 206, 219, 227, 260, 263, 269, 278, 326, 335, 338, 344, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 572, 589, 590, 592, 595, 596, 612, 615, 624, 643, 645, 646, 649, 650, 651, 652, 653, 655, 660, 664, 665, 666, 667, 670, 671], "smarthom": [1, 4, 8, 13, 27, 30, 37, 39, 44, 45, 47, 52, 53, 54, 55, 66, 68, 69, 71, 76, 80, 85, 87, 88, 89, 90, 102, 106, 107, 108, 111, 115, 116, 120, 124, 125, 126, 127, 129, 132, 133, 134, 136, 137, 140, 141, 143, 144, 145, 146, 147, 148, 150, 154, 157, 158, 160, 162, 164, 169, 170, 171, 179, 182, 184, 185, 186, 187, 192, 193, 194, 195, 196, 198, 199, 200, 202, 205, 206, 210, 212, 213, 214, 215, 218, 219, 220, 221, 222, 230, 234, 239, 241, 245, 248, 252, 253, 255, 257, 260, 261, 265, 266, 268, 269, 273, 278, 283, 288, 289, 293, 294, 298, 301, 302, 306, 307, 311, 314, 315, 322, 335, 338, 344, 348, 349, 352, 353, 354, 355, 356, 357, 359, 360, 364, 365, 366, 382, 383, 432, 527, 545, 550, 565, 583, 585, 591, 599, 610, 612, 613, 615, 621, 624, 630, 635, 636, 639, 641, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 664, 665, 667, 668, 669, 674, 677, 678, 679, 680, 681, 682, 691], "struct": [1, 2, 25, 40, 52, 102, 103, 106, 126, 134, 171, 173, 176, 178, 184, 189, 190, 200, 219, 220, 233, 244, 262, 268, 277, 280, 295, 314, 318, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 347, 351, 359, 362, 367, 370, 371, 462, 479, 508, 533, 566, 577, 635, 641, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 693], "all": [1, 2, 4, 5, 12, 13, 16, 20, 22, 24, 25, 27, 40, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 63, 64, 66, 68, 71, 79, 80, 82, 83, 85, 86, 87, 88, 89, 90, 92, 95, 97, 98, 100, 103, 106, 107, 111, 115, 116, 120, 122, 123, 125, 126, 130, 133, 134, 136, 137, 139, 140, 141, 144, 146, 148, 149, 152, 157, 158, 162, 163, 164, 165, 166, 168, 169, 170, 171, 175, 178, 180, 181, 184, 186, 187, 188, 189, 190, 191, 192, 195, 196, 198, 200, 201, 202, 203, 205, 206, 210, 211, 214, 215, 217, 218, 219, 220, 221, 223, 224, 226, 227, 228, 229, 230, 231, 232, 233, 235, 236, 238, 240, 241, 244, 245, 247, 248, 249, 250, 251, 255, 256, 257, 259, 260, 261, 262, 263, 264, 267, 268, 272, 274, 275, 278, 282, 285, 286, 288, 289, 290, 291, 293, 294, 295, 301, 302, 304, 305, 306, 307, 309, 310, 312, 314, 315, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 334, 335, 338, 339, 340, 344, 345, 346, 347, 349, 351, 353, 355, 356, 357, 359, 360, 361, 363, 365, 368, 369, 370, 373, 374, 375, 379, 381, 382, 386, 387, 388, 391, 392, 393, 395, 396, 397, 399, 400, 402, 403, 406, 407, 408, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 428, 429, 433, 434, 435, 436, 437, 438, 441, 442, 443, 446, 448, 450, 451, 453, 454, 455, 456, 457, 458, 459, 460, 461, 464, 467, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 483, 486, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 500, 503, 504, 505, 506, 507, 508, 509, 510, 511, 513, 514, 515, 516, 517, 522, 523, 524, 525, 528, 529, 530, 532, 534, 536, 537, 538, 550, 561, 562, 563, 565, 567, 569, 570, 572, 573, 583, 585, 586, 591, 592, 593, 595, 596, 599, 601, 602, 603, 604, 607, 608, 609, 612, 613, 614, 615, 617, 618, 619, 620, 621, 623, 624, 632, 634, 635, 638, 641, 642, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 666, 667, 670, 671, 674, 675, 678, 681, 682, 686, 687, 690], "datei": [1, 2, 13, 14, 22, 24, 27, 31, 33, 34, 37, 42, 43, 44, 47, 48, 51, 53, 56, 59, 67, 68, 69, 71, 76, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 93, 94, 97, 98, 102, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 123, 124, 125, 154, 162, 164, 165, 169, 170, 172, 178, 181, 187, 188, 189, 191, 192, 194, 195, 201, 203, 219, 220, 222, 223, 229, 230, 232, 243, 244, 249, 250, 261, 263, 264, 267, 279, 284, 285, 313, 314, 321, 322, 323, 324, 329, 333, 338, 351, 360, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 556, 557, 558, 579, 583, 585, 588, 590, 592, 593, 596, 597, 599, 600, 601, 602, 603, 604, 605, 608, 609, 610, 612, 613, 614, 616, 619, 621, 622, 625, 626, 628, 630, 632, 635, 636, 638, 641, 642, 671, 674, 677, 678, 682, 685, 687, 688, 690, 693], "item": [1, 15, 26, 31, 32, 42, 44, 45, 50, 54, 55, 58, 60, 61, 63, 66, 67, 69, 71, 83, 85, 93, 100, 102, 107, 108, 112, 113, 114, 116, 117, 119, 123, 124, 125, 126, 128, 130, 137, 139, 146, 147, 149, 153, 157, 163, 178, 179, 180, 181, 191, 192, 201, 204, 206, 210, 217, 220, 223, 226, 228, 233, 238, 242, 246, 252, 255, 264, 266, 267, 271, 273, 283, 286, 287, 299, 302, 311, 316, 318, 320, 321, 322, 326, 327, 329, 330, 332, 333, 336, 346, 347, 348, 349, 354, 366, 367, 545, 550, 552, 554, 560, 568, 569, 570, 571, 572, 575, 577, 578, 579, 583, 587, 589, 590, 592, 594, 596, 597, 599, 600, 601, 612, 613, 615, 619, 620, 621, 622, 623, 624, 625, 634, 635, 641, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 669, 670, 671, 672, 673, 674, 677, 679, 681, 682, 683, 687, 689, 690, 691, 693], "scen": [1, 39, 43, 45, 53, 102, 103, 124, 160, 162, 205, 211, 212, 213, 281, 419, 420, 577, 579, 595, 601, 602, 604, 607, 608, 609, 612, 615, 635, 646, 649, 666, 673, 677], "python": [1, 3, 8, 30, 31, 33, 34, 37, 39, 40, 42, 43, 44, 45, 46, 48, 52, 53, 54, 55, 56, 68, 76, 80, 89, 90, 92, 100, 103, 104, 106, 107, 108, 109, 113, 115, 116, 120, 121, 122, 125, 126, 130, 133, 136, 137, 138, 139, 143, 145, 151, 153, 154, 157, 158, 162, 164, 169, 171, 172, 173, 175, 176, 185, 186, 187, 192, 193, 194, 210, 215, 217, 219, 222, 223, 227, 232, 235, 236, 249, 251, 253, 263, 265, 270, 271, 275, 277, 282, 284, 287, 297, 299, 300, 308, 310, 314, 315, 325, 334, 335, 338, 339, 340, 341, 342, 343, 347, 359, 360, 361, 367, 370, 376, 381, 387, 389, 398, 400, 401, 408, 410, 412, 413, 417, 431, 435, 437, 438, 441, 452, 453, 463, 464, 467, 487, 494, 496, 504, 508, 512, 513, 515, 522, 531, 533, 537, 538, 545, 548, 550, 554, 558, 563, 573, 575, 576, 577, 579, 581, 582, 584, 585, 586, 587, 589, 590, 593, 594, 595, 606, 610, 612, 613, 615, 616, 618, 629, 632, 633, 638, 667, 670, 676, 678, 692, 693], "cod": [1, 22, 31, 33, 34, 36, 42, 43, 44, 46, 48, 53, 54, 55, 56, 58, 60, 62, 64, 66, 68, 73, 74, 76, 85, 92, 103, 106, 117, 130, 137, 139, 141, 148, 151, 157, 166, 168, 169, 172, 182, 195, 208, 216, 217, 227, 229, 247, 250, 254, 255, 261, 262, 263, 272, 274, 275, 278, 290, 294, 297, 298, 305, 306, 307, 326, 332, 334, 335, 341, 344, 351, 356, 357, 361, 365, 371, 401, 477, 479, 497, 498, 499, 501, 532, 545, 548, 563, 586, 588, 590, 591, 592, 595, 600, 606, 610, 612, 613, 614, 616, 619, 621, 622, 623, 624, 627, 630, 632, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 667, 670, 673], "logik": [1, 2, 4, 12, 31, 32, 43, 45, 52, 53, 54, 55, 78, 83, 98, 100, 103, 104, 105, 106, 108, 112, 121, 125, 131, 162, 168, 170, 172, 181, 184, 187, 194, 197, 203, 217, 223, 256, 261, 268, 272, 276, 284, 302, 304, 313, 314, 316, 326, 332, 338, 339, 340, 348, 351, 359, 363, 545, 554, 558, 560, 562, 563, 565, 567, 569, 570, 571, 572, 573, 577, 586, 588, 591, 594, 597, 598, 599, 600, 604, 609, 615, 619, 625, 634, 635, 638, 641, 643, 671, 673, 674, 677, 690, 693], "logics": [1, 4, 12, 40, 42, 45, 71, 83, 92, 103, 107, 108, 115, 117, 133, 144, 153, 180, 205, 206, 218, 221, 232, 243, 261, 269, 288, 296, 304, 315, 356, 357, 360, 361, 560, 562, 588, 590, 591, 592, 593, 595, 596, 600, 612, 615, 635, 643, 645, 646, 649, 650, 651, 654, 655, 656, 660, 663, 664, 666, 670, 671, 691], "7": [1, 12, 15, 16, 20, 43, 44, 45, 53, 54, 57, 71, 77, 79, 83, 84, 86, 88, 92, 97, 102, 104, 107, 115, 116, 148, 152, 154, 157, 162, 165, 175, 179, 189, 195, 196, 197, 198, 207, 219, 226, 231, 232, 235, 239, 248, 249, 253, 254, 255, 257, 262, 263, 275, 279, 284, 287, 289, 301, 305, 306, 307, 308, 309, 314, 328, 329, 334, 347, 354, 355, 356, 357, 361, 370, 382, 387, 390, 394, 400, 408, 416, 417, 433, 434, 435, 441, 454, 461, 467, 478, 487, 530, 545, 548, 550, 558, 566, 573, 583, 585, 595, 599, 601, 602, 603, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 633, 634, 636, 638, 639, 641, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 678, 681, 682, 689, 691], "zertifikat": [1, 44, 82, 102, 120, 122, 359, 382, 406, 460, 524, 613, 616, 690], "key": [1, 43, 44, 50, 53, 60, 66, 71, 102, 104, 106, 110, 112, 120, 122, 124, 126, 127, 133, 136, 137, 139, 148, 176, 179, 181, 200, 210, 215, 219, 222, 227, 237, 248, 249, 256, 262, 263, 272, 273, 274, 290, 311, 335, 336, 337, 344, 346, 347, 361, 365, 366, 390, 397, 421, 422, 423, 430, 434, 466, 472, 510, 511, 516, 521, 524, 529, 532, 545, 558, 563, 575, 601, 602, 604, 607, 608, 609, 613, 616, 624, 632, 643, 646, 647, 649, 650, 651, 655, 684, 688, 690], "cer": [1, 44, 102, 120, 122, 613, 616, 643, 649, 684, 690], "tls": [1, 45, 83, 102, 161, 241, 615, 688], "https": [1, 28, 44, 47, 48, 52, 53, 54, 55, 69, 73, 76, 83, 84, 85, 102, 120, 122, 141, 152, 160, 161, 162, 170, 171, 174, 175, 176, 182, 186, 192, 198, 200, 206, 208, 211, 212, 213, 214, 215, 216, 217, 218, 219, 221, 222, 225, 226, 229, 234, 235, 236, 239, 245, 247, 253, 254, 260, 262, 269, 273, 274, 275, 276, 278, 280, 282, 283, 284, 296, 298, 308, 309, 312, 313, 315, 325, 334, 335, 336, 337, 338, 344, 346, 349, 352, 353, 355, 356, 357, 359, 364, 365, 368, 371, 376, 382, 388, 394, 405, 406, 416, 423, 424, 425, 430, 431, 460, 462, 468, 472, 479, 510, 511, 516, 518, 520, 530, 533, 545, 550, 558, 599, 610, 613, 616, 617, 641, 646, 647, 649, 651, 669, 674, 675, 688], "gesichert": [1, 8, 27, 52, 90, 92, 96, 102, 409, 585], "heruntergelad": [1, 92, 187, 219, 642], "tragt": [1, 43, 48, 97, 112, 262, 585, 599, 614, 619, 630, 634], "nam": [1, 2, 3, 7, 9, 12, 13, 22, 24, 27, 28, 40, 42, 43, 44, 45, 47, 48, 50, 53, 54, 55, 56, 58, 60, 62, 64, 66, 68, 69, 71, 82, 83, 85, 88, 90, 93, 95, 96, 97, 98, 100, 102, 103, 104, 105, 106, 107, 111, 112, 113, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 129, 130, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 154, 155, 157, 158, 160, 164, 165, 166, 168, 169, 171, 180, 181, 184, 185, 187, 189, 192, 195, 196, 200, 202, 203, 207, 211, 212, 213, 215, 216, 218, 221, 222, 223, 227, 229, 230, 231, 234, 235, 237, 239, 243, 245, 247, 248, 249, 250, 253, 254, 255, 257, 258, 259, 260, 261, 262, 263, 265, 266, 268, 274, 275, 277, 279, 281, 282, 284, 285, 287, 288, 289, 290, 293, 294, 296, 297, 298, 299, 300, 301, 302, 304, 305, 308, 309, 310, 311, 312, 314, 315, 316, 317, 319, 323, 324, 326, 327, 328, 329, 330, 331, 332, 333, 335, 337, 338, 339, 340, 341, 346, 351, 352, 353, 354, 355, 356, 357, 358, 360, 361, 362, 365, 369, 370, 371, 373, 376, 378, 381, 383, 391, 399, 400, 407, 408, 409, 413, 415, 417, 419, 420, 421, 422, 427, 428, 435, 440, 441, 444, 448, 449, 453, 455, 456, 458, 459, 460, 462, 464, 465, 467, 469, 471, 482, 485, 496, 498, 499, 504, 506, 507, 508, 510, 511, 518, 520, 523, 537, 538, 545, 547, 548, 550, 552, 554, 558, 561, 563, 566, 567, 573, 574, 575, 577, 578, 579, 580, 583, 584, 585, 591, 592, 593, 594, 595, 596, 597, 599, 601, 602, 603, 604, 606, 608, 609, 610, 612, 613, 614, 615, 616, 619, 622, 623, 624, 625, 628, 629, 630, 632, 633, 634, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 667, 670, 671, 674, 677, 681, 682, 683, 686, 687, 688, 690, 691], "shng_config_backup_": 1, "jahr": [1, 16, 56, 92, 96, 104, 116, 187, 189, 226, 287, 397, 585, 599, 634, 643, 644, 645, 691], "monat": [1, 16, 104, 116, 189, 207, 325, 334, 397, 569, 585, 592, 599, 634], "tag": [1, 4, 16, 47, 54, 55, 56, 58, 60, 96, 104, 116, 164, 178, 184, 187, 189, 219, 222, 223, 226, 260, 262, 263, 268, 287, 294, 295, 324, 325, 328, 329, 334, 347, 349, 371, 389, 396, 397, 423, 508, 514, 526, 564, 569, 585, 592, 599, 634, 641, 647], "stund": [1, 8, 16, 42, 119, 131, 155, 165, 184, 187, 189, 226, 262, 263, 268, 283, 287, 293, 304, 325, 329, 331, 436, 502, 508, 568, 569, 585, 592, 599, 612, 634, 688], "minut": [1, 8, 12, 16, 19, 40, 42, 82, 87, 103, 142, 148, 152, 165, 176, 186, 192, 219, 220, 260, 261, 262, 287, 288, 294, 295, 317, 326, 328, 329, 332, 334, 347, 365, 370, 416, 423, 479, 486, 519, 530, 532, 562, 568, 569, 570, 585, 592, 599, 634, 636, 646, 651, 654, 688], "link": [1, 2, 4, 5, 6, 56, 57, 60, 65, 95, 96, 98, 160, 165, 170, 200, 211, 212, 213, 223, 226, 251, 260, 261, 292, 296, 306, 307, 314, 338, 359, 373, 378, 462, 496, 523, 545, 547, 548, 550, 552, 554, 558, 644, 646, 649, 653, 654, 655, 689], "neb": [1, 5, 8, 52, 58, 93, 169, 184, 189, 212, 213, 268, 310, 324, 325, 329, 346, 351, 599, 611, 622, 636, 671, 674], "datum": [1, 56, 71, 83, 102, 104, 115, 116, 165, 167, 192, 232, 263, 295, 306, 307, 338, 401, 411, 434, 453, 502, 520, 573, 575, 585, 599, 632, 634], "uhrzeit": [1, 13, 20, 28, 71, 83, 96, 115, 165, 184, 188, 192, 263, 268, 295, 306, 307, 347, 434, 519, 575, 585, 599, 632, 634], "letzt": [1, 4, 8, 12, 43, 53, 58, 76, 79, 83, 85, 92, 96, 104, 116, 155, 164, 165, 167, 170, 187, 189, 191, 192, 200, 201, 215, 219, 220, 229, 237, 261, 262, 263, 264, 267, 287, 289, 291, 293, 295, 304, 314, 325, 326, 327, 328, 330, 331, 332, 337, 338, 339, 340, 346, 347, 370, 422, 453, 479, 484, 562, 563, 567, 573, 575, 589, 591, 594, 599, 601, 602, 604, 607, 608, 609, 634, 641, 642, 671], "backups": [1, 102, 643], "restor": [1, 90, 102, 288, 643, 648, 655, 677], "wiederherstell": [1, 27, 92, 486, 677], "archivdatei": 1, "ausgewahlt": [1, 2, 4, 6, 51, 52, 73, 82, 95, 200, 261, 262, 302, 314, 338, 349, 351, 354, 396, 400, 408, 435, 441, 449, 464, 467, 536, 682], "hochgelad": [1, 232, 434], "Im": [1, 8, 12, 13, 15, 16, 22, 27, 39, 46, 47, 52, 53, 56, 58, 60, 61, 62, 71, 73, 82, 83, 85, 88, 89, 96, 97, 98, 103, 104, 105, 106, 112, 116, 123, 125, 154, 162, 164, 168, 170, 178, 179, 184, 187, 192, 200, 203, 207, 210, 212, 213, 219, 220, 223, 224, 229, 232, 244, 252, 255, 256, 260, 262, 265, 266, 268, 283, 289, 292, 293, 295, 300, 302, 310, 316, 321, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 339, 340, 346, 347, 348, 351, 357, 359, 360, 363, 366, 367, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 562, 566, 567, 569, 573, 576, 587, 591, 592, 594, 597, 598, 603, 605, 612, 618, 622, 625, 628, 630, 632, 635, 637, 638, 641, 671, 676, 681, 682, 683, 685, 688, 692], "anschluss": [1, 27, 79, 220, 261, 351, 367, 400, 408, 449, 464, 467, 590, 688], "wiederhergestellt": [1, 102, 165, 289, 314, 359], "Als": [1, 27, 45, 67, 77, 86, 94, 106, 115, 125, 162, 164, 170, 184, 200, 215, 219, 226, 268, 304, 321, 328, 331, 366, 381, 507, 567, 574, 591, 593, 615, 628, 632, 638, 688], "vorsichtsmassnahm": 1, "beginn": [1, 2, 13, 16, 43, 53, 58, 60, 97, 100, 103, 104, 106, 114, 116, 123, 167, 169, 189, 262, 331, 347, 352, 365, 379, 398, 479, 506, 508, 527, 561, 563, 566, 596, 599, 602, 603, 608, 619, 634, 636, 671, 674, 686, 687], "aktuell": [1, 2, 4, 8, 12, 13, 19, 22, 37, 42, 47, 50, 56, 60, 62, 68, 69, 73, 78, 79, 82, 83, 85, 90, 92, 95, 97, 106, 111, 121, 124, 154, 155, 162, 164, 165, 166, 169, 170, 171, 181, 184, 187, 188, 189, 191, 192, 200, 201, 203, 207, 213, 215, 217, 219, 220, 229, 238, 255, 256, 260, 261, 262, 263, 264, 265, 267, 268, 271, 272, 276, 287, 289, 292, 295, 300, 302, 304, 310, 314, 319, 320, 321, 323, 324, 325, 326, 328, 330, 331, 332, 333, 337, 338, 346, 347, 349, 351, 363, 369, 370, 378, 379, 382, 397, 411, 413, 431, 434, 436, 449, 453, 456, 479, 484, 494, 507, 508, 513, 514, 516, 520, 526, 536, 538, 545, 547, 548, 550, 552, 554, 558, 562, 566, 567, 573, 574, 575, 576, 577, 580, 585, 588, 591, 594, 599, 612, 629, 630, 632, 634, 636, 638, 641, 642, 652, 653, 654, 656, 671, 674, 682, 688, 689, 690, 692, 693], "vorgenomm": [1, 2, 28, 82, 83, 84, 92, 104, 106, 162, 170, 189, 192, 212, 213, 220, 265, 289, 300, 328, 332, 347, 595, 682, 687, 690], "Dieses": [1, 37, 48, 52, 53, 56, 58, 69, 71, 82, 83, 92, 93, 96, 100, 102, 106, 109, 119, 121, 122, 168, 169, 170, 172, 179, 181, 187, 192, 194, 196, 197, 204, 215, 222, 223, 228, 230, 232, 243, 256, 259, 262, 263, 284, 287, 289, 291, 295, 300, 311, 313, 314, 323, 328, 331, 333, 337, 343, 346, 347, 351, 354, 362, 366, 367, 369, 371, 374, 376, 381, 382, 383, 384, 385, 387, 389, 394, 397, 399, 400, 405, 408, 411, 412, 416, 420, 421, 422, 423, 424, 426, 428, 434, 435, 437, 438, 441, 445, 446, 447, 449, 457, 458, 460, 463, 464, 465, 467, 474, 475, 478, 480, 482, 483, 484, 485, 488, 489, 490, 491, 494, 495, 496, 497, 501, 503, 505, 506, 513, 514, 515, 518, 519, 521, 523, 524, 526, 527, 532, 533, 536, 537, 538, 545, 550, 558, 561, 571, 580, 585, 594, 599, 603, 612, 613, 615, 616, 628, 630, 632, 635, 636, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 677, 678, 680, 681, 682, 686, 687, 693], "verbleibt": [1, 59, 321, 328], "notfall": [1, 362], "gewunscht": [1, 2, 4, 8, 45, 52, 58, 60, 83, 84, 92, 95, 98, 102, 106, 116, 123, 124, 169, 203, 212, 213, 217, 261, 289, 314, 333, 347, 417, 449, 454, 516, 517, 519, 584, 585, 615, 625, 628, 674, 682], "enthielt": 1, "var": [1, 27, 40, 42, 50, 54, 55, 58, 62, 63, 66, 71, 83, 85, 86, 88, 89, 90, 92, 102, 103, 107, 111, 115, 116, 148, 151, 152, 161, 178, 188, 202, 203, 216, 217, 219, 232, 235, 236, 263, 273, 274, 288, 294, 312, 313, 322, 325, 326, 328, 330, 331, 332, 338, 359, 360, 397, 410, 423, 434, 463, 485, 496, 508, 527, 567, 583, 585, 588, 591, 620, 624, 630, 641, 642, 646, 649, 651, 655, 684, 688], "abgelegt": [1, 8, 31, 33, 34, 40, 42, 51, 52, 54, 60, 76, 83, 85, 97, 102, 103, 106, 108, 109, 125, 153, 155, 169, 203, 214, 223, 226, 243, 250, 302, 304, 306, 307, 369, 401, 410, 419, 420, 508, 589, 590, 596, 625, 629, 638, 671, 676, 682, 687, 690, 693], "dateinam": [1, 3, 42, 92, 97, 102, 112, 114, 117, 124, 178, 203, 219, 263, 338, 381, 396, 397, 423, 424, 425, 506, 512, 567, 585, 591, 592, 594, 600, 635, 672, 687], "shng_config_backup_before_restore_": 1, "In": [1, 2, 4, 8, 10, 12, 13, 15, 24, 27, 31, 32, 42, 45, 46, 47, 51, 53, 54, 55, 58, 62, 66, 67, 68, 71, 73, 76, 80, 83, 84, 87, 88, 92, 94, 96, 97, 98, 103, 104, 106, 111, 112, 114, 115, 116, 117, 124, 125, 130, 131, 136, 162, 164, 168, 170, 178, 181, 184, 188, 189, 191, 192, 193, 194, 198, 200, 201, 205, 208, 210, 211, 219, 223, 229, 230, 238, 240, 243, 248, 249, 254, 258, 261, 262, 263, 264, 267, 268, 278, 280, 288, 289, 290, 292, 293, 294, 298, 302, 305, 313, 314, 315, 316, 321, 323, 325, 326, 327, 328, 329, 330, 331, 332, 335, 337, 338, 339, 340, 342, 347, 349, 352, 354, 362, 368, 371, 395, 401, 428, 470, 504, 508, 561, 564, 566, 575, 576, 577, 582, 583, 585, 586, 587, 588, 589, 591, 592, 595, 597, 603, 609, 615, 618, 623, 624, 625, 627, 630, 632, 638, 641, 642, 655, 671, 673, 682, 686, 687, 688, 693], "zeil": [1, 3, 4, 5, 42, 44, 47, 58, 62, 71, 83, 86, 87, 88, 95, 105, 106, 112, 115, 116, 162, 163, 169, 170, 179, 184, 187, 192, 200, 204, 210, 212, 213, 219, 220, 229, 232, 249, 252, 255, 265, 266, 268, 289, 295, 302, 306, 307, 309, 311, 314, 321, 326, 347, 348, 349, 351, 357, 360, 366, 376, 400, 401, 408, 410, 441, 464, 467, 490, 496, 523, 583, 588, 589, 613, 622, 682, 686, 688], "divers": [1, 24, 25, 56, 58, 78, 82, 106, 178, 181, 189, 215, 219, 321, 326, 327, 519, 598, 651, 654, 674, 683], "optional": [1, 31, 32, 43, 44, 45, 48, 52, 53, 54, 55, 58, 62, 63, 64, 66, 81, 103, 112, 117, 119, 120, 121, 122, 123, 126, 133, 136, 141, 144, 147, 152, 162, 168, 170, 182, 185, 186, 187, 189, 198, 199, 200, 202, 203, 205, 206, 211, 212, 213, 227, 230, 243, 249, 258, 262, 265, 269, 270, 273, 274, 278, 282, 283, 293, 294, 299, 300, 304, 311, 314, 315, 317, 323, 324, 326, 330, 332, 333, 344, 351, 356, 357, 363, 379, 380, 382, 383, 392, 394, 396, 398, 406, 413, 417, 421, 422, 423, 428, 434, 440, 445, 448, 458, 460, 462, 468, 471, 472, 479, 490, 492, 495, 497, 502, 504, 510, 516, 518, 528, 530, 531, 534, 563, 565, 568, 570, 574, 577, 588, 591, 592, 595, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 613, 615, 619, 620, 622, 624, 625, 629, 636, 641, 648, 649, 652, 655, 671, 673, 677, 681, 682, 687, 693], "abhang": [1, 50, 56, 58, 62, 68, 79, 80, 83, 92, 97, 162, 169, 170, 189, 210, 222, 223, 230, 262, 295, 299, 313, 325, 326, 328, 331, 333, 347, 362, 371, 381, 508, 519, 565, 571, 573, 577, 591, 630, 674], "eingesetzt": [1, 67, 79, 86, 106, 191, 201, 223, 264, 267, 322, 325, 326, 328, 330, 333, 381, 576, 585, 641, 643, 644, 645, 646, 685, 691], "wert": [1, 2, 5, 8, 15, 16, 20, 21, 27, 42, 43, 45, 50, 52, 53, 54, 55, 56, 58, 62, 71, 76, 92, 93, 96, 98, 100, 108, 111, 112, 113, 115, 119, 120, 121, 123, 124, 155, 162, 164, 165, 166, 167, 168, 169, 181, 187, 188, 191, 196, 197, 200, 204, 207, 213, 215, 219, 223, 224, 229, 230, 232, 237, 241, 243, 244, 256, 261, 262, 263, 264, 265, 267, 270, 271, 272, 285, 287, 289, 291, 293, 295, 300, 304, 306, 307, 310, 313, 314, 319, 320, 321, 322, 323, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 336, 337, 338, 339, 340, 346, 347, 351, 360, 362, 363, 367, 371, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 388, 390, 391, 393, 394, 395, 396, 397, 398, 400, 401, 402, 403, 405, 406, 407, 408, 409, 412, 415, 416, 419, 420, 422, 423, 425, 426, 427, 428, 431, 433, 434, 435, 436, 439, 441, 442, 443, 446, 448, 449, 450, 452, 453, 454, 456, 458, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 475, 476, 477, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 504, 506, 507, 508, 510, 511, 512, 513, 516, 518, 519, 521, 522, 523, 524, 525, 526, 527, 528, 530, 532, 533, 534, 535, 537, 545, 550, 554, 561, 562, 564, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 589, 592, 594, 595, 596, 597, 599, 601, 602, 604, 607, 608, 609, 610, 615, 622, 632, 634, 636, 641, 671, 672, 673, 674, 682, 686, 688, 690, 693], "speich": [1, 56, 76, 88, 111, 155, 162, 164, 187, 203, 220, 223, 226, 230, 244, 260, 261, 304, 426, 427, 428, 434, 446, 463, 526, 545, 554, 573, 577, 580, 641, 688], "bzw": [1, 2, 3, 5, 8, 43, 53, 58, 62, 67, 69, 71, 76, 77, 78, 79, 80, 81, 82, 83, 90, 92, 96, 97, 98, 100, 102, 103, 106, 107, 111, 115, 116, 123, 124, 162, 163, 168, 169, 184, 187, 191, 192, 197, 200, 201, 210, 212, 213, 219, 223, 232, 233, 244, 252, 261, 262, 263, 264, 267, 268, 276, 285, 293, 314, 325, 326, 329, 331, 332, 333, 338, 339, 340, 347, 351, 357, 359, 363, 366, 367, 371, 373, 375, 377, 381, 398, 412, 417, 451, 460, 470, 479, 496, 502, 508, 545, 547, 548, 550, 552, 554, 558, 562, 563, 567, 573, 575, 577, 591, 597, 599, 601, 602, 604, 607, 608, 609, 610, 612, 614, 619, 621, 626, 627, 632, 634, 641, 671, 678, 679, 687, 693], "verwendet": [1, 4, 12, 27, 28, 39, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 62, 71, 79, 80, 83, 84, 85, 86, 87, 90, 92, 93, 97, 100, 102, 103, 106, 109, 114, 115, 117, 119, 120, 121, 122, 123, 162, 165, 166, 167, 168, 169, 170, 171, 184, 187, 188, 189, 191, 192, 194, 197, 200, 201, 212, 213, 214, 215, 219, 222, 223, 226, 229, 230, 241, 243, 249, 260, 261, 262, 263, 264, 267, 268, 276, 287, 289, 306, 307, 313, 314, 316, 319, 321, 325, 330, 331, 332, 333, 337, 339, 340, 343, 345, 351, 359, 369, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 562, 565, 566, 568, 570, 573, 574, 575, 576, 577, 579, 584, 585, 591, 592, 593, 595, 596, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 612, 615, 622, 632, 634, 641, 671, 673, 674, 677, 682, 687, 688, 690], "erzeugt": [1, 4, 9, 12, 33, 34, 37, 42, 83, 90, 105, 112, 115, 116, 122, 123, 125, 162, 163, 168, 187, 189, 197, 200, 214, 215, 229, 230, 232, 249, 250, 259, 261, 262, 263, 276, 277, 306, 307, 309, 314, 339, 340, 343, 351, 359, 360, 363, 369, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 569, 583, 585, 588, 592, 593, 629, 632, 635, 638, 675, 677, 682, 686], "ausdruck": [1, 2, 13, 16, 50, 62, 76, 83, 92, 100, 102, 105, 112, 115, 116, 124, 162, 169, 194, 260, 263, 323, 326, 328, 329, 330, 331, 332, 333, 359, 508, 512, 527, 562, 563, 565, 567, 568, 569, 570, 574, 576, 577, 583, 586, 591, 592, 596, 599, 632, 634, 671, 693], "richtig": [1, 13, 19, 27, 37, 60, 69, 80, 83, 92, 96, 100, 103, 104, 123, 169, 219, 328, 496, 533, 573, 641, 678, 681], "gepruft": [1, 12, 52, 64, 71, 86, 92, 164, 260, 263, 310, 321, 325, 330, 331, 338, 339, 340, 363, 423, 508, 595, 632, 671, 678, 689], "evaluier": [1, 323, 324, 325, 326, 328, 329, 330, 332, 333, 508, 519, 577], "findet": [1, 3, 31, 32, 46, 47, 52, 53, 54, 55, 68, 73, 83, 92, 94, 95, 96, 103, 109, 188, 200, 203, 219, 243, 255, 261, 263, 266, 283, 284, 295, 302, 306, 307, 313, 324, 326, 328, 371, 566, 573, 574, 577, 579, 603, 625, 638, 653, 689, 690], "kontext": [1, 164, 232, 256, 380, 410, 545, 554, 592, 630], "statt": [1, 25, 53, 62, 82, 83, 92, 94, 95, 96, 100, 104, 106, 111, 116, 120, 123, 169, 213, 219, 222, 262, 270, 271, 272, 289, 295, 302, 324, 326, 328, 330, 396, 498, 561, 563, 566, 573, 574, 577, 596, 603, 635, 638, 671, 672, 689, 690], "zugegriff": [1, 52, 58, 83, 85, 105, 212, 213, 225, 289, 330, 449, 563, 567, 573, 576, 587, 589, 590, 591, 592, 595, 596, 598, 632], "Es": [1, 2, 4, 8, 13, 24, 25, 47, 48, 51, 52, 53, 54, 55, 56, 58, 59, 60, 67, 68, 71, 74, 79, 81, 82, 83, 85, 86, 90, 91, 92, 96, 97, 100, 102, 103, 104, 106, 107, 109, 111, 112, 115, 116, 117, 120, 121, 122, 123, 125, 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 178, 179, 184, 187, 188, 189, 191, 192, 200, 201, 203, 210, 212, 213, 214, 219, 220, 222, 223, 226, 229, 232, 237, 241, 244, 250, 252, 255, 256, 260, 261, 262, 263, 264, 265, 267, 268, 272, 276, 284, 289, 291, 293, 295, 302, 306, 307, 313, 314, 316, 321, 322, 323, 324, 325, 326, 328, 329, 331, 332, 333, 336, 338, 339, 340, 347, 348, 351, 354, 357, 360, 363, 366, 367, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 560, 561, 563, 565, 566, 568, 569, 570, 571, 575, 576, 577, 581, 585, 586, 590, 591, 592, 593, 594, 595, 596, 597, 599, 600, 617, 618, 621, 626, 628, 629, 630, 632, 638, 641, 642, 643, 645, 646, 649, 650, 655, 671, 672, 673, 674, 675, 682, 683, 687, 688, 689, 691, 693], "relativ": [1, 13, 25, 40, 92, 112, 124, 133, 150, 170, 184, 192, 203, 229, 262, 268, 287, 323, 326, 328, 329, 330, 331, 333, 352, 410, 419, 420, 434, 453, 462, 475, 496, 504, 519, 523, 564, 566, 567, 568, 570, 573, 574, 575, 576, 591, 599, 643, 645, 646, 647, 650, 651, 652, 653, 655, 670, 671, 672, 693], "referenz": [1, 12, 31, 33, 34, 36, 42, 52, 53, 54, 68, 73, 74, 78, 79, 82, 83, 92, 97, 103, 112, 115, 117, 124, 125, 153, 187, 250, 328, 330, 406, 496, 523, 564, 566, 567, 573, 574, 576, 586, 591, 603, 622, 652, 653, 655, 656, 693], "anzugeb": [1, 43, 53, 58, 62, 67, 111, 115, 125, 162, 169, 189, 196, 200, 232, 238, 243, 260, 261, 263, 272, 285, 289, 325, 328, 381, 403, 432, 507, 561, 563, 566, 583, 599, 601, 602, 604, 607, 608, 609, 636, 638, 683, 688], "Damit": [1, 13, 22, 27, 42, 52, 53, 58, 62, 69, 80, 82, 83, 86, 90, 109, 116, 123, 153, 165, 168, 189, 196, 203, 204, 212, 213, 226, 232, 233, 272, 293, 302, 304, 309, 310, 326, 332, 339, 340, 351, 412, 496, 523, 561, 563, 566, 568, 573, 589, 590, 593, 603, 638, 641, 682, 688], "aufgelost": [1, 53, 97, 330, 333, 508, 561, 603], "separat": [1, 37, 107, 160, 169, 183, 232, 247, 289, 314, 323, 332, 342, 343, 347, 351, 434, 463, 508, 519, 545, 554, 630, 648, 649, 653, 655, 669, 674, 688], "feld": [1, 3, 43, 53, 58, 62, 93, 94, 96, 104, 164, 222, 224, 226, 272, 292, 337, 396, 409, 423, 427, 471, 563, 601, 602, 604, 607, 608, 609, 633, 671], "pfad": [1, 2, 52, 103, 106, 112, 117, 119, 123, 124, 162, 167, 187, 188, 189, 215, 219, 222, 223, 229, 230, 261, 262, 314, 323, 326, 331, 333, 338, 360, 376, 388, 389, 392, 396, 398, 400, 408, 409, 423, 424, 425, 431, 434, 435, 439, 441, 453, 464, 467, 472, 477, 485, 488, 490, 506, 513, 515, 521, 527, 537, 561, 562, 563, 565, 567, 573, 574, 575, 576, 577, 579, 591, 592, 594, 600, 612, 630, 635, 641, 671, 672], "angegeb": [1, 3, 4, 8, 14, 37, 43, 44, 45, 50, 52, 53, 55, 56, 58, 79, 80, 82, 85, 87, 92, 96, 97, 100, 103, 104, 111, 112, 116, 117, 119, 120, 121, 122, 123, 124, 162, 164, 165, 168, 169, 170, 171, 179, 181, 184, 187, 188, 189, 191, 192, 194, 200, 201, 203, 210, 212, 213, 217, 219, 222, 226, 230, 232, 241, 243, 252, 255, 262, 263, 264, 265, 267, 268, 271, 272, 287, 289, 293, 310, 314, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 333, 338, 347, 348, 349, 351, 357, 360, 362, 366, 376, 381, 382, 396, 398, 400, 408, 414, 416, 417, 419, 420, 423, 424, 426, 427, 432, 434, 435, 441, 446, 448, 453, 454, 462, 463, 464, 467, 471, 472, 476, 477, 480, 492, 496, 497, 498, 499, 502, 506, 507, 508, 520, 522, 523, 524, 530, 531, 532, 561, 562, 563, 565, 566, 568, 569, 570, 573, 574, 575, 576, 577, 578, 579, 585, 588, 589, 591, 592, 593, 594, 595, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 613, 615, 616, 630, 632, 634, 641, 671, 673, 682, 686, 690], "ergebnis": [1, 15, 24, 37, 58, 62, 92, 96, 115, 131, 165, 192, 203, 219, 229, 238, 262, 306, 307, 326, 329, 332, 351, 379, 382, 391, 396, 406, 436, 457, 462, 469, 496, 504, 510, 524, 527, 534, 565, 573, 574, 575, 576, 583, 591, 594, 596, 599, 634, 636, 674, 681, 683], "expandiert": [1, 567, 591], "absolut": [1, 25, 40, 79, 103, 112, 124, 133, 150, 170, 189, 229, 273, 276, 323, 331, 508, 561, 568, 570, 573, 574, 575, 599, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "dadurch": [1, 5, 24, 42, 67, 80, 87, 95, 110, 116, 118, 123, 124, 223, 226, 262, 289, 295, 314, 325, 326, 333, 338, 359, 381, 508, 550, 551, 561, 563, 569, 570, 575, 576, 577, 579, 585, 588, 590, 592, 593, 595, 597, 638, 674, 685], "resultier": [1, 164], "datentyp": [1, 43, 53, 93, 98, 103, 207, 212, 213, 261, 262, 285, 289, 310, 325, 330, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 575, 579, 595, 601, 602, 604, 607, 608, 609, 621, 622, 671, 674], "resultat": [1, 323, 370, 376], "textausschnitt": 1, "format": [1, 12, 14, 16, 18, 30, 40, 44, 45, 47, 48, 51, 52, 53, 54, 55, 58, 83, 92, 100, 102, 104, 105, 107, 113, 115, 116, 123, 126, 130, 135, 136, 137, 141, 146, 148, 149, 152, 154, 157, 158, 160, 161, 162, 165, 184, 186, 187, 188, 189, 198, 205, 217, 219, 227, 232, 234, 235, 236, 248, 260, 261, 262, 263, 268, 279, 285, 288, 290, 312, 313, 314, 325, 326, 328, 329, 330, 332, 338, 339, 340, 351, 356, 357, 361, 365, 369, 375, 397, 398, 425, 434, 436, 453, 461, 470, 479, 483, 512, 566, 568, 570, 573, 575, 584, 585, 586, 589, 595, 599, 603, 612, 613, 615, 621, 622, 623, 625, 626, 633, 634, 641, 645, 646, 651, 653, 670, 671, 674, 679, 688], "eingegeb": [1, 2, 3, 71, 83, 93, 96, 119, 162, 168, 170, 292, 363, 391, 528, 574, 612, 629, 630, 688], "uberpruft": [1, 47, 84, 92, 164, 232, 324, 376, 628], "interpret": [1, 40, 68, 83, 89, 90, 107, 115, 116, 125, 164, 314, 319, 638], "interpretiert": [1, 106, 191, 232, 261, 264, 267, 310, 381, 446, 463, 561, 577, 579, 595], "aufbereitet": [1, 338, 584], "Der": [1, 2, 3, 4, 5, 8, 13, 27, 28, 37, 42, 43, 45, 46, 47, 48, 50, 51, 53, 56, 58, 60, 62, 64, 69, 71, 73, 79, 82, 83, 84, 85, 86, 89, 90, 92, 96, 97, 98, 102, 103, 105, 106, 107, 111, 112, 114, 115, 117, 120, 122, 123, 124, 155, 156, 163, 164, 165, 167, 168, 169, 170, 178, 184, 187, 188, 189, 191, 192, 194, 196, 200, 201, 203, 219, 222, 223, 229, 232, 238, 243, 244, 249, 255, 256, 261, 262, 263, 264, 265, 267, 268, 272, 284, 285, 287, 289, 291, 292, 295, 303, 304, 306, 307, 310, 314, 316, 319, 321, 325, 326, 328, 329, 330, 332, 333, 337, 338, 346, 347, 349, 351, 359, 360, 362, 369, 370, 380, 381, 382, 392, 396, 397, 400, 405, 408, 412, 419, 420, 423, 434, 435, 440, 441, 446, 450, 453, 458, 460, 461, 463, 464, 467, 471, 473, 496, 504, 507, 508, 512, 522, 523, 538, 545, 547, 548, 550, 552, 554, 558, 562, 563, 566, 567, 568, 570, 573, 574, 575, 576, 577, 581, 584, 585, 586, 589, 591, 592, 594, 596, 597, 599, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 614, 615, 619, 622, 628, 629, 630, 632, 634, 636, 638, 641, 646, 671, 673, 674, 682, 686, 687, 688, 690, 693], "dient": [1, 36, 62, 72, 74, 78, 106, 112, 115, 131, 174, 189, 192, 217, 219, 250, 271, 289, 302, 328, 329, 330, 338, 339, 340, 490, 528, 574, 577, 629, 632, 682, 688], "snippet": [1, 203, 247, 314, 504, 670, 688], "alt": [1, 12, 27, 43, 52, 53, 54, 55, 67, 71, 73, 79, 81, 86, 89, 100, 102, 105, 123, 124, 162, 165, 170, 187, 189, 198, 212, 213, 223, 233, 243, 253, 255, 256, 263, 271, 289, 292, 293, 295, 302, 313, 314, 321, 322, 325, 326, 328, 330, 332, 339, 340, 370, 380, 396, 398, 434, 495, 506, 508, 514, 519, 545, 550, 562, 567, 568, 570, 573, 575, 576, 577, 585, 586, 589, 591, 606, 610, 625, 630, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 679, 687, 691], "vorlieg": [1, 189, 229, 232, 262, 326, 373], "konverti": [1, 106, 351, 622], "Dazu": [1, 2, 4, 9, 12, 13, 22, 53, 58, 62, 68, 71, 76, 82, 83, 86, 87, 89, 90, 92, 97, 98, 106, 112, 115, 116, 117, 123, 131, 170, 179, 184, 187, 189, 192, 200, 204, 210, 212, 213, 215, 220, 225, 226, 232, 249, 252, 255, 262, 263, 265, 266, 268, 271, 285, 289, 302, 309, 311, 314, 338, 348, 349, 351, 354, 357, 359, 360, 366, 397, 561, 566, 570, 578, 589, 592, 593, 599, 602, 622, 632, 634, 638, 682, 688, 690], "directory": [1, 40, 44, 45, 48, 54, 55, 66, 88, 113, 125, 126, 134, 137, 146, 151, 157, 158, 161, 176, 216, 221, 227, 269, 278, 315, 352, 353, 524, 612, 613, 615, 624, 638, 646, 648, 649, 651, 654, 655, 656, 664, 677, 679, 688], "vorhand": [1, 5, 12, 22, 53, 60, 62, 63, 66, 79, 82, 83, 90, 92, 93, 106, 111, 112, 113, 115, 154, 170, 178, 184, 187, 191, 201, 215, 219, 232, 256, 259, 260, 261, 262, 264, 267, 268, 276, 295, 302, 306, 307, 314, 326, 328, 351, 354, 362, 363, 370, 371, 396, 434, 489, 511, 533, 545, 547, 548, 550, 552, 554, 558, 562, 567, 569, 573, 585, 591, 592, 612, 620, 623, 624, 641, 642, 674, 682, 687, 688, 689], "denen": [1, 53, 71, 92, 93, 95, 97, 103, 104, 106, 112, 116, 117, 124, 170, 187, 189, 260, 289, 316, 327, 332, 339, 340, 370, 381, 398, 400, 441, 464, 467, 486, 504, 512, 545, 547, 548, 550, 552, 554, 558, 565, 591, 592, 600, 602, 612, 630, 632, 633, 682], "gibt": [1, 4, 8, 12, 20, 22, 24, 25, 37, 43, 46, 47, 51, 52, 53, 58, 64, 67, 68, 71, 74, 78, 79, 80, 82, 85, 86, 92, 93, 94, 97, 98, 103, 106, 109, 111, 115, 116, 123, 124, 131, 156, 159, 162, 164, 165, 166, 167, 168, 170, 172, 187, 189, 191, 192, 200, 201, 204, 215, 219, 228, 232, 241, 244, 256, 261, 262, 263, 264, 267, 272, 276, 289, 303, 310, 313, 314, 316, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 338, 339, 340, 347, 349, 351, 359, 360, 362, 363, 366, 373, 377, 379, 381, 382, 394, 411, 416, 423, 443, 450, 453, 455, 456, 458, 460, 462, 463, 468, 479, 480, 485, 495, 497, 505, 508, 510, 513, 520, 522, 530, 534, 556, 560, 563, 566, 568, 569, 570, 573, 574, 581, 584, 586, 591, 592, 594, 595, 596, 599, 601, 602, 603, 604, 607, 608, 609, 621, 622, 626, 629, 630, 634, 636, 638, 641, 642, 643, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675, 680, 682, 683, 687, 688, 689, 691, 693], "jedoch": [1, 25, 27, 42, 43, 53, 67, 77, 79, 82, 83, 96, 97, 106, 109, 112, 123, 215, 232, 261, 271, 289, 293, 326, 328, 329, 332, 359, 369, 508, 561, 562, 568, 570, 573, 574, 576, 585, 586, 588, 589, 590, 593, 596, 601, 602, 604, 607, 608, 609, 621, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 675, 682, 683, 691], "attribut": [1, 2, 12, 13, 20, 24, 25, 42, 43, 44, 45, 52, 54, 55, 58, 60, 62, 66, 67, 92, 98, 102, 104, 105, 113, 114, 115, 117, 123, 125, 126, 132, 133, 134, 136, 137, 139, 142, 149, 153, 155, 162, 165, 168, 169, 171, 183, 184, 186, 187, 188, 192, 193, 194, 195, 197, 200, 202, 203, 205, 207, 210, 215, 216, 217, 222, 223, 227, 229, 232, 233, 234, 239, 243, 248, 249, 261, 263, 268, 271, 272, 273, 274, 280, 281, 285, 290, 291, 294, 295, 297, 302, 304, 305, 306, 307, 310, 314, 317, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 339, 340, 341, 349, 351, 352, 353, 355, 356, 357, 360, 363, 365, 368, 370, 371, 562, 563, 564, 565, 567, 568, 569, 570, 571, 574, 578, 579, 584, 585, 587, 591, 592, 594, 596, 597, 599, 600, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 619, 622, 623, 624, 625, 632, 634, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 664, 665, 666, 667, 669, 670, 671, 672, 673, 674, 681, 682, 683, 687, 690, 693], "gesetzt": [1, 8, 12, 43, 45, 50, 52, 53, 56, 58, 60, 83, 88, 97, 98, 106, 112, 116, 117, 119, 120, 121, 122, 123, 124, 162, 167, 168, 169, 170, 171, 178, 189, 203, 207, 217, 219, 222, 232, 233, 237, 244, 252, 256, 261, 263, 289, 293, 295, 302, 304, 314, 316, 319, 322, 323, 326, 328, 329, 330, 331, 332, 338, 339, 340, 347, 351, 360, 379, 381, 382, 391, 393, 396, 398, 409, 412, 423, 428, 434, 441, 450, 453, 454, 457, 461, 463, 471, 472, 479, 485, 486, 487, 490, 495, 496, 504, 506, 507, 508, 513, 516, 519, 522, 523, 524, 537, 562, 563, 567, 568, 569, 570, 571, 572, 573, 574, 577, 579, 591, 592, 593, 599, 600, 601, 602, 604, 607, 608, 609, 610, 615, 632, 634, 641, 671, 674, 688, 690], "geloscht": [1, 2, 3, 5, 6, 8, 22, 27, 56, 58, 92, 93, 115, 169, 184, 187, 219, 241, 263, 268, 295, 314, 326, 332, 333, 359, 396, 453, 508, 585, 630], "entwed": [1, 42, 51, 92, 106, 122, 124, 169, 171, 203, 262, 306, 307, 314, 325, 328, 330, 333, 338, 347, 376, 401, 423, 453, 458, 479, 490, 537, 682], "einzeln": [1, 4, 20, 50, 52, 53, 58, 62, 68, 71, 78, 81, 83, 85, 92, 93, 95, 106, 107, 112, 115, 116, 123, 154, 162, 163, 167, 169, 191, 192, 200, 201, 210, 219, 228, 229, 232, 233, 260, 264, 265, 267, 287, 289, 314, 320, 321, 325, 326, 329, 331, 333, 351, 354, 360, 371, 379, 457, 496, 531, 548, 549, 550, 551, 563, 569, 576, 577, 589, 592, 593, 612, 622, 631, 632, 638, 641, 652, 653, 654, 655, 656, 674, 675, 681, 693], "losch": [1, 5, 31, 32, 51, 52, 54, 55, 164, 187, 203, 241, 255, 293, 330, 389, 396, 508, 519, 563, 594, 625, 627, 652, 671, 674], "jeweil": [1, 3, 5, 10, 13, 43, 47, 50, 52, 53, 57, 58, 60, 62, 77, 80, 83, 92, 93, 97, 103, 106, 111, 112, 116, 117, 120, 123, 162, 163, 164, 170, 188, 192, 200, 215, 244, 250, 260, 262, 263, 265, 272, 276, 285, 289, 291, 311, 324, 325, 326, 327, 331, 332, 337, 339, 340, 351, 360, 371, 373, 382, 383, 412, 416, 423, 458, 479, 515, 518, 545, 546, 563, 566, 569, 573, 574, 575, 577, 579, 585, 587, 592, 593, 596, 597, 599, 600, 605, 614, 618, 619, 621, 622, 625, 626, 632, 634, 641, 652, 653, 654, 655, 656, 671, 675, 682, 683, 685, 688, 692], "loschend": [1, 396], "hilf": [1, 12, 13, 18, 27, 37, 40, 47, 51, 56, 71, 78, 97, 98, 113, 115, 163, 170, 172, 178, 181, 184, 187, 192, 194, 210, 212, 213, 220, 229, 237, 252, 262, 265, 268, 289, 302, 306, 307, 319, 348, 349, 357, 360, 366, 574, 583, 585, 629, 671], "checkbox": [1, 58, 653], "markiert": [1, 58, 314, 599, 634, 652, 653, 654, 655, 656], "anschliess": [1, 12, 14, 22, 27, 42, 58, 82, 83, 84, 85, 90, 92, 94, 102, 116, 187, 203, 212, 213, 226, 255, 292, 293, 302, 328, 354, 360, 382, 573, 574, 576, 585, 589, 591, 597, 625, 628, 632, 678, 682], "version": [1, 8, 14, 22, 30, 37, 43, 44, 45, 46, 48, 50, 51, 52, 53, 54, 55, 56, 64, 66, 68, 70, 73, 76, 78, 81, 83, 84, 85, 88, 89, 90, 103, 104, 106, 107, 113, 115, 116, 121, 122, 123, 125, 130, 133, 135, 139, 141, 152, 154, 155, 157, 158, 163, 165, 168, 170, 171, 177, 179, 184, 187, 189, 192, 198, 205, 207, 208, 210, 211, 219, 220, 223, 225, 227, 232, 239, 245, 249, 252, 255, 260, 261, 265, 270, 273, 274, 275, 278, 279, 285, 292, 293, 298, 299, 301, 302, 304, 308, 309, 310, 314, 329, 333, 334, 341, 347, 348, 351, 353, 354, 355, 356, 357, 360, 366, 368, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 555, 558, 566, 576, 580, 585, 586, 589, 595, 606, 610, 612, 613, 615, 616, 624, 625, 627, 629, 630, 635, 638, 642, 663, 667, 669, 670, 678, 679, 681, 682, 687, 689, 693], "1": [1, 8, 12, 14, 15, 16, 18, 20, 25, 43, 44, 45, 48, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 64, 69, 70, 71, 73, 77, 78, 79, 80, 83, 84, 85, 86, 87, 98, 100, 103, 104, 106, 107, 110, 111, 112, 113, 115, 116, 117, 120, 121, 123, 125, 126, 127, 130, 131, 133, 136, 141, 147, 148, 149, 150, 152, 155, 157, 160, 161, 163, 164, 165, 166, 167, 168, 169, 170, 171, 178, 179, 180, 183, 186, 187, 189, 192, 193, 194, 195, 196, 197, 199, 200, 203, 205, 207, 210, 211, 216, 217, 222, 223, 225, 226, 227, 228, 229, 230, 231, 232, 233, 237, 239, 249, 253, 255, 256, 257, 258, 259, 260, 263, 265, 266, 267, 269, 271, 274, 275, 276, 277, 279, 282, 283, 284, 288, 289, 290, 292, 293, 294, 295, 297, 298, 301, 304, 305, 306, 307, 308, 309, 312, 313, 317, 319, 320, 321, 322, 323, 324, 325, 326, 327, 329, 330, 331, 332, 333, 334, 336, 337, 338, 339, 340, 341, 346, 347, 352, 355, 356, 357, 358, 359, 360, 361, 363, 367, 368, 370, 374, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 552, 554, 558, 561, 562, 563, 566, 567, 568, 569, 570, 573, 575, 576, 579, 585, 589, 591, 592, 594, 595, 596, 597, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 617, 622, 623, 625, 629, 633, 634, 638, 657, 662, 663, 665, 666, 681, 682, 683, 686, 688, 689], "9": [1, 15, 16, 18, 54, 55, 57, 64, 66, 71, 79, 83, 90, 92, 97, 100, 107, 113, 114, 115, 116, 123, 125, 155, 156, 160, 162, 167, 169, 170, 189, 192, 195, 196, 198, 215, 219, 220, 221, 227, 229, 231, 232, 248, 249, 251, 254, 255, 262, 288, 289, 290, 303, 304, 305, 306, 307, 310, 334, 338, 344, 347, 349, 354, 355, 356, 357, 358, 375, 377, 380, 384, 389, 391, 396, 398, 400, 407, 408, 410, 413, 423, 428, 433, 434, 435, 441, 449, 457, 458, 461, 462, 464, 467, 468, 476, 489, 496, 505, 510, 511, 518, 521, 524, 538, 545, 548, 550, 552, 554, 558, 562, 567, 573, 575, 577, 591, 598, 616, 624, 638, 639, 643, 646, 648, 655, 656, 657, 670, 671, 674, 682, 688, 689], "implementiert": [1, 13, 15, 43, 45, 48, 52, 53, 56, 58, 59, 62, 63, 66, 79, 86, 100, 103, 106, 117, 120, 121, 124, 125, 131, 155, 162, 178, 184, 187, 204, 210, 212, 213, 244, 268, 270, 271, 289, 293, 302, 304, 306, 307, 321, 328, 331, 370, 439, 453, 487, 526, 545, 550, 552, 553, 558, 559, 560, 563, 566, 567, 573, 591, 592, 600, 606, 609, 610, 612, 613, 615, 616, 618, 620, 621, 623, 624, 638, 641, 671, 674, 689], "benutzerdefiniert": [1, 42, 83, 96, 103, 107, 115, 125, 172, 230, 263, 599, 633, 634, 635, 638], "schreib": [1, 58, 62, 65, 67, 82, 83, 86, 106, 109, 116, 125, 169, 188, 226, 229, 232, 243, 249, 263, 270, 271, 322, 351, 371, 380, 381, 396, 397, 407, 463, 496, 500, 512, 522, 524, 545, 550, 562, 564, 566, 575, 577, 583, 622, 638, 673, 678], "statement": [1, 15, 55, 125, 130, 131, 133, 353, 410, 545, 554, 572, 598, 638, 643, 645, 649, 655, 693], "sowi": [1, 3, 7, 10, 11, 13, 26, 28, 42, 43, 53, 58, 60, 83, 116, 125, 155, 162, 163, 166, 170, 172, 184, 187, 188, 189, 191, 192, 215, 219, 220, 229, 244, 246, 260, 261, 264, 267, 268, 276, 291, 293, 304, 319, 320, 325, 328, 333, 337, 343, 360, 381, 431, 566, 587, 590, 599, 601, 602, 608, 622, 636, 638, 641, 651, 652, 653, 654, 656, 674, 683, 687, 693], "verwend": [1, 25, 27, 43, 45, 50, 52, 53, 62, 67, 68, 76, 79, 80, 82, 86, 92, 100, 103, 104, 106, 107, 112, 115, 123, 124, 125, 162, 164, 167, 169, 179, 181, 187, 188, 192, 215, 219, 222, 229, 230, 241, 244, 262, 271, 287, 293, 313, 314, 321, 328, 330, 338, 347, 359, 369, 396, 398, 423, 429, 430, 434, 449, 458, 475, 506, 527, 532, 545, 554, 558, 561, 566, 569, 577, 586, 590, 592, 596, 599, 601, 602, 603, 604, 607, 608, 609, 615, 617, 618, 634, 636, 677, 678, 679, 682, 686, 687, 692, 693], "erstell": [1, 3, 8, 27, 45, 48, 53, 56, 67, 71, 72, 74, 77, 78, 79, 82, 92, 98, 102, 103, 106, 109, 117, 120, 125, 153, 162, 169, 170, 172, 184, 187, 188, 189, 194, 215, 229, 241, 243, 256, 262, 268, 289, 329, 338, 354, 363, 373, 412, 519, 556, 557, 566, 586, 587, 589, 590, 592, 609, 613, 615, 618, 627, 671, 682, 687, 692], "bearbeit": [1, 2, 6, 47, 77, 638, 688], "Dieser": [1, 4, 12, 27, 38, 45, 51, 52, 53, 54, 55, 83, 85, 96, 106, 115, 116, 117, 120, 122, 123, 155, 156, 162, 165, 189, 244, 262, 293, 303, 304, 328, 329, 330, 338, 347, 351, 377, 381, 412, 416, 419, 420, 426, 427, 431, 448, 486, 492, 496, 530, 532, 545, 546, 556, 557, 563, 566, 573, 584, 585, 592, 593, 600, 603, 609, 610, 615, 625, 638, 688, 690], "unt": [1, 2, 3, 4, 5, 6, 9, 12, 13, 16, 20, 22, 25, 27, 31, 32, 42, 43, 44, 45, 52, 53, 54, 55, 58, 62, 67, 68, 69, 70, 71, 73, 82, 83, 84, 85, 92, 93, 96, 97, 98, 100, 103, 106, 107, 109, 111, 114, 115, 117, 120, 122, 124, 153, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 207, 210, 212, 213, 217, 219, 220, 222, 223, 224, 228, 229, 230, 232, 233, 237, 238, 241, 242, 243, 244, 246, 252, 255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 270, 271, 272, 276, 277, 279, 284, 285, 286, 287, 289, 291, 292, 293, 295, 300, 302, 306, 307, 309, 311, 313, 314, 316, 319, 321, 322, 323, 324, 325, 326, 328, 329, 331, 332, 333, 336, 337, 338, 339, 340, 346, 347, 348, 349, 351, 354, 357, 359, 360, 362, 366, 367, 369, 371, 381, 394, 409, 420, 427, 440, 441, 446, 454, 459, 460, 462, 463, 468, 479, 496, 508, 510, 512, 523, 528, 536, 545, 548, 550, 558, 562, 563, 567, 569, 573, 575, 576, 577, 580, 582, 584, 585, 590, 591, 592, 594, 596, 597, 599, 601, 602, 604, 606, 607, 608, 609, 610, 613, 615, 616, 618, 625, 628, 630, 632, 634, 635, 636, 638, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675, 682, 684, 686, 688, 689, 692, 693], "eigenschaft": [2, 52, 98, 106, 162, 171, 178, 192, 207, 306, 307, 498, 499, 521], "eingeles": [2, 4, 53, 82, 92, 97, 105, 106, 112, 121, 124, 178, 293, 295, 333, 409, 434, 603, 632, 682], "stehend": [2, 58, 82, 97, 222, 223, 326, 332, 587], "itemstruktur": [2, 97, 328, 577], "Hier": [2, 3, 6, 11, 12, 14, 21, 23, 26, 31, 32, 33, 34, 41, 42, 47, 52, 53, 54, 55, 56, 62, 71, 74, 79, 80, 85, 103, 106, 107, 115, 116, 163, 164, 168, 169, 170, 189, 200, 214, 219, 225, 226, 230, 232, 244, 246, 262, 277, 284, 306, 307, 320, 325, 328, 329, 331, 347, 369, 381, 412, 471, 531, 566, 569, 573, 577, 586, 592, 595, 596, 610, 617, 622, 625, 631, 682, 692, 693], "gelad": [2, 3, 42, 43, 52, 53, 62, 80, 95, 97, 115, 118, 119, 120, 123, 125, 162, 163, 164, 169, 170, 179, 184, 187, 191, 192, 201, 210, 212, 213, 219, 230, 232, 252, 255, 264, 265, 267, 289, 291, 302, 304, 314, 328, 329, 337, 348, 354, 357, 360, 366, 371, 432, 566, 573, 577, 585, 588, 590, 595, 596, 601, 602, 603, 604, 607, 608, 609, 638, 641, 671, 674, 689], "zeigt": [2, 5, 8, 12, 50, 54, 55, 56, 58, 71, 83, 90, 97, 155, 165, 169, 171, 178, 181, 187, 189, 200, 203, 212, 213, 232, 250, 261, 262, 283, 285, 289, 291, 295, 304, 314, 328, 330, 331, 333, 337, 338, 409, 569, 574, 592, 638, 682, 683, 686], "wahrend": [2, 42, 52, 82, 83, 100, 102, 103, 115, 116, 164, 187, 219, 243, 289, 326, 330, 332, 376, 398, 453, 508, 532, 566, 568, 571, 573, 576, 585, 589, 590, 594, 596, 630, 638, 641], "laufzeit": [2, 4, 56, 83, 97, 100, 103, 125, 165, 170, 181, 210, 232, 252, 324, 326, 328, 329, 333, 453, 484, 508, 561, 566, 575, 580, 590, 594, 596, 599, 634, 638, 671, 688, 689], "\u00c4nderungen": [2, 4, 5, 12, 46, 47, 52, 82, 83, 85, 86, 92, 96, 98, 116, 155, 162, 178, 212, 213, 233, 260, 304, 308, 309, 326, 328, 331, 332, 337, 351, 370, 396, 412, 434, 463, 500, 507, 592, 594, 641, 671, 672, 675, 682, 687, 692, 693], "definition": [2, 6, 13, 43, 44, 45, 52, 54, 55, 62, 66, 85, 92, 94, 96, 104, 111, 123, 124, 125, 126, 134, 139, 144, 146, 148, 163, 170, 189, 192, 212, 213, 219, 229, 232, 233, 262, 265, 289, 302, 304, 314, 325, 326, 329, 330, 331, 342, 343, 351, 354, 355, 356, 357, 365, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 566, 572, 573, 574, 576, 577, 579, 580, 589, 599, 601, 602, 608, 609, 613, 614, 615, 616, 619, 622, 624, 626, 633, 634, 638, 641, 643, 644, 645, 646, 648, 649, 653, 655, 671, 672, 674, 681, 683, 687, 693], "neustart": [2, 5, 71, 82, 83, 86, 89, 90, 92, 95, 96, 115, 187, 200, 212, 213, 232, 265, 289, 326, 332, 349, 360, 381, 458, 463, 484, 487, 508, 519, 585, 589, 591, 594, 596, 632, 641, 651, 671], "sichtbar": [2, 8, 53, 80, 219, 260, 295, 302, 479, 566, 603], "voll": [2, 8, 20, 119, 326, 379, 481, 490, 502, 573, 585, 612], "verkurzt": [2, 328], "screenshot": [2, 4, 32, 52, 55, 90, 96, 625, 655, 685], "oben": [2, 5, 47, 50, 52, 53, 58, 60, 62, 71, 79, 82, 83, 84, 85, 92, 95, 98, 100, 108, 116, 155, 162, 163, 164, 167, 168, 169, 178, 179, 184, 192, 197, 200, 210, 212, 213, 220, 223, 226, 230, 232, 237, 252, 255, 261, 262, 265, 268, 276, 289, 302, 304, 313, 314, 320, 325, 326, 328, 329, 331, 333, 337, 338, 347, 348, 357, 360, 366, 434, 496, 508, 523, 561, 562, 563, 565, 585, 591, 593, 603, 622, 632, 641, 688], "anzeig": [2, 6, 7, 44, 56, 58, 60, 62, 92, 93, 112, 119, 187, 192, 215, 226, 249, 263, 289, 295, 313, 339, 340, 366, 381, 389, 422, 446, 483, 496, 527, 545, 550, 554, 612, 613, 635, 641, 671, 672, 673, 674, 686], "verhalt": [2, 53, 76, 83, 189, 233, 262, 289, 310, 313, 314, 351, 563, 571, 576, 589, 596, 598, 603, 630, 674], "syst": [2, 4, 30, 36, 44, 45, 52, 53, 54, 55, 68, 71, 78, 79, 80, 83, 84, 86, 89, 90, 96, 128, 154, 157, 158, 162, 165, 168, 173, 175, 176, 178, 183, 186, 187, 211, 225, 227, 232, 240, 248, 256, 258, 261, 262, 276, 278, 281, 290, 297, 359, 373, 385, 386, 391, 393, 396, 397, 398, 410, 426, 427, 428, 446, 463, 477, 485, 486, 487, 488, 490, 496, 506, 508, 513, 515, 519, 523, 524, 545, 564, 585, 598, 610, 612, 613, 615, 617, 628, 629, 630, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 663, 667, 669, 680, 691], "Dort": [2, 12, 31, 32, 52, 54, 55, 62, 68, 82, 85, 170, 225, 284, 347, 369, 371, 579, 585, 590, 625, 671, 682, 688], "wieviel": [2, 3, 339, 340, 423, 463, 585, 599, 636], "zeich": [2, 3, 98, 100, 106, 116, 119, 169, 241, 339, 340, 434, 494, 533, 561, 612], "such": [2, 54, 55, 56, 103, 107, 108, 115, 119, 138, 162, 164, 200, 212, 213, 230, 255, 258, 285, 290, 292, 301, 306, 307, 314, 329, 335, 453, 565, 591, 597, 612, 628, 635, 643, 655], "recht": [2, 3, 5, 27, 46, 47, 54, 55, 56, 71, 79, 82, 83, 90, 95, 96, 162, 163, 178, 179, 184, 187, 192, 200, 203, 210, 212, 213, 219, 220, 226, 229, 232, 237, 244, 252, 261, 262, 265, 268, 289, 302, 314, 320, 338, 347, 348, 357, 360, 366, 378, 496, 523, 583, 686], "information": [2, 3, 5, 8, 16, 25, 28, 31, 32, 38, 44, 45, 46, 47, 48, 51, 52, 54, 55, 56, 58, 60, 65, 66, 67, 70, 71, 72, 74, 76, 77, 78, 81, 82, 83, 84, 96, 100, 103, 107, 111, 112, 114, 115, 116, 117, 121, 123, 125, 131, 133, 136, 137, 142, 148, 153, 155, 163, 164, 165, 166, 167, 168, 169, 171, 172, 173, 174, 176, 178, 179, 180, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 198, 199, 200, 201, 204, 205, 208, 210, 212, 213, 215, 216, 217, 219, 220, 221, 222, 223, 227, 228, 229, 230, 232, 233, 237, 238, 240, 241, 242, 243, 244, 245, 246, 250, 252, 253, 255, 257, 260, 261, 263, 264, 265, 266, 267, 268, 271, 276, 277, 284, 286, 287, 289, 295, 298, 300, 304, 305, 306, 307, 311, 313, 314, 316, 319, 321, 322, 324, 329, 330, 331, 335, 336, 338, 339, 340, 344, 346, 347, 348, 349, 351, 353, 356, 359, 360, 362, 365, 366, 367, 369, 370, 371, 373, 374, 375, 381, 382, 386, 387, 388, 391, 392, 393, 395, 396, 399, 401, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 419, 421, 422, 423, 424, 425, 426, 429, 433, 436, 437, 438, 440, 442, 443, 448, 450, 451, 453, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 484, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 529, 532, 534, 538, 545, 550, 558, 564, 574, 578, 580, 582, 583, 584, 593, 594, 612, 613, 615, 617, 622, 624, 625, 627, 637, 638, 641, 645, 646, 648, 651, 653, 655, 659, 666, 669, 670, 671, 672, 675, 680, 681, 682, 688, 689, 693], "liv": [2, 82, 161, 274, 455, 479, 527, 651, 688, 693], "angepasst": [2, 22, 25, 44, 56, 58, 60, 83, 85, 86, 87, 88, 92, 95, 103, 116, 189, 192, 219, 263, 270, 271, 285, 293, 306, 307, 328, 331, 351, 354, 369, 371, 453, 508, 563, 575, 584, 593, 613, 622], "uberwacht": [2, 310, 382, 574, 592], "deren": [2, 14, 43, 52, 53, 58, 77, 83, 92, 97, 111, 165, 166, 169, 170, 187, 189, 215, 232, 244, 261, 263, 265, 331, 336, 338, 351, 360, 382, 446, 463, 526, 565, 577, 580, 587, 591, 594, 601, 602, 604, 607, 608, 609], "verander": [2, 42, 117, 213, 260, 265, 573, 575, 577, 590, 592, 600, 642, 651, 685, 693], "gemonitored": 2, "vorh": [2, 71, 102, 103, 131, 155, 187, 200, 304, 316, 562, 572, 573, 574, 598, 629, 635, 671, 688], "tree": [2, 45, 53, 57, 71, 97, 119, 126, 132, 133, 134, 174, 187, 251, 294, 365, 577, 603, 612, 615, 646, 649, 655, 667, 674, 686], "uberwach": [2, 164, 244, 310, 574, 577, 641, 693], "detail": [2, 4, 42, 44, 53, 54, 55, 58, 59, 71, 76, 83, 86, 96, 105, 107, 108, 109, 110, 112, 115, 116, 117, 123, 125, 153, 157, 169, 170, 180, 181, 186, 187, 188, 210, 239, 243, 260, 263, 285, 293, 305, 312, 313, 314, 315, 322, 323, 324, 331, 333, 335, 338, 345, 351, 355, 365, 382, 489, 509, 510, 566, 573, 583, 592, 594, 600, 609, 613, 622, 629, 631, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 674, 675, 682, 691, 693], "aktiviert": [2, 3, 5, 20, 28, 56, 58, 68, 82, 83, 89, 90, 96, 98, 120, 162, 170, 200, 207, 212, 213, 219, 222, 262, 265, 289, 292, 302, 314, 323, 325, 328, 329, 331, 333, 346, 347, 376, 381, 382, 416, 419, 434, 449, 450, 453, 456, 463, 479, 486, 504, 508, 519, 534, 576, 594, 617, 629, 630, 671, 682, 689, 690], "deaktiviert": [2, 3, 5, 58, 68, 95, 120, 165, 200, 289, 295, 314, 329, 331, 347, 379, 382, 444, 449, 456, 479, 492, 508, 594, 641, 674], "entwickl": [2, 36, 37, 39, 47, 48, 49, 53, 60, 64, 78, 79, 82, 92, 110, 117, 119, 121, 153, 169, 213, 219, 287, 302, 337, 369, 373, 385, 388, 545, 550, 554, 573, 581, 592, 594, 610, 612, 614, 619, 630, 641, 646, 671, 672, 674, 685, 687, 689], "eval": [2, 11, 13, 16, 25, 66, 76, 100, 103, 104, 105, 106, 112, 115, 124, 125, 131, 133, 162, 183, 184, 189, 198, 200, 218, 223, 239, 247, 258, 259, 262, 263, 268, 282, 289, 298, 308, 309, 323, 326, 328, 329, 330, 331, 332, 333, 338, 339, 340, 343, 347, 351, 359, 360, 508, 527, 562, 563, 564, 567, 568, 570, 572, 574, 577, 591, 599, 618, 624, 632, 634, 638, 641, 642, 643, 644, 645, 646, 648, 649, 650, 653, 655, 664, 670, 671, 693], "function": [2, 40, 45, 53, 54, 55, 56, 58, 60, 62, 63, 66, 102, 107, 115, 125, 126, 129, 132, 133, 134, 136, 137, 138, 139, 141, 143, 146, 147, 148, 149, 150, 152, 155, 160, 169, 170, 173, 180, 183, 199, 202, 205, 211, 218, 227, 248, 254, 287, 288, 304, 305, 315, 323, 326, 328, 330, 356, 357, 370, 586, 595, 597, 598, 609, 615, 620, 623, 624, 638, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 669, 670, 688], "hilfreich": [2, 12, 22, 37, 58, 81, 82, 84, 90, 93, 116, 295, 359, 379, 381, 561, 566, 571, 574, 630, 676, 692], "vollig": [2, 325, 585], "unterschied": [2, 4, 36, 46, 50, 52, 53, 58, 68, 69, 78, 80, 82, 89, 92, 97, 100, 104, 115, 124, 162, 189, 192, 200, 219, 224, 226, 261, 316, 326, 330, 331, 332, 360, 397, 519, 561, 566, 573, 576, 586, 602, 603, 618, 630, 674, 675], "stell": [2, 25, 43, 47, 48, 50, 53, 60, 62, 67, 83, 97, 106, 110, 115, 116, 117, 118, 120, 162, 163, 189, 219, 224, 255, 260, 293, 329, 330, 332, 508, 536, 563, 566, 578, 592, 603, 612, 622, 632, 671, 674, 682, 687, 689], "definiert": [2, 3, 4, 6, 8, 12, 13, 24, 40, 42, 43, 44, 45, 50, 52, 53, 56, 58, 60, 62, 76, 83, 85, 96, 105, 106, 107, 112, 115, 116, 117, 123, 124, 125, 155, 163, 164, 165, 169, 178, 184, 187, 188, 189, 192, 200, 210, 212, 213, 215, 219, 223, 229, 232, 244, 261, 262, 268, 272, 287, 289, 304, 306, 307, 314, 316, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 339, 340, 347, 351, 360, 370, 371, 381, 397, 398, 412, 423, 441, 446, 450, 454, 463, 471, 496, 501, 504, 508, 515, 519, 522, 523, 532, 538, 561, 562, 566, 567, 570, 573, 574, 577, 579, 584, 585, 587, 589, 591, 592, 593, 594, 595, 598, 600, 601, 602, 603, 604, 607, 608, 609, 610, 613, 615, 622, 632, 633, 638, 641, 642, 671, 672, 682, 683, 686, 687, 690], "ubersicht": [2, 4, 5, 68, 82, 92, 94, 97, 98, 103, 106, 111, 112, 115, 116, 163, 166, 170, 184, 187, 192, 200, 210, 212, 213, 220, 224, 232, 252, 261, 265, 268, 289, 302, 310, 348, 351, 357, 360, 366, 371, 561, 584, 671, 682, 692, 693], "tabell": [2, 15, 44, 50, 54, 55, 60, 62, 76, 79, 162, 178, 187, 191, 230, 232, 262, 264, 267, 400, 408, 435, 441, 450, 464, 467, 567, 591, 597, 613, 693], "dargestellt": [2, 3, 8, 13, 62, 93, 117, 162, 163, 170, 178, 179, 184, 187, 192, 210, 212, 213, 219, 220, 226, 229, 232, 250, 252, 262, 265, 268, 289, 302, 336, 338, 348, 357, 360, 366, 592, 600, 622], "bearbeitet": [2, 6, 82, 83, 86, 93, 189, 527], "angelegt": [2, 6, 27, 37, 58, 71, 84, 85, 89, 92, 94, 97, 98, 112, 114, 116, 117, 124, 169, 184, 238, 244, 249, 261, 268, 271, 289, 293, 295, 302, 314, 323, 327, 328, 329, 330, 331, 338, 347, 354, 396, 508, 519, 521, 585, 592, 593, 628, 641, 682, 683, 688], "dialog": [2, 5, 6, 83, 95, 96, 226, 314, 352, 355, 686], "gestutzt": [2, 6], "analog": [2, 6, 52, 53, 58, 95, 103, 107, 112, 115, 116, 121, 124, 125, 170, 239, 263, 293, 308, 309, 332, 351, 353, 412, 563, 567, 576, 591, 596, 599, 601, 603, 634, 636, 638, 641, 649, 653, 671], "kommend": [2, 6, 103, 184, 230, 262, 268, 302, 354, 577, 641, 643, 644, 645, 652, 653, 654, 655, 656, 677, 691], "releas": [2, 6, 13, 22, 46, 47, 54, 55, 64, 78, 84, 92, 100, 106, 113, 130, 162, 179, 186, 190, 225, 248, 257, 280, 282, 283, 297, 302, 330, 333, 354, 355, 561, 567, 589, 591, 635, 677, 682, 688, 689], "hinzu": [2, 3, 5, 6, 46, 47, 52, 112, 172, 328, 585], "komm": [2, 6, 55, 58, 83, 97, 112, 115, 116, 162, 169, 261, 325, 328, 401, 596, 688], "wiederhol": [2, 47, 97, 104, 347, 508], "einfach": [2, 5, 12, 13, 22, 25, 27, 43, 50, 52, 53, 56, 59, 62, 67, 71, 80, 82, 83, 84, 85, 91, 95, 97, 98, 100, 103, 106, 107, 109, 112, 115, 116, 121, 122, 124, 131, 164, 166, 169, 172, 184, 189, 192, 203, 207, 210, 212, 213, 219, 226, 229, 241, 262, 265, 268, 279, 285, 289, 293, 319, 321, 323, 326, 328, 330, 331, 339, 340, 347, 351, 360, 367, 370, 371, 474, 483, 508, 545, 548, 566, 576, 590, 591, 595, 599, 601, 602, 604, 607, 608, 609, 622, 629, 630, 634, 638, 671, 688, 692, 693], "verwalt": [2, 52, 90, 219, 339, 340, 359, 630, 692], "individuell": [2, 45, 60, 95, 97, 314, 322, 326, 412, 471, 508, 519, 552, 553, 615, 641], "installation": [2, 8, 22, 37, 39, 40, 42, 45, 52, 69, 71, 73, 76, 79, 90, 91, 92, 93, 94, 103, 113, 121, 153, 164, 192, 193, 194, 261, 279, 308, 309, 334, 352, 353, 368, 369, 371, 580, 590, 615, 627, 629, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 672, 674, 675, 678, 684, 687, 688, 689, 691, 692, 693], "yaml": [2, 4, 5, 8, 13, 22, 24, 40, 42, 43, 44, 45, 48, 50, 51, 53, 54, 55, 60, 66, 67, 69, 71, 85, 86, 87, 92, 96, 97, 98, 100, 102, 109, 115, 116, 117, 118, 123, 124, 126, 135, 136, 137, 138, 143, 145, 148, 149, 151, 153, 162, 163, 170, 172, 181, 185, 189, 196, 203, 205, 206, 212, 213, 216, 217, 220, 227, 233, 237, 252, 255, 262, 266, 271, 285, 304, 318, 319, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 337, 338, 342, 346, 347, 349, 353, 356, 357, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 556, 557, 561, 566, 569, 572, 575, 576, 577, 578, 579, 583, 584, 585, 590, 592, 593, 594, 596, 597, 599, 601, 602, 603, 604, 605, 607, 608, 609, 612, 613, 614, 615, 616, 619, 622, 624, 625, 632, 634, 635, 636, 638, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 656, 669, 670, 671, 674, 679, 682, 684, 690], "daran": [2, 28, 68, 261, 300], "erkenn": [2, 5, 28, 71, 316, 321, 331, 622, 674], "beginnt": [2, 52, 67, 82, 106, 111, 230, 262, 265, 295, 453, 508, 511, 568, 612, 625], "punkt": [2, 25, 48, 58, 71, 81, 83, 85, 116, 165, 219, 224, 333, 422, 479, 561, 693], "getrennt": [2, 53, 106, 112, 155, 169, 170, 230, 304, 314, 325, 331, 333, 381, 432, 488, 504, 569, 573, 577, 592, 599, 610, 634], "eigent": [2, 37, 42, 48, 52, 67, 82, 106, 115, 116, 333, 360, 575, 579, 586, 590, 683, 687], "anschliesst": 2, "eig": [2, 22, 25, 46, 47, 54, 55, 57, 58, 59, 60, 62, 67, 68, 73, 77, 83, 90, 97, 103, 106, 107, 112, 114, 115, 116, 164, 166, 170, 172, 192, 219, 229, 241, 244, 314, 316, 322, 324, 328, 329, 330, 338, 347, 370, 373, 381, 382, 401, 434, 490, 504, 508, 516, 545, 550, 551, 558, 563, 575, 577, 579, 589, 593, 596, 622, 642, 671, 682, 688, 693], "reih": [3, 5, 8, 12, 31, 33, 34, 40, 42, 46, 52, 54, 57, 64, 67, 97, 106, 201, 213, 214, 250, 291, 306, 307, 321, 324, 369, 526, 545, 550, 572, 575, 577, 583, 590, 595, 597, 599, 601, 612, 622, 630, 634, 643, 644, 645, 646, 672, 673, 681, 682, 691, 693], "getriggert": [3, 12, 42, 153, 162, 168, 243, 263, 304, 316, 325, 381, 508, 562, 567, 572, 573, 577, 588, 590, 591, 593, 594, 595, 619, 641], "entlad": [3, 42, 590, 641, 671], "inclusiv": [3, 27, 106, 682], "alphabet": [3, 105], "sortiert": [3, 58, 93], "Nicht": [3, 167, 262, 373, 414, 488, 489, 511], "end": [3, 5, 12, 37, 42, 59, 60, 66, 71, 73, 79, 82, 83, 85, 92, 106, 116, 126, 133, 155, 165, 169, 170, 184, 189, 203, 213, 219, 227, 230, 260, 262, 268, 282, 287, 288, 289, 294, 304, 316, 318, 319, 321, 325, 326, 327, 328, 329, 330, 339, 340, 341, 347, 356, 357, 365, 381, 396, 507, 508, 561, 562, 563, 567, 585, 588, 591, 599, 624, 636, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 688, 691], "steh": [3, 25, 27, 31, 54, 56, 59, 60, 62, 67, 74, 76, 82, 83, 92, 93, 97, 100, 104, 112, 115, 116, 117, 123, 124, 162, 166, 169, 170, 189, 207, 210, 215, 233, 282, 285, 319, 326, 329, 330, 331, 332, 339, 340, 507, 508, 560, 570, 573, 576, 589, 592, 596, 599, 600, 633, 636, 641, 652, 653, 655, 656, 682, 685], "zwei": [3, 8, 12, 25, 43, 46, 47, 48, 53, 56, 58, 68, 71, 76, 79, 83, 88, 96, 97, 98, 103, 109, 111, 116, 121, 124, 162, 169, 171, 187, 192, 200, 230, 250, 255, 260, 263, 276, 283, 289, 293, 309, 310, 311, 314, 322, 323, 326, 328, 329, 331, 332, 333, 337, 338, 339, 340, 347, 351, 376, 381, 382, 383, 394, 401, 406, 424, 425, 442, 447, 449, 453, 460, 461, 462, 468, 475, 479, 480, 483, 485, 495, 498, 499, 501, 503, 510, 518, 519, 532, 545, 550, 566, 575, 577, 585, 595, 599, 601, 602, 603, 604, 607, 608, 609, 614, 629, 632, 636, 638, 671, 682, 683, 687], "auslos": [3, 71, 189, 223, 241, 243, 263, 321, 325, 326, 331, 332, 347, 508, 568, 570, 592, 594, 642], "aktion": [3, 52, 56, 62, 112, 124, 241, 244, 295, 316, 320, 321, 323, 325, 327, 328, 330, 331, 333, 338, 375, 386, 456, 458, 475, 508, 511, 562, 572, 573, 642], "oberhalb": [3, 55, 60, 165, 566, 575, 577], "2": [3, 12, 14, 20, 21, 43, 44, 45, 53, 54, 55, 56, 57, 58, 60, 61, 62, 71, 79, 83, 84, 85, 86, 92, 97, 103, 104, 106, 111, 112, 113, 116, 122, 130, 138, 141, 150, 154, 156, 157, 160, 161, 162, 163, 165, 166, 167, 169, 170, 173, 178, 179, 184, 186, 187, 189, 192, 193, 194, 195, 196, 198, 199, 200, 203, 205, 206, 207, 210, 211, 215, 216, 217, 223, 225, 227, 229, 231, 232, 239, 240, 245, 247, 248, 249, 252, 255, 257, 260, 262, 263, 270, 272, 273, 274, 279, 280, 281, 282, 283, 284, 288, 289, 290, 291, 293, 298, 299, 300, 303, 305, 306, 307, 308, 309, 310, 312, 313, 315, 320, 322, 323, 325, 326, 329, 331, 332, 333, 334, 335, 336, 337, 338, 341, 344, 347, 348, 352, 355, 356, 357, 359, 360, 361, 363, 366, 370, 371, 376, 381, 382, 396, 401, 406, 407, 414, 419, 429, 431, 433, 434, 436, 440, 442, 451, 453, 454, 458, 460, 461, 462, 471, 476, 477, 478, 479, 487, 489, 496, 498, 499, 503, 507, 508, 519, 523, 545, 548, 550, 552, 554, 558, 561, 562, 563, 566, 569, 574, 575, 585, 592, 595, 597, 598, 599, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 622, 629, 633, 634, 638, 639, 640, 641, 644, 646, 647, 649, 650, 652, 653, 654, 655, 656, 657, 663, 665, 666, 667, 670, 671, 672, 675, 682, 683, 686, 687], "systemlog": [3, 76], "eingeseh": [3, 97, 166, 169, 219], "10": [3, 12, 15, 16, 42, 52, 54, 55, 56, 66, 68, 71, 76, 77, 78, 79, 83, 86, 87, 88, 89, 91, 97, 103, 113, 115, 116, 125, 133, 141, 147, 155, 160, 163, 165, 167, 169, 173, 183, 185, 186, 189, 193, 194, 195, 196, 199, 200, 202, 207, 210, 211, 220, 227, 229, 233, 235, 237, 239, 240, 243, 247, 248, 249, 254, 255, 257, 261, 262, 263, 270, 271, 274, 278, 283, 288, 290, 292, 297, 304, 305, 306, 307, 308, 309, 314, 319, 322, 323, 325, 326, 328, 329, 330, 332, 334, 335, 338, 346, 351, 355, 356, 357, 360, 363, 365, 370, 381, 382, 397, 398, 407, 412, 413, 418, 420, 423, 434, 435, 440, 443, 450, 451, 452, 457, 461, 465, 486, 488, 492, 493, 496, 502, 507, 508, 511, 512, 524, 532, 537, 545, 550, 562, 566, 567, 568, 569, 570, 574, 575, 585, 588, 591, 592, 599, 622, 624, 628, 630, 636, 638, 648, 649, 651, 652, 653, 654, 657, 665, 671, 682, 683, 688], "ansicht": [3, 56, 189, 219], "gruppiert": [3, 117, 592, 600, 686, 693], "mindest": [3, 43, 47, 48, 52, 53, 62, 71, 79, 93, 103, 117, 168, 200, 207, 224, 260, 261, 262, 270, 271, 293, 295, 299, 314, 325, 326, 328, 332, 338, 369, 379, 498, 499, 592, 600], "zugeordnet": [3, 106, 117, 123, 166, 169, 170, 226, 232, 263, 306, 307, 325, 327, 460, 490, 528, 536, 556, 557, 592, 600, 693], "andert": [3, 12, 13, 42, 52, 93, 103, 108, 188, 260, 326, 328, 332, 338, 512, 561, 562, 567, 570, 572, 573, 576, 577, 591, 689], "flach": [3, 219, 292, 367, 599, 636], "aufklappbar": [3, 6], "and": [3, 13, 15, 16, 22, 25, 27, 28, 40, 42, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 64, 66, 67, 68, 69, 71, 79, 80, 82, 83, 85, 86, 87, 91, 92, 96, 103, 104, 106, 107, 109, 112, 113, 115, 116, 117, 120, 123, 124, 126, 127, 128, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 155, 156, 157, 158, 160, 161, 162, 164, 169, 173, 175, 176, 178, 180, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 208, 213, 214, 215, 216, 217, 218, 219, 221, 224, 225, 227, 230, 231, 232, 234, 235, 236, 239, 240, 241, 243, 245, 247, 248, 249, 251, 253, 254, 256, 257, 258, 259, 260, 261, 263, 264, 267, 268, 269, 273, 274, 275, 281, 282, 283, 288, 289, 290, 293, 294, 296, 301, 303, 304, 305, 306, 307, 308, 309, 312, 314, 315, 317, 318, 324, 325, 326, 327, 328, 329, 330, 331, 332, 334, 339, 340, 341, 342, 344, 345, 352, 353, 355, 356, 357, 358, 359, 360, 361, 365, 367, 368, 370, 376, 381, 395, 396, 397, 413, 426, 427, 434, 457, 470, 487, 496, 498, 499, 507, 508, 512, 513, 523, 531, 534, 536, 545, 552, 554, 555, 561, 562, 563, 564, 565, 567, 571, 572, 573, 575, 576, 577, 579, 580, 585, 586, 591, 592, 593, 594, 595, 596, 597, 598, 603, 610, 612, 613, 615, 616, 617, 618, 619, 623, 624, 625, 632, 633, 635, 638, 641, 642, 643, 644, 645, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 668, 669, 670, 671, 675, 677, 678, 681, 682, 686, 687, 688, 691, 693], "konfiguri": [3, 20, 27, 82, 92, 94, 111, 116, 119, 188, 200, 255, 289, 293, 306, 307, 314, 329, 423, 457, 566, 627, 671, 682, 684, 693], "ausfuhr": [3, 10, 25, 31, 32, 33, 34, 42, 47, 52, 54, 55, 58, 62, 68, 82, 83, 92, 97, 103, 111, 117, 162, 163, 168, 170, 189, 200, 203, 212, 213, 214, 222, 223, 255, 282, 326, 327, 330, 331, 332, 347, 369, 398, 410, 452, 512, 519, 545, 554, 565, 573, 588, 591, 592, 593, 594, 600, 625, 628, 635, 688], "steu": [3, 8, 42, 54, 55, 67, 103, 153, 166, 174, 196, 215, 276, 282, 283, 349, 425, 452, 495, 508, 512, 533, 536, 545, 550, 558, 587, 590, 619], "klick": [3, 8, 22, 47, 56, 76, 93, 94, 95, 164, 187, 200, 203, 212, 213, 226, 258, 259, 291, 292, 320, 321, 337, 347, 373, 527, 585, 638, 671], "entsprech": [3, 4, 12, 13, 27, 28, 31, 33, 34, 42, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 60, 62, 76, 77, 79, 81, 83, 84, 85, 89, 90, 92, 97, 98, 103, 104, 112, 113, 115, 116, 121, 123, 124, 154, 162, 164, 165, 168, 169, 170, 171, 178, 179, 184, 187, 188, 189, 192, 194, 196, 200, 203, 204, 207, 210, 212, 213, 217, 219, 220, 226, 229, 232, 233, 237, 243, 249, 250, 252, 255, 256, 261, 262, 263, 265, 266, 268, 271, 285, 287, 289, 293, 295, 302, 306, 307, 309, 311, 313, 314, 316, 324, 325, 326, 327, 328, 329, 330, 331, 332, 336, 337, 338, 347, 348, 349, 351, 357, 360, 363, 366, 371, 373, 403, 423, 434, 440, 462, 471, 511, 519, 527, 561, 562, 563, 566, 569, 573, 583, 584, 585, 588, 591, 592, 593, 594, 599, 612, 622, 625, 628, 630, 632, 633, 634, 638, 641, 672, 682, 687, 688], "erfass": [3, 224, 434, 577], "aktivi": [3, 5, 22, 45, 58, 68, 95, 98, 119, 121, 122, 162, 164, 203, 204, 207, 255, 259, 263, 285, 289, 300, 325, 327, 347, 369, 381, 412, 419, 420, 441, 449, 508, 519, 536, 566, 612, 615, 616, 629, 693], "deaktivi": [3, 45, 58, 121, 122, 323, 328, 347, 449, 457, 519, 615, 616, 630], "lad": [3, 24, 42, 43, 52, 53, 56, 58, 97, 111, 115, 123, 162, 164, 203, 219, 230, 314, 329, 381, 475, 566, 567, 590, 591, 606, 610, 628, 635, 638, 641, 671, 672, 674, 682], "hinzugekomm": [3, 64, 97, 291, 314, 337, 618, 682, 693], "verschied": [3, 36, 43, 53, 56, 58, 68, 74, 78, 79, 85, 92, 97, 98, 106, 116, 159, 162, 166, 169, 172, 187, 188, 189, 192, 200, 223, 243, 255, 262, 270, 271, 279, 287, 289, 293, 302, 306, 307, 316, 326, 328, 329, 330, 331, 333, 397, 401, 450, 476, 536, 545, 550, 560, 569, 573, 592, 596, 601, 602, 603, 604, 606, 607, 608, 609, 610, 630, 686], "trigg": [3, 18, 20, 42, 54, 55, 60, 66, 71, 127, 133, 137, 146, 147, 160, 162, 173, 180, 185, 192, 199, 205, 220, 227, 232, 241, 243, 248, 254, 256, 257, 262, 263, 288, 294, 295, 302, 304, 315, 321, 326, 329, 332, 338, 352, 356, 357, 360, 368, 393, 395, 458, 483, 484, 522, 567, 569, 570, 571, 572, 573, 576, 590, 591, 592, 595, 623, 624, 632, 641, 643, 646, 648, 649, 650, 651, 652, 655, 660, 663, 666, 670, 674, 686], "zuordnung": [3, 15, 62, 124, 169, 241, 306, 307, 314, 339, 340, 412, 446, 463, 621, 622, 687, 693], "mehr": [3, 12, 16, 27, 43, 45, 52, 53, 56, 62, 67, 70, 71, 76, 79, 80, 83, 86, 92, 94, 95, 103, 105, 106, 111, 114, 115, 116, 117, 121, 123, 125, 163, 166, 169, 170, 178, 181, 184, 187, 188, 189, 192, 194, 200, 203, 212, 213, 219, 222, 224, 229, 230, 241, 243, 249, 250, 256, 260, 261, 262, 263, 268, 270, 271, 287, 289, 293, 299, 300, 308, 309, 314, 319, 322, 323, 324, 325, 326, 328, 330, 332, 333, 339, 340, 349, 351, 354, 366, 367, 370, 373, 381, 382, 396, 397, 400, 408, 412, 418, 419, 420, 422, 432, 434, 435, 441, 459, 460, 461, 464, 467, 486, 490, 491, 495, 506, 508, 512, 545, 548, 549, 550, 551, 558, 561, 562, 563, 566, 573, 575, 576, 583, 585, 589, 591, 592, 595, 596, 597, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 615, 621, 622, 630, 634, 638, 641, 642, 646, 649, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675, 686, 687, 688, 690, 693], "gekomm": 3, "eintrag": [3, 4, 8, 20, 22, 24, 25, 42, 43, 48, 50, 51, 52, 53, 58, 60, 69, 71, 83, 86, 89, 92, 97, 98, 103, 106, 107, 111, 116, 117, 120, 123, 155, 162, 163, 167, 168, 169, 181, 184, 187, 188, 189, 200, 203, 217, 219, 232, 243, 244, 256, 262, 263, 268, 271, 293, 295, 304, 306, 307, 314, 321, 322, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 347, 349, 351, 373, 377, 380, 381, 382, 396, 398, 434, 446, 453, 463, 506, 519, 521, 545, 547, 548, 550, 552, 554, 558, 561, 563, 575, 583, 585, 592, 594, 595, 600, 601, 602, 603, 604, 606, 607, 608, 609, 610, 625, 626, 632, 641, 642, 682, 686, 688], "sollen": [3, 25, 37, 43, 45, 52, 53, 58, 62, 67, 70, 71, 79, 81, 83, 84, 90, 95, 98, 103, 105, 106, 112, 115, 116, 120, 121, 123, 124, 170, 178, 187, 188, 200, 207, 223, 226, 230, 243, 249, 250, 261, 263, 304, 308, 309, 325, 326, 328, 329, 331, 332, 339, 340, 347, 351, 375, 379, 381, 382, 394, 396, 398, 405, 416, 422, 423, 427, 428, 450, 457, 460, 462, 468, 484, 508, 510, 511, 513, 516, 528, 532, 534, 561, 562, 584, 589, 593, 595, 596, 601, 602, 603, 604, 607, 608, 609, 615, 630, 641, 682, 692], "trenn": [3, 68, 568, 570], "sekund": [3, 13, 15, 16, 42, 52, 58, 119, 131, 162, 165, 169, 170, 178, 188, 192, 207, 219, 233, 282, 283, 285, 299, 300, 306, 307, 308, 309, 314, 323, 325, 326, 328, 331, 332, 337, 347, 351, 376, 378, 379, 381, 382, 383, 386, 388, 392, 393, 394, 396, 398, 400, 401, 406, 407, 408, 414, 415, 416, 419, 420, 423, 431, 434, 435, 437, 438, 441, 448, 449, 452, 453, 459, 460, 461, 464, 467, 468, 475, 476, 477, 478, 479, 481, 482, 485, 486, 492, 493, 494, 495, 498, 499, 501, 503, 504, 508, 509, 511, 512, 514, 515, 516, 518, 520, 522, 527, 530, 532, 537, 562, 567, 568, 569, 570, 574, 575, 585, 591, 592, 599, 634], "vorschlag": [3, 57, 200, 586], "autovervollstand": 3, "eingab": [3, 119, 255, 338, 498, 499, 574, 577], "erst": [3, 4, 5, 8, 12, 13, 15, 42, 46, 48, 50, 51, 52, 53, 58, 60, 67, 69, 71, 77, 79, 80, 82, 83, 85, 86, 92, 94, 96, 97, 102, 116, 121, 163, 164, 165, 167, 169, 179, 184, 189, 192, 200, 210, 212, 213, 215, 220, 230, 232, 252, 255, 256, 261, 262, 263, 265, 266, 268, 282, 289, 292, 293, 295, 302, 306, 307, 310, 313, 316, 321, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 339, 340, 348, 349, 351, 359, 362, 366, 378, 379, 382, 398, 399, 434, 495, 508, 545, 550, 563, 567, 572, 573, 576, 583, 585, 591, 592, 595, 596, 599, 601, 603, 610, 618, 625, 628, 629, 634, 636, 638, 641, 682, 687, 688, 689], "3": [3, 12, 14, 15, 16, 18, 20, 30, 43, 44, 46, 48, 52, 53, 54, 55, 56, 57, 58, 64, 66, 71, 78, 80, 82, 83, 86, 90, 92, 100, 103, 104, 106, 107, 111, 112, 113, 115, 117, 119, 121, 122, 125, 137, 138, 141, 147, 152, 154, 157, 160, 163, 165, 167, 169, 170, 172, 175, 178, 179, 187, 189, 191, 192, 195, 196, 198, 199, 200, 201, 202, 205, 207, 210, 211, 212, 216, 219, 227, 229, 230, 231, 232, 238, 239, 247, 249, 251, 254, 255, 257, 260, 261, 262, 263, 264, 265, 266, 267, 270, 279, 281, 282, 283, 284, 285, 288, 289, 293, 294, 299, 300, 305, 306, 307, 308, 309, 310, 312, 313, 320, 325, 328, 329, 331, 332, 334, 336, 337, 338, 339, 340, 341, 342, 343, 352, 355, 356, 357, 358, 359, 360, 361, 363, 365, 374, 381, 382, 387, 388, 389, 393, 396, 398, 400, 401, 406, 408, 410, 412, 413, 414, 417, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 443, 448, 450, 451, 452, 453, 459, 460, 461, 462, 464, 467, 471, 477, 479, 487, 489, 494, 496, 504, 507, 508, 511, 512, 513, 515, 522, 523, 524, 525, 526, 531, 534, 536, 537, 538, 545, 548, 550, 554, 558, 561, 563, 566, 569, 573, 575, 577, 585, 586, 592, 594, 595, 598, 600, 603, 606, 610, 612, 613, 616, 622, 624, 628, 629, 630, 633, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 657, 662, 665, 667, 675, 678, 682, 686, 687, 691, 693], "Mit": [3, 4, 12, 25, 27, 46, 52, 64, 82, 83, 85, 86, 87, 97, 103, 106, 108, 112, 116, 155, 156, 162, 166, 169, 178, 189, 192, 194, 203, 212, 213, 223, 229, 230, 232, 256, 260, 262, 263, 265, 272, 289, 292, 293, 302, 303, 304, 306, 307, 310, 314, 319, 326, 331, 332, 338, 349, 351, 354, 360, 382, 406, 416, 434, 508, 530, 532, 563, 565, 573, 574, 577, 583, 584, 585, 591, 596, 630, 643, 644, 645, 646, 650, 671, 686, 688, 689, 690, 691, 692], "pfeiltast": 3, "navigiert": [3, 4], "ent": [3, 44, 54, 55, 71, 88, 113, 122, 180, 199, 218, 282, 283, 297, 315, 323, 325, 326, 328, 329, 330, 331, 333, 361, 365, 613, 616, 655], "auswahl": [3, 5, 22, 82, 85, 94, 95, 96, 169, 226, 229, 272, 338, 369, 378, 452, 472, 536, 682], "hinzugefugt": [3, 5, 43, 53, 56, 58, 60, 62, 95, 97, 106, 115, 123, 162, 169, 184, 215, 238, 249, 262, 268, 295, 325, 326, 332, 351, 359, 423, 561, 563, 603, 608, 610, 641, 642, 650, 671, 672, 673, 674, 675, 683], "bedarf": [3, 31, 32, 52, 54, 55, 58, 62, 96, 109, 115, 118, 120, 168, 238, 255, 262, 263, 271, 306, 307, 328, 329, 330, 331, 332, 370, 381, 423, 563, 593, 622, 625, 630], "logeintrag": [4, 42, 58, 71, 83, 115, 116, 170, 243, 263, 293, 306, 307, 322, 382, 396, 446, 463, 545, 554, 575, 577, 583, 588, 593, 641, 682], "anzuzeig": [4, 54, 55, 56, 59, 60, 62, 85, 116, 156, 187, 289, 303, 339, 340, 347, 396, 406, 496, 513, 523, 545, 554, 585, 612, 641, 683], "drop": [4, 93, 130, 187, 226, 288, 486], "down": [4, 45, 52, 54, 55, 66, 93, 198, 200, 202, 226, 231, 248, 412, 433, 615, 624, 643, 646, 662], "daneb": [4, 682], "zeitrahm": [4, 287, 423], "vergang": [4, 215, 262, 398, 599, 634], "timedrotatingfilehandl": [4, 107, 115, 116, 136, 232, 322, 585], "aktualisi": [4, 58, 62, 68, 76, 92, 346, 373, 381, 396, 453, 569, 573, 592, 630], "angefordert": [4, 28, 52, 58, 155, 162, 302, 304, 351, 354, 515, 532, 682], "zweit": [4, 8, 13, 15, 37, 42, 50, 58, 71, 83, 97, 121, 162, 163, 164, 184, 187, 192, 210, 212, 213, 220, 230, 232, 244, 250, 252, 255, 261, 263, 265, 268, 289, 302, 310, 316, 325, 326, 328, 330, 331, 347, 348, 351, 363, 366, 398, 434, 496, 523, 572, 576, 595, 599, 629, 636, 682, 686, 689], "gefiltert": [4, 170, 382], "freitextfilt": 4, "filt": [4, 15, 31, 33, 34, 44, 52, 54, 56, 60, 66, 107, 138, 170, 183, 195, 229, 232, 241, 250, 263, 274, 322, 365, 382, 414, 533, 613, 624, 643, 646, 652, 653, 655, 671], "cas": [4, 15, 42, 43, 45, 52, 53, 54, 55, 66, 123, 130, 136, 140, 148, 152, 160, 165, 173, 183, 186, 195, 208, 211, 218, 245, 248, 262, 274, 278, 290, 294, 301, 305, 344, 355, 368, 601, 602, 604, 607, 608, 609, 615, 623, 624, 625, 643, 645, 646, 649, 650, 651, 652, 654, 655, 670], "sensitiv": [4, 42, 43, 53, 123, 160, 294, 359, 601, 602, 604, 607, 608, 609, 625], "zusatz": [4, 22, 36, 42, 43, 50, 52, 58, 60, 62, 63, 66, 71, 78, 79, 82, 84, 86, 91, 92, 97, 103, 104, 106, 109, 110, 115, 153, 155, 170, 171, 172, 178, 179, 188, 200, 212, 213, 215, 219, 220, 222, 223, 250, 256, 261, 271, 282, 285, 289, 293, 304, 306, 307, 314, 321, 322, 324, 328, 329, 338, 351, 363, 369, 370, 371, 373, 396, 401, 423, 427, 428, 453, 463, 485, 528, 534, 545, 548, 550, 552, 554, 558, 563, 566, 569, 575, 576, 577, 584, 585, 589, 590, 592, 593, 594, 617, 620, 622, 623, 624, 641, 642, 671, 674, 689, 693], "level": [4, 45, 53, 71, 76, 83, 100, 106, 107, 112, 113, 116, 123, 126, 133, 134, 136, 142, 155, 160, 169, 170, 178, 179, 180, 183, 189, 195, 200, 212, 213, 227, 232, 243, 247, 248, 254, 255, 257, 262, 263, 270, 271, 293, 304, 314, 318, 320, 322, 329, 336, 352, 355, 356, 357, 368, 382, 439, 446, 454, 463, 561, 566, 575, 577, 583, 585, 588, 593, 603, 615, 618, 638, 642, 643, 645, 646, 648, 649, 651, 652, 653, 654, 655, 663, 683, 686], "ganz": [4, 62, 79, 82, 92, 97, 102, 106, 115, 162, 169, 192, 203, 233, 260, 282, 306, 307, 321, 328, 333, 339, 340, 401, 599, 622, 630, 636, 637, 681, 688, 693], "sond": [4, 5, 15, 52, 62, 67, 79, 87, 97, 98, 102, 103, 110, 115, 164, 169, 192, 212, 213, 223, 238, 260, 263, 314, 321, 326, 328, 329, 330, 332, 333, 401, 453, 508, 554, 555, 566, 571, 573, 585, 593, 595, 596, 597, 599, 622, 634, 649, 672, 682, 686, 688], "stuck": 4, "chunk": [4, 141, 612, 655], "standardmass": [4, 12, 44, 53, 58, 62, 64, 68, 79, 82, 83, 84, 85, 93, 115, 116, 119, 120, 123, 184, 194, 222, 230, 256, 263, 268, 272, 289, 292, 314, 320, 325, 326, 329, 351, 457, 496, 508, 523, 563, 566, 568, 570, 580, 584, 585, 594, 613, 622, 630, 682, 690], "1000": [4, 58, 71, 119, 164, 189, 218, 219, 221, 234, 249, 262, 277, 278, 279, 298, 337, 344, 396, 440, 476, 477, 545, 548, 612, 648, 653, 688], "lang": [4, 43, 47, 52, 53, 58, 92, 93, 131, 169, 192, 203, 213, 219, 226, 230, 261, 314, 328, 329, 362, 370, 381, 419, 420, 453, 504, 513, 522, 533, 601, 602, 604, 607, 608, 609, 635, 671, 673, 675], "traceback": [4, 42, 44, 45, 136, 157, 158, 613, 615], "hierbei": [4, 8, 25, 42, 56, 80, 85, 97, 98, 106, 112, 116, 162, 184, 187, 191, 201, 255, 259, 264, 267, 268, 289, 314, 319, 322, 333, 360, 490, 507, 566, 576, 589, 599, 636, 682], "zusamm": [4, 69, 113, 223, 287, 325, 332, 573, 576, 586, 622, 678, 682, 686], "gezahlt": 4, "gewahlt": [4, 12, 22, 42, 48, 50, 52, 58, 61, 62, 73, 82, 85, 86, 95, 100, 106, 123, 131, 187, 189, 192, 194, 203, 212, 213, 219, 262, 272, 289, 326, 347, 395, 419, 420, 465, 479, 487, 506, 508, 563, 622, 682, 690, 693], "weit": [4, 5, 8, 16, 25, 32, 43, 48, 50, 52, 53, 54, 55, 56, 57, 60, 62, 68, 71, 80, 81, 82, 84, 85, 87, 91, 92, 97, 98, 100, 104, 105, 106, 107, 109, 112, 114, 115, 116, 117, 120, 123, 125, 131, 153, 162, 164, 169, 174, 178, 179, 184, 192, 200, 203, 207, 210, 212, 213, 215, 217, 223, 232, 233, 238, 244, 262, 263, 265, 268, 271, 279, 285, 289, 295, 306, 307, 311, 314, 319, 323, 328, 329, 330, 331, 333, 334, 337, 338, 345, 351, 354, 359, 362, 363, 370, 371, 373, 419, 427, 428, 440, 532, 534, 561, 564, 565, 566, 570, 573, 574, 575, 576, 578, 584, 585, 587, 589, 591, 592, 593, 594, 596, 599, 600, 601, 602, 604, 606, 607, 608, 609, 610, 614, 619, 625, 628, 630, 636, 638, 641, 642, 671, 674, 682, 685, 686, 688, 693], "zuruck": [4, 47, 52, 67, 90, 156, 162, 164, 165, 170, 187, 189, 219, 228, 262, 263, 289, 303, 304, 314, 325, 326, 328, 332, 338, 351, 376, 377, 382, 394, 396, 398, 400, 411, 416, 441, 455, 460, 464, 467, 468, 479, 486, 510, 520, 522, 530, 562, 563, 565, 567, 574, 591, 599, 634, 636, 641, 671, 674], "gesprung": 4, "je": [4, 25, 42, 48, 53, 67, 82, 83, 115, 123, 131, 187, 189, 192, 204, 207, 212, 213, 219, 226, 230, 250, 261, 263, 306, 307, 326, 328, 330, 331, 333, 334, 369, 373, 412, 423, 495, 508, 550, 551, 569, 585, 592, 610, 632, 641], "moment": [4, 57, 126, 134, 142, 162, 173, 202, 248, 281, 423, 572, 612, 652, 655], "dau": [4, 8, 12, 56, 58, 170, 187, 203, 207, 210, 224, 261, 319, 328, 329, 330, 351, 370, 381, 415, 417, 453, 504, 508, 562, 568, 570, 571, 574, 577, 628], "hintergrund": [4, 58, 79, 83, 289, 632, 635, 641], "gesamt": [4, 58, 62, 82, 97, 103, 105, 106, 154, 165, 172, 189, 325, 326, 331, 332, 337, 347, 354, 360, 436, 443, 453, 526, 561, 563, 575, 577, 586, 612, 621, 674, 682, 683], "geles": [4, 13, 27, 58, 98, 100, 103, 106, 119, 155, 192, 212, 213, 219, 265, 304, 310, 328, 351, 381, 396, 400, 405, 408, 428, 434, 435, 441, 452, 464, 467, 470, 485, 489, 497, 507, 522, 537, 596, 612], "halb": [4, 8, 52, 83, 92, 103, 326], "vier": [4, 8, 96, 167, 169, 191, 201, 264, 267, 289, 324, 325, 327, 362, 458, 585], "verteilt": [4, 94, 97, 103, 114, 370], "verandert": [4, 13, 24, 52, 60, 96, 112, 125, 162, 189, 219, 262, 316, 326, 332, 347, 349, 351, 360, 396, 490, 562, 563, 567, 571, 573, 575, 576, 577, 580, 591, 596, 638], "ohn": [4, 5, 22, 24, 27, 28, 42, 46, 50, 54, 55, 58, 71, 76, 77, 79, 80, 82, 83, 84, 95, 97, 103, 106, 111, 115, 116, 118, 120, 121, 122, 123, 124, 162, 164, 187, 189, 192, 196, 203, 212, 213, 215, 225, 230, 232, 244, 249, 256, 260, 261, 262, 263, 265, 283, 289, 293, 314, 321, 326, 328, 332, 337, 338, 351, 359, 363, 370, 376, 381, 445, 494, 496, 506, 508, 523, 527, 552, 553, 561, 562, 565, 569, 571, 572, 573, 574, 575, 576, 585, 589, 590, 591, 592, 598, 599, 610, 630, 634, 642, 671, 674, 685, 688, 693], "spalt": [4, 8, 31, 33, 34, 52, 54, 58, 60, 93, 170, 179, 184, 187, 192, 200, 204, 210, 212, 213, 220, 224, 232, 249, 250, 252, 255, 265, 266, 268, 289, 302, 309, 311, 314, 320, 337, 348, 349, 357, 360, 366, 396, 545, 547, 548, 550, 552, 554, 558, 597], "logfil": [4, 43, 53, 92, 102, 107, 115, 116, 138, 196, 200, 232, 255, 328, 397, 407, 456, 458, 463, 519, 545, 554, 595, 604, 608, 612, 653, 670, 674], "s": [4, 12, 14, 15, 27, 40, 44, 45, 47, 52, 53, 54, 55, 66, 67, 71, 82, 88, 92, 96, 103, 104, 107, 111, 115, 116, 130, 131, 133, 134, 137, 139, 141, 142, 147, 148, 149, 151, 157, 158, 159, 160, 164, 169, 170, 173, 176, 177, 180, 186, 188, 192, 195, 196, 199, 200, 205, 210, 211, 217, 219, 232, 235, 245, 248, 249, 253, 254, 255, 257, 262, 263, 273, 274, 278, 279, 281, 282, 283, 284, 288, 292, 293, 305, 309, 315, 328, 334, 337, 338, 351, 352, 353, 369, 370, 378, 400, 407, 408, 462, 464, 467, 489, 535, 545, 550, 568, 570, 584, 585, 595, 599, 609, 612, 613, 615, 618, 624, 633, 634, 635, 641, 645, 646, 649, 650, 651, 653, 655, 670, 672, 674, 682], "verzweigt": 4, "Aus": [4, 79, 100, 103, 106, 112, 162, 165, 170, 172, 192, 241, 263, 283, 314, 323, 334, 338, 349, 370, 382, 434, 449, 470, 488, 518, 563, 573, 595, 672, 674, 688], "geht": [4, 13, 71, 85, 92, 103, 115, 276, 347, 576, 596, 688], "hervor": 4, "handl": [4, 62, 63, 66, 107, 116, 133, 136, 141, 160, 188, 200, 232, 243, 245, 263, 288, 322, 352, 353, 356, 357, 368, 407, 583, 593, 612, 616, 620, 623, 624, 638, 641, 646, 649, 652, 655, 665], "geschrieb": [4, 8, 13, 27, 43, 52, 53, 89, 98, 100, 103, 115, 116, 123, 124, 162, 165, 167, 187, 188, 189, 223, 232, 243, 255, 261, 263, 270, 271, 289, 293, 295, 313, 319, 322, 326, 328, 332, 338, 347, 351, 396, 397, 400, 408, 415, 427, 428, 434, 435, 441, 446, 458, 462, 463, 464, 467, 485, 489, 490, 495, 497, 506, 507, 508, 519, 527, 532, 537, 567, 571, 573, 575, 584, 585, 591, 593, 594, 597, 601, 602, 603, 604, 608, 609, 621, 632, 638, 674, 689, 690], "sieh": [4, 12, 31, 33, 34, 52, 54, 58, 67, 68, 71, 76, 79, 85, 87, 97, 115, 162, 163, 164, 167, 168, 170, 171, 178, 188, 189, 192, 197, 200, 219, 238, 244, 249, 250, 255, 260, 261, 262, 263, 276, 314, 319, 323, 325, 326, 329, 330, 331, 337, 338, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 558, 567, 573, 577, 589, 591, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 672, 674, 675, 688, 691, 692, 693], "abschnitt": [4, 8, 10, 12, 22, 31, 32, 36, 42, 43, 47, 50, 52, 53, 54, 55, 59, 61, 65, 78, 79, 83, 87, 89, 93, 94, 96, 97, 98, 103, 104, 106, 109, 110, 111, 115, 116, 117, 121, 123, 125, 164, 168, 178, 223, 232, 263, 292, 302, 316, 324, 496, 545, 546, 556, 557, 564, 566, 573, 579, 582, 583, 585, 586, 587, 592, 593, 594, 596, 597, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 614, 619, 621, 625, 626, 627, 629, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 689, 691, 693], "seh": [4, 89, 90, 97, 106, 115, 116, 164, 166, 169, 170, 187, 210, 232, 244, 276, 289, 295, 320, 324, 328, 371, 416, 683], "warning": [4, 42, 52, 66, 71, 72, 76, 83, 89, 92, 107, 115, 116, 119, 125, 126, 127, 136, 140, 143, 148, 149, 155, 179, 183, 203, 211, 243, 248, 256, 262, 263, 269, 273, 274, 293, 296, 304, 322, 356, 357, 434, 463, 469, 491, 575, 584, 585, 588, 589, 593, 595, 612, 624, 638, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 681], "hoh": [4, 12, 44, 54, 55, 76, 79, 86, 88, 115, 116, 169, 170, 191, 201, 219, 220, 224, 260, 261, 267, 314, 323, 326, 328, 329, 330, 331, 332, 378, 391, 410, 453, 460, 488, 506, 514, 545, 554, 561, 599, 613, 636, 638, 682], "schreibt": [4, 83, 103, 116, 170, 187, 196, 223, 263, 295, 338, 394, 463, 468, 490], "abweich": [4, 12, 82, 170, 219, 263, 272, 328, 330, 331, 486, 487, 508, 566, 595], "davon": [4, 52, 62, 71, 83, 92, 106, 162, 184, 268, 306, 307, 325, 327, 330, 382, 508, 561, 622], "a_testlogic2": 4, "infos": [4, 44, 103, 164, 169, 207, 300, 338, 359, 412, 455, 460, 516, 545, 548, 550, 552, 554, 558, 593, 613, 646, 649], "loggt": [4, 116, 210, 434, 588], "standardhandl": [4, 115], "a_testlogic3": 4, "auss": [4, 5, 25, 68, 83, 100, 106, 114, 116, 120, 123, 169, 189, 287, 293, 328, 338, 339, 340, 454, 490, 562, 563, 566, 584, 585, 599, 622, 630, 634, 651, 652, 653, 654, 656, 682, 688], "loglevel": [4, 83, 116, 189, 200, 232, 243, 256, 263, 293, 320, 322, 337, 434, 451, 463, 508, 575, 577, 584, 593, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655], "sorgt": [4, 51, 52, 60, 83, 162, 263, 289, 330, 360, 381, 508, 562, 567, 570, 571, 573, 591, 592, 625, 641], "dafur": [4, 13, 42, 51, 58, 60, 62, 71, 76, 82, 83, 86, 92, 106, 112, 212, 213, 232, 237, 263, 285, 289, 330, 336, 338, 360, 381, 461, 504, 508, 562, 567, 571, 573, 588, 589, 591, 593, 621, 641], "gleich": [4, 12, 42, 52, 68, 82, 83, 84, 103, 112, 131, 162, 169, 172, 187, 189, 192, 212, 213, 230, 243, 256, 262, 265, 289, 293, 324, 325, 326, 328, 329, 330, 332, 333, 339, 340, 363, 401, 407, 504, 513, 519, 566, 571, 573, 576, 583, 585, 589, 596, 597, 632, 641, 642, 687, 688], "standard": [4, 36, 39, 44, 45, 46, 54, 55, 58, 60, 63, 66, 78, 82, 83, 84, 103, 106, 111, 113, 115, 119, 120, 121, 122, 129, 136, 147, 148, 157, 158, 186, 187, 195, 212, 213, 222, 226, 227, 234, 248, 256, 262, 263, 265, 272, 314, 320, 323, 328, 342, 359, 360, 363, 365, 368, 370, 375, 381, 396, 397, 400, 408, 416, 434, 435, 441, 446, 448, 450, 463, 464, 467, 479, 485, 486, 487, 492, 495, 508, 515, 527, 530, 532, 537, 545, 554, 564, 566, 573, 576, 585, 589, 598, 613, 615, 617, 620, 622, 624, 630, 641, 643, 644, 646, 647, 652, 653, 655, 656, 674, 682, 688, 693], "editiert": 4, "wirksam": [4, 27, 82, 83, 86, 96, 116], "icon": [5, 21, 85, 164, 170, 179, 184, 187, 192, 200, 204, 206, 210, 212, 213, 219, 220, 228, 229, 232, 249, 252, 253, 255, 262, 265, 266, 268, 284, 289, 294, 302, 309, 311, 314, 320, 348, 349, 352, 357, 359, 360, 361, 365, 366, 641, 644, 649, 651, 652, 653, 655, 682, 683, 686, 687], "web": [5, 44, 45, 48, 50, 52, 53, 54, 55, 58, 60, 66, 78, 82, 110, 120, 160, 161, 163, 175, 176, 195, 198, 203, 208, 227, 257, 292, 309, 329, 352, 355, 373, 374, 375, 376, 388, 394, 396, 411, 416, 417, 423, 425, 430, 431, 444, 445, 455, 460, 462, 468, 471, 472, 473, 479, 491, 502, 503, 505, 507, 510, 512, 516, 520, 527, 528, 529, 530, 532, 537, 545, 550, 610, 612, 613, 615, 616, 624, 625, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 669, 671, 672, 674, 691], "interfac": [5, 8, 14, 40, 44, 45, 48, 50, 52, 53, 54, 55, 58, 60, 66, 70, 71, 78, 85, 86, 87, 92, 93, 96, 98, 108, 110, 111, 113, 117, 118, 119, 120, 121, 122, 151, 152, 154, 163, 168, 175, 180, 193, 194, 195, 196, 198, 208, 225, 227, 247, 254, 257, 260, 292, 300, 305, 309, 319, 328, 329, 335, 344, 352, 355, 373, 376, 377, 378, 380, 381, 382, 383, 387, 388, 389, 391, 392, 393, 396, 399, 400, 403, 405, 406, 408, 409, 412, 413, 414, 415, 416, 417, 421, 422, 424, 426, 427, 429, 432, 433, 434, 435, 436, 437, 438, 439, 441, 442, 443, 448, 449, 456, 458, 459, 460, 464, 467, 469, 470, 478, 479, 480, 481, 482, 484, 488, 492, 493, 494, 495, 497, 500, 503, 509, 514, 517, 518, 522, 525, 526, 528, 533, 535, 536, 545, 548, 554, 558, 560, 562, 567, 569, 591, 592, 598, 600, 610, 611, 612, 613, 615, 616, 617, 623, 624, 625, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 665, 666, 671, 686, 691], "dokumentation": [5, 10, 14, 27, 31, 32, 33, 34, 38, 41, 43, 48, 50, 53, 56, 64, 74, 84, 85, 96, 97, 103, 109, 110, 115, 121, 123, 153, 159, 162, 163, 168, 179, 187, 196, 197, 214, 215, 228, 232, 249, 250, 256, 259, 261, 270, 271, 276, 277, 284, 291, 306, 307, 309, 311, 314, 319, 323, 325, 326, 337, 339, 340, 343, 359, 360, 363, 369, 373, 458, 461, 507, 545, 547, 548, 550, 552, 554, 558, 563, 577, 579, 584, 601, 602, 604, 606, 607, 608, 609, 610, 611, 614, 619, 621, 626, 684, 685, 687, 688, 693], "aufgeruf": [5, 15, 37, 44, 46, 50, 51, 52, 54, 55, 64, 83, 90, 92, 102, 103, 113, 120, 125, 131, 162, 170, 179, 184, 187, 192, 200, 204, 210, 212, 213, 219, 220, 232, 241, 243, 249, 252, 255, 261, 265, 266, 268, 272, 283, 289, 302, 309, 311, 313, 314, 328, 338, 348, 349, 351, 357, 360, 366, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 591, 595, 599, 613, 629, 630, 632, 634, 638, 681, 687, 693], "weitergeh": [5, 48, 84, 106, 114, 229, 291, 681, 689], "support": [5, 45, 50, 53, 54, 55, 61, 66, 79, 98, 104, 110, 130, 134, 135, 151, 160, 169, 173, 175, 179, 183, 186, 205, 209, 211, 218, 219, 223, 227, 230, 235, 236, 239, 247, 254, 258, 270, 271, 273, 275, 278, 280, 281, 293, 301, 344, 345, 355, 356, 357, 368, 414, 587, 595, 610, 615, 616, 618, 624, 627, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 665, 666, 667, 670, 671, 672, 692], "thread": [5, 8, 12, 40, 44, 45, 52, 53, 55, 58, 66, 71, 83, 98, 103, 113, 116, 120, 136, 140, 141, 142, 143, 144, 145, 147, 155, 160, 169, 180, 181, 182, 198, 218, 227, 234, 239, 243, 245, 249, 253, 257, 260, 293, 298, 301, 304, 335, 344, 356, 357, 364, 365, 414, 446, 463, 512, 580, 610, 612, 613, 615, 616, 618, 624, 641, 643, 644, 645, 646, 647, 650, 651, 652, 653, 655, 656, 660, 663, 671], "forum": [5, 12, 53, 54, 55, 71, 78, 92, 98, 164, 169, 170, 182, 186, 198, 205, 218, 227, 234, 239, 245, 253, 257, 260, 278, 280, 293, 298, 301, 315, 335, 341, 344, 352, 353, 355, 356, 357, 364, 365, 414, 610, 643, 644, 645, 647, 649, 651, 666, 691], "relevant": [5, 31, 33, 34, 52, 54, 58, 60, 63, 106, 115, 116, 169, 184, 191, 192, 201, 246, 250, 264, 267, 268, 322, 323, 324, 325, 328, 339, 340, 347, 381, 519, 620, 623, 643, 688], "blog": [5, 17, 45, 98, 344, 347, 615, 643, 646, 649, 674], "artikel": [5, 46, 68, 98, 305, 434], "webinterfac": [5, 27, 31, 33, 34, 43, 44, 48, 50, 53, 59, 61, 66, 74, 79, 120, 123, 151, 164, 165, 166, 169, 171, 181, 189, 198, 199, 204, 214, 215, 222, 223, 229, 231, 232, 237, 247, 250, 254, 260, 262, 276, 277, 285, 287, 291, 306, 307, 312, 313, 314, 320, 337, 338, 339, 340, 343, 347, 351, 359, 362, 367, 369, 416, 422, 441, 508, 601, 602, 604, 606, 607, 608, 609, 613, 617, 624, 641, 642, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 674], "art": [5, 53, 62, 67, 71, 77, 92, 97, 165, 167, 198, 229, 232, 255, 260, 261, 318, 325, 328, 349, 360, 370, 376, 379, 400, 406, 408, 435, 436, 441, 464, 467, 479, 485, 573, 585, 586, 601, 603, 683, 686], "authentifizier": [5, 45, 84, 120, 154, 266, 349, 362, 380, 458, 512, 612, 615], "nutz": [5, 12, 13, 39, 45, 46, 48, 53, 54, 56, 58, 60, 62, 63, 67, 68, 74, 76, 79, 83, 84, 97, 98, 107, 111, 115, 122, 125, 162, 167, 169, 170, 179, 184, 187, 188, 191, 192, 201, 210, 212, 213, 223, 229, 232, 243, 249, 252, 256, 260, 261, 262, 263, 264, 265, 267, 268, 271, 272, 279, 289, 292, 295, 314, 319, 324, 326, 327, 329, 330, 331, 347, 354, 357, 360, 363, 366, 370, 381, 401, 403, 440, 444, 445, 462, 495, 496, 498, 499, 507, 508, 514, 519, 533, 545, 548, 550, 563, 565, 573, 576, 585, 591, 595, 610, 615, 618, 620, 621, 622, 629, 638, 641, 642, 652, 653, 654, 656, 671, 674, 679, 682, 692], "deshalb": [5, 22, 43, 71, 77, 83, 97, 106, 169, 262, 292, 302, 314, 373, 596, 597, 693], "erscheint": [5, 47, 83, 192, 226, 232, 272, 337, 593, 674, 686], "beim": [5, 13, 20, 22, 24, 42, 43, 45, 46, 47, 52, 53, 56, 58, 64, 71, 74, 76, 82, 83, 85, 89, 90, 92, 95, 97, 100, 102, 103, 106, 108, 113, 115, 116, 120, 121, 123, 125, 160, 162, 169, 171, 178, 187, 188, 189, 212, 213, 219, 232, 241, 243, 244, 249, 261, 262, 263, 265, 272, 289, 292, 295, 302, 306, 307, 314, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 347, 351, 360, 371, 373, 375, 378, 381, 382, 384, 396, 400, 401, 403, 407, 408, 423, 428, 434, 435, 441, 453, 454, 464, 466, 467, 485, 486, 504, 507, 508, 512, 519, 521, 530, 533, 537, 561, 562, 563, 566, 567, 572, 573, 574, 576, 577, 585, 589, 591, 594, 595, 596, 598, 599, 601, 603, 606, 610, 615, 632, 635, 636, 638, 641, 642, 672, 673, 674, 681, 682, 687, 688, 689], "basic": [5, 8, 44, 76, 130, 157, 160, 161, 166, 173, 178, 195, 211, 227, 235, 236, 247, 253, 254, 255, 257, 278, 284, 288, 294, 347, 351, 352, 355, 359, 370, 429, 561, 598, 613, 646, 666, 669, 674, 682, 683, 686, 688], "auth": [5, 8, 44, 76, 141, 222, 257, 612, 613, 646, 648, 650, 655, 674, 688], "anmeldedialog": 5, "usernam": [5, 8, 44, 45, 82, 84, 141, 150, 157, 158, 198, 212, 213, 218, 227, 241, 248, 292, 419, 420, 599, 612, 613, 615, 688], "erfolg": [5, 46, 48, 51, 52, 53, 54, 55, 71, 82, 83, 85, 87, 92, 102, 103, 106, 115, 220, 293, 325, 326, 330, 339, 340, 351, 401, 561, 568, 574, 575, 576, 577, 579, 583, 589, 593, 596, 598, 599, 609, 612, 613, 615, 632, 636, 687], "installiert": [5, 8, 22, 27, 37, 44, 67, 68, 71, 73, 76, 79, 82, 83, 84, 85, 86, 87, 90, 92, 95, 98, 103, 111, 120, 154, 165, 168, 207, 223, 225, 249, 250, 255, 261, 265, 287, 306, 307, 309, 314, 338, 370, 477, 533, 580, 612, 613, 616, 617, 628, 629, 630, 632, 641, 674, 685, 687, 688, 693], "instanz": [5, 52, 53, 67, 71, 83, 95, 97, 100, 102, 111, 123, 154, 166, 187, 189, 192, 210, 223, 224, 229, 249, 250, 252, 262, 263, 299, 300, 308, 309, 339, 340, 357, 362, 366, 373, 396, 399, 401, 424, 425, 512, 528, 548, 549, 550, 551, 565, 589, 591, 597, 603, 610, 612, 622, 641, 680], "besteh": [5, 22, 36, 42, 47, 48, 51, 52, 53, 54, 55, 56, 76, 81, 92, 93, 94, 97, 103, 106, 119, 168, 197, 224, 276, 314, 325, 331, 371, 424, 425, 590, 595, 612, 671, 687, 693], "geandert": [5, 8, 27, 52, 56, 83, 92, 97, 103, 111, 113, 118, 119, 120, 121, 122, 167, 169, 170, 181, 189, 219, 233, 237, 244, 260, 263, 276, 295, 325, 326, 328, 329, 330, 331, 333, 338, 351, 360, 370, 371, 380, 381, 384, 434, 450, 453, 486, 490, 508, 512, 514, 517, 562, 567, 572, 591, 632, 651, 674, 693], "entfern": [5, 71, 77, 82, 181, 326, 332, 453, 561, 562, 625], "kurzfrist": [5, 366], "betrieb": [5, 27, 68, 71, 79, 83, 85, 86, 107, 165, 168, 169, 192, 200, 219, 261, 262, 326, 332, 351, 371, 443, 449, 460, 508, 622], "genomm": [5, 103, 330, 369, 434], "schalt": [5, 20, 58, 98, 163, 165, 170, 178, 200, 262, 277, 278, 293, 314, 316, 328, 329, 333, 337, 338, 369, 407, 434, 476, 477, 519, 545, 548, 671, 683], "disabled": [5, 42, 53, 82, 115, 137, 181, 217, 227, 292, 304, 356, 357, 610, 623, 632, 643, 645, 646, 647, 652, 653, 654, 655], "spat": [5, 27, 52, 58, 83, 85, 105, 106, 122, 169, 292, 295, 328, 329, 333, 347, 496, 524, 566, 577, 599, 630, 634, 671, 687, 693], "wied": [5, 8, 12, 27, 52, 67, 79, 86, 89, 90, 92, 106, 162, 187, 192, 220, 232, 261, 289, 293, 314, 324, 325, 326, 328, 329, 330, 331, 332, 338, 351, 487, 490, 572, 577, 589, 594, 599, 621, 635, 636, 642, 671, 673, 674], "erneut": [5, 37, 42, 46, 82, 83, 105, 107, 115, 169, 292, 302, 325, 326, 328, 329, 330, 332, 338, 351, 359, 384, 400, 435, 440, 441, 464, 467, 504, 507, 519, 568, 572, 577, 588, 593, 632, 641, 671, 682], "durchfuhr": [5, 83, 92, 330, 400, 435, 441, 464, 467], "m\u00fcssen": [5, 13, 25, 27, 37, 39, 42, 43, 47, 50, 52, 53, 58, 60, 62, 67, 69, 73, 82, 83, 84, 86, 92, 93, 96, 97, 98, 104, 106, 109, 112, 116, 122, 124, 125, 153, 164, 165, 167, 168, 171, 172, 187, 189, 192, 197, 200, 210, 215, 219, 220, 225, 226, 230, 232, 241, 250, 256, 262, 276, 285, 287, 292, 295, 302, 306, 307, 309, 313, 314, 321, 323, 325, 326, 328, 329, 337, 354, 359, 360, 362, 370, 371, 379, 424, 425, 461, 483, 496, 504, 523, 554, 555, 566, 569, 573, 575, 587, 589, 590, 591, 592, 596, 598, 601, 602, 604, 606, 607, 608, 609, 610, 621, 622, 625, 628, 638, 641, 671, 682, 683, 686, 690], "schiebeschalt": [5, 95], "jed": [5, 7, 8, 12, 13, 16, 36, 37, 42, 43, 44, 47, 50, 52, 53, 58, 60, 62, 68, 73, 76, 77, 80, 83, 84, 90, 92, 93, 95, 96, 98, 101, 103, 104, 105, 106, 107, 108, 111, 112, 115, 116, 120, 123, 124, 155, 164, 166, 168, 169, 178, 187, 189, 192, 207, 219, 223, 224, 226, 229, 243, 249, 256, 259, 261, 262, 263, 287, 289, 295, 304, 310, 314, 321, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 338, 339, 340, 347, 349, 351, 359, 371, 381, 392, 396, 405, 423, 434, 446, 453, 457, 463, 487, 489, 490, 495, 496, 506, 508, 511, 523, 561, 562, 566, 567, 569, 570, 572, 575, 576, 577, 579, 585, 589, 591, 592, 593, 595, 599, 601, 602, 604, 606, 607, 608, 609, 610, 613, 621, 622, 632, 634, 683, 687, 688, 693], "Durch": [5, 24, 58, 62, 82, 95, 103, 115, 162, 163, 164, 169, 187, 210, 262, 263, 295, 325, 328, 330, 347, 351, 381, 400, 408, 435, 441, 446, 464, 467, 508, 527, 545, 554, 569, 585, 592, 621, 622, 626, 642, 671, 672], "anklick": [5, 82, 162, 163, 170, 179, 184, 187, 192, 200, 203, 204, 210, 212, 213, 220, 232, 249, 252, 255, 265, 266, 268, 289, 302, 309, 311, 314, 348, 349, 357, 360, 366, 682], "anzupass": [5, 58, 83, 262, 333, 416, 448, 492, 530, 532, 561, 575], "\u00c4nderung": [5, 82, 155, 162, 168, 187, 223, 237, 261, 263, 272, 293, 304, 309, 314, 325, 326, 328, 331, 332, 338, 346, 360, 375, 380, 393, 396, 400, 408, 435, 441, 453, 464, 467, 522, 525, 527, 545, 550, 562, 563, 567, 574, 591, 592, 596, 671], "aktiv": [5, 8, 44, 45, 56, 60, 73, 83, 95, 120, 122, 170, 189, 212, 213, 238, 244, 289, 306, 307, 309, 314, 320, 321, 322, 324, 325, 327, 328, 330, 331, 333, 334, 336, 347, 351, 370, 382, 396, 400, 416, 441, 456, 464, 467, 508, 519, 572, 575, 594, 613, 615, 616, 629, 630, 641, 671, 672, 674, 675, 682, 693], "default": [5, 40, 43, 44, 45, 47, 52, 53, 54, 55, 57, 58, 60, 66, 83, 85, 86, 87, 89, 90, 103, 104, 107, 111, 113, 115, 120, 123, 124, 129, 130, 133, 134, 139, 141, 142, 147, 148, 149, 152, 155, 157, 158, 160, 162, 170, 176, 180, 181, 182, 183, 186, 188, 189, 193, 195, 198, 199, 203, 205, 206, 211, 217, 219, 221, 227, 234, 239, 241, 247, 248, 249, 258, 262, 269, 273, 274, 278, 288, 290, 296, 297, 304, 305, 308, 309, 315, 317, 322, 325, 327, 329, 330, 334, 338, 339, 340, 344, 352, 355, 356, 357, 365, 368, 375, 382, 383, 392, 394, 397, 399, 401, 406, 411, 413, 417, 425, 428, 439, 450, 458, 460, 462, 468, 479, 481, 482, 485, 486, 492, 493, 495, 503, 504, 505, 516, 518, 520, 528, 563, 599, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 623, 624, 630, 632, 634, 635, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 663, 674, 677, 682, 688, 693], "grau": [5, 321, 347], "Um": [5, 13, 22, 27, 31, 33, 34, 42, 50, 52, 53, 54, 56, 58, 60, 61, 62, 67, 69, 71, 79, 82, 83, 84, 85, 86, 89, 90, 92, 93, 97, 98, 100, 103, 104, 108, 111, 112, 113, 116, 120, 123, 162, 164, 167, 169, 170, 184, 187, 189, 192, 200, 203, 212, 213, 214, 223, 229, 233, 244, 250, 256, 259, 262, 263, 268, 285, 287, 289, 292, 293, 295, 313, 314, 322, 323, 325, 326, 327, 329, 331, 332, 337, 338, 347, 369, 381, 391, 485, 490, 508, 561, 563, 566, 574, 575, 576, 577, 583, 585, 589, 591, 595, 596, 597, 599, 603, 618, 629, 630, 632, 634, 636, 638, 681, 683, 687, 688, 692], "standardwert": [5, 43, 53, 55, 93, 120, 121, 122, 188, 263, 289, 314, 322, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 388, 389, 391, 392, 393, 394, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 456, 457, 458, 459, 460, 461, 462, 463, 464, 467, 468, 469, 470, 471, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 522, 523, 524, 525, 526, 527, 528, 530, 532, 533, 534, 536, 537, 538, 599, 601, 602, 604, 607, 608, 609, 634], "zuruckzukehr": 5, "feldinhalt": 5, "x": [5, 15, 24, 58, 71, 79, 82, 86, 92, 93, 103, 126, 133, 148, 161, 173, 175, 176, 178, 207, 210, 219, 223, 229, 234, 237, 239, 262, 271, 278, 308, 309, 312, 313, 315, 321, 328, 330, 339, 340, 351, 360, 386, 398, 462, 481, 482, 503, 507, 563, 573, 646, 648, 649, 651, 652, 653, 654, 655, 657, 667, 688], "endgult": [5, 329], "form": [6, 43, 53, 58, 62, 83, 100, 102, 115, 132, 148, 233, 262, 263, 292, 323, 325, 347, 351, 353, 368, 411, 434, 476, 477, 520, 571, 576, 577, 596, 599, 601, 602, 604, 606, 607, 608, 609, 610, 634, 677, 682], "4": [7, 12, 13, 14, 15, 16, 25, 42, 43, 44, 46, 50, 53, 54, 55, 56, 57, 58, 60, 64, 66, 71, 80, 82, 83, 93, 103, 106, 107, 109, 111, 115, 116, 123, 124, 125, 141, 154, 155, 157, 160, 162, 163, 170, 172, 179, 180, 184, 185, 187, 189, 192, 193, 194, 195, 196, 198, 200, 205, 207, 210, 211, 216, 227, 229, 231, 232, 235, 239, 245, 247, 249, 251, 252, 254, 255, 257, 262, 270, 271, 279, 282, 283, 284, 285, 288, 289, 291, 293, 294, 299, 304, 308, 309, 310, 314, 325, 328, 331, 334, 337, 341, 348, 355, 356, 357, 360, 361, 363, 366, 370, 375, 381, 385, 391, 401, 402, 406, 412, 413, 414, 418, 419, 420, 424, 430, 431, 433, 434, 444, 445, 446, 451, 460, 461, 462, 463, 468, 477, 479, 480, 487, 491, 498, 499, 503, 506, 511, 514, 519, 523, 524, 529, 533, 538, 545, 548, 550, 552, 554, 558, 561, 562, 566, 569, 576, 577, 592, 599, 606, 610, 612, 613, 624, 636, 638, 639, 640, 641, 643, 644, 645, 646, 648, 649, 650, 651, 654, 655, 656, 657, 670, 675, 683, 691], "unterteilt": [7, 373, 682], "wobei": [7, 14, 48, 58, 71, 78, 92, 115, 116, 121, 155, 162, 169, 171, 187, 189, 191, 201, 238, 255, 262, 264, 267, 304, 325, 326, 328, 330, 507, 563, 575, 576, 595, 599, 636], "n\u00e4chste": [7, 58, 82, 181, 262, 282, 295, 333, 347, 453, 513], "ausfuhrungszeitpunkt": [7, 320, 326, 332], "einstell": [7, 8, 56, 79, 82, 85, 93, 95, 96, 103, 107, 116, 162, 163, 165, 167, 169, 188, 192, 196, 212, 213, 219, 255, 262, 265, 285, 292, 302, 306, 307, 326, 328, 329, 331, 333, 359, 363, 369, 399, 412, 449, 450, 457, 487, 488, 519, 520, 641, 671, 672, 673, 674, 675, 682, 686, 688, 690], "ausfuhrungszyklus": 7, "crontab": [7, 12, 13, 16, 42, 52, 74, 103, 108, 113, 117, 137, 147, 192, 261, 289, 328, 347, 360, 361, 401, 573, 577, 594, 600, 632, 643, 644, 645, 646, 649, 650, 655, 660, 666, 672], "resourc": [8, 212, 213, 260, 419, 420, 460, 545, 558, 612, 645, 646, 655, 693], "load": [8, 55, 88, 126, 132, 134, 135, 136, 137, 140, 143, 144, 146, 149, 151, 226, 335, 580, 642, 652, 653, 654, 655, 671, 672], "anzahl": [8, 9, 43, 44, 46, 53, 54, 55, 58, 60, 62, 71, 90, 104, 105, 106, 112, 116, 119, 120, 123, 165, 168, 169, 170, 179, 187, 189, 203, 207, 233, 243, 262, 285, 293, 295, 314, 319, 320, 324, 339, 340, 347, 349, 351, 359, 380, 381, 382, 396, 398, 400, 407, 408, 410, 412, 422, 435, 440, 441, 446, 453, 461, 464, 467, 483, 502, 507, 508, 512, 515, 519, 568, 570, 580, 599, 601, 602, 604, 607, 608, 609, 612, 613, 634, 641, 671, 682], "speicherbeleg": 8, "plattennutz": 8, "drei": [8, 15, 25, 45, 52, 61, 69, 96, 103, 112, 115, 116, 162, 163, 169, 212, 256, 289, 325, 329, 337, 359, 360, 375, 561, 569, 574, 575, 592, 599, 615, 619, 636, 641, 682, 686, 688], "bereit": [8, 13, 22, 24, 31, 32, 37, 47, 48, 52, 53, 54, 55, 56, 58, 67, 71, 79, 82, 83, 85, 90, 95, 97, 100, 103, 105, 106, 115, 116, 167, 178, 184, 187, 189, 191, 215, 219, 224, 259, 264, 267, 268, 283, 284, 287, 291, 293, 295, 321, 322, 324, 325, 327, 328, 329, 330, 331, 332, 333, 338, 360, 366, 381, 462, 496, 523, 528, 565, 573, 576, 591, 593, 594, 595, 596, 603, 610, 612, 621, 622, 625, 626, 628, 629, 630, 652, 653, 654, 655, 656, 674], "konfigurationsseit": [8, 69, 93, 94, 291, 337, 585, 682], "smartvisu": [8, 79, 80, 83, 88, 91, 92, 98, 106, 111, 117, 122, 164, 178, 187, 211, 215, 220, 221, 223, 235, 236, 243, 247, 250, 254, 262, 263, 270, 271, 283, 284, 289, 295, 315, 329, 344, 345, 351, 354, 355, 356, 357, 365, 366, 389, 394, 425, 446, 463, 468, 506, 508, 519, 523, 524, 532, 545, 554, 567, 580, 585, 591, 592, 600, 617, 641, 643, 645, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 665, 666, 667, 669, 670, 671, 681, 682, 684, 686, 690, 693], "bekannt": [8, 28, 52, 83, 88, 106, 187, 192, 212, 213, 214, 215, 255, 283, 293, 313, 314, 323, 325, 330, 338, 351, 522, 589, 601, 671, 674], "versionsstand": 8, "packag": [8, 37, 43, 46, 48, 54, 55, 66, 71, 76, 83, 89, 90, 92, 107, 115, 121, 165, 190, 210, 245, 253, 265, 278, 294, 300, 301, 310, 334, 413, 431, 538, 573, 576, 598, 618, 624, 629, 630, 632, 641, 643, 645, 646, 648, 650, 651, 652, 655, 675, 692, 693], "dabei": [8, 13, 20, 27, 42, 46, 50, 58, 60, 62, 69, 71, 80, 82, 83, 86, 87, 92, 97, 103, 105, 106, 111, 112, 114, 115, 116, 121, 122, 123, 124, 166, 169, 170, 171, 187, 189, 192, 200, 210, 215, 229, 237, 243, 259, 263, 285, 291, 293, 306, 307, 319, 321, 324, 325, 326, 328, 329, 330, 331, 332, 337, 338, 339, 340, 347, 351, 354, 359, 360, 371, 406, 454, 490, 508, 519, 536, 552, 553, 569, 571, 573, 575, 576, 577, 583, 585, 592, 593, 621, 622, 628, 638, 674, 683, 686, 688], "block": [8, 25, 31, 33, 34, 52, 54, 55, 56, 58, 60, 62, 63, 66, 76, 92, 106, 119, 166, 169, 172, 189, 200, 250, 253, 294, 314, 352, 356, 357, 496, 523, 563, 566, 612, 618, 620, 624, 643, 646, 649, 650, 655, 656, 673, 682, 683, 686, 688], "gezeigt": [8, 15, 54, 55, 71, 106, 120, 123, 171, 219, 325, 328, 336, 337, 359, 381], "Zu": [8, 24, 32, 52, 55, 58, 92, 93, 97, 112, 116, 124, 168, 187, 189, 197, 200, 215, 224, 261, 276, 289, 330, 332, 337, 339, 340, 379, 381, 402, 411, 429, 434, 457, 458, 489, 511, 520, 522, 527, 537, 570, 573, 576, 589, 625, 693], "versionsumm": 8, "minimal": [8, 43, 53, 67, 79, 83, 90, 161, 165, 170, 179, 184, 189, 192, 207, 210, 211, 232, 233, 249, 252, 255, 262, 263, 289, 326, 348, 353, 357, 360, 366, 384, 476, 477, 487, 585, 601, 602, 604, 606, 607, 608, 609, 610, 612, 622, 655, 682, 687], "gefolgt": [8, 98, 106, 125, 219, 381, 382, 566, 568, 570, 638, 674], "hak": [8, 46, 71, 85, 181, 292], "nutzend": [8, 121, 226, 402, 508, 534], "unterstutzt": [8, 43, 45, 52, 53, 54, 55, 64, 67, 68, 83, 84, 85, 92, 96, 97, 100, 103, 104, 106, 112, 121, 122, 124, 155, 164, 169, 170, 179, 187, 191, 194, 196, 200, 201, 204, 212, 213, 220, 229, 230, 238, 244, 256, 260, 262, 264, 267, 287, 291, 295, 302, 304, 311, 337, 345, 347, 349, 354, 359, 360, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 548, 550, 552, 561, 562, 563, 566, 569, 575, 577, 586, 592, 601, 602, 604, 606, 607, 608, 609, 610, 615, 618, 619, 621, 625, 673, 679, 682, 686, 689, 692], "verfugbar": [8, 12, 52, 54, 55, 59, 79, 106, 111, 155, 164, 170, 178, 187, 189, 192, 233, 304, 314, 337, 338, 346, 351, 371, 373, 416, 434, 460, 508, 517, 527, 528, 567, 573, 591, 596], "maximal": [8, 43, 44, 53, 56, 67, 120, 165, 187, 189, 219, 224, 262, 295, 314, 322, 325, 329, 330, 384, 396, 403, 410, 446, 487, 498, 499, 519, 532, 545, 548, 550, 558, 601, 602, 604, 606, 607, 608, 609, 610, 613], "grun": [8, 12, 22, 162, 163, 200, 244, 263, 321, 347], "dritt": [8, 28, 42, 58, 62, 77, 119, 164, 210, 212, 213, 220, 232, 244, 265, 302, 316, 563], "stern": [8, 97, 169, 382, 569, 573, 592], "asterix": [8, 97, 649, 655], "viert": [8, 42, 212, 213, 220, 232, 592], "org": [8, 54, 55, 68, 82, 84, 106, 119, 161, 170, 187, 192, 200, 222, 223, 229, 253, 258, 262, 297, 325, 359, 368, 440, 459, 462, 520, 545, 550, 598, 628, 641, 646, 648], "bezog": [8, 192, 516, 569, 592], "versionsnumm": [8, 43, 48, 53, 123, 165, 453, 606, 610, 641, 671], "angzeigt": [8, 219], "entspricht": [8, 12, 16, 52, 53, 64, 97, 104, 117, 162, 215, 272, 287, 314, 328, 338, 351, 371, 397, 471, 495, 502, 563, 569, 592, 594, 595, 600, 625, 633, 641], "darauf": [8, 25, 28, 46, 58, 71, 79, 106, 115, 123, 169, 187, 189, 229, 285, 302, 326, 332, 333, 338, 461, 483, 490, 561, 577, 579, 593, 630, 678], "hinzuweis": [8, 115, 671], "aktualisiert": [8, 56, 58, 62, 68, 71, 73, 76, 92, 103, 159, 164, 168, 169, 170, 178, 189, 203, 207, 220, 237, 262, 291, 314, 326, 330, 347, 351, 373, 381, 396, 412, 416, 423, 446, 453, 457, 460, 463, 514, 519, 530, 532, 563, 569, 573, 576, 577, 592, 641, 671, 674, 678], "klein": [8, 58, 86, 98, 103, 116, 160, 162, 164, 219, 220, 230, 249, 260, 314, 325, 328, 330, 332, 527, 532, 632, 638, 641, 674, 682], "maximalversion": 8, "rot": [8, 12, 14, 162, 163, 200, 232, 261, 263, 292, 321, 347], "komponent": [8, 31, 33, 34, 52, 54, 56, 71, 81, 87, 115, 214, 250, 260, 277, 306, 307, 369, 417, 545, 548, 621, 626, 641], "administrationsoberflach": [8, 83, 93, 97, 109], "handelt": [8, 71, 92, 97, 187, 224, 237, 259, 291, 314, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 590, 621], "anmeldeinformation": 8, "sowohl": [8, 58, 60, 61, 62, 78, 102, 106, 112, 115, 116, 122, 169, 203, 233, 256, 302, 306, 307, 322, 325, 326, 327, 328, 330, 331, 347, 351, 423, 590, 595, 622, 671], "jwt": [8, 76, 154, 612], "NICHT": [8, 43, 53, 83, 85, 92, 116, 293, 329, 347, 608, 690], "klartext": [8, 44, 45, 120, 613, 615, 632], "vergess": [8, 71, 82, 86, 164, 293, 572, 629], "dah": [8, 16, 43, 53, 58, 71, 83, 84, 92, 98, 155, 187, 192, 194, 213, 229, 263, 271, 289, 304, 306, 307, 314, 321, 325, 326, 328, 329, 330, 332, 333, 362, 366, 376, 382, 384, 385, 387, 389, 395, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 490, 491, 501, 503, 505, 508, 513, 514, 515, 518, 521, 526, 527, 537, 538, 554, 555, 589, 608, 682, 688], "gemacht": [8, 20, 37, 52, 88, 92, 323, 325, 338, 589, 674, 688, 693], "paramet": [8, 15, 31, 32, 40, 42, 44, 45, 48, 52, 54, 55, 56, 60, 62, 63, 66, 80, 86, 93, 95, 96, 107, 111, 115, 117, 119, 120, 121, 122, 123, 126, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 155, 162, 165, 166, 168, 169, 170, 173, 175, 176, 178, 179, 181, 183, 184, 186, 188, 189, 191, 192, 194, 195, 196, 197, 199, 200, 201, 205, 210, 212, 213, 215, 216, 220, 223, 226, 227, 230, 232, 233, 234, 238, 240, 242, 243, 246, 247, 252, 261, 263, 264, 265, 267, 268, 270, 271, 272, 276, 277, 278, 279, 283, 284, 287, 289, 290, 291, 293, 296, 298, 300, 302, 304, 306, 307, 310, 313, 314, 316, 318, 331, 332, 336, 338, 341, 347, 348, 351, 352, 355, 356, 357, 360, 365, 366, 369, 561, 564, 569, 583, 585, 588, 589, 590, 594, 595, 597, 598, 599, 600, 601, 602, 605, 607, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 623, 624, 625, 626, 629, 632, 634, 636, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 670, 671, 673, 674, 681, 684, 690, 693], "gultigkeitsdau": [8, 119], "gesteuert": [8, 12, 13, 67, 112, 124, 162, 200, 212, 213, 230, 244, 265, 289, 328, 347, 421, 422, 508, 515, 583, 690], "beendig": [8, 42, 588, 596], "erhal": 8, "bleibt": [8, 12, 13, 42, 97, 116, 123, 219, 224, 314, 325, 327, 328, 330, 333, 463, 490, 508, 573, 576, 585, 588, 632, 671], "verfallt": 8, "ablauf": [8, 73, 91, 153, 220, 233, 331, 508, 562, 568, 570, 573, 587, 637], "login_experiation": 8, "legt": [8, 42, 52, 106, 121, 154, 243, 326, 332, 360, 375, 391, 393, 400, 405, 408, 417, 426, 427, 434, 435, 441, 446, 464, 467, 486, 497, 506, 527, 573, 574, 577, 579, 585, 595, 612, 683, 686, 687], "ausgestellt": 8, "fest": [8, 42, 43, 52, 53, 62, 71, 76, 82, 103, 104, 110, 112, 121, 243, 306, 307, 326, 332, 339, 340, 347, 375, 391, 393, 400, 405, 408, 417, 426, 427, 434, 435, 441, 446, 464, 467, 486, 487, 497, 504, 506, 527, 573, 574, 577, 579, 585, 595, 601, 602, 604, 607, 608, 609, 682, 683, 686], "kurz": [8, 14, 27, 83, 92, 106, 125, 170, 192, 219, 220, 224, 225, 363, 412, 419, 420, 619, 638], "gultig": [8, 43, 53, 62, 96, 106, 164, 187, 214, 215, 220, 232, 306, 307, 313, 314, 333, 339, 340, 347, 349, 351, 377, 455, 488, 522, 589, 596, 601, 602, 604, 607, 608, 609, 610, 671, 686, 688, 690], "0": [8, 12, 13, 14, 15, 16, 18, 19, 20, 25, 30, 42, 43, 44, 45, 52, 53, 54, 55, 56, 57, 58, 60, 66, 69, 71, 73, 78, 83, 84, 85, 86, 87, 88, 92, 98, 100, 103, 106, 107, 111, 112, 115, 116, 120, 121, 123, 124, 125, 126, 129, 131, 133, 136, 141, 142, 148, 152, 154, 155, 157, 158, 160, 164, 165, 166, 167, 170, 171, 179, 180, 185, 187, 189, 191, 192, 193, 194, 195, 196, 198, 199, 200, 202, 203, 205, 207, 210, 211, 213, 217, 218, 221, 222, 223, 225, 227, 229, 231, 233, 234, 235, 236, 237, 238, 239, 240, 245, 249, 250, 251, 254, 255, 256, 257, 258, 259, 261, 262, 263, 264, 265, 266, 267, 270, 271, 272, 275, 276, 279, 281, 282, 284, 285, 287, 288, 289, 290, 291, 292, 293, 294, 295, 301, 304, 305, 306, 307, 308, 309, 314, 317, 319, 322, 325, 327, 328, 329, 330, 331, 332, 333, 334, 335, 337, 338, 339, 340, 341, 347, 355, 356, 357, 358, 360, 361, 365, 367, 368, 370, 374, 375, 377, 378, 379, 380, 381, 389, 390, 391, 395, 396, 398, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 412, 414, 417, 418, 419, 420, 426, 427, 428, 429, 431, 432, 433, 434, 435, 436, 440, 441, 442, 444, 445, 450, 451, 452, 453, 454, 456, 457, 458, 459, 461, 462, 464, 465, 466, 467, 468, 469, 470, 471, 476, 477, 478, 479, 480, 481, 482, 487, 488, 489, 496, 498, 499, 501, 502, 504, 505, 507, 508, 513, 514, 515, 517, 518, 521, 522, 524, 525, 526, 527, 532, 534, 537, 538, 545, 548, 550, 552, 554, 558, 563, 566, 568, 569, 570, 573, 575, 576, 577, 579, 580, 585, 592, 595, 599, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 622, 624, 629, 634, 636, 638, 641, 642, 643, 644, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 674, 675, 681, 684, 687, 690], "5": [8, 12, 13, 15, 16, 18, 20, 25, 30, 42, 44, 48, 54, 55, 57, 58, 79, 80, 82, 83, 84, 86, 89, 90, 98, 103, 104, 106, 113, 115, 116, 117, 119, 120, 126, 130, 141, 152, 155, 160, 162, 163, 165, 166, 167, 169, 170, 171, 179, 182, 183, 185, 187, 189, 191, 195, 196, 197, 198, 201, 205, 207, 210, 211, 216, 218, 219, 221, 227, 229, 231, 232, 234, 235, 237, 238, 239, 247, 249, 251, 254, 255, 256, 257, 258, 260, 263, 264, 267, 270, 271, 278, 279, 282, 284, 289, 290, 293, 298, 299, 300, 304, 306, 307, 308, 309, 310, 323, 325, 326, 328, 329, 331, 332, 334, 338, 341, 346, 347, 351, 352, 355, 356, 357, 358, 361, 370, 375, 376, 378, 379, 381, 382, 386, 392, 395, 397, 398, 399, 400, 403, 405, 406, 407, 408, 410, 414, 416, 418, 419, 433, 434, 435, 436, 441, 442, 447, 450, 455, 459, 460, 461, 462, 464, 467, 468, 472, 473, 475, 476, 477, 483, 485, 487, 489, 490, 496, 500, 504, 516, 517, 522, 530, 532, 545, 548, 550, 552, 554, 558, 562, 566, 568, 569, 573, 574, 575, 577, 589, 592, 594, 595, 597, 600, 612, 613, 630, 633, 638, 639, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 657, 683, 686, 688, 691], "bedeutet": [8, 12, 13, 50, 79, 83, 86, 92, 95, 115, 122, 164, 169, 189, 230, 314, 316, 396, 397, 463, 527, 573, 574, 589, 595, 641, 649, 652, 653, 654, 655, 656, 671, 672, 674, 675], "30": [8, 14, 16, 42, 76, 84, 86, 90, 103, 113, 115, 141, 160, 165, 168, 185, 188, 189, 198, 199, 211, 218, 219, 226, 227, 229, 230, 233, 260, 262, 276, 289, 306, 307, 326, 328, 330, 332, 334, 338, 341, 347, 370, 381, 400, 408, 424, 425, 431, 435, 441, 464, 467, 482, 509, 514, 599, 622, 636, 638, 646, 655, 688], "login_autorenew": [8, 119, 612], "nutzung": [8, 28, 40, 44, 45, 48, 52, 53, 54, 71, 76, 77, 82, 83, 97, 103, 106, 112, 120, 121, 124, 154, 168, 170, 171, 184, 187, 197, 215, 220, 223, 232, 250, 255, 261, 262, 268, 271, 276, 337, 338, 371, 385, 391, 420, 522, 534, 545, 548, 554, 564, 565, 566, 567, 576, 580, 583, 586, 587, 589, 590, 591, 612, 613, 615, 618, 621, 641, 671, 674, 682, 688], "administration": [8, 44, 70, 83, 93, 111, 113, 118, 119, 120, 121, 122, 151, 154, 157, 189, 368, 612, 613, 641, 649, 650, 651, 652, 656], "verlangert": [8, 504, 688], "true": [8, 12, 13, 16, 18, 20, 25, 43, 44, 45, 47, 52, 53, 54, 55, 56, 58, 62, 63, 66, 83, 84, 88, 92, 102, 103, 106, 107, 110, 111, 112, 113, 115, 116, 117, 119, 120, 121, 122, 126, 129, 134, 136, 137, 138, 139, 141, 142, 147, 148, 152, 154, 155, 157, 158, 160, 162, 164, 166, 168, 169, 170, 178, 179, 180, 181, 183, 188, 191, 198, 200, 201, 203, 205, 206, 211, 219, 221, 222, 227, 228, 230, 231, 233, 238, 243, 248, 249, 250, 252, 257, 259, 260, 261, 262, 263, 264, 266, 267, 272, 275, 279, 281, 282, 288, 289, 290, 293, 294, 295, 297, 298, 301, 304, 306, 307, 308, 309, 314, 322, 325, 326, 327, 328, 329, 330, 331, 332, 334, 337, 338, 339, 340, 343, 344, 347, 351, 352, 355, 356, 357, 359, 360, 369, 370, 381, 382, 391, 396, 398, 400, 401, 406, 407, 408, 412, 413, 420, 427, 428, 434, 435, 441, 444, 445, 449, 454, 457, 458, 460, 461, 463, 464, 467, 471, 478, 479, 481, 485, 486, 487, 489, 495, 496, 498, 499, 503, 504, 506, 508, 511, 512, 515, 519, 522, 523, 524, 528, 534, 537, 538, 570, 572, 573, 574, 575, 577, 579, 580, 583, 585, 592, 595, 597, 599, 600, 601, 602, 603, 604, 607, 608, 609, 610, 612, 613, 615, 616, 618, 620, 622, 623, 624, 632, 634, 636, 641, 643, 653, 662, 669, 674, 682, 684, 686, 690], "erneuert": [8, 260, 263, 688], "festgelegt": [8, 13, 42, 52, 53, 54, 55, 58, 82, 83, 103, 106, 112, 115, 116, 121, 124, 165, 170, 212, 213, 226, 230, 249, 256, 260, 263, 289, 310, 314, 325, 326, 327, 328, 330, 331, 332, 347, 351, 412, 419, 420, 423, 434, 485, 487, 497, 508, 519, 575, 577, 584, 593, 599, 603, 622, 634, 682, 686, 690], "protokoll": [8, 45, 48, 53, 54, 78, 84, 121, 122, 155, 162, 163, 169, 170, 171, 188, 192, 200, 220, 232, 256, 304, 306, 307, 310, 333, 351, 369, 373, 376, 458, 470, 496, 497, 498, 499, 522, 524, 545, 548, 550, 554, 595, 610, 613, 615, 616, 617, 621, 626, 641, 671, 682, 689, 690], "laufend": [9, 53, 71, 89, 102, 154, 165, 169, 189, 299, 300, 326, 332, 370, 371, 440, 507, 508, 597, 612, 632, 674, 680], "id": [9, 18, 20, 31, 33, 34, 47, 50, 52, 54, 55, 56, 58, 60, 61, 62, 71, 83, 133, 137, 148, 151, 155, 164, 170, 187, 188, 192, 195, 196, 198, 199, 200, 202, 206, 208, 211, 212, 213, 214, 215, 219, 220, 222, 229, 230, 235, 244, 250, 256, 260, 261, 262, 263, 273, 274, 285, 288, 289, 291, 292, 293, 304, 312, 313, 314, 315, 319, 325, 326, 328, 330, 333, 337, 338, 356, 357, 359, 362, 365, 376, 380, 382, 390, 399, 403, 407, 409, 416, 419, 420, 421, 422, 430, 433, 447, 453, 456, 460, 466, 472, 486, 487, 489, 504, 507, 508, 512, 518, 521, 530, 562, 563, 565, 575, 577, 591, 594, 599, 612, 616, 634, 641, 643, 646, 647, 648, 649, 650, 653, 655, 656, 664], "Einige": [9, 68, 79, 82, 86, 111, 118, 169, 207, 293, 314, 328, 345, 373, 381, 567, 591], "speziell": [9, 31, 32, 33, 34, 42, 52, 53, 54, 55, 79, 83, 85, 98, 168, 169, 192, 222, 223, 241, 256, 291, 295, 306, 307, 331, 363, 381, 382, 588, 610, 621, 622, 625, 642, 682, 688], "zusammengefasst": [9, 328, 632], "typs": [9, 52, 60, 124, 155, 200, 212, 213, 304, 495, 496, 523, 579, 686], "gehor": [9, 83, 95, 97, 106, 124, 131, 224, 332, 566, 575, 622], "typ": [9, 12, 13, 16, 18, 20, 24, 25, 43, 44, 45, 52, 53, 54, 55, 56, 57, 58, 60, 61, 62, 63, 66, 71, 83, 89, 90, 93, 97, 98, 103, 106, 112, 113, 115, 121, 123, 126, 127, 133, 134, 137, 139, 142, 147, 148, 149, 152, 155, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 171, 175, 177, 178, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 205, 207, 211, 212, 213, 217, 218, 219, 221, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 272, 275, 276, 277, 278, 279, 281, 282, 283, 284, 285, 287, 288, 289, 290, 293, 294, 295, 296, 297, 298, 299, 300, 301, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 317, 323, 326, 328, 329, 330, 331, 332, 333, 334, 337, 338, 339, 340, 343, 344, 346, 347, 349, 351, 352, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 365, 368, 369, 370, 371, 381, 382, 393, 394, 395, 396, 397, 413, 419, 420, 434, 452, 458, 461, 468, 471, 486, 488, 489, 490, 491, 496, 511, 514, 519, 534, 545, 546, 563, 566, 567, 568, 570, 573, 574, 575, 577, 591, 595, 597, 598, 599, 601, 602, 603, 604, 607, 608, 609, 610, 612, 613, 615, 616, 620, 623, 624, 626, 629, 630, 634, 638, 641, 643, 644, 645, 646, 648, 649, 652, 655, 663, 664, 665, 667, 669, 670, 672, 674, 682, 683, 686, 688, 693], "cp": [9, 37, 47, 85, 225, 239, 309, 688], "httpserv": 9, "cherrypy": [9, 44, 45, 58, 60, 62, 107, 115, 120, 157, 158, 172, 360, 583, 612, 613, 615, 645, 646, 655, 671], "idl": [9, 147, 254, 255], "beschrieb": [10, 12, 16, 22, 27, 31, 32, 33, 34, 40, 43, 47, 52, 53, 54, 55, 58, 61, 62, 63, 66, 81, 82, 83, 84, 85, 91, 92, 94, 103, 104, 106, 112, 115, 116, 117, 120, 123, 124, 154, 155, 163, 164, 165, 166, 168, 169, 170, 179, 181, 184, 187, 189, 191, 192, 194, 197, 200, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 224, 225, 228, 230, 232, 233, 238, 241, 242, 243, 244, 246, 252, 255, 261, 262, 263, 264, 265, 266, 267, 268, 276, 277, 279, 284, 285, 286, 287, 289, 293, 295, 300, 302, 304, 306, 307, 311, 313, 316, 321, 326, 328, 329, 330, 336, 338, 347, 348, 349, 351, 354, 357, 359, 360, 366, 369, 371, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 560, 562, 563, 565, 566, 567, 572, 573, 576, 577, 581, 585, 587, 591, 592, 593, 594, 596, 597, 599, 605, 611, 612, 614, 618, 619, 620, 623, 624, 625, 626, 628, 629, 632, 634, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 682, 687, 688, 691], "bezieh": [10, 73, 79, 97, 262, 279, 323, 334, 561, 573, 639, 686], "gegebenenfall": [10, 58, 92], "find": [10, 11, 12, 14, 17, 21, 23, 25, 26, 31, 33, 34, 36, 40, 42, 52, 54, 55, 56, 57, 58, 59, 60, 67, 68, 69, 78, 83, 84, 86, 92, 97, 98, 100, 103, 105, 106, 107, 108, 111, 112, 114, 115, 117, 121, 123, 125, 133, 134, 153, 162, 164, 166, 167, 172, 174, 183, 187, 188, 192, 196, 200, 205, 212, 214, 217, 218, 219, 225, 228, 229, 230, 237, 243, 244, 245, 250, 254, 255, 256, 257, 263, 279, 288, 291, 293, 294, 295, 297, 300, 305, 306, 307, 315, 316, 319, 320, 322, 323, 324, 328, 329, 331, 333, 334, 337, 338, 345, 346, 347, 351, 352, 359, 361, 362, 365, 367, 369, 373, 381, 384, 440, 461, 564, 573, 578, 580, 582, 592, 597, 616, 623, 627, 646, 649, 655, 667, 689, 692, 693], "beispiel": [11, 12, 14, 22, 24, 25, 26, 28, 36, 47, 50, 51, 53, 54, 55, 56, 58, 59, 60, 61, 62, 67, 74, 79, 83, 84, 92, 96, 103, 108, 111, 112, 115, 116, 118, 123, 125, 155, 167, 168, 169, 171, 187, 196, 207, 230, 237, 260, 262, 277, 283, 293, 299, 304, 313, 316, 320, 321, 322, 324, 330, 331, 333, 337, 344, 349, 362, 406, 423, 434, 445, 449, 462, 496, 507, 524, 563, 564, 565, 566, 567, 569, 571, 573, 575, 576, 577, 585, 588, 589, 590, 592, 594, 596, 597, 599, 601, 603, 618, 622, 625, 628, 629, 630, 634, 636, 638, 641, 643, 671, 674, 681, 682, 687], "tipps": [11, 23, 26, 47, 580, 643], "trick": [11, 23, 26, 580, 643], "eval_trigg": [11, 13, 16, 24, 25, 103, 106, 183, 198, 218, 247, 258, 259, 262, 282, 289, 298, 325, 328, 329, 331, 339, 340, 343, 360, 564, 567, 572, 577, 591, 638, 646, 664, 667], "updat": [11, 54, 66, 70, 71, 79, 81, 82, 83, 86, 87, 103, 111, 123, 130, 133, 137, 155, 167, 170, 176, 177, 180, 181, 183, 186, 189, 198, 203, 206, 210, 211, 219, 221, 234, 235, 236, 237, 250, 261, 262, 270, 278, 285, 291, 302, 304, 315, 318, 329, 335, 347, 351, 354, 356, 357, 359, 365, 370, 377, 381, 399, 416, 418, 437, 438, 448, 452, 453, 457, 479, 481, 482, 483, 484, 492, 494, 507, 509, 512, 530, 532, 562, 563, 564, 567, 571, 572, 573, 574, 576, 580, 591, 612, 623, 624, 664, 670, 671, 674, 685, 688, 693], "Wird": [12, 24, 53, 58, 96, 103, 104, 112, 121, 124, 168, 169, 170, 189, 192, 237, 243, 256, 262, 295, 302, 314, 319, 322, 325, 326, 329, 330, 332, 333, 338, 347, 382, 383, 396, 406, 441, 446, 461, 463, 479, 480, 485, 487, 504, 507, 508, 511, 528, 573, 585, 589, 610, 629, 682, 690], "zugewies": [12, 52, 56, 98, 112, 124, 165, 178, 192, 217, 226, 229, 232, 261, 262, 263, 306, 307, 310, 314, 326, 327, 330, 332, 337, 338, 351, 400, 401, 408, 431, 435, 441, 464, 467, 562, 567, 568, 569, 573, 575, 576, 589, 591, 592, 596, 641, 682], "valu": [12, 13, 18, 20, 40, 45, 54, 55, 58, 60, 62, 63, 66, 69, 71, 83, 103, 107, 112, 113, 115, 124, 126, 127, 129, 130, 133, 134, 136, 137, 139, 146, 147, 148, 149, 152, 155, 160, 162, 164, 169, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 192, 195, 199, 200, 202, 205, 206, 210, 211, 219, 221, 222, 223, 227, 229, 232, 234, 235, 236, 239, 240, 241, 245, 247, 248, 254, 255, 256, 257, 260, 262, 263, 268, 278, 280, 288, 290, 294, 295, 298, 304, 305, 306, 307, 308, 309, 310, 312, 314, 315, 317, 325, 326, 328, 329, 330, 332, 333, 334, 335, 338, 341, 347, 349, 352, 355, 356, 357, 359, 360, 361, 368, 370, 377, 395, 397, 401, 413, 427, 428, 453, 460, 478, 497, 498, 499, 501, 527, 538, 562, 563, 567, 569, 573, 575, 576, 577, 579, 589, 591, 592, 594, 595, 596, 615, 620, 622, 623, 624, 632, 641, 642, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 660, 663, 666, 667, 669, 670, 671, 673, 674, 681], "zwischengespeichert": [12, 189, 261, 289, 573, 577, 641], "Ist": [12, 13, 53, 56, 106, 115, 119, 162, 169, 170, 189, 200, 232, 262, 289, 295, 314, 325, 326, 330, 332, 333, 338, 347, 376, 378, 382, 484, 486, 487, 504, 508, 512, 519, 573, 585, 610, 612, 622, 641, 674], "ausgefuhrt": [12, 42, 52, 58, 62, 71, 82, 83, 103, 108, 109, 110, 117, 118, 153, 162, 163, 187, 189, 192, 200, 203, 219, 314, 320, 321, 324, 326, 327, 330, 332, 333, 338, 347, 386, 393, 398, 416, 452, 508, 522, 562, 571, 573, 576, 588, 590, 592, 594, 596, 600, 632], "bevor": [12, 13, 52, 53, 58, 67, 83, 85, 89, 92, 164, 165, 210, 226, 233, 292, 293, 314, 327, 330, 338, 508, 513, 585, 596, 603], "final": [12, 83, 107, 115, 116, 125, 638, 645], "nachbearbeit": 12, "mach": [12, 47, 56, 60, 76, 85, 86, 92, 97, 162, 187, 238, 278, 295, 316, 321, 326, 331, 528], "bspw": [12, 14, 82, 189, 348, 360, 382, 394, 406, 468, 495, 511, 516, 568, 671, 674, 688], "viele": [12, 36, 44, 78, 92, 103, 107, 120, 123, 169, 178, 229, 261, 287, 289, 324, 347, 367, 379, 395, 585, 613, 641], "nachkommastell": [12, 43, 53, 119, 396, 599, 601, 602, 604, 607, 608, 609, 622, 634, 641], "gerundet": 12, "num": [12, 13, 16, 18, 20, 24, 25, 43, 45, 53, 56, 97, 98, 106, 112, 141, 160, 162, 165, 168, 169, 170, 175, 179, 182, 183, 185, 186, 187, 188, 189, 192, 193, 194, 195, 196, 197, 198, 200, 202, 205, 207, 211, 212, 213, 218, 221, 227, 229, 232, 233, 234, 235, 237, 239, 240, 243, 245, 247, 248, 249, 250, 254, 255, 257, 258, 259, 260, 261, 262, 263, 266, 276, 279, 281, 282, 284, 285, 287, 288, 290, 293, 294, 295, 297, 298, 299, 300, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 317, 323, 326, 328, 329, 330, 332, 334, 335, 337, 338, 339, 340, 343, 344, 347, 351, 352, 355, 356, 357, 358, 359, 361, 362, 365, 369, 370, 371, 376, 378, 379, 389, 393, 396, 398, 399, 400, 401, 408, 418, 419, 420, 422, 434, 435, 437, 438, 441, 452, 453, 461, 462, 464, 467, 468, 476, 477, 478, 479, 481, 484, 487, 488, 490, 500, 502, 504, 506, 508, 509, 511, 512, 515, 517, 522, 566, 568, 570, 573, 574, 575, 577, 579, 580, 595, 601, 602, 604, 607, 608, 609, 612, 615, 622, 638, 642, 648, 652, 655, 683, 686], "round": [12, 19, 141, 189, 218, 262, 263, 298, 344, 485, 545, 554, 655, 665], "databas": [12, 16, 53, 56, 58, 67, 83, 111, 113, 130, 133, 155, 162, 170, 178, 189, 203, 219, 221, 238, 261, 279, 285, 289, 304, 312, 313, 317, 319, 328, 331, 351, 356, 357, 398, 427, 485, 545, 554, 610, 632, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 666, 667, 670, 671, 674, 688, 691], "realisiert": [12, 87, 162, 259], "taglich": [12, 189, 289, 369, 370, 508, 569, 585, 592], "01": [12, 14, 42, 86, 116, 155, 164, 169, 176, 185, 187, 192, 203, 207, 230, 232, 249, 261, 294, 295, 304, 337, 356, 357, 360, 401, 588, 671, 688], "uhr": [12, 52, 71, 83, 116, 262, 289, 306, 307, 328, 347, 376, 569, 585, 592, 599, 634], "ermittelt": [12, 15, 58, 92, 162, 170, 178, 189, 262, 293, 324, 325, 330, 332, 347, 373, 382, 453, 504, 508, 516], "sh": [12, 13, 15, 16, 18, 19, 20, 25, 37, 40, 52, 53, 54, 55, 66, 82, 104, 106, 112, 129, 132, 136, 137, 139, 143, 147, 148, 162, 164, 167, 168, 170, 183, 193, 194, 198, 199, 200, 203, 210, 211, 217, 218, 219, 228, 232, 243, 247, 248, 249, 253, 256, 258, 259, 260, 261, 262, 263, 269, 272, 278, 282, 287, 288, 289, 296, 298, 309, 314, 325, 326, 328, 330, 332, 333, 335, 338, 339, 340, 343, 344, 347, 351, 355, 359, 361, 368, 391, 406, 423, 434, 445, 496, 506, 520, 524, 545, 558, 561, 562, 563, 565, 567, 568, 570, 573, 574, 575, 576, 579, 580, 589, 590, 591, 597, 609, 624, 632, 638, 641, 643, 645, 646, 649, 650, 651, 653, 655, 659, 660, 662, 664, 665, 666, 667, 671], "db": [12, 16, 27, 39, 49, 83, 92, 102, 111, 113, 187, 189, 203, 210, 287, 294, 335, 398, 453, 581, 641, 645, 646, 649, 651, 652, 653, 655, 670], "min": [12, 15, 54, 55, 56, 57, 58, 62, 88, 155, 170, 186, 187, 189, 200, 207, 251, 262, 274, 287, 304, 317, 325, 328, 329, 330, 333, 338, 344, 356, 357, 361, 398, 487, 506, 573, 632, 642, 646, 652, 653, 671], "24h": [12, 189, 262, 526], "invertiert": [12, 13, 331, 412, 450, 583], "Man": [12, 13, 110, 118, 219, 262, 638, 682], "bedient": [12, 13, 259], "zwischenspeich": [12, 219, 261, 381, 423, 577], "bool": [12, 13, 20, 24, 25, 40, 43, 44, 45, 52, 53, 63, 66, 97, 98, 106, 121, 126, 129, 133, 134, 137, 138, 139, 141, 144, 148, 149, 152, 160, 162, 164, 168, 169, 170, 179, 183, 185, 186, 187, 189, 197, 198, 200, 205, 207, 211, 212, 213, 217, 218, 227, 230, 231, 232, 233, 239, 247, 248, 249, 250, 253, 254, 255, 258, 259, 261, 262, 263, 266, 270, 271, 272, 275, 276, 277, 278, 281, 282, 283, 284, 285, 288, 289, 290, 293, 294, 295, 297, 298, 301, 304, 308, 309, 312, 313, 314, 317, 326, 328, 329, 330, 331, 332, 335, 337, 338, 339, 340, 343, 347, 351, 352, 355, 356, 357, 359, 360, 363, 369, 370, 375, 378, 381, 382, 384, 389, 391, 393, 395, 396, 398, 399, 400, 401, 403, 406, 407, 408, 411, 412, 413, 416, 417, 419, 420, 423, 427, 428, 429, 434, 435, 440, 441, 444, 445, 447, 449, 453, 454, 456, 457, 458, 460, 463, 464, 467, 471, 472, 478, 479, 481, 484, 485, 486, 487, 488, 489, 490, 495, 496, 498, 499, 502, 503, 504, 507, 508, 511, 512, 516, 517, 519, 520, 522, 523, 524, 527, 528, 534, 537, 538, 566, 567, 573, 574, 577, 579, 591, 595, 601, 602, 603, 604, 607, 608, 609, 612, 613, 615, 616, 618, 620, 622, 623, 624, 641, 645, 683, 686], "not": [12, 13, 16, 30, 40, 44, 45, 50, 52, 53, 54, 55, 56, 58, 60, 62, 63, 66, 72, 83, 84, 88, 92, 103, 107, 113, 115, 116, 126, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 160, 162, 164, 169, 176, 183, 185, 186, 190, 195, 198, 200, 202, 203, 205, 208, 211, 217, 218, 221, 227, 231, 232, 234, 239, 240, 247, 248, 253, 256, 257, 260, 274, 278, 281, 288, 290, 294, 301, 305, 311, 318, 322, 334, 335, 338, 344, 352, 353, 356, 357, 365, 370, 372, 395, 512, 589, 590, 591, 595, 596, 610, 612, 613, 615, 616, 618, 620, 623, 624, 639, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 665, 668, 670, 675, 691, 692, 693], "input": [12, 55, 56, 62, 133, 162, 169, 205, 227, 234, 235, 239, 247, 261, 308, 309, 338, 369, 370, 535, 656, 664], "schlusseln": 12, "rfreceived": 12, "rfkey": 12, "gesucht": [12, 50, 93, 111, 232, 328, 329, 333, 347, 504], "received_key4": 12, "dict": [12, 20, 24, 43, 44, 45, 53, 55, 58, 66, 104, 112, 124, 126, 127, 130, 131, 133, 134, 136, 137, 139, 141, 143, 145, 148, 149, 150, 151, 157, 158, 170, 189, 198, 211, 212, 213, 260, 282, 293, 304, 315, 337, 344, 347, 351, 356, 357, 376, 382, 397, 398, 400, 406, 408, 411, 419, 420, 423, 427, 428, 435, 441, 455, 460, 464, 467, 471, 510, 511, 512, 516, 519, 564, 575, 577, 579, 594, 595, 599, 601, 602, 604, 607, 608, 609, 613, 615, 622, 624, 633, 634, 641, 644, 646, 649, 650, 651, 652, 653, 655, 656, 665, 671, 672, 678, 693], "cach": [12, 18, 20, 85, 86, 92, 102, 103, 133, 136, 162, 169, 189, 200, 211, 218, 232, 233, 243, 247, 253, 259, 260, 261, 262, 263, 282, 288, 308, 309, 312, 313, 317, 328, 331, 335, 338, 347, 351, 360, 362, 508, 519, 575, 577, 585, 632, 641, 645, 646, 649, 652, 653, 655, 688], "yes": [12, 18, 20, 25, 71, 82, 88, 106, 152, 162, 169, 170, 173, 176, 183, 186, 189, 192, 198, 200, 202, 211, 218, 227, 235, 239, 241, 247, 253, 256, 258, 260, 262, 263, 276, 282, 285, 287, 288, 294, 295, 297, 312, 313, 317, 325, 328, 332, 338, 339, 340, 360, 362, 396, 409, 428, 457, 485, 506, 508, 524, 577, 684, 688], "if": [12, 15, 16, 18, 20, 25, 40, 43, 44, 45, 52, 53, 54, 55, 56, 58, 60, 62, 63, 66, 71, 83, 107, 110, 112, 113, 115, 126, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 151, 152, 160, 162, 164, 169, 170, 179, 180, 181, 183, 185, 186, 195, 198, 200, 203, 205, 211, 212, 213, 216, 217, 218, 219, 221, 222, 223, 227, 228, 231, 234, 240, 244, 247, 248, 251, 253, 254, 257, 258, 259, 262, 263, 273, 274, 278, 280, 282, 288, 289, 290, 294, 296, 297, 298, 301, 305, 309, 312, 314, 315, 317, 328, 334, 338, 344, 352, 353, 355, 356, 357, 359, 361, 365, 368, 370, 395, 413, 562, 567, 573, 575, 576, 579, 580, 588, 589, 590, 591, 595, 596, 606, 610, 612, 613, 615, 616, 618, 620, 623, 624, 632, 638, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 662, 665, 667, 670, 688], "int": [12, 13, 19, 40, 42, 43, 44, 45, 53, 126, 129, 131, 133, 134, 136, 141, 145, 148, 152, 154, 169, 170, 189, 192, 198, 200, 205, 207, 222, 223, 232, 253, 270, 271, 278, 288, 293, 322, 326, 330, 332, 333, 359, 369, 374, 375, 377, 379, 380, 381, 382, 383, 386, 388, 390, 391, 392, 393, 394, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 412, 413, 414, 415, 416, 417, 418, 419, 423, 424, 425, 426, 427, 428, 429, 431, 433, 434, 435, 436, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 457, 458, 459, 460, 461, 462, 463, 464, 467, 468, 469, 470, 471, 475, 478, 479, 480, 482, 483, 484, 485, 486, 487, 488, 492, 493, 494, 495, 497, 498, 499, 501, 502, 503, 504, 505, 507, 508, 509, 510, 511, 512, 513, 514, 517, 518, 519, 520, 522, 524, 526, 527, 530, 532, 533, 537, 562, 575, 579, 588, 597, 599, 601, 602, 603, 604, 607, 608, 609, 612, 613, 615, 616, 622, 634, 642, 644, 645, 646, 648, 655], "els": [12, 15, 16, 18, 20, 25, 52, 54, 55, 56, 58, 60, 107, 112, 115, 133, 138, 141, 162, 164, 169, 217, 218, 258, 259, 262, 263, 282, 288, 289, 298, 328, 338, 359, 361, 368, 562, 567, 573, 575, 576, 591, 595, 612, 638], "non": [12, 15, 30, 40, 43, 44, 45, 52, 53, 54, 55, 56, 58, 60, 62, 63, 66, 83, 86, 103, 104, 111, 123, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 162, 166, 169, 187, 189, 195, 202, 211, 221, 227, 228, 234, 262, 263, 272, 274, 288, 294, 305, 306, 307, 317, 330, 338, 347, 351, 352, 359, 360, 368, 391, 399, 412, 419, 420, 426, 429, 433, 454, 462, 463, 506, 522, 545, 548, 550, 558, 562, 563, 567, 573, 575, 576, 589, 591, 595, 596, 599, 601, 602, 603, 604, 608, 609, 612, 613, 615, 616, 618, 620, 621, 623, 624, 634, 643, 644, 646, 649, 650, 651, 652, 653, 654, 655, 688], "unteritem": [12, 265, 293, 322], "formatiert": [12, 54, 55, 62, 83, 169, 196, 229, 351, 360, 370], "gebildet": [12, 260, 323, 401], "Dies": [12, 24, 28, 31, 33, 34, 52, 53, 54, 58, 60, 80, 82, 85, 92, 97, 106, 115, 116, 162, 164, 167, 169, 188, 189, 203, 230, 243, 260, 262, 282, 283, 284, 313, 314, 321, 322, 323, 324, 325, 326, 329, 330, 331, 332, 333, 339, 340, 347, 349, 351, 359, 370, 381, 434, 504, 508, 548, 549, 550, 551, 575, 688], "u": [12, 14, 28, 37, 51, 58, 67, 71, 77, 86, 88, 92, 115, 116, 170, 210, 229, 253, 256, 288, 314, 351, 370, 536, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "a": [12, 13, 15, 24, 40, 43, 44, 45, 51, 52, 54, 55, 58, 63, 64, 66, 68, 71, 74, 76, 82, 83, 88, 97, 100, 103, 104, 107, 113, 115, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 160, 161, 164, 165, 166, 168, 169, 170, 171, 173, 175, 176, 177, 180, 182, 183, 185, 186, 190, 193, 195, 198, 199, 200, 202, 205, 208, 210, 211, 216, 217, 218, 221, 227, 231, 232, 234, 235, 239, 240, 243, 247, 248, 251, 253, 254, 255, 257, 258, 260, 262, 263, 273, 274, 275, 277, 278, 280, 281, 282, 288, 290, 294, 296, 298, 301, 305, 306, 307, 311, 312, 314, 315, 317, 318, 325, 331, 334, 335, 338, 339, 340, 341, 344, 345, 351, 352, 355, 356, 357, 358, 361, 365, 368, 370, 372, 381, 395, 407, 412, 461, 476, 477, 536, 545, 548, 550, 552, 562, 573, 595, 598, 606, 612, 613, 615, 616, 618, 620, 623, 624, 633, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 659, 660, 663, 665, 666, 667, 668, 670, 677, 681, 686, 688], "farbsteuer": 12, "hsb": [12, 162, 337], "str": [12, 16, 24, 40, 43, 44, 45, 53, 54, 55, 60, 66, 97, 123, 126, 129, 131, 133, 134, 136, 137, 139, 140, 141, 143, 144, 145, 148, 149, 152, 165, 169, 170, 171, 175, 184, 186, 187, 188, 189, 192, 198, 200, 202, 203, 205, 211, 212, 213, 217, 218, 227, 231, 234, 240, 243, 244, 245, 248, 249, 250, 253, 254, 255, 256, 258, 259, 262, 263, 266, 268, 272, 276, 282, 284, 285, 290, 293, 294, 297, 298, 301, 311, 326, 328, 329, 332, 333, 335, 337, 338, 339, 340, 344, 351, 359, 361, 362, 365, 369, 370, 375, 376, 377, 378, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 567, 575, 577, 579, 580, 586, 591, 595, 599, 601, 602, 603, 604, 607, 608, 609, 612, 613, 615, 616, 618, 622, 623, 624, 634, 641, 645, 648, 649, 650, 655, 672], "f": [12, 37, 40, 54, 55, 58, 76, 131, 152, 169, 182, 222, 223, 229, 243, 254, 260, 263, 293, 309, 328, 338, 339, 340, 360, 573, 586, 635, 646, 648, 649, 650, 655, 667], "hue": [12, 56, 67, 76, 78, 112, 170, 212, 213, 247, 266, 337, 353, 371, 382, 419, 420, 450, 545, 548, 566, 646, 648, 649, 667], "sat": [12, 112, 205, 211, 212, 213, 337, 406, 419, 545, 550, 569, 592, 648, 669], "bright": 12, "visu_acl": [12, 13, 18, 20, 25, 52, 71, 98, 117, 162, 164, 165, 169, 170, 175, 179, 189, 195, 196, 198, 200, 202, 218, 230, 231, 247, 253, 254, 262, 266, 277, 279, 282, 283, 284, 285, 288, 294, 295, 300, 301, 304, 308, 309, 311, 328, 331, 335, 338, 339, 340, 347, 351, 356, 357, 360, 361, 362, 592, 600, 646, 667, 671, 686], "rw": [12, 13, 18, 20, 25, 52, 71, 83, 98, 111, 162, 164, 169, 170, 175, 179, 186, 195, 196, 198, 200, 202, 218, 230, 231, 247, 253, 254, 262, 266, 277, 282, 283, 284, 285, 288, 294, 295, 301, 308, 309, 315, 328, 331, 347, 351, 352, 355, 360, 361, 396, 496, 524, 645, 684, 686, 690], "rgb": [12, 162, 163, 169, 199, 200, 375, 381, 407, 434, 450, 651, 654, 655], "r": [12, 14, 27, 28, 37, 47, 68, 83, 92, 103, 107, 115, 125, 162, 169, 191, 198, 201, 214, 215, 219, 238, 247, 255, 264, 267, 328, 337, 338, 381, 400, 408, 419, 420, 441, 464, 467, 487, 567, 591, 630, 635, 638, 641, 646, 652, 674, 677, 678], "g": [12, 40, 45, 54, 55, 66, 82, 85, 130, 133, 136, 139, 148, 150, 152, 160, 168, 173, 176, 180, 183, 186, 195, 198, 200, 202, 205, 211, 227, 234, 239, 245, 247, 248, 253, 260, 262, 278, 288, 290, 294, 295, 296, 297, 301, 305, 317, 335, 341, 355, 368, 615, 618, 623, 624, 642, 644, 646, 648, 649, 650, 651, 652, 653, 655, 656, 666, 667, 670], "blau": [12, 56, 200, 292], "heizung_status": 12, "heizungsstatus": 12, "ausgeschaltet": [12, 20, 52, 58, 98, 233, 314, 363, 381, 407, 450, 517, 574, 682], "heizung": [12, 160, 289, 338, 349, 351, 403, 405, 409, 443, 522, 545, 550, 585, 622, 682], "startet": [12, 27, 45, 52, 71, 79, 83, 86, 92, 102, 119, 120, 154, 164, 170, 189, 225, 261, 314, 330, 359, 381, 382, 416, 479, 481, 483, 484, 488, 612, 615, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 654, 655, 656, 671, 672, 674, 691], "heizung_status_string": 12, "windbearing": 12, "windricht": [12, 262, 365], "grad": [12, 131, 162, 163, 164, 170, 189, 326, 328, 330, 334, 347, 502, 569, 573, 580, 592, 599, 636, 638], "erhalt": [12, 24, 47, 52, 56, 58, 60, 62, 71, 79, 93, 96, 97, 104, 115, 116, 123, 154, 155, 162, 164, 165, 167, 169, 170, 187, 189, 196, 203, 219, 229, 244, 255, 262, 270, 271, 293, 304, 314, 323, 330, 349, 351, 369, 379, 381, 382, 400, 408, 435, 441, 453, 463, 464, 467, 508, 512, 561, 563, 572, 573, 574, 576, 577, 585, 591, 595, 612, 632, 638, 641, 671, 682], "himmelsricht": [12, 131, 328, 638], "umwandl": [12, 131, 165, 249, 443], "ds_matchstring": [12, 97, 184, 268], "currently": [12, 97, 137, 146, 152, 173, 183, 198, 199, 205, 208, 211, 231, 234, 240, 245, 253, 254, 280, 288, 301, 305, 312, 344, 368, 394, 468, 643, 649, 655], "windbearing_compass_string": 12, "n": [12, 44, 45, 71, 88, 104, 141, 152, 165, 168, 173, 188, 248, 257, 262, 267, 277, 278, 338, 360, 397, 400, 408, 434, 464, 467, 476, 477, 545, 548, 550, 552, 558, 566, 613, 615, 616, 642, 648, 653, 667, 679], "no": [12, 14, 18, 30, 43, 44, 45, 53, 54, 55, 58, 63, 66, 71, 82, 83, 86, 88, 106, 111, 113, 126, 130, 132, 136, 137, 139, 141, 143, 147, 148, 149, 152, 154, 155, 157, 158, 160, 165, 176, 177, 179, 182, 183, 185, 186, 189, 198, 202, 205, 208, 211, 216, 217, 218, 227, 231, 234, 235, 240, 248, 253, 256, 257, 262, 263, 273, 294, 301, 304, 305, 312, 315, 317, 325, 334, 338, 344, 355, 356, 357, 360, 361, 365, 368, 395, 409, 429, 457, 506, 524, 595, 606, 610, 612, 613, 615, 618, 620, 623, 624, 643, 644, 645, 646, 647, 649, 650, 652, 653, 654, 655, 663, 688], "o": [12, 13, 52, 69, 76, 82, 85, 104, 149, 203, 210, 227, 248, 261, 278, 331, 337, 384, 400, 408, 412, 419, 420, 461, 464, 467, 487, 567, 573, 591, 641, 646, 652, 653, 670, 671, 688], "SO": [12, 104], "sw": [12, 155, 210, 282, 304, 356, 357, 651, 674], "w": [12, 104, 152, 161, 169, 170, 186, 195, 210, 235, 236, 247, 255, 256, 287, 305, 306, 307, 315, 317, 337, 349, 419, 420, 487, 567, 585, 591, 622, 641, 646, 653, 667, 688], "nw": [12, 104, 111, 360, 520, 545, 558, 643], "22": [12, 76, 79, 104, 155, 168, 185, 197, 199, 203, 219, 262, 270, 271, 274, 289, 304, 328, 334, 338, 347, 356, 357, 360, 585, 633, 649, 650, 656], "45": [12, 20, 42, 71, 83, 86, 103, 148, 187, 250, 293, 301, 337, 347, 599, 622, 636, 641], "aktuelleregeneration": 12, "regenerationsschritt": 12, "text": [12, 15, 43, 44, 45, 51, 52, 53, 54, 55, 57, 61, 62, 63, 66, 74, 83, 84, 89, 90, 103, 131, 141, 148, 151, 156, 161, 169, 170, 187, 198, 202, 211, 219, 227, 228, 231, 248, 251, 253, 263, 272, 274, 282, 289, 294, 303, 314, 315, 316, 330, 338, 339, 340, 346, 347, 353, 361, 378, 381, 406, 433, 443, 445, 456, 460, 462, 463, 469, 471, 479, 513, 534, 545, 554, 566, 575, 577, 601, 602, 604, 606, 607, 608, 609, 610, 613, 615, 620, 621, 622, 624, 625, 626, 630, 632, 641, 643, 645, 646, 648, 649, 654, 655, 682, 688], "initial_valu": [12, 53, 162, 262, 263, 266, 276, 285, 326, 328, 329, 339, 340, 360, 568, 570, 574, 575, 577, 603, 632, 651, 671], "regeneration": 12, "soletank": 12, "full": [12, 56, 58, 59, 61, 62, 66, 113, 141, 160, 164, 170, 175, 182, 195, 219, 227, 262, 273, 284, 294, 309, 365, 612, 624, 641, 646, 649, 655, 671, 688], "besalz": 12, "verdrang": 12, "ruckspul": 12, "auswasch": 12, "korrespondier": 12, "passend": [12, 92, 98, 103, 115, 184, 192, 212, 213, 226, 262, 268, 314, 321, 326, 330, 332, 362, 400, 440, 441, 464, 467, 573, 595, 642], "fals": [12, 13, 16, 18, 20, 25, 30, 40, 44, 45, 52, 53, 54, 55, 58, 62, 63, 66, 84, 106, 107, 111, 112, 113, 115, 116, 117, 119, 120, 121, 122, 123, 126, 127, 129, 133, 134, 136, 137, 138, 139, 141, 142, 147, 148, 149, 152, 154, 155, 157, 158, 160, 162, 164, 166, 168, 169, 170, 180, 186, 187, 191, 196, 198, 200, 201, 205, 206, 211, 217, 218, 219, 227, 238, 241, 253, 254, 261, 262, 263, 264, 266, 267, 272, 276, 279, 282, 283, 284, 288, 289, 293, 294, 297, 298, 304, 306, 307, 314, 319, 322, 325, 326, 327, 328, 329, 330, 331, 332, 334, 337, 338, 343, 344, 347, 351, 352, 356, 357, 359, 360, 370, 375, 381, 382, 384, 389, 391, 396, 398, 400, 401, 403, 406, 407, 408, 411, 412, 413, 416, 417, 427, 429, 440, 449, 457, 458, 464, 467, 479, 481, 485, 496, 498, 499, 504, 506, 507, 508, 511, 515, 516, 517, 523, 524, 538, 572, 573, 574, 576, 577, 579, 583, 585, 589, 592, 595, 599, 600, 610, 612, 613, 615, 616, 618, 620, 621, 622, 623, 624, 634, 643, 646, 651, 655, 662, 666, 669, 684, 690, 693], "stellgr_rueckmeld": 12, "knx_dpt": [12, 13, 18, 20, 25, 52, 58, 60, 61, 98, 106, 160, 162, 164, 185, 189, 197, 200, 211, 231, 232, 239, 247, 262, 275, 278, 288, 289, 290, 294, 295, 301, 314, 323, 331, 338, 339, 340, 352, 355, 358, 360, 566, 683, 686], "001": [12, 162, 165, 339, 340, 434, 641], "knx_cach": [12, 18, 20, 25, 162, 189, 211, 232, 262, 289, 294, 295, 323, 339, 340, 566, 641, 653, 665, 666], "68": [12, 254, 255, 282, 573], "stellgr_rueckmeldung_bool": 12, "Bei": [12, 14, 25, 27, 44, 45, 46, 53, 56, 58, 60, 67, 71, 76, 77, 79, 83, 85, 87, 89, 90, 92, 94, 95, 97, 98, 100, 106, 115, 116, 120, 123, 124, 162, 165, 168, 170, 181, 189, 194, 219, 224, 230, 238, 243, 244, 260, 263, 272, 289, 292, 299, 314, 321, 323, 325, 326, 329, 330, 331, 332, 333, 338, 347, 354, 378, 398, 400, 410, 427, 432, 435, 441, 454, 464, 467, 508, 511, 533, 545, 547, 548, 550, 552, 554, 558, 563, 565, 566, 573, 574, 576, 577, 583, 586, 589, 591, 596, 613, 615, 628, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 678, 687, 688, 691, 693], "sollzustand": 12, "folgea": 12, "folgeb": 12, "folgec": 12, "folged": 12, "lost": [12, 18, 53, 97, 141, 278, 288, 326, 351, 434, 572, 573, 592, 603, 653, 655], "folgeitem": 12, "ubergibt": [12, 316, 351], "beding": [12, 42, 169, 187, 320, 321, 323, 326, 328, 329, 330, 331, 332, 333, 381, 508, 512, 573, 576, 599, 634, 642, 671], "konkret": [12, 28, 58, 77, 169, 191, 201, 267, 328, 329, 330, 508, 622], "neuberechn": [12, 189, 573, 577], "angestoss": [12, 351, 573], "ubergeb": [12, 43, 52, 53, 58, 62, 80, 86, 106, 123, 162, 165, 170, 229, 255, 289, 314, 326, 332, 351, 382, 394, 468, 522, 563, 586, 589, 592, 595, 596, 599, 601, 602, 604, 607, 608, 609, 634, 638, 671], "ergibt": [12, 24, 98, 229, 262, 306, 307, 323, 325, 333, 494, 566, 622, 689], "hilfsit": [12, 13], "berechnet": [12, 16, 189, 196, 200, 219, 306, 307, 325, 326, 347, 362, 443, 453, 462, 498, 499, 506, 561, 569, 570, 573, 576, 577, 592, 599], "laufzeit_autotim": 12, "enddatetime_autotim": 12, "zwisch": [12, 24, 36, 50, 52, 60, 76, 78, 79, 82, 83, 85, 86, 100, 103, 106, 112, 116, 117, 131, 162, 164, 165, 169, 179, 187, 189, 192, 194, 200, 215, 232, 262, 266, 279, 289, 302, 314, 323, 325, 326, 328, 329, 331, 332, 347, 349, 351, 370, 378, 381, 382, 383, 394, 400, 401, 406, 407, 408, 415, 418, 423, 424, 425, 435, 440, 441, 442, 447, 449, 450, 453, 460, 461, 462, 464, 467, 468, 471, 475, 476, 477, 479, 480, 483, 485, 487, 492, 498, 499, 501, 503, 507, 510, 518, 519, 527, 566, 568, 569, 570, 584, 585, 592, 596, 599, 600, 622, 634, 671, 672, 674, 682, 689, 690], "iso": [12, 82, 148, 300, 599, 634], "errechnet": [12, 306, 307, 326, 347, 519, 573], "abwes": [12, 36, 78], "strptim": [12, 52, 330], "y": [12, 24, 52, 54, 56, 71, 83, 86, 87, 107, 115, 116, 133, 148, 152, 155, 161, 164, 186, 229, 232, 262, 263, 287, 304, 315, 317, 328, 329, 330, 338, 339, 340, 356, 357, 360, 462, 563, 584, 585, 646, 679], "m": [12, 15, 16, 37, 52, 54, 55, 56, 61, 64, 68, 71, 83, 107, 113, 115, 116, 131, 148, 152, 164, 181, 186, 192, 195, 196, 232, 239, 240, 249, 253, 262, 263, 275, 287, 288, 301, 308, 309, 317, 326, 332, 337, 338, 352, 353, 355, 356, 357, 400, 408, 462, 464, 467, 568, 569, 570, 584, 585, 592, 599, 634, 651], "dt": [12, 66, 136, 137, 142, 147, 148, 150, 229, 262, 351, 623, 624, 634, 641, 653, 667], "h": [12, 16, 54, 71, 98, 103, 107, 115, 116, 131, 136, 148, 152, 162, 164, 165, 170, 181, 186, 192, 200, 210, 232, 253, 259, 260, 261, 262, 263, 287, 288, 293, 314, 317, 338, 349, 351, 371, 460, 461, 545, 558, 568, 569, 584, 585, 592, 599, 622, 634, 649, 677], "now": [12, 16, 19, 40, 56, 66, 137, 148, 152, 155, 160, 187, 203, 206, 217, 219, 234, 235, 236, 240, 243, 248, 253, 254, 257, 263, 278, 287, 288, 304, 318, 338, 344, 355, 356, 357, 361, 370, 411, 446, 463, 516, 520, 573, 575, 599, 624, 634, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 663, 664, 669, 670, 688], "total_second": 12, "standby": [12, 162, 198, 231, 248, 289, 294, 295, 338, 370, 400, 406, 408, 433, 434, 441, 464, 467, 487, 536, 655, 674, 682], "hierfur": [12, 82, 189, 289, 326, 330, 331, 574], "shtim": [12, 40, 66, 83, 151, 253, 263, 338, 560, 573, 599, 624, 634, 641, 643, 645, 646, 648, 649, 651, 652, 653, 655, 674], "time_sinc": [12, 148, 599, 634], "ruckgab": [12, 40, 44, 45, 63, 66, 126, 129, 131, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 314, 360, 516, 612, 613, 615, 616, 618, 620, 623, 624], "einheit": [12, 192, 262, 306, 307, 351, 394, 401, 409, 436, 452, 462, 468, 470, 479, 508, 517], "Zur": [12, 43, 53, 71, 76, 82, 83, 90, 100, 106, 117, 153, 169, 170, 212, 215, 262, 283, 291, 293, 314, 330, 337, 351, 399, 587, 590, 592, 595, 601, 602, 603, 604, 606, 607, 608, 609, 610, 671], "bitt": [12, 14, 27, 33, 34, 43, 47, 48, 52, 53, 71, 73, 77, 78, 82, 83, 85, 86, 89, 92, 96, 100, 106, 109, 110, 123, 164, 168, 169, 178, 181, 197, 214, 215, 222, 232, 249, 250, 259, 261, 276, 277, 283, 284, 285, 291, 300, 302, 306, 307, 309, 314, 337, 338, 339, 340, 343, 347, 359, 360, 362, 363, 369, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 558, 562, 601, 602, 603, 604, 608, 609, 628, 630, 635, 641, 644, 647, 648, 652, 653, 654, 655, 656, 671, 672, 674, 675, 677, 678, 684], "feiertag": [12, 83, 107, 115, 125, 282, 573, 632, 637, 638], "dat": [12, 28, 45, 52, 53, 54, 55, 56, 59, 60, 62, 76, 83, 85, 86, 92, 96, 97, 98, 102, 103, 104, 106, 111, 123, 130, 131, 136, 142, 148, 155, 162, 164, 165, 167, 170, 178, 181, 184, 188, 189, 192, 203, 217, 218, 219, 220, 224, 226, 229, 230, 232, 244, 256, 261, 263, 268, 289, 295, 302, 304, 306, 307, 311, 313, 337, 338, 348, 356, 357, 360, 361, 362, 365, 368, 370, 382, 389, 392, 394, 396, 397, 401, 405, 416, 423, 426, 434, 436, 446, 457, 460, 462, 463, 468, 470, 479, 484, 485, 490, 497, 504, 511, 514, 525, 530, 532, 545, 550, 552, 554, 558, 573, 575, 579, 580, 596, 597, 598, 604, 612, 615, 622, 641, 643, 644, 645, 653, 655, 660, 663, 685, 688, 693], "nachschau": 12, "importiert": [12, 52, 125, 131, 187, 589, 598, 638], "boost_remaining_a": 12, "__import__": 12, "math": [12, 573, 646, 649, 670], "ceil": [12, 573], "ventilation": [12, 183, 206], "boost": [12, 170, 288, 486], "boost_duration": [12, 207, 415], "60": [12, 16, 19, 52, 55, 86, 87, 178, 183, 189, 192, 200, 206, 211, 218, 232, 243, 249, 253, 258, 262, 263, 288, 297, 308, 309, 314, 323, 325, 328, 344, 346, 367, 370, 377, 396, 398, 399, 401, 407, 414, 415, 417, 418, 443, 459, 475, 478, 479, 486, 487, 492, 498, 499, 508, 510, 512, 517, 518, 573, 574, 585, 592, 622, 638], "knx": [12, 14, 16, 18, 43, 50, 52, 53, 54, 55, 67, 78, 86, 91, 98, 103, 107, 111, 112, 115, 116, 123, 124, 152, 160, 162, 164, 169, 170, 182, 186, 198, 205, 211, 218, 223, 227, 234, 239, 245, 247, 253, 257, 260, 261, 278, 288, 289, 290, 294, 295, 298, 301, 315, 323, 326, 328, 329, 330, 331, 335, 339, 340, 344, 352, 353, 355, 356, 357, 360, 364, 513, 545, 548, 554, 566, 567, 572, 573, 579, 580, 591, 594, 597, 601, 602, 604, 607, 608, 609, 610, 617, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 659, 661, 663, 665, 666, 667, 670, 671, 674, 681, 691], "tor": [12, 338], "vorn": [12, 83, 103], "aufzu": 12, "runt": [12, 162, 187, 200], "10m": [12, 562, 569, 592, 688], "bewasserungskreis": 12, "lamp": [12, 52, 71, 98, 160, 162, 170, 316, 360], "schaltet": [12, 162, 165, 170, 314, 337, 347, 382, 401, 406, 453, 460], "rundbeet": 12, "visu": [12, 18, 40, 69, 71, 78, 98, 103, 137, 155, 162, 164, 169, 178, 202, 219, 220, 239, 288, 289, 294, 302, 304, 312, 313, 314, 320, 328, 329, 331, 339, 340, 347, 352, 354, 355, 359, 381, 400, 408, 435, 441, 446, 464, 467, 485, 496, 524, 527, 545, 554, 646, 649, 652, 653, 654, 655, 662, 663, 664, 665, 666, 667, 669, 670, 671, 674, 683, 685, 686, 690], "zyklisch": [12, 189, 314, 351, 382, 439, 592, 674], "restdau": 12, "eben": [12, 58, 67, 97, 98, 100, 106, 112, 116, 181, 229, 238, 323, 325, 326, 329, 332, 333, 370, 561, 566, 589, 622], "abzieht": 12, "Da": [12, 13, 27, 68, 69, 79, 83, 85, 90, 92, 103, 106, 110, 111, 115, 116, 118, 162, 192, 212, 213, 232, 261, 262, 265, 289, 322, 324, 325, 328, 329, 330, 331, 338, 346, 369, 434, 561, 586, 589, 596, 630, 679, 682, 688], "standig": [12, 260, 293, 326, 346, 381, 514], "geschieht": [12, 42, 53, 71, 80, 95, 98, 116, 170, 226, 261, 325, 338, 548, 549, 550, 551, 588, 603, 683], "haufig": [12, 71, 79, 200, 261, 316, 331, 381, 479, 573, 638], "cycl": [12, 19, 42, 55, 66, 87, 103, 117, 137, 141, 147, 148, 183, 188, 192, 198, 206, 211, 217, 218, 219, 229, 234, 235, 236, 241, 245, 249, 258, 260, 262, 270, 281, 282, 283, 284, 285, 298, 299, 300, 308, 309, 310, 312, 313, 323, 328, 330, 332, 346, 360, 361, 362, 401, 573, 577, 594, 600, 622, 624, 632, 642, 645, 646, 648, 649, 650, 652, 655, 666, 670, 693], "10s": 12, "bewaesser": 12, "onoff": [12, 112, 155, 212, 213, 304, 338, 356, 357, 561], "enforce_updat": [12, 13, 18, 20, 25, 160, 162, 164, 169, 170, 179, 198, 200, 205, 211, 227, 230, 231, 247, 248, 250, 253, 257, 262, 266, 275, 276, 279, 281, 282, 288, 290, 294, 295, 301, 314, 328, 329, 332, 338, 339, 340, 351, 360, 369, 370, 495, 567, 570, 571, 573, 576, 577, 591, 641, 653, 674], "rest": [12, 56, 93, 111, 120, 154, 211, 218, 229, 257, 294, 339, 340, 360, 384, 409, 458, 528, 545, 548, 550, 596, 647, 651, 652, 655], "ro": [12, 165, 170, 175, 179, 186, 189, 198, 200, 202, 253, 254, 262, 266, 279, 285, 294, 299, 300, 311, 315, 335, 339, 340, 355, 362, 396, 496, 505, 524, 645, 646, 688, 690], "age": [12, 133, 161, 243, 262, 263, 325, 347, 360, 562, 567, 575, 577, 591, 642, 647, 667, 688], "out": [12, 54, 55, 66, 107, 115, 122, 127, 136, 141, 162, 169, 175, 183, 195, 205, 218, 227, 235, 236, 247, 248, 257, 274, 278, 290, 294, 297, 305, 312, 313, 345, 355, 365, 368, 623, 624, 646, 650, 651, 653, 655, 670, 688], "on_chang": [12, 13, 162, 169, 189, 338, 359, 381, 512, 561, 562, 567, 572, 573, 577, 591, 646, 653, 655, 671, 672], "ruckmeld": [12, 58, 82, 162, 169, 203, 232, 237, 331, 381, 599], "prasenzmeld": [12, 13], "anwesenheitsstatus": 12, "send": [12, 14, 28, 47, 52, 62, 66, 71, 86, 124, 127, 141, 155, 160, 162, 167, 169, 170, 178, 181, 199, 200, 210, 211, 218, 227, 230, 231, 232, 237, 247, 248, 255, 256, 257, 269, 272, 273, 274, 277, 281, 290, 293, 296, 301, 304, 305, 315, 323, 337, 338, 356, 357, 358, 359, 365, 368, 381, 390, 400, 401, 406, 407, 408, 417, 433, 434, 435, 441, 457, 464, 466, 467, 469, 471, 476, 477, 504, 507, 511, 512, 521, 525, 545, 550, 552, 618, 623, 624, 641, 642, 645, 646, 647, 648, 649, 653, 654, 655, 663, 666, 667, 671, 674], "imm": [12, 52, 67, 73, 79, 83, 85, 97, 106, 112, 115, 162, 169, 189, 219, 222, 230, 262, 289, 306, 307, 314, 324, 325, 326, 327, 328, 329, 330, 331, 332, 339, 340, 359, 363, 381, 382, 383, 495, 504, 566, 569, 572, 573, 576, 589, 591, 592, 621, 682], "prasenz": [12, 419, 420], "gesendet": [12, 13, 45, 62, 98, 155, 156, 162, 164, 169, 170, 194, 200, 203, 230, 237, 241, 255, 256, 272, 293, 303, 304, 306, 307, 314, 338, 339, 340, 351, 369, 375, 376, 379, 381, 382, 400, 406, 408, 432, 434, 435, 441, 451, 454, 457, 464, 467, 471, 489, 495, 511, 512, 532, 533, 535, 569, 592, 615, 622], "anwes": [12, 328, 490], "nachd": [12, 22, 27, 37, 42, 58, 67, 83, 86, 92, 96, 115, 162, 192, 207, 226, 292, 308, 309, 328, 330, 382, 393, 486, 500, 512, 522, 588, 593, 688], "pm1": 12, "meldung": [12, 83, 92, 103, 213, 219, 220, 256, 282, 338, 434, 473, 517, 527], "pm2": 12, "pm3": 12, "pm4": 12, "pm5": 12, "ermittl": [12, 58, 325, 326, 330, 332], "wertabweich": 12, "luftfeucht": [12, 91, 165, 170, 200, 261, 262, 337, 338], "innerhalb": [12, 42, 50, 62, 71, 85, 92, 96, 103, 106, 112, 115, 187, 189, 224, 262, 295, 313, 314, 321, 325, 328, 329, 332, 338, 347, 363, 412, 431, 453, 508, 569, 576, 583, 588, 589, 590, 592, 595, 596, 598, 599, 632, 634, 641, 693], "wichtig": [12, 13, 27, 40, 47, 52, 58, 62, 67, 69, 71, 73, 76, 83, 86, 87, 92, 103, 106, 107, 115, 116, 123, 169, 178, 192, 213, 224, 238, 261, 289, 302, 321, 323, 325, 326, 328, 329, 381, 563, 572, 573, 591, 671, 693], "steckt": [12, 333], "erstmal": [12, 71, 79, 85, 92, 95, 200, 271, 295, 327, 362, 400, 435, 441, 464, 467, 508, 572, 596, 641], "gemerkt": 12, "on_updat": [12, 200, 359, 512, 561, 562, 567, 572, 573, 577, 591, 646, 653, 671, 672], "ja": [12, 20, 52, 54, 55, 98, 116, 219, 255, 261, 276, 328, 333, 338, 406, 572], "gebraucht": [12, 58, 79, 82, 323, 325], "knx_list": [12, 13, 98, 160, 162, 164, 185, 197, 211, 231, 232, 239, 247, 275, 278, 288, 290, 301, 314, 352, 355, 358, 360, 566, 641, 653, 659, 686], "vor5minut": 12, "5m": [12, 148, 568, 688], "mehrals5prozent": 12, "gross": [12, 27, 46, 48, 60, 71, 82, 90, 97, 100, 106, 110, 116, 118, 119, 162, 170, 187, 189, 192, 203, 210, 219, 222, 223, 229, 235, 256, 263, 289, 293, 295, 325, 328, 331, 332, 351, 396, 485, 496, 498, 499, 508, 523, 532, 580, 612, 621, 626, 630, 632, 638, 671, 672, 682, 692, 693], "prozent": [12, 162, 163, 164, 170, 213, 260, 378, 420, 481, 580, 638], "or": [12, 16, 40, 43, 44, 45, 52, 53, 54, 55, 58, 60, 64, 66, 79, 83, 103, 104, 107, 113, 115, 126, 127, 129, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 151, 152, 157, 158, 160, 162, 164, 165, 168, 169, 173, 175, 176, 180, 183, 185, 186, 193, 195, 198, 199, 200, 202, 205, 206, 211, 217, 218, 221, 227, 231, 240, 245, 247, 248, 251, 253, 254, 255, 257, 258, 260, 262, 273, 274, 278, 280, 281, 288, 290, 294, 296, 301, 304, 305, 312, 315, 326, 328, 329, 330, 334, 335, 338, 339, 340, 341, 342, 344, 352, 353, 355, 356, 357, 359, 361, 365, 368, 370, 395, 405, 413, 453, 457, 562, 573, 579, 595, 601, 602, 604, 607, 608, 609, 610, 612, 613, 615, 616, 618, 623, 624, 632, 641, 643, 644, 645, 646, 649, 650, 652, 653, 655, 670, 674], "zeitlich": [13, 170, 295, 347, 398, 401, 424, 425, 447, 449, 480, 483, 498, 499, 501, 573, 585, 599, 636], "verzoger": [13, 321, 326, 332, 351, 382, 393, 400, 435, 495, 508, 522], "realisi": [13, 97, 321, 568], "eingang": [13, 162, 192, 261, 314, 337, 369, 412, 436, 461, 500, 526], "ereignis": [13, 42, 83, 164, 272, 324, 327, 471, 586, 594, 641, 674], "ausgang": [13, 204, 261, 412, 461, 500, 526], "nimmt": [13, 43, 53, 58, 96, 219, 325, 490, 606, 610, 630], "zeitglied": [13, 574], "numer": [13, 43, 53, 106, 115, 164, 165, 223, 262, 285, 289, 331, 360, 376, 401, 428, 461, 483, 575, 577, 601, 602, 604, 607, 608, 609, 632, 641], "15": [13, 42, 52, 57, 71, 103, 129, 142, 147, 155, 160, 165, 176, 189, 192, 195, 196, 202, 219, 229, 240, 254, 255, 262, 270, 271, 279, 288, 290, 294, 295, 304, 328, 329, 332, 334, 356, 357, 360, 370, 379, 443, 449, 486, 526, 569, 592, 622, 638, 640, 649, 657], "tim": [13, 16, 40, 42, 55, 56, 66, 71, 76, 86, 97, 103, 111, 123, 130, 133, 136, 138, 141, 142, 147, 148, 152, 155, 160, 180, 183, 184, 185, 187, 188, 192, 198, 205, 211, 217, 218, 221, 222, 223, 227, 234, 240, 243, 248, 250, 253, 262, 263, 268, 274, 278, 281, 284, 288, 294, 295, 297, 298, 304, 305, 314, 317, 325, 326, 330, 332, 337, 338, 346, 347, 351, 352, 355, 356, 357, 359, 361, 365, 368, 370, 395, 397, 427, 428, 434, 446, 453, 455, 463, 479, 486, 508, 522, 527, 533, 536, 545, 554, 562, 568, 573, 574, 575, 598, 612, 624, 641, 642, 643, 644, 646, 648, 649, 650, 651, 652, 653, 654, 655, 660, 663, 664, 666, 667, 670, 674, 686, 688], "reed": 13, "kontakt": [13, 25, 170, 337, 382, 472], "fenst": [13, 25, 44, 90, 160, 187, 289, 328, 613], "Wire": [13, 232, 285, 461, 483, 545, 548, 617, 643, 663, 666, 667], "multi": [13, 44, 45, 54, 55, 61, 66, 67, 84, 103, 126, 151, 157, 158, 173, 186, 189, 198, 212, 213, 239, 245, 289, 301, 368, 610, 613, 615, 624, 641, 642, 643, 644, 646, 649, 651, 655, 674], "i": [13, 14, 16, 40, 44, 47, 52, 54, 55, 58, 66, 69, 73, 76, 82, 85, 149, 152, 164, 165, 170, 177, 186, 199, 205, 208, 210, 218, 221, 225, 227, 229, 234, 239, 240, 253, 261, 262, 269, 278, 281, 284, 287, 288, 294, 298, 308, 309, 317, 321, 338, 341, 461, 613, 624, 635, 663, 665, 667, 674], "sensor": [13, 177, 199, 200, 204, 212, 213, 219, 221, 245, 261, 281, 293, 337, 368, 371, 383, 407, 412, 419, 420, 434, 461, 480, 483, 489, 521, 545, 548, 550, 573, 643, 646, 647, 649, 650, 653, 654, 666, 670], "per": [13, 15, 21, 28, 36, 44, 52, 56, 62, 71, 76, 78, 92, 125, 131, 141, 157, 200, 255, 256, 259, 260, 261, 262, 274, 284, 288, 300, 310, 314, 316, 329, 341, 360, 423, 457, 486, 494, 504, 512, 531, 545, 550, 552, 573, 613, 638, 646, 648, 653, 655], "abgefragt": [13, 58, 104, 117, 121, 124, 162, 169, 184, 189, 192, 203, 207, 210, 212, 213, 244, 268, 270, 271, 285, 289, 325, 328, 330, 360, 370, 375, 380, 381, 382, 386, 401, 434, 480, 484, 499, 514, 537, 592, 600, 632, 641, 671], "bus": [13, 66, 67, 69, 78, 86, 87, 98, 111, 162, 164, 167, 175, 177, 202, 261, 294, 330, 409, 434, 461, 483, 617, 624, 642, 646, 655, 659, 663], "leid": [13, 92, 412, 583, 688], "vertauscht": [13, 71, 272, 412, 471], "umgekehrt": [13, 169, 263, 325], "geschloss": [13, 45, 52, 162, 330, 615], "geoffnet": [13, 52, 92, 95, 162, 187, 207, 289, 527, 585, 617], "hinzufug": [13, 59, 82, 111, 162, 319, 326, 332, 594, 688], "ow": [13, 87, 104, 261], "esszimmerlink": 13, "ow_addr": [13, 92, 232, 261, 288], "3a": [13, 261], "cbf713000000": 13, "ow_sensor": [13, 232, 261, 288, 648], "ib": [13, 261, 461], "knx_send": [13, 18, 20, 52, 54, 55, 98, 106, 160, 162, 164, 185, 197, 200, 232, 247, 262, 275, 278, 288, 289, 290, 294, 295, 339, 340, 352, 355, 360, 566, 567, 591, 659, 683, 686], "82": [13, 192], "knx_reply": [13, 197, 232, 275, 288, 339, 340], "lautsprech": [13, 169, 276, 314, 381, 504, 545, 548], "gpio": [13, 278, 285, 476, 545, 550, 641, 643, 645, 646, 649, 650, 653, 655, 670], "raspberry": [13, 14, 92, 204, 239, 277, 278, 286, 310, 412, 483, 484, 545, 548, 550, 641, 643, 646, 688], "geschaltet": [13, 69, 200, 347, 376, 423, 450, 519], "kommt": [13, 24, 54, 55, 67, 85, 103, 116, 117, 123, 243, 260, 263, 328, 338, 381, 400, 441, 451, 464, 467, 472, 585, 592, 600, 641, 674, 688], "dess": [13, 36, 78, 163, 170, 184, 187, 192, 210, 212, 213, 215, 220, 237, 252, 261, 262, 265, 268, 289, 302, 322, 330, 331, 333, 348, 357, 360, 366, 371, 396, 416, 450, 512, 562, 573, 575, 578, 595, 622, 641, 674], "verfalscht": 13, "adressier": [13, 25, 333, 379, 449, 496, 561, 576], "elternelement": 13, "zufug": 13, "gaestezimmer_lautsprech": 13, "gpio_ausgab": 13, "gpio_out": 13, "38": [13, 155, 192, 199, 304, 347, 356, 357, 365, 381], "nachtobjekt": 13, "ansteuer": [13, 48, 53, 69, 163, 168, 213, 265, 271, 373, 374, 375, 379, 380, 382, 384, 414, 417, 433, 442, 465, 475, 500, 545, 548, 550, 558, 610, 617, 618, 642, 692], "led": [13, 204, 219, 247, 283, 292, 295, 305, 314, 338, 412, 651], "ahnlich": [13, 71, 74, 80, 83, 84, 86, 106, 162, 163, 192, 313, 326, 328, 332, 360, 434, 592, 681], "burg": [13, 599, 636], "dammer": [13, 325], "morg": [13, 76, 116, 262, 311, 329, 347, 361, 502, 545, 548, 550, 552, 554, 558], "abend": [13, 325, 326, 331, 585], "danach": [13, 52, 68, 80, 83, 86, 92, 102, 114, 169, 282, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 572, 573, 632, 674, 688], "sonn": [13, 113, 218, 321, 325, 326, 328, 330, 332, 569, 592, 638], "schon": [13, 50, 56, 62, 76, 82, 92, 106, 162, 272, 314, 328, 359, 561, 572, 671, 672], "unterhalb": [13, 52, 54, 55, 56, 60, 62, 76, 123, 165, 203, 324, 325, 327, 370, 410, 496, 523, 575, 614, 619, 635, 682, 686, 688], "horizont": [13, 325, 569, 592, 599, 636], "befindet": [13, 42, 50, 52, 83, 93, 103, 111, 169, 282, 314, 321, 333, 369, 407], "himmel": 13, "dennoch": [13, 83, 116, 331, 381, 527], "leicht": [13, 15, 24, 79, 106, 115, 192, 261, 262, 326, 360, 512, 566, 687], "erhellt": 13, "beid": [13, 24, 37, 43, 47, 58, 83, 85, 86, 106, 116, 122, 155, 169, 170, 187, 188, 189, 272, 276, 304, 314, 325, 328, 330, 331, 332, 347, 349, 432, 573, 574, 576, 577, 599, 634, 638, 683], "uberlass": [13, 58], "schliesslich": [13, 58, 71, 116, 325, 328, 367, 688], "eindeut": [13, 58, 62, 95, 123, 187, 189, 200, 314, 325, 496, 504, 523, 632, 686], "natur": [13, 36, 57, 62, 80, 82, 85, 86, 87, 92, 97, 116, 138, 192, 210, 289, 316, 319, 328, 339, 340, 561, 595], "geo": [13, 262], "koordinat": [13, 83, 113, 219, 262, 462], "zeitzon": [13, 52, 103, 155, 304, 423, 584, 599, 634, 674], "hinterlegt": [13, 27, 43, 53, 56, 58, 84, 96, 104, 111, 123, 162, 169, 170, 184, 191, 201, 215, 217, 230, 237, 264, 267, 268, 282, 322, 325, 326, 330, 362, 381, 497, 533, 575, 608, 632, 633, 642, 674, 687], "bringt": [13, 68, 97, 115, 171, 583, 585, 629], "env": [13, 15, 16, 18, 19, 20, 42, 52, 54, 55, 68, 125, 136, 155, 162, 219, 261, 304, 338, 356, 357, 360, 361, 560, 580, 581, 585, 588, 590, 591, 595, 638, 641, 643, 645, 646, 647, 649, 655, 667, 669, 693], "location": [13, 104, 142, 161, 218, 219, 230, 254, 255, 335, 360, 368, 580, 633, 638, 646, 649, 653, 655, 669, 688], "day": [13, 16, 56, 96, 104, 107, 115, 148, 186, 188, 189, 217, 219, 262, 263, 287, 294, 295, 317, 324, 341, 344, 365, 397, 398, 462, 463, 569, 580, 585, 592, 633, 643, 646, 652, 655], "night": [13, 262, 288, 297, 317, 365, 487, 580], "zugreif": [13, 28, 88, 98, 178, 338, 374, 375, 386, 387, 388, 391, 392, 393, 395, 396, 399, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 428, 429, 433, 436, 437, 438, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 529, 532, 534, 538, 563, 589, 597, 688], "103": [13, 166, 198, 312, 313], "104": [13, 279, 312, 313], "erweitert": [13, 36, 48, 57, 58, 62, 71, 78, 82, 98, 110, 121, 123, 159, 162, 212, 213, 219, 229, 262, 270, 271, 289, 321, 333, 338, 354, 371, 508, 545, 547, 548, 550, 552, 554, 558, 564, 568, 569, 570, 573, 577, 592, 621, 626, 641, 651, 671, 672, 673, 674, 675, 682, 689, 693], "konnt": [13, 52, 67, 76, 85, 87, 97, 106, 115, 116, 123, 170, 192, 194, 196, 200, 203, 215, 229, 233, 262, 270, 271, 284, 293, 320, 324, 325, 326, 328, 330, 331, 333, 359, 360, 381, 434, 508, 566, 573, 585, 652, 653, 654, 656, 674, 688], "Weg": [13, 92, 106, 262, 339, 340, 586, 593, 688], "bevorzug": [13, 79, 589], "sun": [13, 19, 86, 142, 218, 262, 569, 592, 649, 650, 659, 660], "ris": [13, 19, 142, 660, 665], "beleuchtungssteuer": 13, "w\u00e4re": [13, 58, 62, 67, 87, 97, 98, 100, 115, 116, 164, 219, 325, 326, 329, 333, 339, 340, 561, 569, 592, 622, 641], "sinnvoll": [13, 25, 42, 47, 53, 56, 58, 60, 68, 93, 97, 292, 293, 324, 326, 329, 330, 362, 371, 381, 504, 561, 573, 577, 586, 588, 610, 641, 671], "vorzunehm": [13, 85, 103, 123, 192, 271, 292, 306, 307], "flurlichtsteuer": 13, "vielleicht": [13, 71, 80, 82, 86, 92], "1h": [13, 262, 479, 526], "sonnenuntergang": [13, 83, 262, 325, 347, 569, 580, 592, 599, 636], "erreicht": [13, 42, 46, 50, 79, 87, 165, 262, 306, 307, 337, 453, 479, 484, 502, 569, 588, 592, 646, 688], "grenz": [13, 77], "sonnenstand": [13, 19, 96, 324, 325, 326, 328, 332, 347, 519, 564, 569, 592], "init": [13, 16, 42, 46, 54, 55, 71, 83, 84, 103, 107, 108, 115, 116, 125, 133, 141, 155, 162, 169, 178, 186, 189, 261, 278, 279, 287, 289, 304, 318, 328, 329, 331, 347, 351, 356, 357, 360, 361, 381, 396, 428, 485, 506, 569, 592, 632, 638, 643, 644, 645, 646, 648, 650, 651, 652, 653, 654, 655, 660, 667, 674], "sunris": [13, 19, 52, 113, 229, 262, 347, 360, 569, 580, 592, 599, 636, 669, 672], "sunset": [13, 19, 113, 229, 262, 347, 360, 569, 580, 592, 599, 636, 650, 669, 672], "set": [13, 19, 30, 44, 45, 52, 53, 54, 55, 58, 60, 66, 83, 107, 115, 126, 133, 137, 139, 141, 142, 146, 147, 148, 149, 151, 152, 154, 157, 158, 160, 162, 166, 169, 176, 182, 183, 185, 186, 195, 197, 198, 199, 200, 202, 205, 211, 218, 221, 227, 230, 231, 245, 248, 253, 257, 258, 260, 262, 273, 274, 288, 289, 290, 294, 296, 297, 301, 305, 314, 315, 317, 318, 321, 323, 324, 325, 326, 328, 329, 330, 332, 335, 352, 353, 355, 356, 357, 360, 365, 368, 370, 395, 405, 407, 409, 413, 528, 538, 562, 563, 589, 610, 612, 613, 615, 616, 618, 623, 624, 625, 643, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 665, 666, 667, 681, 688], "trigger": [13, 325, 330, 483, 484, 562, 567, 591], "sonnenaufgang": [13, 83, 262, 325, 564, 569, 592, 599, 636], "systemstart": [13, 27, 52, 83, 86, 89, 90, 225], "konfigurationsbeispiel": [14, 32, 52, 55, 250, 309, 310, 625], "list": [14, 18, 24, 40, 43, 44, 45, 47, 52, 55, 56, 58, 60, 63, 66, 71, 83, 86, 92, 93, 95, 98, 103, 106, 112, 113, 116, 117, 120, 121, 124, 130, 132, 133, 134, 136, 137, 139, 140, 141, 144, 146, 147, 148, 149, 152, 154, 155, 157, 158, 160, 161, 162, 164, 165, 167, 169, 170, 173, 175, 177, 180, 183, 185, 186, 187, 189, 192, 195, 200, 203, 210, 211, 212, 213, 217, 221, 226, 227, 230, 231, 232, 243, 247, 248, 251, 256, 257, 258, 259, 260, 261, 263, 265, 266, 272, 276, 281, 285, 289, 290, 293, 294, 297, 301, 302, 304, 305, 306, 307, 314, 315, 316, 325, 326, 328, 329, 330, 331, 332, 333, 335, 337, 338, 347, 351, 355, 356, 357, 360, 365, 368, 373, 376, 377, 379, 381, 382, 388, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 406, 408, 410, 412, 416, 418, 419, 420, 423, 434, 435, 441, 446, 450, 451, 454, 455, 457, 460, 463, 464, 467, 468, 471, 478, 480, 483, 486, 487, 489, 490, 504, 508, 510, 512, 513, 515, 521, 522, 527, 534, 537, 546, 564, 567, 569, 573, 575, 576, 577, 579, 583, 584, 591, 592, 595, 599, 600, 601, 602, 604, 607, 608, 609, 610, 612, 613, 615, 618, 620, 622, 624, 634, 641, 642, 643, 646, 648, 649, 651, 652, 653, 654, 655, 656, 660, 663, 665, 670, 671, 672, 673, 674, 675, 678, 681, 682, 688, 689, 690, 693], "sammlung": [14, 69, 85, 224], "verschieden": [14, 86], "schnittstell": [14, 36, 62, 67, 71, 78, 86, 159, 166, 169, 170, 171, 191, 192, 194, 197, 201, 203, 207, 219, 238, 261, 264, 267, 306, 307, 319, 381, 382, 393, 401, 403, 407, 409, 416, 434, 439, 440, 450, 480, 497, 498, 499, 507, 509, 514, 528, 545, 548, 550, 558, 622, 688], "lief": [14, 58, 85, 96, 155, 165, 170, 187, 189, 192, 219, 229, 232, 261, 304, 360, 398, 401, 532, 545, 548, 599, 634, 641], "Sie": [14, 28, 43, 47, 48, 50, 52, 53, 54, 55, 56, 77, 92, 95, 100, 104, 106, 110, 116, 117, 153, 164, 166, 167, 172, 187, 196, 200, 203, 222, 230, 241, 272, 283, 314, 328, 329, 330, 332, 362, 434, 449, 455, 490, 496, 523, 587, 589, 591, 592, 596, 600, 602, 606, 608, 610, 641, 652, 653, 654, 655, 656], "ersetzt": [14, 22, 25, 44, 48, 52, 53, 58, 60, 97, 162, 164, 233, 256, 262, 263, 272, 319, 321, 330, 423, 471, 507, 513, 519, 545, 550, 563, 566, 603, 613, 674, 689], "git": [14, 73, 83, 85, 92, 171, 211, 218, 221, 269, 278, 672, 688], "repository": [14, 37, 47, 84, 123, 373, 646, 649, 650, 652, 653, 655, 656, 674, 691], "lieferant": 14, "gegliedert": 14, "adress": [14, 25, 27, 28, 43, 44, 45, 53, 69, 82, 85, 92, 119, 120, 121, 122, 166, 167, 170, 178, 180, 196, 207, 232, 238, 241, 244, 247, 249, 256, 261, 270, 282, 283, 292, 293, 299, 300, 310, 314, 315, 328, 329, 331, 337, 351, 363, 374, 377, 378, 379, 381, 382, 383, 384, 386, 387, 388, 389, 395, 405, 406, 409, 413, 415, 417, 418, 419, 420, 428, 429, 432, 433, 434, 436, 437, 438, 441, 442, 444, 445, 448, 450, 451, 452, 456, 457, 458, 461, 466, 469, 470, 472, 475, 478, 480, 482, 488, 492, 494, 495, 496, 500, 501, 504, 505, 507, 509, 514, 516, 518, 522, 524, 526, 531, 533, 534, 535, 537, 566, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 641, 650, 674, 688, 690], "rout": [14, 86, 161, 162, 344, 434, 516, 617, 645, 668, 688], "angeb": [14, 53, 97, 116, 155, 164, 222, 255, 289, 299, 300, 304, 328, 338, 434, 595, 610, 671], "192": [14, 71, 86, 87, 88, 111, 122, 161, 162, 166, 167, 173, 175, 176, 183, 191, 202, 205, 211, 227, 229, 231, 234, 237, 238, 240, 247, 249, 250, 256, 257, 264, 267, 270, 278, 281, 282, 283, 290, 292, 299, 300, 301, 305, 306, 307, 310, 314, 338, 346, 360, 367, 369, 370, 375, 389, 434, 517, 641], "168": [14, 71, 86, 87, 88, 111, 119, 161, 162, 166, 167, 173, 175, 176, 183, 191, 198, 202, 205, 211, 227, 229, 231, 234, 237, 238, 240, 247, 249, 250, 256, 257, 264, 267, 270, 278, 281, 282, 283, 290, 292, 299, 300, 301, 305, 306, 307, 310, 314, 338, 346, 360, 369, 370, 375, 389, 517], "178": [14, 122, 162, 205, 369, 375, 517], "tpuart": [14, 86], "usb": [14, 79, 82, 86, 87, 167, 182, 192, 193, 194, 195, 196, 200, 258, 259, 261, 305, 306, 307, 351, 379, 392, 403, 439, 545, 548, 550], "knxd_opt": [14, 86], "e": [14, 24, 28, 40, 45, 54, 55, 56, 58, 60, 62, 66, 82, 86, 103, 107, 115, 116, 125, 130, 133, 136, 139, 148, 152, 160, 168, 173, 176, 180, 183, 186, 195, 198, 200, 202, 205, 211, 221, 227, 234, 239, 241, 245, 247, 248, 253, 254, 260, 262, 278, 281, 284, 288, 290, 294, 295, 296, 297, 301, 305, 317, 335, 341, 355, 361, 368, 381, 400, 408, 411, 456, 464, 467, 476, 477, 615, 618, 623, 624, 635, 638, 642, 644, 646, 648, 649, 650, 651, 652, 653, 655, 656, 666, 667, 688], "251": [14, 310, 434, 649], "240": [14, 168, 185, 198, 227, 281, 288, 380, 405, 439, 480, 486], "8": [14, 15, 16, 44, 45, 46, 47, 52, 54, 55, 56, 57, 62, 71, 76, 77, 79, 82, 83, 84, 85, 86, 92, 103, 104, 107, 115, 116, 120, 122, 123, 125, 131, 152, 155, 157, 158, 162, 164, 165, 169, 170, 189, 192, 195, 196, 197, 198, 200, 207, 210, 211, 219, 220, 222, 223, 231, 232, 235, 236, 239, 248, 249, 251, 254, 255, 262, 267, 270, 271, 279, 284, 302, 305, 306, 307, 308, 309, 310, 333, 334, 337, 346, 347, 351, 355, 356, 357, 363, 365, 376, 382, 383, 387, 398, 400, 401, 407, 408, 410, 419, 422, 433, 434, 437, 438, 445, 453, 456, 464, 466, 467, 470, 479, 484, 487, 494, 496, 498, 499, 500, 504, 506, 513, 515, 522, 524, 527, 531, 537, 538, 545, 548, 554, 558, 569, 580, 586, 592, 597, 612, 613, 615, 629, 633, 638, 639, 640, 643, 644, 645, 649, 650, 651, 652, 653, 654, 655, 656, 657, 666, 670, 682, 683, 689, 691], "c": [14, 24, 52, 64, 74, 84, 86, 90, 102, 131, 165, 166, 167, 169, 189, 199, 200, 202, 210, 217, 219, 235, 253, 254, 262, 278, 288, 289, 290, 293, 294, 310, 314, 334, 337, 338, 339, 340, 341, 414, 476, 477, 484, 573, 635, 643, 681, 688], "dtrs": 14, "dev": [14, 31, 33, 34, 47, 52, 54, 55, 67, 73, 80, 83, 86, 87, 88, 103, 129, 169, 182, 183, 187, 190, 191, 192, 193, 194, 195, 196, 201, 206, 247, 250, 264, 267, 287, 305, 306, 307, 334, 341, 351, 392, 394, 400, 407, 408, 414, 439, 464, 467, 497, 509, 514, 517, 538, 622, 628, 641, 643, 667, 671, 688], "ttyknx0": 14, "freie": [14, 200, 351, 580, 641], "busadress": 14, "adressbereich": 14, "darstellt": [14, 172, 191, 201, 264, 267, 574, 577], "client": [14, 45, 71, 82, 83, 84, 85, 86, 87, 88, 91, 121, 122, 127, 141, 155, 156, 168, 208, 218, 222, 223, 225, 244, 269, 274, 292, 301, 302, 303, 304, 338, 355, 356, 357, 359, 362, 368, 370, 416, 447, 469, 479, 496, 512, 521, 524, 527, 530, 545, 550, 558, 612, 615, 623, 643, 645, 648, 649, 651, 652, 653, 656, 670], "vergibt": 14, "xxx": [14, 52, 54, 55, 140, 143, 144, 146, 175, 198, 219, 235, 236, 281, 283, 299, 300, 367, 482, 612, 630], "rtc": 14, "onewir": [14, 67, 91, 92, 285, 483, 545, 548, 643, 644, 645, 646, 648, 649, 653, 654, 665], "erweiter": [14, 31, 33, 34, 36, 52, 54, 57, 59, 78, 110, 170, 189, 214, 222, 250, 306, 307, 310, 369, 370, 487, 563, 566, 618, 651, 682, 690], "pi": [14, 92, 200, 204, 239, 277, 286, 310, 315, 412, 477, 483, 484, 545, 548, 550, 641, 643, 646, 673, 688], "scn": 14, "ip000": 14, "ip100": 14, "02": [14, 71, 83, 86, 98, 155, 165, 169, 185, 187, 188, 205, 232, 263, 270, 271, 293, 294, 295, 304, 337, 356, 357, 360, 363, 381, 463, 585], "tmp": [14, 71, 86, 200, 218, 219, 221, 229, 274, 317, 424, 425, 504], "eib": [14, 71, 86, 434], "ipt": [14, 71, 86], "usbr": 14, "eibaddr": [14, 71], "addr": [14, 141, 235, 236, 297], "245": 14, "groupcach": [14, 71], "discovery": [14, 71, 162, 261, 283, 314, 368, 643, 649, 651, 652, 653], "tunnelling": [14, 71], "routing": 14, "layer2": 14, "249": [14, 130], "311": 14, "312": 14, "330": 14, "730": 14, "tunnel": [14, 71, 86], "queuing": [14, 71, 86], "d": [14, 16, 24, 37, 40, 44, 52, 54, 56, 64, 71, 84, 88, 98, 103, 107, 115, 116, 148, 152, 162, 164, 165, 169, 170, 186, 193, 194, 195, 200, 210, 221, 230, 232, 254, 259, 261, 262, 263, 278, 287, 314, 317, 337, 338, 349, 351, 365, 371, 432, 476, 477, 545, 550, 584, 585, 599, 612, 613, 634, 635, 646, 663, 671, 674, 681], "t": [14, 30, 40, 44, 45, 55, 66, 104, 106, 111, 132, 133, 134, 137, 138, 141, 146, 150, 152, 154, 157, 158, 160, 162, 177, 183, 195, 210, 211, 218, 219, 221, 227, 232, 234, 257, 261, 288, 290, 293, 294, 309, 334, 339, 340, 352, 360, 365, 382, 461, 612, 613, 615, 616, 624, 642, 643, 645, 646, 648, 649, 650, 652, 655, 671, 686], "14": [14, 42, 52, 73, 79, 86, 92, 103, 125, 155, 160, 165, 167, 195, 196, 219, 226, 232, 254, 255, 262, 278, 281, 294, 295, 304, 334, 352, 355, 356, 357, 434, 443, 588, 638, 652, 655, 657, 682, 686], "arbeitet": [14, 165, 363, 369, 414, 486, 508, 632], "prozess": [14, 37, 50, 51, 71, 83, 86, 229, 321, 362, 617, 627, 641], "ini": [14, 106, 688], "kommandozeilenparamet": 14, "tool": [14, 22, 39, 44, 49, 53, 64, 68, 69, 73, 79, 82, 83, 86, 90, 92, 103, 106, 113, 135, 157, 219, 259, 287, 360, 370, 560, 581, 613, 629, 630, 641, 643, 644, 645, 649, 664, 665, 667, 675, 677, 679, 680, 681, 688, 692, 693], "umwandeln": [14, 92, 103, 306, 307], "lass": [14, 20, 68, 71, 82, 83, 86, 92, 97, 98, 106, 108, 115, 189, 192, 232, 270, 271, 293, 319, 326, 339, 340, 347, 351, 354, 504, 573, 576, 682, 688], "usr": [14, 27, 37, 42, 52, 54, 55, 68, 71, 83, 84, 86, 88, 89, 90, 92, 103, 108, 113, 125, 162, 164, 185, 192, 199, 205, 219, 225, 230, 239, 261, 273, 278, 283, 294, 309, 315, 334, 338, 359, 361, 432, 477, 527, 588, 590, 591, 595, 612, 628, 629, 630, 638, 677, 678, 679, 688], "lib": [14, 39, 42, 44, 45, 48, 49, 52, 54, 55, 57, 59, 63, 66, 71, 83, 86, 103, 107, 113, 115, 116, 125, 133, 134, 144, 145, 154, 157, 188, 190, 192, 198, 203, 219, 239, 243, 245, 251, 253, 260, 263, 274, 309, 318, 322, 334, 335, 344, 359, 363, 425, 560, 565, 580, 581, 583, 585, 591, 612, 613, 615, 618, 620, 622, 623, 624, 632, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667, 674, 688, 691, 693], "knxd_arg": 14, "error": [14, 30, 42, 44, 45, 54, 55, 58, 64, 66, 71, 72, 76, 83, 92, 107, 115, 116, 127, 136, 138, 141, 142, 148, 149, 154, 155, 157, 158, 161, 173, 195, 202, 203, 208, 210, 211, 227, 243, 250, 254, 255, 256, 262, 263, 266, 269, 284, 288, 293, 294, 304, 310, 315, 334, 356, 357, 360, 368, 434, 453, 463, 466, 469, 479, 501, 521, 533, 575, 588, 593, 612, 613, 615, 618, 623, 624, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 681, 682], "1023": 14, "delay": [14, 86, 130, 136, 183, 205, 301, 326, 332, 623, 645, 653, 655], "731": [14, 652, 655], "732": 14, "740": [14, 155, 304, 356, 357], "wireless": [14, 647, 653], "750": 14, "751": 14, "752": 14, "linemast": 14, "760": 14, "762": 14, "r2": [14, 210], "beaufort": [15, 131, 262, 462], "bft": [15, 131, 462], "zahl": [15, 52, 58, 97, 106, 112, 124, 131, 165, 169, 187, 192, 210, 224, 261, 262, 289, 306, 307, 310, 326, 332, 338, 351, 362, 376, 378, 396, 401, 460, 461, 485, 502, 508, 514, 568, 569, 570, 579, 592, 599, 621, 626, 636, 638], "12": [15, 16, 42, 58, 71, 76, 79, 82, 83, 86, 89, 91, 98, 107, 115, 131, 136, 165, 167, 171, 184, 185, 189, 193, 194, 197, 207, 210, 211, 219, 226, 240, 249, 254, 255, 262, 268, 290, 298, 325, 328, 329, 334, 338, 346, 352, 355, 358, 359, 360, 431, 434, 443, 461, 462, 494, 533, 545, 554, 569, 592, 628, 638, 655, 682, 686, 693], "bestimm": [15, 115, 189, 260, 261, 325, 508, 638], "windgeschwind": [15, 131, 229, 262, 338, 365, 462], "met": [15, 131, 142, 152, 182, 192, 298, 305, 337, 344, 438, 493, 497, 545, 550, 643, 670], "gegeb": [15, 20, 52, 58, 71, 106, 123, 162, 261, 262, 306, 307, 314, 326, 328, 333, 347, 431, 449, 453, 460, 486, 565, 574, 591, 599, 634, 638], "quell": [15, 103, 169, 192, 223, 224, 229, 260, 262, 263, 279, 331, 339, 340, 380, 396, 526, 575, 632, 672], "wikipedia": [15, 106, 189], "diw": 15, "bestimmt": [15, 20, 28, 42, 43, 52, 53, 58, 67, 71, 83, 92, 97, 98, 103, 104, 106, 112, 113, 115, 116, 120, 162, 167, 169, 170, 187, 189, 192, 200, 215, 222, 223, 224, 232, 237, 272, 313, 314, 322, 324, 325, 326, 327, 329, 330, 331, 332, 339, 340, 347, 360, 381, 382, 396, 406, 423, 434, 449, 463, 496, 508, 512, 519, 523, 565, 568, 569, 577, 579, 586, 591, 592, 595, 599, 601, 602, 604, 607, 608, 609, 632, 642, 671], "knx_global": 15, "weath": [15, 19, 45, 53, 97, 184, 218, 219, 229, 262, 268, 285, 361, 365, 425, 468, 610, 615, 646, 653, 665], "wind": [15, 131, 229, 248, 262, 321, 330, 338, 361, 649], "string": [15, 22, 40, 43, 53, 55, 58, 66, 88, 92, 106, 116, 117, 126, 129, 133, 134, 136, 137, 139, 141, 147, 148, 149, 151, 152, 168, 170, 186, 188, 189, 198, 200, 211, 229, 231, 234, 235, 240, 243, 247, 248, 255, 258, 261, 262, 263, 274, 282, 290, 294, 301, 305, 306, 307, 310, 312, 313, 314, 315, 325, 326, 329, 330, 332, 347, 349, 351, 360, 365, 370, 375, 376, 394, 396, 398, 411, 468, 479, 484, 488, 494, 495, 501, 511, 520, 561, 562, 563, 567, 574, 575, 577, 586, 591, 592, 599, 600, 601, 602, 603, 604, 607, 608, 609, 618, 624, 634, 641, 643, 645, 646, 648, 649, 650, 653, 655, 670, 672, 675, 688], "zuruckgeliefert": [15, 58, 170, 330, 360, 382, 394, 423, 462, 468, 641], "implementier": [15, 43, 44, 45, 48, 187, 192, 219, 262, 310, 463, 495, 528, 545, 550, 554, 558, 606, 612, 613, 615, 618, 641, 671, 674], "nutzt": [15, 28, 39, 43, 48, 79, 84, 86, 87, 89, 90, 111, 116, 123, 154, 163, 171, 220, 233, 238, 261, 262, 263, 306, 307, 316, 333, 338, 347, 351, 370, 450, 454, 489, 545, 548, 552, 562, 576, 582, 589, 598, 612, 617, 618, 641, 652, 653, 654, 656, 670, 671], "rein": [15, 53, 78, 169, 187, 196, 285, 325, 373, 391, 412, 461, 483, 576, 610, 642, 675], "elif": [15, 16, 18, 54, 55, 219, 288, 338, 361, 595], "python3": [15, 16, 18, 19, 20, 27, 42, 44, 52, 54, 55, 68, 71, 83, 89, 92, 103, 113, 125, 154, 157, 162, 185, 192, 205, 219, 249, 283, 314, 334, 338, 370, 588, 591, 595, 612, 613, 628, 630, 638, 641, 644, 667, 677, 679, 681], "windstill": 15, "leis": 15, "zug": [15, 67, 566], "bris": 15, "schwach": [15, 165], "massig": 15, "frisch": [15, 82, 85, 115, 688], "13": [15, 42, 57, 71, 79, 83, 84, 86, 113, 115, 136, 155, 169, 195, 196, 211, 229, 254, 255, 261, 262, 270, 271, 274, 278, 281, 304, 325, 334, 339, 340, 356, 357, 381, 434, 545, 548, 550, 588, 640, 651, 655, 656, 657, 682], "stark": [15, 103, 189, 212, 213, 265, 289, 326, 461, 580], "17": [15, 78, 107, 115, 125, 160, 192, 195, 196, 203, 229, 262, 273, 277, 278, 334, 341, 347, 381, 434, 476, 569, 592, 638, 640, 641, 655, 666], "steif": 15, "20": [15, 20, 42, 52, 76, 79, 82, 83, 88, 103, 112, 115, 116, 125, 155, 160, 164, 165, 185, 199, 207, 210, 219, 234, 235, 236, 240, 249, 262, 275, 288, 293, 294, 304, 325, 328, 329, 332, 334, 337, 338, 347, 356, 357, 361, 422, 434, 436, 437, 438, 443, 487, 545, 550, 569, 573, 592, 599, 636, 638, 641], "sturmisch": 15, "24": [15, 16, 42, 79, 88, 116, 160, 165, 189, 192, 226, 262, 270, 271, 279, 287, 325, 328, 360, 370, 434, 494, 569, 586, 588, 592, 638, 649, 657, 688], "sturm": 15, "28": [15, 16, 92, 155, 173, 176, 192, 232, 261, 262, 278, 279, 285, 288, 304, 347, 356, 357, 638, 652, 657], "schwer": 15, "32": [15, 86, 115, 211, 229, 239, 247, 262, 347, 382, 434, 494, 533, 573, 673], "orkanart": 15, "11": [15, 16, 54, 55, 57, 71, 79, 82, 83, 86, 92, 104, 107, 115, 116, 125, 136, 160, 165, 167, 185, 187, 189, 192, 193, 194, 195, 196, 198, 203, 240, 249, 254, 255, 256, 261, 262, 270, 271, 273, 274, 281, 289, 314, 334, 361, 431, 434, 443, 461, 545, 558, 618, 633, 638, 648, 649, 650, 651, 653, 655, 657, 665, 673, 682, 683, 693], "orkan": 15, "filenam": [15, 16, 18, 19, 20, 42, 51, 52, 83, 103, 107, 108, 115, 116, 117, 126, 135, 136, 137, 149, 188, 206, 216, 232, 241, 243, 253, 263, 274, 322, 352, 355, 361, 576, 583, 585, 592, 594, 600, 642, 646, 648, 653, 655, 686], "watch_it": [15, 18, 20, 42, 103, 108, 117, 137, 206, 253, 600, 667], "besteht": [15, 40, 42, 43, 48, 52, 53, 54, 55, 82, 86, 92, 112, 155, 164, 169, 262, 304, 347, 351, 590, 595, 614, 619, 622], "def": [15, 16, 52, 54, 55, 58, 60, 62, 103, 125, 126, 141, 203, 261, 296, 338, 561, 563, 589, 595, 612, 638], "get_beaufort": 15, "speed": [15, 131, 170, 227, 229, 247, 262, 341, 361, 650, 653, 654, 667], "windspeed": [15, 229], "second": [15, 16, 40, 54, 55, 86, 103, 104, 111, 123, 126, 129, 130, 131, 133, 138, 141, 142, 147, 148, 165, 173, 176, 182, 183, 185, 198, 202, 205, 206, 211, 217, 227, 234, 235, 236, 239, 243, 248, 263, 274, 281, 282, 296, 297, 298, 305, 312, 331, 341, 344, 346, 351, 352, 355, 365, 370, 395, 562, 612, 633, 646, 649, 655, 686], "return": [15, 16, 30, 40, 44, 45, 52, 54, 55, 58, 59, 60, 62, 63, 66, 71, 125, 129, 130, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 161, 177, 180, 181, 186, 198, 203, 218, 227, 234, 240, 248, 253, 273, 278, 312, 315, 317, 338, 344, 356, 357, 361, 589, 612, 613, 615, 616, 618, 620, 623, 624, 638, 645, 646, 648, 649, 650, 653, 655, 656, 662, 664, 688], "tupl": [15, 141, 142, 144, 148, 599, 634], "of": [15, 16, 40, 43, 44, 45, 50, 52, 53, 54, 55, 58, 60, 63, 64, 66, 71, 79, 83, 103, 104, 107, 113, 114, 115, 121, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 155, 160, 161, 164, 165, 173, 175, 176, 180, 181, 182, 183, 185, 186, 189, 190, 193, 195, 198, 199, 200, 202, 205, 206, 208, 209, 216, 217, 218, 221, 222, 226, 227, 230, 231, 235, 239, 240, 245, 247, 248, 253, 254, 257, 258, 261, 262, 273, 274, 276, 280, 281, 282, 283, 288, 290, 294, 296, 297, 298, 301, 304, 305, 308, 312, 315, 317, 318, 334, 337, 341, 342, 344, 345, 346, 352, 355, 356, 357, 360, 365, 368, 370, 395, 413, 454, 460, 538, 562, 595, 598, 601, 602, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 623, 624, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 662, 663, 666, 668, 669, 670, 680, 681, 682, 686, 688, 691], "with": [15, 40, 42, 44, 45, 52, 53, 54, 55, 58, 60, 66, 71, 87, 107, 115, 125, 126, 133, 134, 136, 137, 139, 140, 141, 142, 144, 146, 147, 148, 151, 152, 154, 155, 157, 158, 159, 160, 161, 162, 173, 175, 176, 177, 180, 183, 186, 190, 193, 195, 198, 199, 200, 202, 205, 211, 217, 218, 221, 227, 231, 234, 235, 236, 239, 240, 245, 247, 248, 251, 253, 254, 257, 258, 263, 269, 273, 274, 278, 280, 281, 285, 288, 290, 294, 296, 297, 298, 301, 304, 305, 312, 314, 315, 317, 325, 334, 341, 344, 352, 353, 355, 356, 357, 360, 361, 365, 370, 371, 413, 436, 545, 550, 565, 588, 591, 603, 612, 613, 615, 616, 623, 624, 638, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 661, 662, 665, 666, 668, 669, 670, 674, 681, 686, 691], "the": [15, 29, 30, 40, 43, 44, 45, 50, 52, 53, 54, 55, 58, 60, 63, 64, 66, 68, 71, 83, 87, 107, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 173, 175, 176, 177, 180, 182, 183, 185, 186, 190, 193, 195, 198, 199, 200, 202, 205, 206, 208, 209, 211, 217, 218, 221, 227, 230, 231, 234, 239, 240, 243, 245, 247, 248, 253, 255, 257, 258, 260, 261, 262, 263, 269, 273, 274, 275, 276, 278, 280, 281, 282, 288, 290, 292, 294, 295, 296, 297, 298, 301, 303, 304, 305, 308, 311, 312, 315, 317, 318, 334, 335, 337, 338, 341, 342, 344, 345, 351, 352, 355, 358, 361, 364, 365, 368, 370, 372, 395, 413, 418, 538, 562, 573, 575, 590, 598, 601, 602, 606, 609, 610, 612, 613, 614, 615, 616, 618, 619, 620, 623, 624, 625, 629, 641, 642, 652, 655, 659, 660, 662, 663, 664, 665, 666, 667, 668, 669, 670, 674, 679, 680, 681, 686, 688], "german": [15, 139, 160, 185, 260, 312, 345, 365, 643, 646, 652, 655], "description": [15, 43, 44, 45, 48, 53, 54, 55, 84, 89, 90, 136, 137, 157, 158, 160, 162, 170, 173, 176, 202, 226, 227, 229, 235, 236, 247, 248, 260, 262, 263, 272, 273, 274, 288, 297, 304, 305, 312, 341, 352, 355, 382, 577, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 630, 643, 645, 646, 648, 649, 653, 654, 655, 681], "integ": [15, 106, 112, 141, 147, 148, 152, 186, 187, 189, 193, 194, 240, 247, 281, 288, 293, 306, 307, 314, 333, 347, 360, 453, 462, 479, 494, 574, 575, 577, 585, 646, 648, 652, 655], "mittel": [15, 58, 82, 115, 169, 219, 228, 230, 238, 243, 244, 263, 306, 307, 310, 314, 322, 323, 324, 326, 327, 328, 329, 330, 333, 338, 347, 381, 440, 508, 526, 545, 550, 573, 575, 576, 622, 642, 671, 682, 688], "tabl": [15, 31, 33, 34, 44, 50, 52, 54, 55, 58, 60, 61, 62, 130, 157, 166, 170, 186, 187, 230, 247, 250, 253, 294, 613, 623, 643, 645, 649, 650, 651, 652, 653, 654, 655], "999": [15, 434, 646], "try": [15, 30, 44, 45, 54, 55, 58, 60, 141, 154, 157, 158, 183, 218, 219, 273, 361, 612, 613, 615, 646, 648, 649, 652, 655], "lambda": [15, 60, 126, 163], "except": [15, 30, 44, 45, 58, 154, 157, 158, 190, 219, 361, 612, 613, 615, 646, 655], "valueerror": [15, 645], "zeitbezog": 16, "datenbank": [16, 27, 78, 92, 102, 103, 155, 168, 170, 222, 223, 224, 226, 261, 289, 304, 313, 314, 319, 359, 380, 396, 398, 426, 427, 428, 440, 453, 485, 506, 545, 554, 571, 641, 674, 677, 688], "mitternacht": [16, 116, 295, 347, 569, 585, 592], "usw": [16, 31, 33, 34, 52, 54, 57, 106, 214, 250, 262, 287, 299, 306, 307, 316, 334, 369, 561, 563, 635], "dbstr": 16, "unterit": [16, 314, 330, 561], "datenbankfah": 16, "bereitstellt": [16, 52, 53, 168, 197, 276, 337, 348, 434, 498, 499, 622], "zahlt": [16, 203, 306, 307, 331, 641], "abfrag": [16, 58, 84, 103, 162, 163, 169, 170, 187, 189, 192, 203, 207, 212, 213, 229, 232, 261, 262, 282, 289, 299, 300, 313, 314, 319, 325, 326, 329, 330, 338, 360, 380, 389, 398, 399, 400, 401, 405, 414, 415, 418, 419, 431, 434, 439, 441, 444, 449, 452, 455, 464, 467, 480, 483, 498, 499, 501, 503, 507, 514, 516, 519, 532, 533, 545, 550, 558, 567, 591, 599, 612, 641, 642, 671, 690], "cellar": 16, "utility_room": 16, "water_met": 16, "zeitfen": [16, 189], "lit": [16, 262, 346, 352, 439, 688], "wass": [16, 189, 262, 287, 399], "weis": [16, 28, 56, 62, 97, 131, 184, 229, 232, 260, 261, 268, 324, 328, 568, 570, 585, 586, 591], "verbrauch": [16, 79, 170, 187, 337, 398, 574, 682], "exampl": [16, 30, 42, 44, 45, 47, 52, 54, 55, 58, 84, 103, 107, 112, 113, 115, 126, 130, 141, 154, 157, 158, 160, 162, 164, 173, 176, 186, 199, 217, 221, 240, 241, 249, 253, 279, 281, 301, 308, 312, 315, 344, 353, 356, 357, 359, 394, 445, 468, 593, 612, 613, 615, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 663], "use": [16, 30, 40, 43, 44, 45, 52, 53, 54, 55, 66, 71, 88, 126, 127, 130, 132, 133, 134, 136, 137, 140, 141, 142, 143, 144, 146, 147, 148, 154, 157, 158, 160, 162, 173, 176, 183, 186, 195, 198, 199, 200, 205, 216, 217, 218, 221, 227, 231, 234, 240, 245, 247, 248, 251, 254, 257, 258, 260, 262, 269, 273, 274, 281, 282, 288, 290, 294, 296, 301, 305, 312, 315, 334, 335, 341, 352, 353, 355, 356, 357, 361, 364, 365, 368, 370, 512, 606, 610, 612, 613, 615, 616, 618, 624, 625, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 663, 666, 667, 674, 686, 688], "data": [16, 44, 45, 50, 52, 54, 55, 58, 62, 66, 82, 85, 88, 127, 130, 133, 135, 137, 141, 149, 161, 162, 164, 166, 169, 182, 184, 186, 188, 195, 198, 202, 203, 216, 218, 226, 227, 229, 234, 245, 253, 262, 263, 268, 273, 280, 288, 294, 297, 298, 305, 312, 314, 337, 338, 341, 346, 356, 357, 358, 361, 365, 367, 368, 397, 525, 597, 612, 615, 618, 623, 624, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 652, 653, 655, 669, 670, 681], "for": [16, 18, 20, 40, 42, 43, 44, 45, 50, 52, 53, 54, 55, 58, 60, 61, 62, 63, 64, 66, 68, 71, 83, 103, 104, 107, 110, 113, 115, 126, 127, 128, 130, 132, 133, 134, 136, 137, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 151, 152, 160, 161, 162, 164, 168, 170, 173, 176, 177, 179, 180, 181, 182, 183, 185, 186, 193, 195, 198, 199, 200, 202, 203, 205, 208, 210, 217, 221, 222, 223, 227, 231, 234, 239, 240, 245, 248, 251, 253, 254, 257, 258, 260, 262, 263, 269, 273, 274, 275, 278, 280, 281, 288, 290, 294, 296, 297, 298, 301, 305, 306, 307, 308, 309, 311, 312, 315, 318, 322, 334, 341, 344, 345, 346, 350, 351, 352, 355, 357, 361, 364, 365, 370, 413, 562, 565, 582, 584, 588, 591, 606, 610, 612, 613, 615, 616, 618, 620, 622, 623, 624, 625, 633, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 669, 670, 674, 677, 681, 688, 691], "queri": [16, 130, 315, 318, 501, 545, 552, 643, 645, 655, 656], "consumption_since_midnight": 16, "count": [16, 136, 147, 155, 160, 187, 189, 192, 198, 227, 247, 262, 279, 285, 287, 298, 304, 326, 332, 341, 356, 357, 358, 483, 485, 645, 646, 652, 653, 655, 656, 665, 671], "sinc": [16, 71, 84, 86, 133, 138, 148, 186, 205, 234, 247, 281, 305, 367, 646, 652, 653, 655, 668], "midnight": [16, 107, 115, 116, 136, 142, 232, 294, 322, 583, 585, 655], "mysqldb": [16, 162], "struktur": [16, 26, 45, 50, 52, 62, 92, 93, 98, 103, 106, 112, 114, 162, 164, 187, 192, 212, 213, 229, 233, 262, 265, 289, 313, 328, 339, 340, 508, 561, 566, 577, 578, 587, 599, 605, 615, 619, 622, 632, 634, 638, 641, 682, 686, 689], "sh_now": 16, "debug": [16, 18, 52, 54, 55, 58, 71, 76, 83, 107, 115, 116, 126, 160, 162, 169, 178, 189, 195, 203, 218, 243, 257, 262, 263, 288, 306, 307, 322, 336, 351, 361, 413, 434, 463, 489, 508, 517, 562, 575, 583, 593, 635, 645, 646, 648, 649, 650, 652, 653, 654, 655, 656, 663, 673, 674], "leap_year": 16, "year": [16, 56, 104, 148, 152, 186, 188, 189, 263, 287, 317, 397, 398, 463, 585, 599, 633, 634, 646, 655], "400": [16, 198, 218, 219, 329, 527], "100": [16, 44, 56, 104, 120, 123, 155, 160, 162, 164, 165, 166, 169, 170, 183, 195, 196, 200, 203, 213, 218, 219, 222, 223, 239, 253, 282, 293, 294, 304, 308, 309, 314, 323, 325, 326, 328, 329, 332, 334, 337, 338, 347, 356, 357, 359, 365, 367, 375, 398, 403, 420, 434, 453, 487, 504, 508, 527, 532, 562, 592, 599, 613, 622, 636, 641, 650], "days_of_month": 16, "month": [16, 56, 104, 148, 152, 186, 188, 189, 263, 287, 317, 325, 361, 397, 398, 463, 569, 585, 592, 599, 633, 634, 655], "days": [16, 40, 71, 86, 107, 115, 122, 148, 152, 189, 218, 294, 361, 365, 688], "31": [16, 43, 53, 86, 115, 152, 160, 165, 184, 189, 219, 230, 262, 268, 341, 453, 526, 569, 592, 601, 602, 604, 607, 608, 609, 657], "schaltjahr": 16, "29": [16, 107, 115, 136, 165, 187, 192, 262, 270, 271, 334, 638, 653, 654, 657], "days_of_year": 16, "period_": 16, "datetim": [16, 19, 40, 52, 57, 136, 137, 147, 148, 164, 177, 184, 192, 203, 217, 218, 253, 262, 268, 288, 337, 338, 347, 360, 423, 434, 460, 562, 567, 591, 598, 599, 634, 636, 643, 646, 655, 656, 659, 660, 666], "day_of_year": [16, 148, 599, 634], "print": [16, 88, 166, 178, 203, 222, 223, 253, 294, 310, 347, 355, 646, 655, 682, 686], "running": [16, 30, 40, 44, 45, 55, 66, 71, 83, 84, 86, 107, 115, 116, 125, 129, 133, 139, 141, 157, 158, 206, 240, 248, 258, 278, 294, 315, 355, 356, 357, 358, 512, 612, 613, 615, 618, 624, 638, 643, 644, 645, 646, 650, 651, 652, 653, 654, 655, 669, 680], "remov": [16, 54, 55, 56, 66, 126, 129, 133, 134, 136, 137, 141, 147, 186, 270, 271, 317, 318, 326, 332, 396, 563, 623, 624, 642, 645, 648, 649, 650, 651, 653, 655, 656, 667], "aft": [16, 55, 60, 84, 89, 90, 107, 115, 137, 141, 142, 147, 182, 183, 185, 186, 199, 200, 205, 227, 234, 254, 263, 274, 278, 281, 288, 294, 298, 315, 341, 356, 357, 395, 562, 630, 643, 646, 648, 649, 651, 652, 653, 654, 655, 656, 667, 668], "hour": [16, 19, 40, 131, 148, 152, 183, 184, 186, 188, 218, 234, 260, 262, 263, 268, 269, 287, 288, 317, 351, 356, 357, 361, 370, 479, 585, 612, 655], "isoweekday": [16, 666], "wochentag": [16, 104, 218, 321, 325, 328, 347, 365, 519, 569, 592, 599, 634], "isocalendar": 16, "kalenderwoch": [16, 104, 599, 634], "until": [16, 45, 66, 130, 133, 138, 169, 198, 240, 282, 283, 294, 615, 618, 624, 646, 652], "woch": [16, 104, 119, 187, 189, 287, 527, 585, 599, 634], "week": [16, 71, 86, 148, 152, 186, 189, 287, 317, 398, 599, 634, 645, 646], "52": [16, 83, 113, 155, 304, 356, 357, 517, 655], "3600": [16, 42, 183, 217, 260, 322, 331, 351, 423, 460, 508, 511, 537, 688], "zeitberechn": 16, "logikbeispiel": 17, "thema": 17, "zwangswert": 18, "prioritat": [18, 117, 224, 333, 339, 340, 471, 527, 592, 600], "korrekt": [18, 52, 58, 60, 62, 92, 162, 165, 169, 172, 191, 219, 262, 264, 267, 329, 446, 463, 508, 573, 642], "ausgegeb": [18, 50, 53, 83, 116, 192, 263, 310, 314, 316, 338, 360, 513, 575, 641], "probl": [18, 71, 165, 169, 218, 227, 249, 326, 332, 347, 485, 508, 622, 641, 642, 643, 646, 648, 649, 652, 655, 656], "hilfsitem": 18, "logg": [18, 20, 22, 30, 42, 44, 45, 52, 54, 55, 58, 66, 76, 103, 107, 113, 115, 116, 136, 138, 154, 157, 158, 160, 170, 188, 200, 203, 217, 219, 232, 243, 249, 253, 254, 255, 263, 288, 293, 322, 338, 361, 368, 382, 397, 434, 545, 554, 562, 565, 575, 577, 583, 584, 585, 586, 588, 589, 591, 595, 612, 613, 615, 624, 638, 641, 646, 649, 652, 653, 654, 655, 656, 670, 672], "info": [18, 20, 40, 50, 52, 54, 55, 66, 76, 83, 107, 113, 115, 116, 137, 148, 160, 164, 170, 176, 177, 191, 195, 198, 200, 203, 215, 217, 219, 227, 231, 232, 233, 243, 253, 254, 255, 256, 257, 263, 264, 267, 269, 288, 293, 305, 319, 322, 338, 344, 347, 359, 368, 388, 398, 403, 406, 433, 434, 446, 460, 463, 508, 519, 527, 538, 565, 572, 575, 577, 585, 586, 588, 591, 593, 595, 612, 616, 624, 638, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 669, 681], "source_it": 18, "return_it": [18, 20, 40, 52, 134, 243, 263, 288, 326, 330, 332, 564, 573, 589, 666], "sourc": [18, 20, 36, 40, 45, 52, 54, 55, 57, 66, 68, 84, 87, 103, 126, 133, 137, 147, 162, 173, 219, 221, 222, 223, 224, 227, 232, 241, 243, 248, 251, 256, 262, 263, 278, 279, 288, 290, 294, 295, 304, 315, 325, 328, 331, 338, 356, 357, 370, 381, 384, 394, 468, 478, 490, 563, 573, 575, 577, 589, 594, 595, 615, 623, 624, 627, 629, 630, 641, 643, 646, 649, 650, 655], "priority": [18, 147, 170, 272, 315, 643, 652], "has_zwang": 18, "search_id": [18, 20], "zwangsstell": 18, "child": [18, 20, 40, 55, 71, 134, 170, 180, 181, 200, 219, 227, 244, 262, 277, 304, 323, 347, 356, 357, 504, 561, 562, 566, 653, 655, 674], "return_childr": [18, 20, 133, 562], "Kein": [18, 71, 414, 496, 524], "zwangsstellungsit": 18, "zwangvalu": 18, "licht": [18, 20, 71, 98, 116, 160, 162, 163, 164, 179, 294, 295, 316, 322, 324, 328, 329, 338, 347, 360, 419, 450, 562, 573], "dynam": [19, 51, 82, 85, 169, 262, 323, 325, 329, 333, 339, 340, 508, 567, 575, 591, 671], "darzustell": [19, 169, 260, 262, 508], "berechn": [19, 21, 83, 113, 115, 165, 184, 187, 189, 229, 262, 268, 306, 307, 325, 330, 398, 498, 499, 506, 508, 519, 571, 573, 576, 577], "utcnow": [19, 40, 148, 599, 634], "255": [19, 43, 53, 112, 141, 152, 160, 162, 167, 170, 187, 193, 194, 200, 211, 213, 247, 257, 298, 305, 306, 307, 330, 337, 363, 375, 379, 419, 434, 450, 601, 602, 604, 607, 608, 609, 655], "300": [19, 148, 162, 170, 178, 188, 200, 206, 207, 229, 234, 241, 245, 270, 310, 326, 329, 332, 341, 343, 351, 362, 382, 383, 389, 394, 401, 406, 412, 416, 417, 436, 443, 444, 447, 448, 452, 461, 485, 494, 501, 503, 511, 514, 520, 526, 527, 530], "einbind": [19, 24, 59, 164, 174, 204, 233, 243, 263, 271, 284, 319, 324, 328, 329, 331, 395, 406, 412, 545, 548, 550, 693], "import": [19, 52, 54, 55, 59, 115, 127, 131, 132, 134, 137, 140, 143, 144, 146, 147, 148, 164, 203, 206, 219, 222, 223, 253, 278, 314, 315, 328, 353, 376, 565, 589, 591, 622, 638, 641, 645, 646, 651, 652, 655, 673], "html": [19, 27, 31, 33, 34, 37, 44, 45, 48, 50, 52, 54, 55, 56, 58, 59, 60, 61, 62, 84, 85, 88, 111, 120, 141, 151, 157, 158, 161, 162, 166, 178, 206, 218, 219, 221, 227, 234, 244, 250, 253, 260, 274, 278, 283, 284, 285, 294, 305, 308, 309, 314, 325, 338, 341, 352, 353, 365, 394, 436, 440, 460, 468, 496, 545, 550, 558, 613, 615, 646, 649, 650, 651, 652, 653, 654, 655, 656, 663, 670, 687, 688], "as": [19, 40, 42, 44, 45, 52, 54, 55, 58, 63, 66, 126, 127, 129, 130, 131, 133, 136, 137, 138, 139, 141, 142, 143, 145, 147, 148, 151, 152, 154, 157, 159, 160, 162, 164, 185, 186, 190, 192, 193, 195, 199, 205, 206, 208, 211, 216, 218, 222, 223, 227, 232, 240, 247, 248, 251, 254, 257, 258, 262, 263, 273, 274, 280, 281, 288, 290, 294, 296, 297, 298, 301, 304, 305, 314, 315, 317, 321, 335, 342, 344, 352, 353, 355, 356, 357, 361, 365, 368, 370, 375, 484, 588, 590, 612, 613, 615, 618, 620, 623, 624, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 662, 669, 670, 686, 691], "nacht": [20, 262, 289, 323, 324, 325, 328, 329, 331, 332, 333, 361, 487, 506, 564, 585], "gedimmt": [20, 106, 450], "einzuschalt": [20, 58, 164], "obwohl": [20, 106, 331, 575], "hellig": [20, 106, 162, 200, 323, 325, 328, 329, 330, 337, 419, 420, 450, 574], "eingeschaltet": [20, 71, 86, 112, 164, 314, 363, 369, 378, 381, 453, 574, 591], "pruft": [20, 53, 64, 83, 90, 170, 302, 314, 354, 382, 406, 502, 508, 520, 566, 632, 641, 671], "global": [20, 43, 44, 45, 50, 52, 53, 54, 55, 56, 57, 60, 71, 76, 83, 88, 92, 113, 123, 130, 139, 151, 157, 162, 170, 180, 222, 251, 274, 288, 289, 322, 326, 327, 330, 332, 412, 427, 428, 454, 471, 483, 484, 486, 508, 589, 606, 610, 612, 613, 614, 615, 616, 619, 638, 643, 646, 652, 653, 655, 656, 670, 688], "lokal": [20, 37, 44, 47, 88, 90, 92, 116, 120, 162, 165, 179, 187, 207, 212, 219, 261, 292, 306, 307, 314, 338, 362, 423, 453, 558, 559, 599, 613, 634, 641], "voraussetz": [20, 79, 97, 119, 289, 314, 325, 371, 405, 545, 550, 641, 674, 675], "uberschreibt": [20, 123, 457, 486, 508], "somit": [20, 92, 98, 103, 116, 169, 189, 192, 215, 238, 243, 325, 328, 347, 486, 508, 573, 576, 622], "gemischt": [20, 106, 162], "Nur": [20, 47, 53, 80, 106, 222, 232, 314, 328, 338, 360, 382, 396, 419, 457, 462, 489, 496, 512, 518, 523, 524, 565, 591, 610, 671, 688], "nachdimm_wert": 20, "nachgedimmt": 20, "itemnam": [20, 58, 71, 100, 187, 323, 360, 519, 568, 570], "activ": [20, 44, 45, 56, 66, 84, 86, 137, 141, 168, 170, 200, 205, 227, 235, 236, 254, 255, 258, 259, 294, 322, 328, 329, 347, 382, 449, 508, 521, 533, 613, 615, 616, 618, 624, 643, 646, 651, 652, 655, 666, 673], "has_local": 20, "schau": [20, 47, 83, 89, 92, 414, 455, 479], "steuerit": 20, "xx": [20, 162, 170, 185, 210, 219, 234, 256, 281, 285, 319, 337, 414, 436, 461, 483, 545, 550], "dimm": [20, 98, 106, 160, 162, 163, 179, 185, 194, 199, 200, 210, 211, 247, 328, 329, 330, 337, 352, 371, 390, 407, 419, 434, 566, 655, 683, 686], "conf": [20, 27, 40, 44, 45, 52, 54, 55, 58, 60, 61, 66, 71, 82, 84, 86, 87, 88, 100, 102, 105, 112, 123, 124, 126, 134, 135, 137, 146, 157, 158, 162, 165, 168, 181, 195, 230, 261, 288, 318, 335, 380, 573, 613, 615, 624, 665, 669, 670, 671, 679, 682], "wed": [20, 27, 84, 120, 569, 592, 646], "objekt": [20, 25, 40, 52, 62, 106, 162, 181, 184, 192, 241, 263, 268, 321, 324, 328, 330, 333, 347, 360, 396, 398, 416, 423, 452, 460, 486, 508, 519, 520, 560, 561, 562, 565, 567, 575, 587, 589, 591, 634, 636], "uzsu": [20, 200, 206, 219, 262, 277, 282, 294, 351, 522, 545, 554, 642, 643, 644, 646, 649, 650, 651, 652, 653, 654, 655, 656, 672, 673], "uzsu_it": [20, 282, 347], "test": [20, 25, 42, 44, 45, 53, 54, 55, 58, 62, 66, 68, 69, 97, 103, 116, 126, 137, 139, 141, 148, 151, 162, 163, 164, 169, 186, 203, 217, 219, 227, 245, 254, 255, 256, 273, 274, 278, 281, 297, 315, 323, 324, 325, 326, 338, 347, 351, 359, 367, 370, 376, 416, 545, 548, 550, 552, 554, 558, 585, 588, 595, 610, 612, 613, 615, 622, 623, 624, 630, 638, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 669, 682, 688, 691], "testlichtb": 20, "95": [20, 192, 198, 622], "93": 20, "testlicht": 20, "85": [20, 398, 643], "83": [20, 211], "uszu": [20, 282, 347], "windstark": [21, 262, 462], "steuer": [21, 162, 169, 171, 191, 201, 207, 238, 244, 264, 267, 289, 291, 337, 369, 370, 371, 376, 378, 381, 388, 443, 489, 508, 511, 537, 545, 548, 550, 558, 644], "dyn": [21, 567, 591], "zenith": [21, 325], "darstell": [21, 106, 117, 162, 170, 203, 219, 289, 329, 339, 340, 347, 446, 456, 463, 592, 600, 622, 641, 652, 682], "dpt": [21, 58, 160, 162, 288, 597, 641, 649, 651, 655, 665, 666], "nachdimm": 21, "leucht": [21, 112, 163, 170, 212, 213, 295, 316, 328, 337, 347, 375, 418, 419, 420], "zeitdat": 21, "blink": [21, 292, 343, 515, 545, 554, 649], "wiki": [21, 47, 86, 92, 106, 159, 198, 206, 253, 312, 313, 345, 351, 373, 545, 547, 548, 550, 552, 554, 558, 669], "problem": [22, 47, 71, 83, 100, 106, 115, 138, 162, 170, 198, 262, 301, 318, 321, 331, 347, 351, 352, 361, 495, 566, 641, 642, 643, 644, 645, 646, 647, 652, 653, 655], "auftret": [22, 42, 83, 92, 351, 583, 588], "branch": [22, 37, 73, 92, 103, 149, 354, 646, 652, 653, 668, 693], "github": [22, 37, 52, 54, 55, 68, 73, 76, 83, 85, 86, 171, 172, 174, 175, 182, 206, 208, 211, 212, 214, 215, 218, 221, 247, 262, 269, 275, 276, 278, 279, 282, 283, 284, 293, 298, 314, 337, 352, 353, 355, 356, 357, 359, 367, 511, 533, 646, 647, 649, 650, 652, 653, 669, 674, 688, 693], "notwendigerweis": [22, 693], "stabil": [22, 46, 47, 56, 79, 287, 674, 693], "wechseln": [22, 47, 68, 92, 156, 162, 303, 381, 414, 496, 524, 628, 652, 653, 654, 655, 656], "skript": [22, 27, 42, 73, 83, 85, 89, 90, 92, 108, 109, 115, 153, 170, 187, 189, 192, 203, 222, 223, 314, 410, 587, 590, 593, 594, 627, 630, 676, 677, 678, 680, 688, 693], "kopiert": [22, 25, 27, 37, 42, 60, 83, 85, 113, 162, 172, 178, 203, 219, 302, 330, 333, 346, 354, 496, 523, 566, 682, 687], "namenskonflikt": [22, 97], "entsteht": [22, 41, 97, 262, 631], "_dev": 22, "angehangt": [22, 97, 169, 256, 314, 329, 507, 573, 641], "xyz": [22, 54, 55, 126, 130, 269, 650], "xyz_dev": 22, "folgendermass": [22, 25, 42, 47, 53, 64, 83, 84, 87, 103, 106, 110, 113, 116, 125, 131, 155, 212, 213, 225, 265, 289, 293, 304, 314, 323, 328, 561, 563, 566, 567, 573, 577, 584, 585, 591, 593, 595, 596, 597, 603, 638, 682, 683, 688], "install_plugin_from_develop": [22, 655], "erfolgreich": [22, 42, 50, 71, 83, 92, 154, 164, 192, 330, 360, 381, 573, 588, 599, 612, 628, 688], "endet": [22, 164, 262, 287, 651, 652, 653, 654, 655, 656], "plugin_nam": [22, 52, 83, 86, 87, 98, 103, 111, 123, 134, 144, 160, 162, 164, 166, 167, 169, 172, 173, 175, 176, 180, 181, 182, 183, 185, 186, 188, 191, 192, 193, 194, 195, 196, 198, 201, 202, 205, 206, 207, 208, 214, 215, 217, 218, 219, 221, 222, 227, 228, 229, 230, 231, 233, 234, 235, 236, 237, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 253, 254, 255, 256, 258, 263, 264, 267, 271, 276, 277, 283, 296, 299, 300, 306, 307, 308, 309, 310, 313, 317, 319, 322, 339, 340, 346, 347, 351, 352, 355, 359, 361, 362, 365, 368, 370, 597, 646, 654, 671, 674, 684], "ursprung": [22, 106, 162, 184, 219, 229, 268, 314, 325, 326, 328, 331, 332, 333, 508, 565, 591, 641, 682], "kopi": [22, 26, 47, 58, 59, 77, 83, 92, 107, 113, 115, 116, 164, 169, 219, 226, 244, 282, 314, 396, 472, 561, 566, 628, 682, 685, 687], "alternativ": [22, 47, 54, 55, 58, 62, 79, 82, 83, 86, 87, 92, 112, 122, 167, 169, 189, 192, 200, 226, 232, 233, 314, 315, 323, 328, 329, 330, 332, 347, 354, 366, 369, 375, 398, 445, 485, 497, 561, 567, 568, 570, 573, 591, 638, 643, 645, 677, 682, 688, 693], "vorgeh": [22, 27, 85, 97, 302, 331, 373, 586, 589], "schritt": [22, 28, 60, 62, 81, 92, 98, 255, 266, 328, 349, 515, 688], "durchzufuhr": [22, 91, 92, 255, 266, 381, 671, 688], "www": [22, 27, 45, 54, 55, 69, 82, 83, 84, 85, 88, 111, 113, 141, 161, 176, 183, 187, 192, 200, 202, 208, 209, 211, 215, 219, 234, 235, 236, 247, 253, 254, 260, 262, 273, 275, 281, 283, 285, 298, 312, 313, 334, 344, 359, 365, 371, 409, 436, 439, 440, 460, 472, 496, 545, 550, 558, 599, 615, 641, 651, 652, 653, 654, 655, 656, 674, 675, 684, 688], "com": [22, 45, 47, 52, 54, 55, 73, 76, 83, 84, 85, 152, 161, 162, 164, 171, 172, 174, 175, 176, 179, 182, 192, 200, 206, 208, 211, 212, 214, 215, 217, 218, 219, 221, 222, 225, 229, 234, 235, 236, 241, 247, 254, 262, 269, 272, 273, 275, 276, 278, 282, 283, 284, 296, 298, 301, 305, 315, 334, 338, 344, 352, 353, 355, 356, 357, 358, 359, 361, 365, 366, 368, 376, 388, 416, 424, 425, 430, 436, 445, 472, 497, 516, 529, 530, 532, 545, 550, 558, 599, 615, 645, 646, 647, 649, 669, 688], "entpackt": [22, 172, 628], "entpack": 22, "sollt": [22, 27, 31, 33, 34, 37, 39, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56, 58, 60, 62, 67, 68, 69, 71, 73, 76, 77, 79, 82, 83, 85, 86, 88, 89, 90, 92, 98, 100, 104, 106, 107, 110, 111, 113, 115, 117, 123, 155, 162, 164, 165, 169, 170, 189, 191, 194, 196, 200, 201, 207, 210, 212, 213, 214, 219, 229, 230, 232, 238, 241, 243, 249, 250, 261, 262, 264, 267, 276, 283, 284, 292, 304, 306, 307, 309, 313, 314, 319, 321, 325, 326, 328, 329, 330, 331, 332, 333, 338, 339, 340, 346, 347, 351, 360, 362, 363, 367, 369, 371, 381, 412, 428, 446, 453, 463, 486, 495, 507, 508, 514, 573, 580, 584, 588, 589, 590, 592, 593, 600, 602, 608, 613, 615, 621, 625, 628, 635, 638, 641, 643, 644, 645, 646, 652, 653, 654, 655, 656, 674, 682, 685, 686, 688, 691, 693], "existiert": [22, 27, 58, 82, 83, 85, 103, 107, 111, 113, 159, 192, 314, 328, 338, 508, 545, 547, 548, 550, 552, 554, 558, 563, 573, 589, 596, 678], "zuerst": [22, 27, 37, 42, 52, 58, 73, 82, 85, 92, 97, 102, 116, 212, 213, 226, 244, 283, 292, 323, 328, 332, 338, 367, 381], "seiteneffekt": [22, 71], "bestandteil": [22, 212, 531, 585, 630], "unterordn": [22, 37, 51, 52, 53, 83, 85, 169, 423], "entstand": 22, "Nun": [22, 27, 59, 68, 71, 82, 83, 88, 90, 92, 98, 116, 125, 164, 188, 243, 263, 328, 622, 638, 682, 683, 688], "develop": [23, 36, 37, 47, 53, 54, 55, 78, 107, 113, 115, 125, 141, 154, 162, 163, 172, 208, 211, 215, 218, 265, 292, 320, 337, 344, 357, 359, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 508, 513, 514, 515, 516, 518, 521, 526, 527, 537, 538, 545, 548, 550, 552, 554, 558, 610, 612, 638, 641, 643, 645, 646, 651, 654, 668, 681, 691, 693], "installi": [23, 68, 79, 90, 92, 222, 223, 225, 279, 284, 302, 370, 496, 627, 629, 630, 687, 693], "global_struct": [24, 97], "templat": [24, 31, 33, 34, 44, 48, 52, 53, 56, 58, 59, 60, 61, 62, 107, 114, 115, 126, 134, 151, 184, 212, 213, 235, 236, 250, 254, 265, 268, 318, 320, 328, 330, 333, 352, 353, 367, 496, 508, 523, 577, 578, 590, 603, 613, 625, 641, 642, 646, 648, 650, 651, 655, 665, 674, 687], "gestellt": [24, 58, 62, 120, 162, 169, 191, 201, 238, 264, 267, 295, 325, 329, 330, 333, 338, 370, 381, 417, 460, 508, 545, 558, 585, 612, 641], "referenziert": [24, 25, 39, 48, 49, 56, 97, 111, 115, 116, 117, 169, 181, 217, 263, 323, 325, 326, 333, 506, 508, 561, 592, 690], "erkennbar": [24, 77], "unterscheid": [24, 62, 97, 162, 210, 262, 323, 512, 682, 687], "sub": [24, 43, 45, 53, 126, 133, 212, 213, 227, 284, 289, 379, 595, 601, 602, 603, 604, 607, 608, 609, 615, 641, 645, 646, 655, 693], "deklaration": [24, 58, 178, 326, 329, 333, 508], "gleichwert": 24, "belieb": [24, 42, 46, 62, 74, 79, 85, 97, 98, 102, 105, 106, 112, 116, 162, 167, 169, 192, 229, 263, 321, 323, 324, 325, 326, 329, 332, 333, 347, 351, 395, 400, 408, 435, 441, 464, 467, 508, 522, 531, 579, 622, 693], "verschachtelt": [24, 53, 106, 603], "sub_struct1": 24, "item_in_struct": 24, "child_in_struct": 24, "foo": [24, 40, 43, 53, 103, 126, 160, 169, 170, 171, 189, 191, 192, 201, 212, 213, 218, 222, 263, 264, 267, 269, 328, 329, 331, 360, 380, 396, 398, 406, 416, 426, 427, 434, 445, 457, 460, 471, 479, 488, 491, 504, 508, 512, 519, 520, 522, 563, 577, 579, 580, 601, 602, 604, 607, 608, 609, 645, 646, 663], "sub_struct2": 24, "main_struct1": 24, "main_struct2": 24, "test1": 24, "beacht": [24, 43, 53, 58, 60, 62, 71, 80, 100, 106, 112, 115, 116, 123, 124, 162, 181, 210, 215, 256, 260, 263, 283, 289, 321, 326, 328, 329, 330, 332, 333, 339, 340, 359, 362, 406, 412, 487, 510, 545, 558, 561, 570, 573, 576, 589, 596, 598, 601, 602, 603, 604, 608, 609, 641, 671, 672, 674, 675, 693], "ubergeordnet": [24, 53, 219, 329, 330, 333, 562, 566, 603], "wegen": [24, 162, 165, 641], "regel": [24, 28, 97, 192, 194, 200, 219, 263, 306, 307, 316, 325, 331, 333, 382, 383, 463, 486, 508], "first": [24, 44, 54, 55, 66, 71, 82, 97, 126, 130, 141, 148, 152, 157, 162, 180, 185, 190, 199, 206, 211, 227, 243, 248, 276, 278, 280, 288, 294, 296, 301, 312, 315, 326, 332, 352, 353, 361, 395, 612, 613, 618, 624, 643, 646, 648, 649, 651, 652, 653, 655, 656, 665, 667, 668, 686], "win": [24, 97, 210, 279], "gewinnt": [24, 53, 97, 105, 603], "solch": [24, 53, 77, 83, 85, 86, 92, 98, 102, 123, 165, 169, 232, 293, 321, 323, 325, 545, 547, 548, 550, 552, 554, 558, 596, 603, 643, 644, 645, 646, 682, 691], "Auch": [24, 52, 73, 82, 83, 86, 88, 98, 103, 169, 189, 328, 351, 359, 453, 561, 572, 576, 586], "gilt": [24, 50, 53, 54, 55, 56, 68, 71, 84, 85, 92, 97, 103, 106, 115, 170, 179, 184, 192, 210, 232, 252, 255, 256, 348, 357, 360, 366, 536, 589, 596, 603, 686], "weshalb": [24, 83, 328, 329, 359, 591], "ignoriert": [24, 43, 53, 106, 116, 169, 189, 212, 213, 295, 322, 325, 326, 328, 332, 381, 395, 398, 434, 599, 601, 602, 604, 607, 608, 609, 634, 641], "gleichranging": 24, "merg": [24, 92, 97, 126, 643, 646, 655], "kombiniert": [24, 37, 68, 162, 224, 316, 326, 328, 479, 671], "zumind": [24, 83, 92, 97, 306, 307, 362, 440, 567, 583, 591, 688], "deklariert": [24, 50, 61, 62, 104, 116, 169, 230, 249, 263, 289, 322, 323, 325, 326, 328, 329, 331, 347, 412, 508, 642], "test2": 24, "aufgrund": [24, 79, 82, 85, 92, 165, 170, 189, 322, 325, 333, 545, 547, 548, 550, 552, 554, 558, 575, 577, 621, 628, 671, 672], "gemass": [24, 27, 92, 178, 192, 261, 262, 285, 310, 314, 367], "vorkommt": [24, 123, 189, 256, 398], "ebenfall": [24, 39, 49, 58, 83, 92, 98, 162, 168, 178, 188, 215, 232, 263, 283, 285, 321, 325, 326, 328, 330, 333, 337, 347, 369, 371, 381, 485, 573, 641, 642], "Ob": [24, 71, 261, 642], "spielt": [24, 164, 169, 219, 295, 314, 325, 330, 453, 519], "roll": [24, 169, 219, 325, 330, 331, 519], "trag": [24, 83, 102, 106, 112, 124, 259, 428, 585, 687], "fuhrt": [24, 42, 64, 71, 103, 115, 116, 117, 165, 169, 181, 194, 243, 260, 262, 266, 289, 314, 326, 328, 329, 330, 331, 349, 373, 381, 545, 547, 548, 550, 552, 554, 558, 577, 588, 589, 592, 596, 600, 630, 674], "struct2": [24, 53, 603], "W\u00e4re": 24, "eingebund": [24, 50, 51, 52, 57, 65, 85, 123, 162, 166, 169, 184, 191, 200, 201, 238, 243, 244, 264, 267, 268, 284, 292, 319, 323, 328, 329, 333, 351, 362, 423, 462, 496, 523, 575, 596, 693], "verschmelz": 24, "fehlt": [24, 50, 71, 115, 162, 261], "teil": [25, 37, 38, 41, 46, 50, 52, 64, 93, 96, 97, 100, 106, 112, 114, 116, 154, 169, 170, 189, 191, 201, 219, 263, 264, 267, 279, 293, 314, 321, 323, 325, 328, 330, 331, 345, 357, 360, 382, 398, 401, 423, 472, 554, 555, 565, 591, 612, 630, 681, 682, 688, 690], "baum": [25, 97, 289, 295, 561], "fensterkontakt": [25, 162, 289], "ausgewertet": [25, 189, 351, 569, 572, 573, 592, 632, 682], "hopp": [25, 200], "fenstergriff": [25, 200, 289, 566], "ergeb": [25, 79, 92, 260, 262, 338, 561], "stati": [25, 112, 124, 219, 220, 244, 289, 508, 632, 671, 682], "verschloss": [25, 338], "gekippt": [25, 289], "off": [25, 53, 54, 57, 111, 141, 152, 155, 160, 161, 162, 169, 173, 177, 190, 195, 198, 200, 205, 211, 218, 227, 234, 247, 248, 249, 285, 288, 290, 304, 325, 330, 338, 342, 356, 357, 360, 364, 369, 370, 375, 389, 434, 436, 449, 453, 488, 508, 537, 574, 579, 609, 635, 652, 653, 654, 666, 688], "auswert": [25, 189, 229, 398, 573, 674], "losung": [25, 46, 67, 191, 201, 264, 267], "wenig": [25, 58, 82, 92, 106, 203, 326, 330], "aufwand": [25, 351, 622], "normal": [25, 42, 46, 53, 58, 79, 82, 83, 87, 107, 125, 160, 170, 227, 262, 288, 289, 292, 296, 314, 321, 329, 331, 338, 347, 359, 414, 479, 508, 521, 563, 573, 585, 591, 596, 598, 610, 622, 630, 632, 638, 653, 682], "gelost": 25, "buero": [25, 112, 155, 164, 168, 304, 339, 340, 356, 357, 561, 591, 682], "reed1": 25, "reed2": 25, "anpass": [25, 60, 68, 83, 106, 107, 162, 189, 191, 201, 219, 220, 222, 223, 233, 244, 264, 267, 270, 271, 328, 401, 419, 420, 561, 641, 671, 672, 674, 685, 688], "gewiss": [25, 100, 189, 210, 329, 331, 573], "erfordert": [25, 121, 224, 292, 359], "fehlertracht": 25, "Dann": [25, 53, 62, 67, 69, 73, 82, 88, 92, 102, 106, 116, 120, 123, 162, 244, 293, 314, 338, 566, 573, 589, 596, 599, 634, 685, 688], "geschwist": 25, "acht": [25, 46, 83, 85, 106, 112, 123, 162, 187, 219, 285, 302, 326, 332, 333, 461, 483, 490, 561, 630, 678], "angesproch": [25, 42, 52, 58, 62, 67, 97, 200, 213, 249, 263, 284, 308, 309, 316, 371, 379, 382, 384, 406, 561, 585, 591], "erwartet": [25, 27, 82, 92, 122, 169, 226, 256, 261, 331, 375, 599, 617, 634, 671], "itemreferenz": 25, "liess": 25, "vereinfach": [25, 170, 289, 293, 330, 599, 618, 634], "ind": [25, 46, 56, 58, 98, 102, 106, 116, 169, 187, 207, 212, 213, 217, 226, 233, 262, 263, 265, 289, 326, 332, 333, 351, 495, 496, 523, 545, 550, 566, 589, 595, 622, 638, 674, 677], "detailliert": [25, 56, 61, 83, 103, 115, 166, 167, 169, 172, 178, 188, 189, 196, 217, 229, 237, 243, 244, 263, 319, 322, 346, 347, 362, 367, 381, 545, 547, 548, 550, 552, 554, 558, 671, 674], "bequ": [26, 71, 96, 329], "betriebssyst": [27, 28, 42, 71, 79, 92, 580], "umzuzieh": 27, "beschreib": [27, 31, 32, 39, 43, 46, 47, 48, 54, 55, 68, 81, 83, 89, 92, 93, 101, 103, 104, 106, 115, 117, 125, 131, 162, 168, 172, 189, 192, 207, 212, 213, 224, 225, 226, 228, 262, 272, 289, 291, 293, 313, 324, 334, 337, 338, 352, 359, 373, 545, 547, 548, 550, 552, 554, 558, 560, 561, 562, 567, 573, 575, 577, 579, 591, 592, 597, 598, 600, 601, 602, 604, 606, 607, 608, 609, 610, 614, 619, 621, 625, 630, 635, 638, 641, 674, 681, 686, 690, 693], "work": [27, 37, 40, 44, 45, 46, 66, 113, 126, 136, 137, 138, 143, 144, 147, 152, 157, 158, 170, 186, 190, 193, 211, 218, 221, 227, 231, 234, 235, 247, 262, 278, 280, 297, 312, 315, 341, 352, 353, 355, 356, 357, 365, 436, 545, 550, 613, 615, 624, 632, 641, 643, 645, 646, 648, 651, 653, 655, 660, 665], "progress": [27, 190, 227], "komplettanleit": [27, 68, 81, 82, 92, 103, 302, 630, 643, 645, 651, 674, 693], "debian": [27, 71, 73, 79, 83, 84, 89, 91, 92, 165, 225, 370, 628, 630, 688, 693], "rudimentar": [27, 64, 671], "anleit": [27, 73, 81, 91, 222, 223, 255, 266, 278, 349, 367, 533, 688], "word": [27, 71, 86, 92, 103, 110, 160, 205, 213, 215, 239, 304, 308, 309, 314, 315, 328, 333, 339, 340, 360, 592, 622, 652, 653, 655, 656, 670, 671, 673, 693], "Den": [27, 52, 54, 55, 82, 292, 337, 512, 517, 532, 563, 584, 595, 625, 627], "mqtt": [27, 43, 48, 63, 67, 78, 91, 92, 110, 115, 116, 118, 282, 284, 291, 337, 371, 479, 489, 511, 533, 537, 545, 548, 550, 552, 587, 611, 617, 620, 621, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 691], "brok": [27, 45, 63, 76, 91, 121, 155, 179, 252, 272, 292, 304, 356, 357, 371, 454, 595, 615, 617, 620, 623, 645, 649, 650, 651, 666, 674], "braucht": [27, 79, 82, 85, 98, 106, 282, 283, 314, 363, 589, 638, 688], "ubernomm": [27, 62, 71, 83, 85, 92, 102, 106, 162, 163, 233, 321, 328, 331, 351, 412, 508, 573, 641, 682, 689], "generiert": [27, 51, 52, 76, 109, 178, 212, 213, 226, 255, 316, 349, 373, 466, 496, 504, 521, 523, 621, 625, 626, 682, 686, 688], "daemon": [27, 39, 55, 69, 71, 79, 83, 84, 86, 89, 90, 91, 111, 165, 168, 197, 250, 258, 259, 434, 453, 459, 545, 548, 550, 617, 630, 641, 646, 651, 653, 666], "unterstutz": [27, 31, 33, 34, 39, 45, 46, 53, 56, 68, 78, 79, 86, 106, 121, 122, 124, 131, 164, 165, 170, 187, 204, 210, 212, 213, 219, 255, 261, 265, 266, 279, 284, 287, 289, 291, 292, 293, 302, 349, 351, 362, 363, 373, 377, 393, 396, 401, 412, 434, 450, 453, 458, 461, 471, 485, 492, 496, 509, 523, 534, 538, 545, 548, 550, 552, 553, 554, 555, 558, 561, 563, 595, 610, 615, 616, 626, 632, 641, 671, 672, 674, 675, 682, 684, 689, 692, 693], "smb": [27, 88], "shar": [27, 88, 660, 688], "local": [27, 37, 40, 42, 44, 45, 48, 50, 54, 55, 56, 57, 68, 71, 83, 87, 88, 89, 90, 92, 103, 108, 113, 119, 120, 125, 141, 148, 151, 152, 157, 158, 161, 162, 164, 179, 184, 185, 187, 192, 195, 199, 200, 205, 210, 212, 213, 215, 217, 220, 225, 230, 248, 251, 252, 255, 262, 265, 266, 268, 273, 278, 283, 289, 302, 309, 311, 314, 334, 338, 348, 349, 357, 359, 365, 366, 417, 432, 451, 477, 527, 588, 591, 613, 615, 628, 629, 630, 638, 641, 644, 646, 649, 652, 653, 655, 677, 678, 679, 688], "eingerichtet": [27, 44, 52, 83, 90, 92, 103, 168, 170, 289, 370, 596, 613, 630], "desktop": [27, 47, 82, 162, 527], "system": [27, 78, 79, 80, 82, 86, 90, 91, 92, 103, 110, 118, 155, 174, 175, 176, 178, 183, 223, 227, 248, 261, 298, 304, 328, 350, 386, 393, 419, 420, 434, 443, 545, 548, 550, 580, 617, 621, 622, 626, 632, 643, 646, 651], "gemountet": 27, "eventuell": [27, 68, 92, 115, 162, 210, 222, 223, 329, 562, 567, 591, 641], "sudo": [27, 37, 44, 73, 83, 84, 85, 86, 87, 88, 89, 90, 92, 103, 154, 157, 161, 185, 198, 199, 200, 205, 210, 225, 239, 245, 253, 255, 260, 278, 281, 285, 287, 299, 309, 335, 338, 341, 344, 370, 508, 612, 613, 628, 630, 667, 678, 688], "Am": [27, 71, 82, 97, 219, 316, 642, 682], "best": [27, 67, 82, 86, 106, 162, 218, 219, 247, 290, 361, 630, 652, 665], "anleg": [27, 82, 97, 162, 330, 347, 362, 373, 396, 585, 682, 688, 693], "ort": [27, 82, 98, 113, 131, 365, 394, 462, 468, 479, 532, 671], "verschob": [27, 241, 674], "unterverzeichnis": [27, 32, 48, 52, 55, 73, 85, 92, 102, 103, 111, 123, 508, 614, 619, 625, 630, 678, 687], "owf": [27, 80, 87, 261, 663], "bish": [27, 43, 53, 64, 76, 83, 97, 106, 111, 112, 116, 123, 192, 200, 212, 233, 284, 293, 306, 307, 314, 337, 370, 556, 557, 568, 570, 585, 601, 602, 604, 607, 608, 609, 611, 617, 641, 671, 672, 682, 686, 689, 693], "gui": [27, 42, 43, 52, 53, 55, 66, 71, 82, 97, 101, 102, 103, 104, 117, 120, 125, 210, 212, 213, 226, 265, 289, 300, 302, 419, 420, 479, 537, 563, 574, 577, 585, 590, 592, 600, 601, 602, 603, 604, 607, 608, 609, 610, 614, 617, 618, 619, 624, 632, 641, 643, 645, 646, 649, 674, 677, 680, 693], "smarthmeng": 27, "folg": [27, 47, 56, 82, 86, 89, 97, 106, 115, 165, 184, 217, 244, 268, 283, 323, 331, 332, 351, 480, 545, 547, 548, 550, 552, 554, 558, 563, 583, 586], "py": [27, 39, 42, 43, 47, 48, 50, 53, 54, 55, 58, 60, 61, 62, 64, 69, 83, 87, 89, 103, 106, 108, 113, 124, 125, 126, 127, 129, 132, 134, 135, 141, 146, 150, 151, 162, 170, 178, 182, 183, 186, 189, 191, 192, 195, 198, 199, 201, 205, 206, 207, 218, 219, 221, 229, 234, 238, 239, 241, 243, 245, 248, 257, 260, 261, 263, 264, 267, 269, 278, 282, 283, 294, 298, 301, 314, 334, 335, 338, 344, 351, 352, 355, 356, 357, 359, 364, 365, 481, 482, 505, 522, 562, 588, 591, 595, 610, 614, 619, 621, 622, 623, 630, 635, 638, 639, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 664, 665, 666, 667, 668, 669, 670, 674, 675, 676, 682, 686, 690], "inhalt": [27, 28, 32, 43, 47, 50, 52, 53, 54, 55, 56, 58, 59, 61, 62, 83, 85, 92, 93, 98, 103, 106, 115, 154, 164, 192, 219, 223, 243, 256, 260, 279, 314, 330, 338, 400, 408, 435, 441, 464, 467, 472, 508, 513, 563, 599, 601, 602, 604, 607, 608, 609, 612, 622, 625, 641, 674, 675, 681, 688, 693], "gleichnam": [27, 76, 120, 123], "sqlite3": [27, 83, 111, 113, 186, 187, 223, 396, 646, 653], "mysql": [27, 83, 113, 186, 187, 223, 224, 287, 396, 545, 554, 653], "rat": [27, 83, 235, 291, 337, 643, 644, 647, 648, 655], "zieh": [27, 291, 337, 644, 647, 648, 688], "vorgang": [27, 82, 92, 115, 326, 571, 628, 671], "dauert": [27, 82, 83, 314, 508, 688], "zeit": [27, 52, 58, 79, 82, 83, 92, 96, 102, 103, 104, 116, 155, 164, 165, 167, 170, 181, 184, 187, 188, 189, 192, 200, 215, 220, 232, 233, 243, 261, 262, 263, 268, 293, 299, 300, 304, 306, 307, 308, 309, 314, 324, 325, 329, 330, 331, 338, 347, 359, 377, 382, 383, 394, 396, 401, 405, 406, 412, 419, 420, 421, 434, 442, 453, 460, 462, 468, 476, 477, 479, 485, 486, 492, 493, 500, 503, 508, 510, 512, 518, 519, 532, 562, 573, 575, 580, 596, 628, 636, 672, 674], "gigabyt": 27, "executor_script": [27, 203, 410], "logdatei": [27, 52, 92, 103, 115, 116, 119, 178, 188, 200, 263, 397, 463, 508, 585, 586, 593, 612], "verzeichiss": 27, "plugings_cach": 27, "leer": [27, 43, 53, 56, 58, 59, 60, 62, 82, 169, 187, 200, 255, 289, 292, 304, 314, 328, 329, 330, 331, 376, 382, 399, 411, 485, 489, 512, 519, 520, 561, 606, 610, 683], "verzeichnisinhalt": 27, "wahl": [27, 42, 71, 82, 100, 162, 163, 164, 172, 181, 262, 314, 688], "getestet": [27, 69, 71, 79, 82, 83, 85, 162, 163, 165, 167, 169, 171, 178, 192, 201, 203, 210, 222, 223, 255, 261, 284, 285, 293, 308, 309, 319, 323, 325, 346, 360, 369, 370, 371, 381, 483, 507, 545, 548, 641, 642, 649, 671, 672, 674, 675, 688], "angeschloss": [27, 79, 87, 170, 204, 261, 337, 351, 401, 402, 412, 476, 498, 499, 514, 518, 522], "peripheri": [27, 554, 555, 617, 618, 692], "funktioniert": [27, 58, 67, 71, 79, 82, 83, 92, 100, 106, 111, 124, 156, 162, 164, 169, 171, 181, 187, 291, 302, 303, 332, 337, 339, 340, 343, 359, 363, 369, 371, 391, 436, 485, 496, 524, 545, 550, 554, 562, 566, 573, 641, 642, 688], "pruf": [27, 43, 47, 52, 53, 71, 92, 155, 164, 232, 262, 304, 306, 307, 512, 591, 608, 638, 641, 681], "blick": [27, 52, 73, 80, 83, 111, 166, 169, 229, 321], "plugis": [27, 373], "Sind": [27, 92, 189, 295, 333, 400, 441, 464, 467], "plot": [27, 155, 178, 223, 304, 356, 357, 646, 665, 682, 687], "dns": [27, 44, 69, 85, 121, 613], "erreichbar": [27, 120, 162, 197, 314, 337, 419, 420, 641, 642], "prinzipiell": [27, 83, 92, 97, 115, 116, 167, 261, 324, 330, 331, 591, 688], "kommunikation": [27, 28, 45, 67, 69, 83, 84, 85, 86, 120, 121, 122, 162, 163, 178, 179, 192, 194, 200, 215, 219, 220, 226, 284, 291, 302, 309, 337, 351, 359, 367, 370, 371, 376, 401, 414, 415, 434, 454, 479, 480, 488, 489, 498, 499, 511, 517, 527, 533, 537, 545, 548, 549, 550, 551, 552, 615, 616, 617, 621, 622, 693], "devic": [27, 45, 48, 54, 55, 66, 67, 78, 87, 90, 106, 121, 138, 160, 164, 166, 173, 176, 179, 182, 192, 193, 196, 198, 199, 200, 210, 212, 213, 215, 218, 227, 229, 231, 244, 248, 258, 259, 261, 265, 273, 276, 278, 289, 290, 297, 301, 305, 306, 307, 312, 334, 347, 352, 359, 367, 370, 371, 376, 382, 393, 401, 406, 417, 420, 430, 439, 466, 471, 477, 479, 483, 489, 504, 507, 511, 521, 537, 545, 548, 549, 550, 551, 552, 553, 563, 566, 615, 618, 622, 623, 624, 641, 643, 644, 645, 646, 648, 649, 650, 651, 653, 654, 655, 656, 665, 666, 671, 674, 683, 686, 692, 693], "musst": [27, 44, 51, 71, 92, 97, 111, 115, 270, 271, 328, 563, 585, 595, 613, 616, 687], "rm": [27, 85, 165, 210, 630, 667], "Zum": [27, 51, 52, 53, 56, 84, 89, 92, 95, 102, 107, 124, 155, 162, 164, 226, 304, 324, 326, 329, 462, 572, 622, 628, 630, 693], "abschluss": [27, 52, 82, 83, 92, 187, 212, 213, 226, 349, 573, 576], "betreib": [28, 77, 89, 90, 285], "nehm": [28, 52, 293], "schutz": [28, 306, 307, 688], "Ihrer": [28, 106, 164, 165, 172], "perso": 28, "nlich": 28, "ernst": [28, 115, 189], "Wir": [28, 52], "behandeln": [28, 595], "Ihre": [28, 47, 92, 164, 165, 230, 314, 362, 434], "personenbezog": 28, "vertraulich": 28, "gesetz": [28, 77, 398, 599, 634], "datenschutzvorschrift": 28, "unserer": 28, "websit": [28, 77, 84, 106, 207, 224, 225, 334, 361, 424, 425, 612, 628, 688], "angab": [28, 52, 53, 58, 60, 62, 64, 67, 83, 89, 97, 112, 115, 116, 117, 123, 155, 169, 170, 184, 187, 189, 200, 222, 232, 256, 261, 263, 268, 289, 293, 304, 323, 324, 325, 326, 328, 329, 330, 332, 333, 338, 351, 381, 397, 410, 412, 423, 427, 428, 434, 496, 507, 508, 514, 519, 523, 527, 561, 562, 563, 568, 569, 570, 573, 574, 575, 576, 577, 583, 585, 592, 599, 600, 603, 609, 622, 634, 641, 671, 682, 693], "mo": [28, 77, 347, 585, 646], "glich": [28, 77], "unseren": 28, "beispielsweis": [28, 58, 60, 74, 83, 92, 98, 103, 169, 178, 179, 191, 196, 197, 204, 243, 264, 267, 321, 323, 324, 325, 326, 328, 329, 330, 331, 333, 347, 360, 376, 381, 412, 508, 572, 575, 593], "anschrift": 28, "erhob": [28, 260], "stet": [28, 77], "freiwill": 28, "basis": [28, 47, 48, 52, 68, 85, 103, 120, 189, 196, 215, 219, 247, 263, 271, 274, 316, 325, 368, 434, 456, 485, 518, 621, 653, 674], "ausdru": 28, "cklich": 28, "zustimm": [28, 77], "weitergegeb": [28, 52, 229, 304, 325], "datenu": 28, "bertrag": 28, "internet": [28, 53, 79, 84, 161, 185, 219, 244, 247, 256, 292, 338, 368, 373, 381, 558, 559, 610, 641, 646, 688], "sicherheitslu": 28, "cken": 28, "aufweis": [28, 565, 591], "lu": [28, 96, 104, 195, 196, 269], "ckenlos": 28, "zugriff": [28, 44, 45, 52, 84, 86, 87, 100, 119, 120, 159, 162, 170, 189, 203, 220, 222, 244, 256, 270, 271, 285, 333, 338, 360, 376, 380, 382, 391, 427, 428, 434, 443, 446, 483, 491, 495, 496, 524, 528, 533, 545, 548, 550, 558, 559, 561, 564, 594, 596, 599, 612, 613, 615, 616, 622, 636, 641, 644, 671, 682, 688, 690, 693], "provid": [28, 44, 52, 54, 55, 63, 127, 130, 133, 138, 141, 160, 173, 176, 183, 186, 227, 245, 253, 258, 288, 290, 305, 334, 342, 344, 355, 372, 613, 620, 643, 647, 648, 649, 652, 655, 660], "erhebt": 28, "speichert": [28, 164, 232, 295, 434], "genannt": [28, 116, 187, 212, 213, 219, 314, 326, 332, 688, 693], "Ihr": [28, 47, 165], "bermittelt": [28, 77], "browsertyp": 28, "browserversion": 28, "referr": 28, "url": [28, 44, 45, 47, 53, 54, 55, 83, 85, 90, 120, 141, 150, 155, 157, 158, 161, 164, 170, 176, 198, 215, 218, 219, 222, 223, 225, 228, 260, 262, 272, 275, 296, 304, 312, 313, 314, 315, 316, 318, 338, 346, 359, 360, 362, 370, 375, 388, 407, 409, 416, 423, 441, 453, 504, 507, 512, 518, 521, 528, 530, 610, 612, 613, 615, 641, 646, 647, 648, 649, 653, 654, 655, 666, 670, 674, 688], "hostnam": [28, 43, 44, 45, 53, 85, 88, 122, 141, 152, 157, 158, 165, 170, 198, 240, 276, 278, 282, 283, 312, 313, 377, 380, 382, 383, 393, 406, 417, 426, 427, 428, 433, 434, 440, 442, 451, 453, 461, 469, 470, 475, 477, 488, 535, 536, 599, 601, 602, 604, 607, 608, 609, 613, 615, 643], "serveranfrag": 28, "person": [28, 203, 336, 394, 430, 462, 468, 472, 510, 516], "zuordenbar": 28, "zusammenfu": 28, "hrung": 28, "datenquell": [28, 262, 431, 462], "behalt": [28, 98, 255, 260, 585, 596], "nachtra": 28, "zupru": 28, "fen": 28, "anhaltspunkt": [28, 77], "fu": [28, 671], "rechtswidr": [28, 77], "gru": 28, "nden": [28, 77], "Sicherheit": [28, 241, 249, 688], "anfrag": [28, 58, 164, 189, 230, 256, 375, 461, 510, 525, 617, 622, 688], "seitenbetreib": [28, 77], "sselt": 28, "verbind": [28, 36, 45, 48, 52, 71, 78, 85, 86, 106, 121, 122, 155, 162, 164, 169, 170, 172, 178, 179, 181, 201, 244, 249, 256, 259, 283, 292, 304, 308, 309, 316, 349, 351, 362, 370, 380, 381, 391, 393, 400, 405, 408, 423, 424, 425, 435, 440, 441, 447, 457, 464, 467, 480, 500, 507, 512, 517, 534, 595, 615, 621, 626, 641, 642, 688], "adresszeil": 28, "wechselt": [28, 42, 58, 219, 233, 314, 333, 572, 574], "schloss": [28, 458], "symbol": [28, 227, 284, 294, 315, 316, 375, 682], "browserzeil": 28, "ko": [28, 77, 451], "nnen": [28, 77], "bermitteln": 28, "mitgeles": 28, "rahm": [28, 36, 48, 51, 52, 53, 54, 55, 244, 260, 371, 612, 613, 615, 621], "impressumspflicht": 28, "vero": 28, "ffentlicht": 28, "kontaktdat": 28, "bersend": 28, "werbung": 28, "informationsmateriali": 28, "hiermit": [28, 162, 690], "widersproch": 28, "rechtlich": [28, 260], "unverlangt": 28, "zusend": 28, "werbeinformation": 28, "etwa": [28, 71, 83, 86, 104, 107, 210, 224, 229, 291, 337, 367, 682], "spam": [28, 641], "can": [29, 30, 40, 44, 45, 52, 54, 55, 58, 63, 66, 72, 107, 115, 130, 132, 133, 136, 137, 140, 141, 142, 143, 147, 148, 152, 154, 157, 158, 160, 161, 162, 164, 173, 175, 176, 180, 183, 185, 186, 190, 193, 195, 198, 199, 202, 205, 206, 208, 211, 218, 221, 227, 231, 234, 235, 236, 239, 240, 245, 248, 251, 253, 254, 257, 258, 260, 262, 273, 274, 278, 280, 281, 288, 290, 294, 297, 298, 305, 311, 312, 315, 318, 325, 334, 335, 342, 344, 345, 351, 352, 353, 355, 356, 357, 358, 361, 365, 368, 370, 395, 409, 612, 613, 615, 618, 620, 623, 624, 643, 645, 646, 649, 650, 652, 655, 670], "be": [29, 30, 40, 44, 45, 52, 53, 54, 55, 58, 60, 63, 66, 84, 87, 96, 104, 107, 110, 113, 115, 126, 130, 132, 133, 134, 136, 137, 138, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 160, 164, 165, 168, 173, 176, 180, 183, 185, 186, 190, 193, 195, 198, 199, 202, 205, 206, 208, 209, 211, 216, 217, 218, 221, 227, 231, 234, 239, 240, 245, 247, 248, 254, 257, 258, 260, 261, 262, 269, 273, 274, 278, 280, 281, 283, 288, 290, 294, 296, 297, 298, 301, 305, 308, 311, 312, 315, 317, 325, 334, 335, 341, 344, 345, 352, 353, 355, 356, 357, 358, 361, 364, 365, 368, 370, 395, 413, 520, 545, 558, 610, 612, 613, 615, 616, 618, 620, 623, 624, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 667, 669, 670, 681], "found": [29, 44, 45, 52, 54, 55, 66, 84, 116, 127, 133, 152, 195, 206, 217, 221, 239, 278, 282, 294, 312, 322, 345, 360, 361, 615, 623, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 691], "documentation": [29, 36, 44, 53, 54, 55, 64, 139, 157, 159, 173, 176, 190, 195, 206, 209, 211, 216, 218, 227, 251, 257, 280, 281, 318, 334, 342, 344, 350, 516, 545, 558, 610, 613, 652, 653, 654, 655, 656], "this": [30, 40, 43, 44, 45, 52, 53, 54, 55, 56, 58, 63, 66, 83, 87, 107, 115, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 156, 157, 158, 160, 170, 173, 175, 176, 177, 180, 182, 183, 185, 186, 190, 193, 195, 198, 202, 205, 208, 209, 211, 218, 221, 227, 231, 234, 235, 236, 239, 240, 243, 245, 247, 248, 251, 253, 254, 257, 258, 260, 262, 263, 273, 274, 275, 278, 280, 281, 282, 288, 290, 294, 296, 298, 301, 303, 305, 312, 315, 317, 334, 335, 342, 344, 352, 353, 355, 356, 357, 361, 365, 368, 370, 395, 512, 575, 595, 606, 610, 612, 613, 615, 616, 618, 620, 623, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 654, 655, 665, 667, 668, 677, 686, 691], "allows": [30, 44, 45, 55, 66, 107, 115, 142, 157, 158, 160, 180, 182, 198, 208, 294, 298, 301, 317, 342, 352, 365, 613, 615, 624, 643, 646, 647, 653], "to": [30, 36, 40, 43, 44, 45, 52, 53, 54, 55, 58, 60, 63, 64, 66, 68, 71, 83, 86, 88, 103, 107, 110, 111, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 154, 157, 158, 159, 160, 161, 162, 164, 168, 173, 175, 176, 179, 180, 182, 183, 186, 190, 193, 195, 198, 199, 200, 202, 205, 206, 208, 209, 211, 216, 217, 218, 221, 225, 226, 227, 229, 230, 231, 234, 235, 239, 240, 245, 247, 248, 251, 253, 255, 256, 257, 258, 260, 261, 262, 263, 269, 274, 275, 276, 278, 280, 281, 282, 283, 288, 290, 292, 294, 296, 297, 298, 301, 305, 308, 309, 312, 314, 315, 317, 318, 323, 325, 326, 328, 329, 330, 334, 335, 337, 341, 342, 344, 345, 350, 352, 355, 358, 360, 361, 364, 365, 368, 370, 375, 395, 413, 453, 512, 527, 538, 562, 595, 606, 610, 612, 613, 615, 616, 618, 620, 623, 624, 625, 629, 641, 642, 643, 644, 645, 646, 647, 648, 649, 651, 652, 653, 654, 655, 656, 659, 660, 663, 664, 665, 666, 667, 668, 669, 674, 675, 677, 679, 681, 686, 691], "do": [30, 44, 45, 52, 54, 55, 66, 88, 136, 137, 142, 152, 154, 157, 158, 161, 186, 199, 206, 211, 221, 254, 260, 273, 278, 281, 290, 294, 352, 365, 612, 613, 615, 623, 624, 644, 646, 648, 649, 651, 653, 655, 667], "something": [30, 186, 218, 227, 247, 352, 612], "described": [30, 44, 45, 66, 107, 115, 136, 157, 158, 160, 186, 199, 227, 260, 296, 312, 335, 341, 353, 613, 615, 618, 623, 624, 645, 646], "below": [30, 44, 45, 52, 54, 55, 66, 107, 113, 115, 157, 158, 182, 186, 195, 227, 247, 253, 254, 257, 262, 288, 305, 334, 344, 353, 355, 361, 365, 368, 613, 615, 618, 623, 624], "under": [30, 44, 45, 52, 54, 55, 141, 154, 157, 158, 176, 182, 205, 211, 227, 247, 258, 288, 612, 613, 615, 642, 645, 646, 649, 651, 653, 655], "smmarthomeng": [30, 154, 612], "beyond": [30, 44, 45, 154, 157, 158, 296, 298, 612, 613, 615], "it": [30, 40, 44, 45, 52, 54, 55, 58, 66, 107, 115, 126, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 151, 152, 154, 157, 158, 159, 160, 162, 164, 185, 190, 193, 198, 205, 210, 211, 218, 227, 231, 235, 236, 240, 247, 248, 251, 253, 254, 255, 257, 260, 273, 274, 278, 280, 281, 282, 288, 290, 294, 301, 305, 309, 312, 314, 315, 317, 334, 335, 337, 341, 352, 353, 355, 356, 357, 361, 365, 368, 370, 395, 512, 590, 612, 613, 615, 618, 623, 624, 646, 649, 650, 652, 653, 654, 655, 663, 670, 686], "requir": [30, 44, 154, 157, 198, 209, 227, 245, 248, 260, 301, 335, 342, 344, 368, 612, 613, 646, 688], "need": [30, 44, 45, 52, 54, 55, 66, 68, 130, 132, 133, 137, 138, 141, 142, 154, 157, 158, 180, 185, 186, 193, 195, 205, 208, 211, 218, 227, 231, 234, 239, 245, 247, 248, 251, 253, 257, 260, 274, 278, 281, 288, 290, 294, 296, 305, 308, 311, 312, 334, 335, 344, 365, 368, 612, 613, 615, 616, 624, 643, 646, 652, 653, 670], "handling": [30, 44, 45, 63, 66, 76, 126, 133, 137, 139, 141, 149, 154, 157, 158, 164, 173, 195, 219, 227, 248, 273, 293, 334, 352, 365, 496, 523, 545, 554, 563, 585, 599, 612, 613, 615, 618, 620, 621, 622, 624, 634, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 660, 665, 671, 674, 693], "activated": [30, 44, 45, 154, 157, 158, 176, 199, 205, 413, 612, 613, 615, 653], "mak": [30, 44, 45, 55, 58, 66, 72, 142, 148, 154, 157, 158, 161, 185, 186, 205, 218, 227, 239, 248, 274, 278, 282, 309, 612, 613, 615, 624, 628, 642, 643, 646, 649, 650, 651, 652, 653, 655], "sur": [30, 44, 45, 154, 157, 158, 185, 186, 205, 218, 227, 240, 278, 282, 612, 613, 615, 616, 646, 650, 651], "that": [30, 40, 44, 45, 52, 53, 54, 55, 63, 66, 107, 113, 115, 126, 133, 134, 136, 137, 138, 139, 141, 146, 147, 148, 154, 157, 158, 160, 161, 162, 164, 175, 180, 185, 186, 198, 199, 202, 205, 208, 211, 218, 221, 227, 234, 235, 236, 240, 247, 248, 251, 254, 257, 262, 274, 278, 288, 290, 294, 296, 301, 312, 315, 342, 344, 352, 353, 355, 356, 357, 364, 365, 610, 612, 613, 615, 616, 618, 620, 623, 624, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 667, 691], "use_modul": [30, 44, 45, 154, 157, 158, 612, 613, 615], "module_nam": [30, 44, 45, 110, 119, 120, 121, 122, 154, 157, 158, 612, 613, 615, 684, 690], "42": [30, 52, 100, 106, 233, 263, 293, 326, 332, 562, 563, 569, 592], "loadlabl": [30, 44, 45, 154, 157, 158, 612, 613, 615], "therefor": [30, 44, 45, 154, 157, 158, 205, 211, 257, 278, 352, 612, 613, 615, 650], "ther": [30, 44, 45, 54, 55, 66, 127, 132, 134, 136, 137, 138, 139, 141, 143, 147, 148, 154, 157, 158, 182, 183, 185, 202, 205, 211, 217, 227, 231, 239, 240, 257, 262, 278, 280, 281, 290, 294, 296, 301, 305, 312, 318, 341, 344, 365, 368, 395, 612, 613, 615, 618, 624, 643, 646, 653, 655, 670], "guarantie": [30, 44, 45, 154, 157, 158, 612, 613, 615], "present": [30, 44, 45, 136, 154, 157, 158, 160, 284, 293, 367, 383, 612, 613, 615, 646, 655], "every": [30, 42, 44, 45, 54, 55, 71, 86, 87, 103, 104, 111, 123, 126, 137, 154, 157, 158, 161, 173, 176, 180, 181, 183, 186, 199, 202, 211, 231, 240, 248, 260, 274, 290, 296, 301, 305, 315, 317, 334, 351, 352, 355, 365, 612, 613, 615, 633, 643, 645, 660, 667, 686], "befor": [30, 44, 45, 54, 55, 66, 126, 129, 133, 137, 139, 142, 154, 157, 158, 160, 183, 186, 200, 205, 211, 218, 248, 278, 294, 317, 341, 612, 613, 615, 624, 643, 645, 646, 649, 650, 652, 655, 656, 670], "you": [30, 44, 45, 47, 52, 54, 55, 58, 66, 72, 83, 130, 132, 136, 137, 141, 143, 147, 148, 154, 158, 160, 161, 162, 164, 175, 180, 183, 185, 186, 195, 198, 205, 206, 208, 211, 218, 221, 227, 231, 234, 235, 236, 239, 240, 245, 248, 251, 253, 254, 257, 260, 262, 273, 274, 278, 280, 281, 283, 288, 290, 294, 296, 301, 305, 309, 312, 315, 317, 318, 334, 335, 344, 351, 352, 355, 365, 368, 413, 512, 612, 613, 615, 624, 625, 646, 664, 665, 667, 670, 686], "hav": [30, 40, 44, 45, 54, 55, 63, 66, 126, 130, 132, 133, 136, 137, 139, 141, 143, 147, 148, 152, 154, 157, 158, 160, 185, 186, 190, 195, 205, 208, 211, 218, 221, 227, 231, 234, 240, 247, 248, 251, 257, 269, 273, 278, 283, 288, 290, 294, 301, 305, 309, 312, 315, 317, 334, 352, 353, 355, 365, 368, 413, 612, 613, 615, 620, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 656, 667, 670, 691], "by": [30, 40, 44, 45, 52, 53, 54, 55, 60, 63, 66, 71, 87, 104, 107, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 144, 147, 148, 149, 151, 152, 154, 157, 158, 160, 161, 162, 180, 182, 183, 185, 186, 193, 195, 199, 202, 206, 211, 218, 227, 232, 234, 240, 247, 248, 253, 254, 256, 257, 258, 260, 262, 263, 274, 288, 290, 294, 297, 298, 301, 304, 305, 312, 315, 317, 318, 329, 335, 338, 344, 352, 355, 356, 357, 361, 365, 370, 395, 520, 545, 558, 562, 594, 595, 610, 612, 613, 615, 618, 620, 623, 624, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 667, 669, 670, 681, 688, 691], "calling": [30, 44, 45, 54, 55, 66, 134, 141, 147, 154, 157, 158, 227, 293, 612, 613, 615, 624, 650, 666], "main": [30, 40, 44, 45, 46, 54, 55, 66, 86, 116, 132, 137, 143, 145, 146, 147, 148, 152, 154, 155, 157, 158, 160, 170, 189, 229, 240, 262, 280, 298, 304, 315, 353, 355, 356, 357, 370, 521, 536, 589, 595, 612, 613, 615, 618, 624, 653], "object": [30, 40, 44, 45, 52, 54, 55, 66, 127, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 152, 154, 157, 158, 186, 211, 229, 247, 273, 612, 613, 615, 623, 624, 643, 649, 650, 653, 655, 656, 660, 664, 666], "lik": [30, 44, 45, 52, 54, 55, 66, 127, 132, 137, 148, 154, 157, 158, 160, 183, 186, 193, 200, 205, 211, 218, 221, 227, 234, 247, 248, 258, 269, 278, 288, 290, 294, 301, 312, 334, 342, 356, 357, 368, 398, 612, 613, 615, 623, 624, 649, 655], "self": [30, 42, 44, 45, 50, 52, 54, 55, 58, 59, 60, 62, 63, 66, 115, 141, 151, 154, 157, 158, 219, 227, 243, 281, 288, 315, 328, 331, 334, 343, 352, 561, 562, 563, 567, 573, 576, 589, 591, 592, 612, 613, 615, 620, 624, 632, 641, 643, 645, 646, 649, 651, 665], "classnam": [30, 43, 44, 45, 52, 53, 54, 55, 58, 66, 143, 145, 154, 157, 158, 606, 610, 612, 613, 615, 616, 624, 671], "__class__": [30, 44, 45, 154, 157, 158, 612, 613, 615], "__name__": [30, 44, 45, 52, 115, 154, 157, 158, 612, 613, 615, 638, 641], "mod_sampl": 30, "_sh": [30, 40, 44, 45, 52, 154, 157, 158, 243, 612, 613, 615, 632], "get_modul": [30, 40, 44, 45, 66, 140, 154, 157, 158, 612, 613, 615, 624], "what": [30, 44, 45, 52, 54, 55, 58, 134, 154, 157, 158, 186, 218, 227, 240, 251, 288, 294, 356, 357, 612, 613, 615, 623, 650], "necessary": [30, 44, 45, 54, 55, 146, 154, 157, 158, 193, 227, 334, 353, 612, 613, 615, 623, 645, 649, 652, 663], "your": [30, 44, 45, 52, 54, 55, 66, 72, 85, 88, 130, 132, 137, 141, 143, 147, 148, 154, 157, 158, 160, 173, 175, 176, 190, 195, 198, 203, 205, 206, 208, 218, 221, 227, 228, 229, 231, 234, 235, 236, 240, 245, 248, 254, 257, 260, 262, 269, 274, 278, 281, 282, 288, 290, 294, 296, 297, 298, 301, 305, 309, 312, 318, 334, 335, 344, 346, 352, 361, 362, 365, 368, 413, 512, 612, 613, 615, 624, 646, 666, 667, 686], "abort": [30, 44, 45, 141, 154, 157, 158, 612, 613, 615], "loading": [30, 44, 45, 54, 55, 60, 66, 115, 132, 137, 140, 143, 145, 154, 157, 158, 612, 613, 615, 624, 643, 645, 646, 649, 655], "param_a": 30, "param_b": 30, "allgemein": [31, 32, 52, 54, 55, 76, 77, 82, 83, 96, 104, 106, 123, 154, 169, 179, 181, 184, 192, 210, 212, 213, 220, 232, 237, 241, 252, 265, 268, 289, 291, 292, 302, 310, 314, 320, 324, 338, 347, 348, 351, 357, 360, 366, 421, 422, 563, 568, 570, 579, 612, 622, 625, 633, 641, 671], "wozu": [31, 54], "gut": [31, 45, 46, 47, 52, 54, 67, 70, 71, 82, 103, 165, 189, 262, 369, 584, 615], "tut": [31, 54, 69, 82, 486], "auflist": [31, 33, 34, 54, 71, 106, 170, 181, 189, 215, 359, 461, 483, 489], "soft": [31, 33, 34, 54], "hardwarekomponent": [31, 33, 34, 54], "beinhaltet": [31, 33, 34, 51, 52, 54, 169, 187, 188, 232, 262, 284, 295, 325, 328, 329, 330, 331, 333, 338, 421, 573, 642], "hardwar": [31, 33, 34, 54, 55, 66, 71, 80, 82, 87, 170, 200, 227, 235, 258, 259, 280, 300, 310, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 623, 624, 632, 647, 688], "spezif": [31, 32, 52, 53, 54, 55, 106, 115, 120, 122, 123, 165, 166, 168, 169, 170, 189, 191, 194, 197, 201, 203, 212, 213, 223, 232, 238, 242, 246, 261, 264, 265, 267, 271, 276, 277, 284, 286, 287, 289, 300, 313, 316, 319, 333, 336, 351, 359, 369, 564, 567, 577, 591, 603, 625, 673, 686, 688], "evtl": [31, 32, 42, 43, 52, 53, 54, 55, 67, 71, 76, 79, 93, 106, 210, 284, 293, 454, 532, 567, 591, 596, 601, 602, 604, 607, 608, 609, 625, 628, 630, 632, 653], "stellt": [31, 32, 52, 54, 55, 71, 86, 120, 121, 123, 154, 162, 187, 189, 207, 222, 228, 230, 241, 243, 259, 260, 262, 268, 284, 286, 287, 295, 302, 314, 324, 325, 329, 330, 338, 359, 360, 462, 522, 532, 567, 585, 589, 590, 591, 595, 597, 599, 612, 621, 622, 625, 634, 674, 678], "dokumentiert": [31, 32, 43, 48, 52, 54, 55, 86, 106, 159, 168, 178, 207, 212, 219, 360, 414, 587, 621, 625, 626, 653, 671, 674, 688], "Sonst": [31, 32, 52, 54, 55, 69, 71, 79, 292, 625, 652], "anwendungsfall": [31, 33, 34, 54, 97, 187, 214, 369], "sample_plugin": [31, 33, 34, 47, 52, 54, 67, 250, 641, 651, 671], "webif": [31, 33, 34, 44, 48, 50, 52, 54, 55, 57, 58, 59, 60, 61, 164, 170, 172, 189, 214, 250, 251, 262, 286, 306, 307, 310, 314, 336, 369, 371, 612, 613, 625, 641, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655], "index": [31, 33, 34, 37, 44, 48, 50, 52, 54, 55, 56, 58, 59, 60, 61, 62, 85, 92, 109, 130, 133, 156, 161, 170, 187, 192, 222, 223, 240, 250, 262, 265, 288, 303, 339, 340, 341, 355, 356, 357, 401, 465, 496, 524, 563, 612, 613, 623, 625, 646, 650, 651, 652, 653, 655, 688], "grundlag": [31, 33, 34, 52, 54, 55, 71, 79, 250, 370], "tabelleninhalt": [31, 33, 34, 52, 54, 250], "sorti": [31, 33, 34, 52, 54, 58, 60, 76, 250], "eingefugt": [31, 33, 34, 52, 53, 54, 58, 60, 62, 86, 87, 89, 90, 97, 162, 219, 250, 271, 295, 325, 381, 577, 578, 585, 603, 674, 682], "doku": [31, 33, 34, 48, 52, 54, 98, 115, 123, 162, 167, 200, 250, 312, 313, 641, 649, 671, 693], "liefert": [31, 33, 34, 52, 54, 57, 84, 154, 165, 170, 212, 214, 229, 250, 261, 262, 287, 289, 306, 307, 330, 339, 340, 360, 369, 376, 379, 382, 391, 396, 398, 400, 406, 408, 434, 435, 441, 457, 460, 462, 464, 467, 469, 496, 506, 510, 524, 527, 534, 545, 558, 562, 563, 565, 567, 573, 576, 591, 594, 599, 612, 634, 636, 671, 674, 682, 690], "drittherstell": [31, 33, 34, 52, 54, 214, 250, 306, 307, 369], "gestalt": [31, 33, 34, 52, 54, 83, 98, 214, 250, 306, 307, 369, 575], "ordn": [31, 33, 34, 37, 40, 43, 51, 52, 53, 54, 55, 56, 57, 85, 162, 169, 172, 192, 214, 219, 220, 241, 244, 250, 295, 306, 307, 314, 351, 369, 381, 423, 444, 519, 538, 560, 585, 682, 688], "gstatic": [31, 33, 34, 44, 52, 54, 55, 56, 57, 214, 250, 251, 306, 307, 369, 613, 674], "darub": [31, 33, 34, 52, 54, 59, 80, 116, 181, 214, 250, 289, 306, 307, 329, 369, 561, 688], "hinaus": [31, 33, 34, 52, 54, 59, 80, 181, 214, 250, 289, 306, 307, 347, 369, 574], "static": [31, 33, 34, 40, 44, 48, 52, 54, 55, 60, 134, 137, 140, 141, 144, 146, 147, 148, 152, 157, 172, 214, 219, 250, 306, 307, 335, 369, 613, 625], "versionshistori": [31, 32, 52, 54, 55, 625], "autor": [31, 32, 47, 51, 52, 54, 55, 77, 97, 178, 369, 370, 373, 545, 547, 548, 550, 552, 554, 558, 625, 681], "mocht": [31, 32, 52, 54, 55, 58, 82, 88, 89, 90, 92, 98, 101, 103, 106, 111, 115, 116, 120, 155, 164, 169, 184, 222, 243, 263, 268, 289, 304, 323, 363, 370, 373, 561, 569, 571, 572, 573, 576, 592, 625, 630, 688], "zweck": [32, 47, 52, 55, 80, 125, 162, 192, 289, 330, 508, 625, 638], "entfall": [32, 52, 55, 82, 106, 168, 326, 625], "funktionalitat": [32, 43, 48, 52, 55, 67, 76, 93, 106, 110, 111, 115, 118, 181, 188, 212, 243, 314, 331, 359, 363, 370, 371, 373, 383, 504, 545, 550, 554, 555, 560, 585, 611, 621, 625, 626, 630, 638, 641, 652, 653, 654, 656, 671, 674, 675, 684, 689, 693], "asset": [32, 48, 51, 52, 55, 162, 219, 625, 655], "abzuleg": [32, 52, 55, 103, 328, 625], "les": [33, 34, 44, 52, 62, 86, 97, 98, 109, 168, 169, 184, 197, 214, 215, 222, 226, 229, 232, 249, 250, 256, 259, 261, 268, 276, 277, 306, 307, 309, 313, 314, 321, 339, 340, 343, 351, 359, 360, 363, 369, 370, 380, 381, 382, 400, 408, 434, 435, 441, 459, 464, 467, 496, 498, 499, 500, 512, 522, 524, 533, 545, 550, 564, 613, 616, 622, 632, 674, 678], "metadat": [33, 34, 48, 51, 53, 64, 67, 76, 97, 111, 168, 170, 179, 184, 192, 197, 210, 214, 215, 222, 223, 224, 232, 249, 250, 252, 255, 259, 261, 276, 277, 306, 307, 309, 314, 339, 340, 343, 348, 357, 359, 360, 363, 366, 369, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 556, 557, 558, 601, 606, 608, 610, 611, 621, 625, 626, 641, 671, 674, 681], "metagateway": [36, 78], "ding": [36, 71, 78, 169, 269, 296, 596], "fungiert": [36, 78, 259, 325], "gerat": [36, 52, 53, 54, 55, 78, 79, 80, 82, 162, 163, 166, 167, 169, 170, 179, 191, 192, 194, 196, 200, 201, 207, 228, 232, 244, 249, 264, 267, 272, 308, 309, 313, 321, 329, 331, 334, 337, 346, 349, 359, 370, 371, 373, 375, 376, 377, 378, 379, 380, 381, 382, 384, 388, 400, 403, 406, 407, 408, 415, 416, 417, 433, 435, 440, 441, 443, 449, 452, 464, 467, 472, 473, 475, 476, 480, 488, 495, 497, 498, 499, 501, 503, 504, 507, 509, 518, 527, 531, 533, 536, 537, 545, 548, 550, 558, 563, 610, 621, 622, 625, 644, 671, 682, 693], "So": [36, 58, 61, 71, 78, 100, 103, 118, 132, 134, 161, 162, 163, 164, 191, 227, 229, 232, 234, 247, 262, 264, 267, 288, 290, 293, 294, 325, 326, 329, 332, 333, 362, 381, 562, 567, 591, 599, 622, 634, 668], "klingel": [36, 78], "musikanlag": [36, 78], "tv": [36, 78, 160, 162, 166, 231, 248, 266, 278, 301, 314, 378, 466, 495, 545, 550, 574, 648, 649, 666, 682], "spricht": [36, 51, 69, 78, 164], "wiedergab": [36, 78, 164, 314, 617], "unterbricht": [36, 78, 189], "nachricht": [36, 78, 116, 164, 168, 170, 200, 241, 262, 272, 314, 338, 339, 340, 359, 380, 406, 407, 417, 434, 446, 456, 457, 463, 469, 471, 472, 491, 512, 513, 527, 534, 545, 552, 554, 558, 641, 674], "email": [36, 47, 54, 55, 78, 214, 219, 227, 241, 244, 254, 255, 273, 399, 444, 445, 545, 558, 612], "verschickt": [36, 78, 338, 339, 340, 379, 471, 512], "bisher": [36, 89, 97, 100, 106, 213, 453, 572, 573, 577, 652, 653, 654, 656, 674, 682, 689], "lebt": 36, "projekt": [36, 68, 121, 250, 282, 283, 314, 345, 630], "open": [36, 55, 57, 82, 84, 103, 141, 162, 170, 200, 221, 223, 224, 227, 251, 269, 288, 296, 334, 510, 623, 643, 646, 649, 652, 655], "mitmach": 36, "eingelad": 36, "beizutrag": 36, "gern": [36, 116, 260, 370], "how": [36, 44, 55, 58, 113, 130, 136, 152, 157, 160, 185, 193, 199, 205, 211, 218, 221, 262, 274, 281, 297, 312, 341, 613, 643, 645], "kommentier": 36, "instruktion": 37, "gebaut": [37, 106], "zurzeit": [37, 90, 289, 291, 293, 556], "integriert": [37, 48, 51, 56, 191, 201, 212, 219, 232, 238, 262, 264, 267, 293, 295, 313, 314, 329, 331, 383, 545, 550, 641], "ubrig": [37, 260, 330], "bleib": [37, 76, 77, 96, 97, 106, 162, 178, 187, 330, 339, 340, 428, 513, 585, 635], "cd": [37, 64, 68, 71, 73, 82, 83, 85, 92, 103, 169, 199, 221, 248, 269, 278, 309, 628, 630, 667, 688], "mkdir": [37, 83, 85, 278, 688], "shng_doc": 37, "chown": [37, 83, 85, 688], "ausfuhrbar": 37, "doc": [37, 52, 53, 54, 55, 103, 111, 228, 233, 610, 625, 644, 646, 652, 653, 654, 655], "build_doc": 37, "chmod": [37, 85, 278, 351], "755": 37, "pip3": [37, 44, 47, 83, 92, 113, 154, 157, 171, 185, 198, 205, 210, 245, 253, 260, 284, 299, 334, 335, 344, 370, 508, 612, 613, 630, 635, 644, 646, 678], "install": [37, 44, 47, 68, 73, 82, 83, 84, 85, 86, 87, 88, 89, 90, 92, 154, 157, 171, 186, 192, 198, 205, 210, 218, 235, 236, 245, 249, 253, 260, 273, 278, 281, 284, 287, 297, 299, 309, 334, 335, 338, 341, 344, 352, 368, 370, 508, 612, 613, 628, 630, 646, 647, 652, 667, 678, 688], "sphinx": [37, 645, 646, 649, 651, 655], "sphinx_rtd_them": 37, "recommonmark": [37, 645], "befehl": [37, 42, 68, 71, 82, 83, 84, 85, 86, 89, 90, 103, 115, 155, 156, 162, 164, 165, 169, 170, 191, 201, 230, 237, 238, 255, 264, 267, 303, 304, 314, 316, 319, 323, 333, 338, 367, 376, 377, 381, 382, 432, 451, 456, 476, 477, 482, 507, 533, 563, 588, 621, 622, 629, 630, 642, 671, 693], "beendet": [37, 42, 46, 52, 53, 71, 86, 90, 92, 102, 115, 168, 170, 181, 233, 292, 325, 330, 331, 382, 401, 458, 588, 595, 610, 632], "offn": [37, 71, 82, 86, 155, 162, 164, 200, 219, 304, 328, 337, 338, 346], "zugehor": [37, 155, 170, 255, 302, 304, 331, 338, 351, 382], "getrachtet": 37, "wiederholt": [37, 104, 233, 249, 326, 339, 340, 453], "mal": [37, 47, 52, 58, 68, 71, 83, 106, 164, 169, 237, 325, 327, 328, 329, 331, 362, 446, 463, 561, 567, 591, 599, 632, 634], "vorangegang": [37, 48, 83, 562, 566, 567, 576, 591, 596, 652, 653, 655, 656, 674, 692, 693], "ausgecheckt": 37, "forc": [37, 47, 88, 326, 332, 370, 655], "mast": [37, 47, 88, 103, 132, 134, 140, 143, 144, 145, 169, 171, 174, 178, 218, 261, 290, 354, 389, 488, 641, 654, 668], "sicherzustell": [37, 58, 60, 83, 169], "abgeseh": [39, 339, 340], "hauptprogramm": [39, 103], "liegt": [39, 64, 76, 89, 104, 106, 170, 262, 284, 295, 325, 326, 328, 332, 339, 340, 398, 400, 441, 464, 467, 538, 562, 566, 567, 574, 591, 599, 634], "befind": [39, 47, 48, 53, 71, 92, 103, 196, 200, 306, 307, 310, 314, 327, 373], "bibliothek": [39, 46, 68, 79, 92, 103, 106, 131, 172, 191, 201, 215, 238, 264, 267, 309, 310, 338, 351, 359, 367, 448, 533, 693], "mitgeliefert": [39, 57, 83, 184, 192, 212, 213, 219, 220, 233, 244, 265, 268, 289, 371, 591, 622], "requirement": [39, 43, 44, 45, 48, 53, 54, 55, 67, 68, 76, 79, 83, 92, 139, 160, 162, 192, 194, 306, 307, 338, 606, 610, 612, 613, 615, 632, 641, 644, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 674, 675, 678], "txt": [39, 40, 43, 48, 54, 55, 63, 66, 68, 83, 92, 148, 151, 164, 169, 173, 176, 188, 192, 205, 245, 285, 294, 306, 307, 338, 359, 381, 585, 595, 620, 624, 641, 646, 648, 649, 652, 653, 655, 671, 674, 675, 678, 688], "eingetrag": [39, 43, 53, 58, 69, 82, 94, 97, 103, 104, 116, 162, 164, 215, 226, 244, 261, 262, 287, 331, 338, 351, 380, 519, 608, 682, 688], "config": [39, 40, 44, 45, 52, 54, 55, 66, 73, 82, 85, 87, 90, 115, 132, 133, 134, 135, 136, 137, 140, 143, 144, 157, 158, 161, 162, 168, 183, 195, 211, 219, 228, 233, 285, 359, 360, 612, 613, 615, 617, 624, 625, 643, 644, 645, 648, 650, 652, 653, 655, 656, 660, 665, 666, 667, 670, 677, 679, 682, 688], "constant": [39, 126, 294, 649, 670], "item_conversion": 39, "log": [39, 44, 47, 50, 60, 66, 71, 83, 89, 92, 102, 105, 107, 111, 113, 116, 120, 123, 125, 126, 127, 133, 138, 148, 161, 169, 178, 180, 181, 186, 187, 188, 189, 195, 198, 200, 210, 211, 227, 232, 243, 248, 254, 255, 256, 257, 262, 270, 271, 273, 293, 306, 307, 309, 320, 322, 328, 329, 336, 368, 382, 389, 391, 396, 397, 423, 446, 463, 489, 508, 533, 538, 545, 554, 562, 575, 583, 584, 585, 586, 595, 612, 613, 616, 618, 624, 632, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 665, 666, 671, 682], "metadata": [39, 43, 44, 54, 55, 64, 114, 115, 116, 133, 134, 141, 190, 218, 251, 280, 368, 583, 606, 610, 612, 613, 615, 616, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 681], "shyaml": [39, 651], "translation": [39, 50, 54, 55, 133, 159, 169, 381, 643, 645, 646, 649, 653, 654, 655, 670], "logutil": [39, 49, 107, 115, 116, 322, 581, 583, 646], "network": [39, 49, 55, 67, 84, 88, 89, 90, 111, 127, 162, 170, 180, 216, 219, 227, 234, 235, 239, 259, 274, 290, 292, 298, 305, 308, 309, 315, 318, 344, 355, 363, 369, 382, 545, 552, 581, 617, 622, 623, 630, 646, 648, 649, 650, 651, 652, 653, 654, 655, 663, 665, 667], "orb": [39, 49, 581, 648, 650], "util": [39, 40, 49, 63, 66, 141, 150, 560, 581, 618, 620, 623, 624, 649, 652, 653, 655, 669, 688], "haupt": [40, 43], "programm": [40, 42, 43, 46, 86, 115, 237, 283, 294, 314, 416, 495], "exklusiv": 40, "implementi": [40, 43, 52, 58, 120, 367, 589, 611, 621, 671, 674, 675, 688], "unterpunkt": [40, 597], "class": [40, 44, 45, 48, 50, 52, 53, 54, 55, 56, 58, 60, 61, 62, 107, 115, 116, 127, 130, 136, 137, 138, 139, 140, 141, 142, 146, 147, 148, 149, 150, 151, 152, 157, 158, 166, 198, 199, 217, 227, 232, 235, 253, 278, 280, 294, 314, 322, 353, 368, 585, 589, 598, 610, 612, 613, 615, 616, 618, 621, 622, 625, 626, 632, 643, 645, 646, 647, 649, 651, 652, 653, 655, 656, 663, 669], "mod": [40, 44, 66, 116, 141, 162, 169, 170, 176, 185, 192, 195, 196, 199, 202, 210, 218, 227, 247, 248, 254, 261, 265, 276, 288, 290, 291, 292, 294, 297, 311, 318, 326, 332, 334, 341, 400, 408, 419, 422, 435, 441, 464, 465, 467, 487, 492, 521, 612, 613, 623, 624, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 655, 667, 682, 688], "extern_conf_dir": 40, "config_etc": [40, 103, 635, 656], "quellcod": [40, 44, 45, 54, 55, 63, 66, 126, 127, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 162, 612, 613, 615, 616, 618, 620, 623, 624], "bas": [40, 42, 44, 45, 63, 66, 68, 83, 92, 127, 130, 133, 134, 136, 137, 138, 139, 140, 141, 142, 144, 145, 146, 147, 148, 149, 150, 151, 152, 199, 200, 218, 229, 254, 255, 262, 282, 283, 352, 353, 361, 407, 588, 612, 613, 615, 616, 618, 620, 623, 624, 641, 647, 649, 650, 654, 655, 665, 669, 678, 687], "oth": [40, 45, 66, 107, 115, 138, 142, 152, 160, 162, 186, 190, 193, 205, 227, 239, 248, 258, 278, 280, 294, 296, 297, 305, 315, 335, 341, 342, 355, 370, 573, 615, 624, 644, 645, 646, 652, 653], "addressed": 40, "oject": 40, "which": [40, 44, 45, 54, 55, 58, 66, 113, 126, 127, 130, 132, 133, 134, 136, 137, 141, 142, 148, 149, 151, 157, 158, 160, 176, 183, 186, 195, 198, 211, 216, 218, 221, 227, 231, 239, 240, 245, 247, 248, 257, 262, 274, 278, 288, 290, 294, 296, 301, 305, 311, 312, 317, 352, 353, 356, 357, 365, 368, 612, 613, 615, 616, 618, 623, 624, 643, 644, 646, 647, 649, 650, 651, 652, 653, 654, 655, 659, 669], "is": [40, 44, 45, 52, 53, 54, 55, 58, 62, 63, 66, 71, 83, 103, 104, 107, 110, 113, 115, 126, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 147, 148, 149, 151, 152, 155, 156, 159, 160, 161, 162, 164, 173, 175, 176, 177, 179, 180, 183, 185, 186, 188, 190, 193, 195, 198, 199, 200, 202, 205, 208, 209, 210, 211, 216, 217, 218, 221, 227, 231, 234, 239, 240, 243, 245, 247, 248, 251, 257, 258, 260, 262, 263, 269, 274, 275, 278, 280, 281, 282, 288, 290, 294, 295, 297, 301, 303, 304, 305, 311, 312, 315, 318, 325, 334, 337, 338, 341, 342, 344, 352, 353, 355, 356, 357, 361, 364, 365, 368, 370, 380, 395, 413, 479, 512, 575, 589, 590, 595, 610, 612, 613, 615, 616, 618, 620, 623, 624, 633, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 659, 663, 668, 669, 670, 680, 681, 685, 688, 690, 691], "instanc": [40, 44, 45, 52, 54, 55, 66, 67, 111, 126, 127, 132, 133, 134, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 157, 158, 161, 166, 167, 169, 170, 183, 184, 186, 187, 189, 198, 208, 212, 213, 229, 237, 239, 245, 247, 249, 250, 262, 268, 289, 299, 300, 301, 308, 309, 310, 356, 357, 362, 368, 565, 591, 610, 612, 613, 615, 624, 641, 643, 644, 645, 646, 651, 653, 655, 660, 669, 673, 674, 680], "mostly": [40, 274], "referred": 40, "hom": [40, 97, 160, 170, 178, 208, 218, 235, 244, 262, 282, 283, 294, 305, 306, 307, 344, 378, 383, 416, 445, 447, 479, 524, 545, 548, 550, 654, 688], "runn": 40, "initialize_var": 40, "initialize_dir_var": 40, "create_directori": 40, "creat": [40, 44, 55, 88, 127, 130, 132, 134, 137, 140, 141, 143, 144, 152, 160, 161, 175, 183, 186, 187, 193, 205, 235, 236, 254, 278, 288, 296, 353, 361, 365, 368, 612, 613, 616, 643, 646, 648, 649, 652, 653, 655, 668, 677], "directori": [40, 88, 309, 352, 646, 655, 679], "used": [40, 44, 45, 55, 63, 66, 83, 104, 107, 110, 113, 115, 126, 127, 130, 132, 133, 134, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 151, 157, 158, 160, 173, 176, 177, 180, 186, 190, 193, 195, 198, 202, 211, 216, 218, 221, 227, 234, 239, 240, 245, 247, 248, 257, 258, 260, 262, 273, 274, 278, 281, 288, 294, 298, 305, 345, 352, 353, 356, 357, 358, 361, 365, 368, 479, 612, 613, 615, 616, 618, 620, 624, 633, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 667, 682, 691], "they": [40, 54, 55, 126, 137, 140, 141, 143, 180, 183, 205, 211, 218, 227, 240, 248, 274, 288, 294, 305, 352, 595, 642, 645, 646, 649, 650, 653, 655, 670], "don": [40, 44, 45, 54, 55, 63, 66, 111, 132, 134, 136, 141, 146, 151, 157, 183, 186, 195, 205, 211, 218, 227, 234, 260, 278, 281, 290, 294, 309, 312, 335, 344, 352, 355, 613, 615, 616, 620, 624, 645, 646, 647, 649, 655, 686], "exist": [40, 44, 45, 130, 134, 137, 139, 141, 157, 158, 183, 253, 294, 298, 344, 353, 613, 615, 645, 646, 655], "property": [40, 54, 55, 133, 137, 141, 160, 162, 186, 200, 203, 211, 305, 325, 326, 328, 330, 347, 355, 521, 567, 573, 576, 591, 641, 643, 646, 649, 650, 655, 656], "lat": [40, 43, 44, 45, 52, 53, 54, 55, 66, 83, 103, 113, 131, 133, 142, 173, 176, 199, 205, 208, 219, 229, 248, 262, 280, 294, 308, 309, 334, 344, 351, 355, 599, 606, 610, 612, 613, 615, 616, 624, 636, 642, 646, 648, 649, 650, 652, 653, 655], "float": [40, 43, 45, 53, 92, 106, 131, 148, 150, 152, 186, 192, 207, 235, 236, 240, 293, 317, 352, 356, 357, 381, 401, 418, 419, 420, 450, 453, 486, 510, 562, 567, 574, 575, 591, 599, 601, 602, 604, 607, 608, 609, 615, 634, 648, 651, 653, 655], "read": [40, 45, 55, 73, 98, 126, 129, 130, 136, 137, 159, 160, 168, 173, 175, 180, 183, 186, 195, 196, 198, 202, 221, 226, 227, 234, 235, 236, 239, 240, 249, 254, 258, 260, 274, 276, 281, 288, 294, 297, 298, 305, 308, 309, 312, 314, 315, 334, 341, 345, 352, 355, 370, 452, 612, 615, 622, 623, 641, 643, 645, 646, 647, 649, 651, 652, 653, 655, 656, 670, 690], "only": [40, 44, 45, 53, 54, 55, 64, 66, 83, 88, 104, 107, 115, 126, 130, 132, 133, 134, 135, 137, 138, 141, 144, 147, 148, 151, 152, 160, 170, 173, 177, 180, 186, 195, 196, 205, 208, 211, 218, 227, 231, 239, 240, 247, 248, 254, 255, 257, 260, 269, 274, 276, 278, 288, 294, 301, 312, 314, 315, 318, 337, 341, 344, 352, 355, 356, 357, 368, 370, 413, 479, 595, 610, 613, 615, 616, 623, 624, 633, 643, 645, 646, 647, 648, 649, 650, 651, 653, 655, 674, 677, 681, 690], "latitud": [40, 97, 113, 131, 142, 215, 219, 365, 422, 599, 636, 655], "from": [40, 44, 45, 52, 54, 55, 58, 59, 63, 66, 86, 97, 107, 115, 125, 126, 127, 130, 132, 133, 134, 135, 136, 137, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 160, 161, 164, 168, 169, 175, 176, 182, 183, 185, 186, 190, 193, 195, 198, 199, 200, 202, 203, 206, 211, 216, 218, 221, 222, 223, 227, 230, 231, 234, 239, 240, 241, 247, 248, 251, 253, 257, 258, 260, 262, 273, 274, 278, 280, 281, 288, 290, 294, 297, 298, 301, 305, 308, 312, 315, 317, 318, 329, 341, 352, 353, 355, 358, 361, 365, 368, 370, 406, 565, 591, 612, 613, 615, 618, 620, 622, 623, 624, 638, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 666, 668, 670, 674, 677, 679, 682, 688, 691], "lon": [40, 83, 103, 113, 131, 142, 229, 262, 344, 599, 636, 649, 655], "longitud": [40, 97, 113, 131, 142, 215, 219, 365, 422, 599, 636, 655], "get_defaultlanguag": 40, "configured": [40, 44, 45, 52, 54, 55, 66, 107, 113, 115, 137, 139, 144, 152, 173, 176, 180, 183, 185, 186, 195, 205, 211, 216, 217, 227, 231, 234, 257, 258, 294, 305, 335, 352, 355, 356, 357, 368, 395, 612, 613, 615, 616, 623, 624, 644, 645, 646, 647, 650, 655, 670], "languag": [40, 44, 56, 61, 83, 103, 106, 113, 131, 139, 151, 157, 164, 169, 185, 192, 219, 262, 305, 306, 307, 341, 344, 401, 545, 548, 613, 646, 649, 653, 655, 674], "set_defaultlanguag": 40, "get_basedir": [40, 217], "path": [40, 44, 45, 54, 55, 60, 66, 83, 88, 90, 103, 112, 113, 124, 126, 129, 132, 133, 134, 137, 141, 143, 145, 149, 157, 164, 182, 185, 186, 188, 202, 205, 218, 225, 227, 229, 256, 262, 273, 274, 278, 280, 304, 315, 317, 328, 330, 352, 356, 357, 360, 423, 564, 567, 612, 613, 615, 616, 624, 641, 643, 646, 648, 650, 652, 653, 654, 655, 656, 664, 686, 688], "ruckgabetyp": [40, 44, 45, 66, 126, 129, 131, 133, 134, 136, 137, 139, 140, 141, 144, 145, 146, 147, 148, 149, 150, 152, 613, 615, 618, 623, 624], "get_confdir": 40, "contain": [40, 61, 66, 79, 80, 126, 129, 130, 133, 136, 139, 141, 149, 150, 152, 183, 186, 202, 294, 296, 334, 346, 353, 361, 365, 368, 504, 624, 643, 644, 649, 650, 651, 653, 655, 656], "subdirectori": [40, 646], "get_etcdir": 40, "get_structsdir": 40, "get_vardir": 40, "get_config_dir": 40, "replac": [40, 52, 126, 141, 151, 257, 278, 288, 294, 315, 334, 352, 645, 646, 649, 655, 656, 686], "prevent": [40, 55, 107, 115, 130, 141, 142, 147, 195, 644, 646, 647, 648, 650, 651, 652, 653, 655, 656], "plethora": 40, "get_": 40, "invalid": [40, 42, 88, 126, 161, 169, 218, 227, 254, 255, 288, 334, 588, 642, 643, 646, 647, 648, 649, 650, 651, 653, 654, 655, 656, 681], "get_config_fil": 40, "extension": [40, 42, 44, 52, 55, 57, 88, 105, 112, 126, 128, 146, 149, 168, 257, 368, 585, 613, 616, 625, 643, 649, 651, 653, 655, 670, 687], "fil": [40, 42, 43, 44, 45, 47, 48, 52, 53, 60, 66, 71, 106, 107, 109, 113, 115, 120, 123, 126, 128, 129, 134, 135, 136, 137, 139, 140, 141, 143, 144, 145, 146, 149, 151, 160, 162, 164, 169, 172, 183, 191, 193, 195, 205, 206, 208, 216, 217, 219, 221, 227, 228, 229, 230, 235, 236, 239, 250, 254, 257, 264, 267, 274, 278, 288, 295, 308, 309, 312, 315, 317, 318, 324, 326, 334, 335, 346, 352, 355, 356, 357, 361, 365, 372, 376, 381, 423, 431, 453, 608, 612, 613, 615, 616, 624, 625, 641, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 664, 667, 670, 674, 677, 679], "getbasedir": [40, 650], "deprecated": [40, 85, 123, 137, 150, 243, 245, 262, 263, 302, 354, 374, 381, 383, 394, 397, 421, 426, 446, 448, 463, 474, 496, 497, 506, 523, 524, 532, 545, 548, 550, 554, 558, 635, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 662, 689, 691], "method": [40, 44, 45, 47, 48, 50, 52, 54, 55, 59, 60, 63, 66, 76, 92, 100, 115, 116, 129, 130, 132, 133, 134, 136, 137, 140, 141, 142, 143, 144, 145, 146, 147, 148, 150, 152, 154, 162, 164, 186, 189, 198, 219, 227, 243, 260, 262, 289, 293, 298, 314, 317, 360, 396, 506, 561, 562, 563, 564, 574, 576, 586, 587, 589, 590, 594, 595, 596, 612, 613, 615, 620, 621, 622, 623, 624, 632, 636, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 667, 670, 671, 673, 674], "instead": [40, 54, 55, 66, 71, 133, 137, 160, 181, 186, 195, 200, 211, 216, 227, 278, 305, 352, 355, 364, 618, 624, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 655, 656, 663, 670, 681, 686], "checkconfigfil": 40, "check": [40, 47, 52, 54, 55, 66, 107, 115, 125, 126, 127, 129, 130, 139, 141, 147, 152, 175, 198, 205, 206, 211, 217, 218, 219, 247, 325, 333, 334, 356, 357, 368, 418, 574, 618, 623, 624, 638, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 656, 669, 670, 671, 681], "needed": [40, 43, 44, 45, 52, 53, 54, 55, 58, 60, 63, 66, 83, 113, 129, 136, 139, 208, 211, 218, 240, 245, 247, 278, 281, 294, 301, 355, 356, 357, 365, 479, 606, 610, 613, 615, 616, 620, 623, 624, 643, 646, 647, 649, 650, 652, 655], "configuration": [40, 44, 45, 53, 55, 66, 85, 107, 113, 115, 126, 133, 134, 135, 137, 140, 143, 144, 145, 147, 149, 227, 230, 329, 351, 353, 356, 357, 610, 612, 613, 615, 616, 623, 624, 643, 644, 646, 647, 649, 651, 653, 655, 664, 667, 670], "dont": [40, 288], "checked": [40, 54, 55, 130, 139, 152, 355], "copied": [40, 221, 353], "corresponding": [40, 52, 54, 55, 211, 248, 257, 356, 357, 623, 643, 644, 645, 646, 649, 650, 651, 691], "som": [40, 45, 55, 57, 107, 115, 127, 141, 142, 183, 186, 188, 195, 202, 211, 218, 221, 227, 231, 243, 247, 248, 260, 274, 294, 305, 315, 334, 345, 355, 365, 368, 615, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 688], "content": [40, 54, 55, 56, 60, 62, 126, 135, 149, 156, 166, 170, 178, 227, 253, 262, 278, 294, 303, 314, 317, 337, 353, 356, 357, 360, 361, 612, 646, 653, 656, 686, 688], "won": [40, 138, 257, 294], "init_logging": 40, "conf_basenam": 40, "initiat": [40, 227, 356, 357, 645], "beeing": [40, 60, 66, 618, 624, 650, 655], "started": [40, 44, 45, 54, 55, 63, 66, 84, 133, 140, 141, 157, 158, 195, 227, 612, 613, 615, 616, 618, 620, 624, 643, 646, 653], "called": [40, 44, 45, 52, 54, 55, 63, 66, 126, 133, 134, 135, 137, 139, 140, 141, 143, 147, 149, 160, 170, 227, 278, 288, 290, 294, 305, 325, 353, 382, 595, 613, 615, 618, 620, 623, 624, 645, 655], "stop": [40, 44, 45, 46, 52, 54, 55, 63, 66, 76, 84, 86, 89, 90, 92, 107, 112, 115, 134, 140, 144, 145, 147, 162, 169, 198, 199, 205, 215, 218, 227, 231, 244, 248, 250, 254, 255, 275, 281, 282, 284, 288, 294, 295, 318, 319, 334, 338, 367, 370, 378, 381, 433, 453, 482, 486, 504, 512, 536, 612, 613, 615, 616, 618, 620, 623, 624, 635, 641, 643, 645, 646, 648, 649, 650, 652, 653, 654, 655, 674], "signum": [40, 134], "fram": [40, 134, 279, 361, 379, 650, 651, 652, 688], "restart": [40, 53, 76, 82, 84, 85, 87, 89, 90, 103, 151, 198, 206, 227, 288, 371, 406, 610, 612, 630, 635, 643, 645, 646, 648, 650, 651, 655, 674, 688], "one": [40, 44, 66, 100, 126, 127, 130, 132, 134, 136, 137, 141, 144, 147, 152, 157, 160, 162, 173, 186, 193, 202, 205, 211, 217, 222, 227, 231, 245, 257, 261, 262, 263, 274, 281, 288, 290, 294, 296, 298, 305, 317, 334, 342, 352, 361, 368, 413, 613, 624, 643, 646, 649, 650, 652, 653, 655, 660, 663, 666, 681], "foreground": [40, 635, 646, 650, 652], "just": [40, 55, 66, 136, 160, 161, 186, 205, 227, 240, 243, 257, 278, 294, 312, 335, 624, 646, 649, 652, 653], "quit": [40, 71, 180, 181, 365], "let": [40, 54, 55, 58, 141, 288, 297, 328], "manually": [40, 66, 141, 227, 253, 254, 288, 294, 352, 624, 653], "list_thread": 40, "add_event_list": 40, "event": [40, 62, 133, 141, 161, 217, 219, 244, 262, 272, 288, 290, 293, 314, 315, 339, 340, 368, 412, 420, 423, 490, 508, 623, 643, 646, 647, 651, 652, 653, 654, 655, 660, 666], "add": [40, 47, 52, 54, 55, 56, 58, 60, 63, 66, 107, 115, 126, 133, 134, 136, 137, 141, 146, 147, 148, 164, 175, 185, 186, 195, 198, 199, 200, 205, 206, 227, 251, 273, 274, 278, 280, 281, 288, 293, 294, 315, 317, 318, 326, 332, 337, 361, 398, 545, 554, 594, 612, 618, 620, 624, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 656], "listen": [40, 221], "interfacing": 40, "visus": [40, 524, 545, 554], "visu_websocket": [40, 83, 85, 98, 103, 117, 127, 302, 352, 355, 360, 545, 554, 592, 600, 641, 643, 645, 646, 649, 669, 670, 671, 674, 689], "return_event_listen": 40, "specified": [40, 44, 45, 53, 54, 55, 63, 66, 83, 104, 113, 126, 130, 134, 136, 137, 138, 143, 145, 148, 149, 157, 158, 160, 168, 186, 193, 199, 200, 211, 231, 247, 248, 278, 290, 301, 305, 315, 317, 355, 356, 357, 365, 368, 610, 613, 615, 616, 620, 623, 624, 633, 645, 646, 650, 655, 660, 667, 670], "object_refcount": 40, "numb": [40, 44, 45, 54, 55, 106, 126, 129, 130, 133, 134, 136, 139, 141, 147, 148, 152, 155, 157, 158, 170, 186, 195, 198, 200, 202, 211, 218, 221, 227, 232, 235, 240, 248, 257, 263, 278, 290, 294, 298, 301, 304, 305, 314, 317, 337, 341, 349, 356, 357, 462, 598, 612, 613, 615, 616, 644, 645, 646, 647, 648, 649, 652, 654, 655, 656, 663, 669], "defined": [40, 44, 45, 52, 54, 55, 66, 107, 113, 115, 126, 133, 134, 136, 137, 139, 141, 146, 148, 151, 176, 199, 205, 208, 211, 216, 217, 227, 247, 248, 253, 274, 278, 288, 304, 315, 344, 352, 356, 357, 365, 413, 538, 613, 615, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655], "string2bool": 40, "boolean": [40, 45, 106, 152, 186, 187, 231, 240, 258, 301, 314, 325, 339, 340, 360, 580, 615, 646], "to_bool": [40, 152], "convert": [40, 133, 135, 141, 148, 149, 152, 183, 235, 315, 645, 646, 650, 651, 655, 667, 670, 679], "converted": [40, 130, 148, 152, 217, 312, 643, 646, 655], "add_it": [40, 54, 55, 66, 134, 624, 653], "dictionary": [40, 43, 44, 50, 53, 58, 62, 66, 126, 130, 134, 141, 148, 184, 232, 256, 268, 315, 337, 338, 347, 361, 382, 397, 398, 423, 511, 519, 579, 601, 602, 604, 607, 608, 609, 613, 624, 645, 646, 649, 653], "does": [40, 44, 45, 54, 55, 66, 113, 126, 130, 134, 136, 149, 152, 157, 158, 160, 162, 186, 190, 218, 247, 248, 251, 278, 294, 311, 312, 352, 356, 357, 364, 365, 512, 613, 615, 618, 624, 645, 646, 648, 649, 653, 655, 670], "created": [40, 44, 130, 132, 133, 134, 136, 142, 160, 176, 186, 288, 294, 296, 312, 353, 612, 613, 616, 629, 643, 646, 649, 650, 651, 652, 653, 655, 656], "api": [40, 45, 46, 110, 120, 130, 134, 140, 144, 146, 151, 160, 164, 173, 179, 184, 186, 213, 215, 218, 224, 227, 228, 229, 244, 247, 254, 255, 257, 262, 268, 272, 273, 274, 280, 291, 293, 296, 301, 311, 314, 335, 336, 344, 348, 349, 359, 360, 361, 362, 364, 365, 366, 369, 370, 376, 384, 390, 394, 396, 399, 420, 421, 422, 424, 425, 430, 447, 449, 458, 462, 468, 472, 473, 479, 491, 495, 510, 516, 520, 521, 529, 530, 532, 535, 545, 548, 550, 558, 560, 565, 573, 591, 594, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 670, 671, 691, 693], "itself": [40, 66, 107, 115, 132, 134, 141, 143, 147, 176, 190, 211, 240, 290, 294, 352, 355, 356, 357, 618, 624, 645, 646, 650, 653], "giv": [40, 44, 52, 54, 55, 66, 71, 126, 130, 133, 134, 136, 137, 141, 142, 144, 147, 148, 152, 155, 161, 180, 186, 193, 217, 231, 239, 247, 273, 288, 290, 296, 304, 305, 315, 335, 353, 355, 356, 357, 368, 395, 613, 618, 623, 624, 646, 648, 649, 650, 652, 665, 681], "return_item": [40, 60, 132, 134, 203, 564, 654, 666], "match_item": [40, 134, 288, 564, 666, 667], "regex": [40, 115, 116, 134, 138, 325, 326, 331, 338, 564, 583, 642, 645, 655], "match": [40, 54, 55, 134, 139, 152, 193, 247, 262, 315, 361, 643, 645, 655, 667], "again": [40, 54, 55, 66, 83, 134, 139, 141, 186, 199, 208, 218, 315, 338, 624, 646, 648, 650, 655, 656, 688], "regular": [40, 115, 116, 132, 134, 137, 199, 200, 208, 314, 325, 326, 512, 565, 583, 591, 592, 599, 652], "expresseion": 40, "expression": [40, 116, 133, 134, 193, 263, 325, 562, 567, 573, 576, 583, 591, 648, 650, 652, 655, 660, 670], "matching": [40, 107, 115, 134, 136, 138, 147, 365, 670], "find_item": [40, 55, 134, 288, 564, 641, 665, 666], "look": [40, 44, 55, 126, 130, 134, 139, 157, 162, 209, 218, 221, 248, 273, 278, 290, 294, 356, 357, 365, 368, 612, 613, 643], "find_childr": [40, 134, 564, 641, 665, 666], "parent": [40, 54, 55, 103, 126, 132, 133, 134, 141, 170, 171, 189, 218, 219, 227, 262, 263, 318, 319, 347, 507, 561, 562, 566, 575, 612, 641, 651, 652, 655, 665, 674], "childr": [40, 134, 562], "on": [40, 44, 45, 52, 53, 54, 55, 56, 58, 66, 69, 83, 86, 87, 89, 90, 103, 104, 107, 111, 113, 115, 116, 125, 126, 127, 130, 133, 134, 136, 139, 141, 142, 147, 148, 151, 152, 154, 157, 158, 160, 161, 162, 164, 165, 169, 173, 176, 177, 179, 180, 183, 186, 187, 189, 193, 195, 198, 199, 200, 205, 206, 210, 211, 212, 213, 218, 221, 227, 230, 231, 235, 236, 239, 240, 245, 247, 248, 254, 258, 260, 262, 273, 274, 278, 282, 283, 285, 288, 290, 293, 294, 295, 296, 298, 301, 305, 312, 313, 315, 317, 325, 328, 329, 331, 334, 335, 337, 338, 342, 352, 353, 355, 356, 357, 359, 360, 361, 363, 365, 369, 370, 390, 398, 419, 420, 434, 436, 449, 488, 508, 531, 537, 545, 552, 554, 573, 574, 579, 590, 591, 610, 612, 613, 615, 616, 623, 624, 630, 633, 638, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 667, 668, 670, 688, 691], "search": [40, 133, 134, 142, 253, 315, 365, 649], "return_modul": [40, 140], "loaded": [40, 44, 45, 54, 55, 60, 66, 84, 86, 126, 134, 137, 139, 140, 144, 146, 149, 151, 356, 357, 595, 612, 613, 615, 624, 643, 646, 648, 655], "named": [40, 107, 115, 130, 136, 140, 162, 180, 353, 355, 368, 647, 649, 653, 655], "return_plugin": [40, 53, 143, 144, 338, 351, 609], "reload_logics": [40, 137], "reload": [40, 53, 58, 60, 62, 71, 137, 146, 151, 169, 180, 181, 381, 610, 648, 649, 652, 653, 665, 670], "return_logic": [40, 137], "get": [40, 44, 45, 47, 52, 54, 55, 58, 60, 66, 73, 82, 83, 84, 85, 86, 87, 88, 113, 132, 133, 136, 137, 141, 143, 144, 147, 148, 149, 150, 152, 157, 158, 161, 164, 173, 175, 183, 185, 186, 195, 197, 205, 206, 211, 218, 219, 221, 227, 234, 255, 256, 257, 260, 262, 274, 278, 281, 287, 288, 297, 309, 315, 334, 341, 356, 357, 360, 365, 370, 383, 405, 457, 545, 550, 552, 562, 563, 612, 613, 615, 618, 624, 644, 646, 648, 649, 650, 651, 652, 653, 655, 666, 667, 688], "return_logics": [40, 137], "actual": [40, 55, 133, 139, 148, 152, 160, 161, 162, 164, 186, 218, 235, 257, 294, 356, 357, 645, 651, 652, 654, 670], "timezon": [40, 66, 97, 113, 148, 211, 216, 262, 356, 357, 533, 624, 656, 659, 660, 662, 672], "awar": [40, 66, 148, 294, 624, 653, 659, 660, 672], "tzinfo": [40, 52, 148, 645, 664], "about": [40, 44, 45, 52, 54, 55, 71, 137, 148, 157, 173, 176, 180, 198, 205, 227, 253, 258, 282, 288, 305, 353, 356, 357, 612, 613, 615, 616, 641, 645, 646, 651, 653, 655, 669, 670], "gmt": [40, 116, 148, 599, 634], "utcinfo": [40, 148], "runtim": [40, 71, 148, 150, 180, 181, 200, 219, 284, 288, 407, 634, 653, 655, 670], "uptim": [40, 45, 63, 123, 148, 170, 227, 250, 382, 453, 615, 620], "get_instanc": [40, 132, 134, 137, 140, 143, 144, 146, 147, 148, 203, 253, 565, 591], "klass": [40, 43, 48, 50, 53, 56, 58, 59, 60, 62, 63, 66, 115, 123, 408, 413, 556, 557, 563, 590, 606, 610, 612, 618, 620, 621, 622, 623, 624, 641, 671, 687, 692, 693], "befasst": 41, "kan": [42, 262, 325, 590], "auszufuhr": [42, 83, 85, 316, 332, 562, 630, 642, 688], "erstellt": [42, 51, 52, 58, 67, 68, 77, 82, 83, 84, 89, 90, 92, 102, 103, 108, 109, 112, 122, 123, 162, 163, 170, 171, 189, 192, 215, 229, 233, 243, 250, 263, 313, 314, 323, 324, 338, 347, 371, 400, 432, 440, 441, 446, 464, 467, 486, 545, 550, 569, 585, 590, 591, 592, 593, 618, 621, 622, 630, 638, 641, 687, 688, 689, 692, 693], "pausiert": [42, 164, 178, 189, 295, 302, 314, 328, 398, 453, 484, 486, 527], "play": [42, 162, 164, 166, 169, 173, 198, 205, 231, 238, 248, 250, 275, 276, 294, 295, 315, 318, 319, 328, 370, 381, 433, 453, 464, 504, 507, 536, 545, 548, 550, 617, 643, 646, 655, 666, 669, 674], "enabeld": 42, "paus": [42, 54, 55, 86, 162, 164, 166, 169, 173, 198, 218, 219, 231, 244, 250, 254, 255, 284, 288, 329, 367, 370, 381, 400, 407, 408, 422, 425, 433, 435, 440, 441, 453, 464, 467, 482, 504, 507, 533, 536, 537, 643, 645, 674], "bytecod": [42, 137], "ubersetzt": [42, 50, 106, 169, 215, 622], "grob": 42, "auftritt": [42, 230, 360, 599], "geloggt": [42, 71, 76, 83, 107, 115, 116, 119, 200, 232, 262, 293, 322, 391, 397, 446, 461, 463, 496, 575, 577, 585, 588, 593, 612, 638, 674, 682], "test_logic": [42, 588], "mull": [42, 444], "ubersetz": [42, 48, 73, 92, 167, 575, 641], "2022": [42, 55, 58, 79, 270, 271, 431, 588, 622, 657], "51": [42, 160, 229, 293], "26": [42, 155, 160, 202, 261, 262, 273, 304, 341, 347, 356, 357, 381, 650, 682], "exception": [42, 44, 58, 66, 136, 147, 152, 210, 263, 294, 596, 613, 618, 624, 641, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 672], "syntax": [42, 66, 117, 125, 133, 137, 140, 143, 192, 205, 263, 269, 296, 301, 330, 397, 490, 563, 564, 574, 575, 576, 577, 589, 592, 594, 600, 618, 624, 638, 643, 646, 649, 650, 653, 655, 656, 667, 671], "lin": [42, 44, 54, 55, 71, 107, 115, 141, 165, 181, 195, 202, 205, 206, 216, 221, 227, 234, 253, 278, 294, 314, 319, 334, 341, 352, 353, 391, 545, 554, 613, 643, 645, 646, 649, 650, 652, 670], "most": [42, 45, 66, 113, 147, 160, 227, 240, 258, 260, 296, 305, 352, 361, 615, 624, 646, 653, 655], "recent": [42, 260, 294, 341, 643, 644, 645, 646, 649, 650, 651, 653, 655, 691], "call": [42, 44, 54, 55, 66, 126, 133, 136, 137, 138, 140, 141, 143, 147, 157, 160, 198, 202, 221, 222, 223, 227, 261, 262, 273, 274, 294, 325, 328, 331, 338, 347, 352, 355, 359, 361, 365, 381, 382, 563, 573, 575, 577, 612, 613, 623, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 656, 660, 665, 671, 686], "last": [42, 45, 54, 82, 86, 97, 104, 107, 115, 133, 136, 137, 141, 148, 152, 185, 186, 211, 247, 250, 262, 273, 278, 281, 287, 294, 317, 326, 332, 356, 357, 368, 395, 453, 567, 591, 615, 633, 649, 650, 651, 652, 667, 668], "shng_dev": [42, 125, 588, 629, 638], "1034": 42, "_generate_bytecod": 42, "compil": [42, 309, 628], "pathnam": [42, 44, 137, 613], "exec": 42, "syntaxerror": 42, "laufzeitfehl": [42, 588], "abgefang": [42, 56, 62, 563, 588, 641, 672, 673], "abc": [42, 126, 296, 588], "55": [42, 103, 112, 155, 167, 185, 250, 304, 329, 356, 357, 588], "aufgetret": [42, 351, 588], "hauptroutin": [42, 588, 589, 590, 598], "literal": [42, 278, 588], "vorlag": [42, 52, 212, 213, 219, 220, 293, 322, 324, 325, 326, 328, 329, 331, 590], "tpl": [42, 352, 590], "aufbau": [42, 53, 58, 71, 83, 100, 121, 238, 381, 603, 642, 682], "erfasst": [42, 43, 53, 165, 219, 590, 601, 602, 604, 606, 607, 608, 609, 610, 693], "minimalkonfiguration": [42, 79, 226], "sieht": [42, 53, 56, 58, 62, 69, 71, 83, 84, 86, 94, 98, 116, 123, 125, 162, 179, 192, 289, 293, 295, 314, 323, 331, 561, 566, 591, 593, 603, 638, 681, 682], "prinzip": [42, 339, 340, 508], "solang": [42, 57, 69, 105, 112, 203, 232, 261, 351, 370, 508, 527], "verwirr": [42, 106], "vermeid": [42, 60, 76, 83, 86, 90, 97, 106, 222, 329, 381, 641, 671], "empfohl": [42, 53, 62, 68, 79, 82, 85, 92, 103, 106, 115, 167, 169, 200, 222, 314, 323, 328, 347, 359, 367, 374, 381, 382, 383, 394, 397, 406, 421, 423, 426, 446, 448, 463, 474, 497, 506, 510, 519, 523, 524, 532, 533, 545, 550, 577, 586, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674, 685, 687, 691], "generell": [42, 62, 82, 196, 215, 322, 326, 329, 330, 331, 554, 555, 690], "kleinbuchstab": [42, 48, 51, 52, 54, 55, 400, 408, 435, 441, 464, 467, 614, 619, 625], "dateisyst": [42, 188], "existenz": 42, "angebeb": 42, "normalerweis": [42, 44, 53, 58, 62, 86, 100, 104, 115, 120, 122, 164, 300, 306, 307, 333, 370, 382, 396, 406, 416, 428, 448, 492, 508, 530, 532, 563, 566, 571, 588, 603, 610, 613, 616, 682, 690], "mitt": [42, 160, 588], "heraus": [42, 71, 83, 96, 106, 117, 187, 348, 366, 445, 532, 545, 558, 588, 589, 592, 593, 594, 600, 638, 671], "rais": [42, 152, 588, 648, 650, 655], "leavelogic": [42, 147, 650], "beispielkonfiguration": [42, 232], "initsmarthomeng": [42, 103], "weist": [42, 58, 156, 181, 303, 351, 400, 408, 435, 441, 458, 464, 467, 480, 496, 524], "hourly": [42, 184, 189, 260, 262, 268, 643, 655], "gat": 42, "alarm": [42, 165, 170, 176, 200, 219, 220, 262, 296, 314, 319, 334, 339, 340, 359, 368, 370, 414, 456, 504, 527, 592, 644, 649], "disk": [42, 649], "usage_warning": [42, 592], "schwellwert": [42, 328, 577], "defini": [42, 53, 58, 115, 155, 162, 164, 169, 184, 192, 200, 229, 232, 268, 295, 304, 313, 324, 325, 326, 328, 329, 332, 333, 338, 347, 381, 496, 523, 577, 589, 596, 603, 622, 671, 683, 686, 689], "monitor": [42, 76, 127, 141, 190, 245, 339, 340, 370, 382, 641, 645, 660, 663, 666], "chang": [42, 52, 54, 55, 60, 66, 67, 76, 88, 107, 113, 115, 130, 133, 137, 141, 147, 160, 167, 183, 185, 186, 195, 211, 213, 218, 221, 227, 240, 247, 262, 278, 288, 290, 291, 294, 295, 298, 318, 334, 341, 353, 355, 356, 357, 361, 395, 571, 577, 594, 624, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 664, 666, 668, 671, 691], "run": [42, 45, 46, 52, 54, 55, 63, 66, 71, 80, 82, 86, 89, 103, 112, 126, 129, 137, 141, 145, 147, 152, 161, 180, 200, 205, 221, 239, 253, 278, 281, 284, 326, 332, 338, 352, 353, 382, 481, 615, 618, 620, 623, 624, 630, 641, 643, 645, 646, 648, 649, 650, 651, 652, 653, 655, 660, 665], "at": [42, 45, 54, 55, 58, 96, 104, 126, 133, 134, 136, 142, 147, 161, 173, 183, 195, 202, 205, 206, 208, 209, 211, 218, 221, 227, 239, 247, 248, 254, 257, 260, 273, 278, 282, 288, 294, 296, 315, 317, 334, 338, 341, 342, 352, 356, 357, 361, 365, 368, 370, 409, 413, 545, 550, 615, 643, 645, 646, 649, 650, 651, 652, 653, 655, 660, 666, 667, 669, 670], "25": [42, 44, 54, 55, 76, 86, 103, 106, 120, 123, 125, 155, 160, 163, 165, 187, 192, 195, 196, 207, 211, 262, 270, 271, 276, 279, 297, 304, 323, 326, 328, 329, 332, 341, 347, 356, 357, 360, 445, 487, 510, 577, 580, 612, 613, 638], "35": [42, 83, 103, 107, 113, 115, 136, 160, 187, 219, 306, 307, 328, 398, 622], "40": [42, 76, 103, 115, 136, 162, 163, 199, 200, 207, 219, 338, 381, 476, 622], "50": [42, 44, 52, 54, 55, 76, 96, 103, 104, 115, 120, 123, 155, 160, 169, 193, 194, 210, 230, 243, 249, 263, 290, 304, 347, 356, 357, 359, 360, 362, 381, 401, 407, 410, 446, 463, 470, 488, 508, 613, 625], "500": [42, 183, 199, 211, 219, 305, 306, 307, 325, 326, 329, 337, 365, 393, 532, 545, 550, 592, 651, 653, 654], "ladbar": [43, 83, 110, 118, 671], "programmier": [43, 67, 106, 124, 270, 271], "unbedingt": [43, 45, 79, 83, 92, 106, 115, 116, 162, 164, 169, 302, 329, 330, 577, 579, 595, 601, 615, 632, 641, 649, 652, 671, 672, 674, 675], "zwangsweis": [43, 116, 332], "readm": [43, 44, 48, 51, 52, 53, 54, 55, 68, 111, 172, 175, 195, 218, 220, 273, 353, 356, 357, 365, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 547, 548, 550, 552, 554, 558, 610, 625, 641, 643, 645, 646, 648, 649, 653, 654, 655, 656, 666, 673, 674, 685], "md": [43, 44, 45, 48, 51, 53, 111, 160, 172, 210, 218, 273, 353, 356, 357, 388, 509, 610, 625, 645, 649, 654, 655, 656, 688], "existi": [43, 230, 339, 340, 343, 596, 611, 632, 641, 681], "websocket": [43, 71, 83, 84, 85, 98, 110, 111, 118, 119, 155, 301, 302, 304, 352, 360, 524, 545, 554, 611, 612, 617, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 663, 684, 688, 689], "__init__": [43, 47, 48, 53, 54, 55, 58, 59, 62, 115, 130, 178, 207, 351, 589, 614, 619, 622, 645, 648, 653, 654, 655], "llieg": 43, "unterordnet": 43, "moodul": 43, "kennt": [43, 53, 123, 124, 306, 307, 396, 601, 602, 604, 606, 607, 608, 609, 610, 638], "schlusselbegriff": [43, 53, 606, 610], "sh_minversion": [43, 44, 45, 53, 54, 55, 606, 610, 612, 613, 615, 616, 653], "minimum": [43, 53, 54, 55, 83, 162, 171, 186, 278, 287, 290, 317, 321, 325, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 606, 610, 612, 614, 616, 619], "shng": [43, 44, 45, 53, 54, 55, 62, 66, 83, 103, 113, 120, 121, 122, 162, 163, 164, 189, 190, 219, 222, 223, 262, 272, 285, 295, 306, 307, 338, 346, 350, 428, 520, 606, 610, 612, 613, 615, 616, 623, 624, 641, 646, 647, 648, 651, 652, 654, 655, 656, 679, 681, 684, 687, 688, 690], "leav": [43, 44, 45, 53, 107, 115, 199, 278, 333, 508, 606, 610, 612, 613, 615, 616, 643, 651, 655], "empty": [43, 44, 45, 53, 54, 55, 66, 137, 139, 149, 152, 157, 158, 165, 205, 227, 278, 294, 356, 357, 361, 365, 606, 610, 612, 613, 615, 616, 624, 643, 646, 648, 650, 653, 654, 655], "special": [43, 44, 53, 55, 58, 63, 66, 71, 107, 115, 135, 152, 160, 181, 202, 221, 227, 240, 251, 288, 290, 325, 326, 332, 565, 591, 599, 606, 610, 613, 616, 620, 624, 642, 643, 646, 647], "sh_maxversion": [43, 44, 45, 53, 54, 55, 606, 610, 612, 613, 615, 616], "maximum": [43, 44, 45, 53, 54, 55, 136, 141, 169, 186, 211, 262, 290, 294, 295, 317, 321, 325, 365, 413, 431, 538, 606, 610, 612, 613, 615, 616, 646, 651, 656], "py_minversion": [43, 53, 54, 55, 606, 610, 616, 645], "py_maxversion": [43, 53, 54, 55, 606, 610, 616, 645], "de": [43, 44, 45, 50, 53, 54, 55, 56, 57, 58, 66, 69, 83, 96, 103, 104, 107, 113, 115, 125, 131, 151, 162, 164, 170, 171, 172, 176, 182, 183, 185, 186, 198, 209, 214, 215, 218, 219, 234, 239, 244, 245, 250, 251, 253, 260, 273, 278, 279, 280, 285, 298, 301, 312, 313, 314, 315, 335, 336, 341, 344, 347, 352, 353, 355, 356, 357, 364, 365, 376, 394, 405, 439, 447, 460, 462, 468, 479, 510, 516, 532, 536, 545, 550, 558, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 624, 633, 638, 641, 647, 649, 651, 652, 653, 654, 655, 656, 666, 674, 675, 688], "backend": [43, 44, 45, 51, 88, 103, 106, 109, 112, 118, 120, 132, 137, 157, 158, 179, 180, 184, 192, 206, 220, 252, 255, 268, 328, 329, 348, 349, 357, 366, 521, 545, 548, 566, 596, 606, 613, 615, 641, 645, 649, 650, 651, 652, 653, 655, 656, 669, 670, 671, 672, 673, 674], "en": [43, 44, 45, 48, 50, 53, 54, 55, 56, 83, 111, 151, 172, 200, 219, 308, 309, 314, 359, 365, 532, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 615, 616, 655], "implementing": [43, 44, 45, 66, 211, 606, 613, 615, 624], "un": [43, 44, 53, 55, 66, 262, 314, 606, 610, 613, 624], "initialisiert": [43, 52, 53, 83, 155, 304, 314, 330, 393, 454, 508, 522, 565, 591, 596, 601, 602, 604, 606, 607, 608, 609, 610], "versionsnumb": [43, 53, 606, 610], "definierert": [43, 53, 606, 610], "verglich": [43, 53, 79, 232, 289, 323, 325, 330, 574, 577, 606, 610], "kmpatibel": [43, 53, 606, 610], "kompatibel": [43, 53, 232, 265, 271, 284, 293, 413, 431, 538, 606, 610], "komatibel": [43, 53, 606, 610], "mehrsprach": [43, 48, 53, 61, 601, 602, 604, 606, 607, 608, 609, 610, 632], "beschreibt": [43, 47, 53, 83, 91, 514, 563, 601, 602, 604, 606, 607, 608, 609, 610, 688], "generier": [43, 48, 53, 85, 302, 601, 602, 604, 606, 607, 608, 609, 610, 684, 685, 688], "identifikation": [43, 53, 504, 601, 602, 604, 606, 607, 608, 609, 610], "stellig": [43, 53, 96, 162, 407, 601, 602, 604, 606, 607, 608, 609, 610], "land": [43, 53, 83, 96, 104, 107, 115, 125, 244, 399, 601, 602, 604, 606, 607, 608, 609, 610, 638, 688], "kurzel": [43, 53, 566, 601, 602, 604, 606, 607, 608, 609, 610], "fr": [43, 44, 50, 53, 56, 71, 104, 133, 151, 172, 314, 347, 365, 532, 601, 602, 604, 606, 607, 608, 609, 610, 612, 613, 616], "pl": [43, 53, 104, 210, 601, 602, 604, 606, 607, 608, 609, 610], "benutzt": [43, 45, 52, 53, 71, 85, 103, 106, 115, 116, 123, 166, 189, 302, 306, 307, 354, 359, 360, 397, 446, 454, 463, 504, 573, 579, 601, 602, 604, 607, 608, 609, 614, 615, 619, 682], "ungult": [43, 53, 232, 330, 563, 608], "warnung": [43, 53, 64, 92, 113, 115, 116, 123, 203, 232, 262, 263, 322, 391, 461, 496, 593, 602, 604, 608, 641, 671, 681, 682], "genau": [43, 53, 56, 67, 80, 82, 83, 86, 92, 103, 106, 112, 120, 123, 165, 187, 192, 200, 228, 230, 256, 261, 287, 289, 324, 329, 354, 359, 381, 396, 554, 555, 561, 563, 569, 572, 574, 579, 592, 601, 602, 604, 607, 608, 609, 614, 619], "schlussel": [43, 44, 50, 53, 106, 120, 122, 184, 188, 224, 229, 241, 260, 268, 338, 346, 359, 380, 427, 473, 511, 512, 594, 601, 602, 604, 607, 608, 609, 613, 616, 682, 688, 690], "grossbuchstab": [43, 53, 601, 602, 603, 604, 608, 609], "sonderzeich": [43, 53, 116, 602, 608], "durf": [43, 53, 103, 181, 325, 428, 490, 563, 566, 574, 596, 602, 608, 688], "ziff": [43, 53, 100, 164, 169, 585, 602, 608], "gultigkeitspruf": [43, 53, 601, 602, 608], "param1": [43, 53, 55, 62, 604, 608, 609], "1234": [43, 53, 227, 281, 305, 306, 307, 601, 602, 604, 608, 609], "deutsch": [43, 50, 51, 53, 77, 80, 82, 159, 215, 262, 373, 516, 520, 532, 545, 547, 548, 550, 552, 554, 558, 601, 602, 604, 608, 609, 665, 671, 672, 674, 688], "english": [43, 53, 139, 160, 365, 601, 602, 604, 608, 609, 645, 646, 649, 653, 655, 671], "valid_list": [43, 44, 45, 53, 55, 170, 207, 601, 602, 604, 607, 608, 609, 613, 615, 646, 649, 655], "2222": [43, 53, 168, 601, 602, 604, 608, 609], "4321": [43, 53, 601, 602, 604, 608, 609], "param2": [43, 53, 55, 604, 608, 609], "webif_pagelength": [43, 44, 53, 60, 120, 123, 608, 613, 651, 652, 653, 655], "manuell": [43, 53, 89, 90, 92, 102, 164, 169, 170, 192, 219, 220, 233, 238, 255, 270, 271, 283, 314, 319, 322, 324, 325, 326, 328, 329, 330, 347, 349, 351, 362, 370, 504, 507, 508, 519, 608, 622, 655, 688], "datatyp": [43, 45, 48, 53, 54, 55, 133, 139, 152, 191, 248, 264, 267, 294, 601, 602, 604, 607, 608, 609, 615, 621, 623, 626, 643, 646, 649, 655], "boolsch": [43, 45, 53, 164, 169, 191, 264, 267, 289, 327, 328, 330, 360, 454, 601, 602, 604, 607, 608, 609, 615], "ganzzahl": [43, 52, 53, 314, 401, 434, 579, 599, 601, 602, 604, 607, 608, 609, 634], "bereich": [43, 53, 56, 88, 92, 103, 115, 162, 170, 194, 262, 325, 354, 453, 475, 488, 563, 577, 601, 602, 604, 607, 608, 609, 682, 686, 688], "63": [43, 53, 98, 112, 124, 254, 255, 260, 282, 434, 443, 601, 602, 604, 607, 608, 609, 638], "szen": [43, 53, 93, 103, 106, 154, 160, 162, 212, 213, 314, 419, 420, 434, 579, 601, 602, 604, 607, 608, 609, 612, 632, 641, 671, 679], "numm": [43, 53, 162, 164, 167, 168, 169, 170, 178, 192, 196, 262, 287, 299, 300, 314, 330, 340, 374, 377, 380, 381, 382, 412, 417, 451, 453, 469, 470, 477, 488, 489, 511, 601, 602, 604, 607, 608, 609, 632, 674], "reprasentiert": [43, 53, 98, 106, 306, 307, 409, 601, 602, 604, 607, 608, 609], "darf": [43, 53, 58, 76, 82, 100, 102, 104, 106, 187, 229, 293, 325, 326, 329, 457, 490, 569, 575, 577, 592, 601, 602, 604, 607, 608, 609, 610, 633, 673, 682], "equivalent": [43, 53, 186, 227, 262, 601, 602, 604, 607, 608, 609], "ipv4": [43, 44, 53, 141, 152, 278, 377, 384, 413, 415, 452, 478, 494, 500, 524, 531, 533, 534, 601, 602, 604, 607, 608, 609, 613, 616, 649], "ipv6": [43, 53, 87, 141, 152, 368, 534, 601, 602, 604, 607, 608, 609, 641, 643, 674], "mac": [43, 53, 74, 82, 103, 141, 152, 166, 170, 185, 211, 238, 281, 282, 283, 293, 297, 310, 363, 378, 382, 395, 441, 480, 501, 507, 518, 531, 601, 602, 604, 607, 608, 609, 646, 655], "knx_ga": [43, 53, 434, 601, 602, 604, 607, 608, 609, 659, 674], "grupp": [43, 53, 82, 117, 124, 169, 192, 200, 212, 213, 224, 262, 276, 293, 302, 306, 307, 314, 321, 325, 328, 330, 359, 360, 391, 400, 408, 419, 420, 435, 441, 464, 467, 489, 511, 527, 592, 600, 601, 602, 604, 607, 608, 609, 632, 641, 671, 693], "universell": [43, 53, 78, 347, 545, 554, 583, 601, 602, 604, 607, 608, 609, 642], "komplex": [43, 47, 53, 57, 78, 83, 97, 106, 153, 189, 229, 325, 326, 328, 563, 573, 587, 601, 602, 604, 607, 608, 609, 622, 674, 693], "element": [43, 53, 55, 56, 83, 106, 164, 169, 185, 202, 222, 224, 229, 230, 232, 243, 262, 287, 315, 325, 328, 331, 352, 362, 368, 395, 396, 434, 496, 523, 564, 589, 601, 602, 604, 607, 608, 609, 653, 655, 663, 693], "len": [43, 53, 139, 152, 170, 203, 222, 223, 230, 288, 338, 601, 602, 604, 607, 608, 609, 622], "subtyp": [43, 53, 139, 601, 602, 604, 607, 608, 609], "gui_typ": [43, 44, 45, 53, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 643, 646], "spezifiziert": [43, 45, 53, 106, 196, 223, 338, 396, 397, 450, 457, 480, 516, 601, 602, 604, 607, 608, 609, 615, 682], "shngadmin": [43, 53, 155, 601, 602, 604, 607, 608, 609, 612, 644, 645, 646, 648, 649, 651, 653, 654, 655], "behandelt": [43, 53, 333, 508, 595, 601, 602, 604, 607, 608, 609, 622], "handhab": [43, 53, 325, 326, 589, 601, 602, 604, 607, 608, 609], "editi": [43, 53, 82, 83, 88, 92, 556, 557, 601, 602, 604, 607, 608, 609, 671], "wunschenswert": [43, 53, 583, 601, 602, 604, 607, 608, 609], "unterschiedlch": [43, 53, 601, 602, 604, 607, 608, 609], "editor": [43, 53, 83, 92, 94, 103, 106, 139, 164, 172, 203, 219, 294, 359, 385, 545, 554, 601, 602, 604, 607, 608, 609, 638, 655, 670, 671], "wide_str": [43, 45, 53, 601, 602, 604, 607, 608, 609, 615, 643], "breit": [43, 53, 58, 76, 378, 601, 602, 604, 607, 608, 609], "readonly": [43, 53, 111, 202, 290, 355, 537, 601, 602, 604, 607, 608, 609, 641, 643, 646], "erlaubt": [43, 53, 56, 57, 80, 106, 119, 120, 121, 122, 207, 228, 256, 262, 285, 302, 314, 326, 334, 351, 382, 415, 416, 448, 457, 469, 483, 490, 492, 495, 496, 523, 530, 532, 545, 548, 550, 567, 573, 591, 592, 601, 602, 603, 604, 607, 608, 609, 671, 673, 681, 686, 688], "valid_list_ci": [43, 53, 601, 602, 604, 607, 608, 609, 646], "low": [43, 53, 60, 133, 136, 162, 165, 170, 176, 179, 183, 211, 217, 218, 257, 262, 328, 338, 352, 359, 365, 412, 574, 601, 602, 604, 607, 608, 609, 618, 625, 648, 649, 652, 670, 688], "valid_list_description": [43, 53, 170, 601, 602, 604, 607, 608, 609, 655], "keys": [43, 53, 104, 112, 126, 130, 170, 198, 231, 237, 260, 261, 262, 301, 335, 337, 344, 347, 364, 366, 406, 455, 460, 510, 511, 563, 601, 602, 604, 607, 608, 609, 633, 641, 645, 646, 655, 688], "valid_min": [43, 44, 45, 53, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 646], "pint": [43, 53, 601, 602, 604, 607, 608, 609], "pfloat": [43, 53, 601, 602, 604, 607, 608, 609], "valid_max": [43, 44, 45, 53, 601, 602, 604, 607, 608, 609, 612, 613, 615, 616, 646], "mandatory": [43, 53, 55, 139, 189, 218, 227, 290, 382, 518, 601, 602, 604, 607, 608, 609, 645, 650, 655, 669], "einschrank": [43, 53, 170, 179, 184, 192, 210, 219, 232, 252, 255, 348, 357, 360, 366, 596, 601, 602, 604, 607, 608, 609], "wirkungslos": [43, 53, 601, 602, 604, 607, 608, 609], "standardinstallation": [43, 48, 92], "anforder": [43, 48, 52, 53, 54, 55, 67, 81, 92, 116, 121, 125, 162, 232, 244, 313, 331, 474, 610, 625, 638, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 678, 691], "implement": [44, 45, 53, 54, 55, 66, 132, 133, 134, 137, 139, 140, 143, 144, 145, 146, 151, 154, 157, 160, 162, 205, 211, 216, 218, 221, 257, 288, 356, 357, 413, 610, 612, 613, 615, 616, 618, 623, 624, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667], "possibility": [44, 195, 216, 218, 274, 645, 646, 648, 649, 651, 652, 655], "writ": [44, 52, 54, 55, 66, 86, 98, 107, 111, 115, 126, 129, 130, 142, 149, 157, 164, 168, 175, 180, 183, 186, 195, 202, 218, 222, 223, 226, 239, 276, 278, 294, 308, 309, 314, 317, 334, 341, 352, 353, 355, 370, 452, 512, 613, 622, 623, 624, 643, 645, 646, 648, 650, 655, 656, 690], "cherrypyfilt": [44, 613], "build": [44, 51, 60, 71, 73, 83, 86, 133, 138, 139, 278, 288, 309, 612, 613, 627, 645, 646, 648, 649, 654, 664, 665], "configur": [44, 45, 137, 138, 183, 185, 186, 195, 205, 216, 234, 235, 236, 247, 254, 281, 296, 365, 368, 395, 613, 615, 628, 644, 645, 646, 651, 674], "returning": [44, 66, 138, 186, 613, 624, 646, 655], "tell": [44, 138, 157, 164, 613], "suppress": [44, 138, 613, 646, 649, 652, 655], "logentry": [44, 138, 613], "whereas": [44, 138, 613], "includ": [44, 138, 157, 160, 186, 190, 208, 227, 294, 318, 341, 352, 353, 613, 642, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 677, 688], "record": [44, 136, 138, 186, 222, 223, 227, 295, 583, 584, 613, 645, 669], "into": [44, 45, 52, 54, 55, 60, 66, 126, 130, 136, 138, 139, 141, 149, 160, 162, 164, 173, 176, 186, 187, 190, 198, 199, 202, 208, 211, 216, 217, 257, 273, 278, 294, 317, 335, 352, 613, 618, 623, 624, 646, 648, 652, 653, 654, 655, 659, 668, 669, 670], "furth": [44, 45, 107, 115, 126, 130, 138, 157, 158, 161, 195, 318, 342, 345, 353, 613, 615, 643, 644, 645, 646, 648, 649, 650, 651, 653, 655, 669, 691], "processing": [44, 138, 160, 161, 186, 198, 203, 227, 305, 368, 613, 643, 649], "eventual": [44, 138, 613], "output": [44, 46, 107, 115, 126, 133, 136, 138, 149, 152, 195, 205, 218, 227, 234, 239, 240, 248, 261, 262, 278, 293, 308, 309, 314, 322, 338, 613, 644, 645, 646, 649, 651, 653, 654, 656, 677], "determin": [44, 136, 138, 152, 211, 227, 260, 315, 613], "logged": [44, 138, 141, 148, 186, 208, 227, 248, 613, 647, 649, 654], "should": [44, 45, 52, 53, 54, 55, 58, 63, 66, 83, 107, 113, 115, 126, 132, 133, 134, 137, 138, 140, 141, 142, 143, 147, 148, 149, 150, 160, 164, 176, 183, 185, 186, 190, 193, 198, 206, 211, 216, 217, 218, 221, 227, 231, 234, 247, 248, 262, 269, 278, 283, 288, 297, 301, 312, 315, 334, 341, 342, 352, 356, 357, 436, 545, 550, 610, 613, 615, 616, 618, 620, 623, 624, 643, 644, 645, 646, 648, 649, 650, 651, 653, 655, 670, 681, 691], "otherwis": [44, 45, 55, 66, 107, 115, 137, 138, 139, 141, 142, 147, 152, 195, 221, 248, 251, 278, 294, 337, 613, 615, 616, 623, 624, 646, 652, 655], "deemed": [44, 138, 613], "appropriat": [44, 127, 133, 138, 227, 361, 613, 623, 643, 649], "may": [44, 45, 55, 130, 133, 137, 138, 141, 147, 157, 158, 160, 180, 186, 193, 195, 198, 218, 221, 305, 335, 341, 353, 365, 370, 613, 615, 643], "modified": [44, 133, 135, 138, 250, 288, 294, 355, 356, 357, 453, 613, 645, 646, 650, 651, 653, 655, 670], "plac": [44, 45, 138, 157, 158, 273, 315, 335, 337, 510, 613, 615, 649, 667, 688], "arg": [44, 45, 63, 130, 139, 143, 145, 147, 613, 615, 616, 620, 623, 641], "karg": [44, 45, 63, 613, 615, 616, 620, 623], "webif_mount_prefix": [44, 613], "gtemplates_dir": [44, 613], "gstatic_dir": [44, 613], "init_template_environment": [44, 613], "initializ": [44, 52, 66, 133, 134, 136, 151, 294, 613, 616, 624, 646, 655, 667], "jinja2": [44, 48, 56, 60, 107, 115, 151, 172, 613], "engin": [44, 61, 107, 115, 321, 508, 613, 674, 687], "environment": [44, 54, 55, 66, 68, 82, 83, 90, 107, 115, 125, 127, 131, 134, 152, 195, 278, 589, 598, 613, 618, 624, 629, 638, 644, 652, 653, 654, 655, 671, 693], "is_staticfil": [44, 613], "point": [44, 45, 66, 147, 148, 157, 158, 161, 186, 218, 221, 260, 278, 315, 317, 613, 615, 624, 649, 652], "existing": [44, 66, 133, 136, 137, 151, 162, 186, 292, 294, 325, 326, 612, 613, 624, 643, 645, 648, 652, 653, 655, 677], "extend": [44, 54, 55, 133, 278, 563, 612, 613, 649, 655], "is_port_in_us": [44, 613], "port": [44, 45, 52, 69, 71, 80, 83, 84, 85, 86, 87, 103, 110, 111, 119, 120, 121, 122, 123, 127, 141, 155, 160, 162, 167, 170, 173, 180, 181, 183, 186, 191, 192, 198, 200, 202, 206, 211, 222, 223, 227, 231, 235, 236, 238, 239, 240, 241, 247, 248, 249, 250, 257, 258, 264, 267, 276, 278, 281, 290, 292, 299, 300, 301, 304, 305, 306, 307, 308, 309, 315, 319, 331, 334, 341, 346, 351, 356, 357, 360, 362, 368, 374, 381, 401, 402, 413, 414, 417, 418, 419, 437, 438, 450, 469, 480, 501, 504, 505, 514, 522, 525, 528, 534, 612, 613, 615, 616, 643, 644, 646, 648, 650, 651, 655, 663, 684, 690], "get_user_dict": [44, 613], "section": [44, 54, 55, 66, 106, 107, 115, 137, 139, 143, 145, 154, 155, 176, 206, 209, 227, 240, 254, 273, 304, 353, 355, 356, 357, 368, 612, 613, 624, 643, 646, 647, 650, 652, 653, 654, 655, 673, 681], "containing": [44, 54, 55, 66, 107, 115, 126, 133, 134, 141, 143, 145, 148, 258, 356, 357, 613, 624, 652, 655], "hashed_password": [44, 45, 83, 111, 120, 180, 613, 615], "groups": [44, 160, 199, 352, 511, 613, 653, 655], "each": [44, 55, 66, 132, 133, 136, 137, 140, 142, 143, 144, 160, 182, 186, 198, 205, 240, 273, 274, 288, 294, 296, 353, 356, 357, 361, 613, 624, 643, 646, 650, 653, 655], "validate_password": [44, 157, 613], "realm": [44, 157, 613], "validat": [44, 141, 152, 613, 623, 645], "combination": [44, 148, 162, 613], "validate_service_password": [44, 613], "get_local_ip_address": [44, 45, 613, 615], "address": [44, 45, 66, 69, 71, 87, 127, 131, 141, 152, 157, 158, 173, 175, 176, 185, 195, 198, 202, 211, 218, 221, 222, 227, 230, 231, 234, 235, 236, 244, 245, 254, 256, 257, 278, 282, 283, 290, 292, 297, 298, 301, 315, 335, 355, 365, 368, 399, 452, 510, 612, 613, 615, 624, 649], "reached": [44, 45, 133, 136, 157, 158, 185, 199, 318, 395, 613, 615], "get_local_hostnam": [44, 45, 613, 615], "fully": [44, 160, 183, 613, 623, 650], "qualified": [44, 365, 613], "get_local_port": [44, 45, 613, 615], "get_local_servicesport": [44, 45, 613, 615], "webservic": [44, 45, 120, 157, 158, 160, 170, 502, 504, 545, 558, 613, 615, 617, 622, 641, 644, 646, 649, 653, 655, 671, 675], "get_service_us": [44, 613], "get_service_password": [44, 613, 646], "hashed": [44, 45, 120, 152, 157, 158, 180, 613, 615, 646], "get_webifs_for_plugin": [44, 613], "pluginnam": [44, 45, 52, 54, 55, 56, 60, 64, 68, 92, 157, 158, 243, 613, 615, 625], "registered": [44, 45, 54, 55, 66, 157, 158, 227, 365, 613, 615, 624, 652, 653], "shortnam": [44, 45, 66, 157, 158, 613, 615, 624, 655], "returned": [44, 58, 66, 130, 139, 141, 142, 144, 148, 152, 227, 248, 258, 305, 315, 335, 344, 356, 357, 361, 613, 624, 645, 646, 650, 655], "listentry": [44, 613], "has": [44, 45, 54, 55, 66, 126, 132, 133, 135, 136, 137, 139, 140, 141, 142, 148, 149, 152, 162, 183, 185, 186, 190, 205, 211, 218, 221, 227, 231, 234, 240, 248, 257, 262, 263, 278, 288, 290, 294, 298, 301, 312, 315, 317, 325, 352, 353, 355, 356, 357, 365, 368, 395, 413, 612, 613, 615, 616, 618, 623, 624, 645, 646, 647, 649, 650, 652, 653, 655, 656, 667, 670], "following": [44, 54, 55, 107, 113, 115, 126, 127, 130, 132, 133, 134, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 151, 173, 176, 177, 183, 186, 190, 193, 198, 199, 202, 205, 206, 208, 217, 218, 221, 227, 234, 240, 245, 247, 248, 251, 254, 257, 258, 262, 269, 278, 281, 288, 290, 294, 295, 296, 305, 315, 334, 335, 344, 352, 353, 355, 356, 357, 361, 365, 370, 613, 643, 644, 645, 646, 649, 650, 651, 653, 667, 679, 691], "structur": [44, 45, 53, 54, 55, 126, 130, 134, 135, 144, 149, 162, 186, 218, 227, 312, 353, 355, 361, 603, 613, 615, 646, 649, 652, 653, 664, 667, 689], "webif_dict": [44, 613], "mount": [44, 613], "pluginclass": [44, 45, 157, 158, 613, 615], "webifnam": [44, 613], "tnfos": [44, 613], "get_services_for_plugin": [44, 613], "service_dict": [44, 613], "servicenam": [44, 45, 157, 158, 198, 613, 615], "register_webif": [44, 613], "app": [44, 45, 80, 157, 158, 160, 162, 172, 176, 205, 214, 215, 218, 219, 220, 244, 254, 255, 257, 283, 293, 314, 344, 362, 375, 424, 472, 613, 615, 646], "use_global_basic_auth": [44, 613], "useprefix": [44, 613], "regist": [44, 66, 186, 195, 196, 207, 208, 218, 249, 334, 335, 403, 452, 494, 517, 613, 616, 624, 643, 649, 650, 653], "application": [44, 62, 161, 215, 219, 272, 274, 359, 360, 612, 613, 648, 669], "mod_http": [44, 157, 528, 613, 646], "get_shortnam": [44, 54, 55, 60, 66, 613, 624, 646], "get_classnam": [44, 66, 613, 624], "get_instance_nam": [44, 66, 157, 613, 624], "functionallity": [44, 613, 646, 649], "left": [44, 52, 54, 55, 56, 198, 231, 253, 281, 352, 433, 613, 625], "generic": [44, 210, 240, 613, 641, 643, 647, 663], "generated": [44, 84, 136, 190, 218, 227, 251, 254, 280, 352, 353, 613, 646, 647, 648], "basic_auth": [44, 613], "setting": [44, 45, 54, 71, 142, 147, 181, 186, 190, 195, 205, 206, 211, 220, 227, 231, 247, 248, 258, 278, 290, 292, 294, 315, 325, 326, 329, 330, 331, 332, 352, 368, 394, 454, 462, 468, 487, 508, 594, 613, 615, 643, 646, 649, 650, 652, 654, 655, 666, 670, 688], "are": [44, 45, 52, 54, 55, 66, 83, 107, 113, 115, 126, 127, 130, 132, 133, 134, 136, 137, 138, 139, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 154, 157, 160, 173, 176, 180, 182, 183, 186, 195, 199, 202, 205, 208, 211, 227, 231, 234, 240, 245, 247, 248, 251, 254, 257, 260, 262, 274, 278, 281, 288, 290, 294, 301, 305, 312, 315, 317, 334, 335, 341, 344, 352, 353, 355, 356, 357, 361, 365, 368, 370, 413, 512, 595, 612, 613, 615, 618, 623, 624, 642, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 655, 656, 663, 670, 691], "registering": [44, 66, 186, 227, 613, 624], "its": [44, 52, 54, 55, 127, 133, 141, 142, 161, 182, 183, 186, 240, 248, 298, 613, 623, 655], "own": [44, 54, 55, 63, 66, 72, 142, 190, 235, 260, 334, 335, 344, 353, 370, 613, 620, 624, 646, 650, 653, 655], "added": [44, 66, 107, 113, 115, 137, 147, 175, 179, 183, 195, 216, 251, 273, 274, 278, 318, 352, 353, 365, 613, 618, 623, 624, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663, 670, 674], "turl": [44, 613], "register_servic": [44, 45, 613, 615], "servic": [44, 45, 50, 71, 82, 85, 86, 89, 90, 92, 103, 106, 120, 121, 157, 158, 159, 160, 161, 162, 170, 171, 180, 195, 196, 198, 225, 227, 257, 265, 273, 274, 279, 344, 355, 368, 374, 406, 421, 440, 444, 445, 454, 460, 471, 472, 512, 545, 558, 559, 595, 613, 615, 630, 643, 645, 646, 649, 653, 655, 670, 688], "register_visu": [44, 613], "visu_port": [44, 613], "startup": [44, 45, 84, 89, 107, 115, 157, 158, 183, 227, 288, 294, 398, 613, 615, 616, 642, 645, 646, 648, 649, 650, 653, 655], "uses": [44, 87, 130, 155, 183, 195, 221, 239, 257, 260, 298, 304, 355, 356, 357, 361, 368, 612, 613, 616, 643, 645, 646, 647, 651], "put": [44, 52, 54, 55, 60, 66, 206, 218, 219, 227, 253, 262, 294, 355, 360, 361, 590, 612, 613, 616, 618, 624, 653, 655, 664], "creation": [44, 142, 613, 616, 643, 646, 651, 655, 656], "her": [44, 45, 52, 54, 55, 88, 132, 134, 136, 138, 141, 160, 164, 169, 183, 186, 203, 205, 206, 218, 221, 227, 231, 247, 262, 273, 274, 280, 281, 290, 294, 301, 305, 312, 325, 326, 328, 351, 361, 563, 585, 595, 612, 613, 615, 616, 668], "cleanup": [44, 133, 187, 612, 613, 616, 647, 649, 650, 653, 654, 655, 664], "log_server_info": [44, 613], "server_nr": [44, 613], "moduleapp": [44, 613], "starturl": [44, 45, 110, 120, 613, 615], "webapp": [44, 613], "entrypoint": [44, 613], "depenting": [44, 613], "redirect": [44, 45, 129, 152, 157, 158, 161, 205, 215, 416, 521, 613, 615], "choos": [44, 130, 216, 221, 281, 315, 613, 654, 670], "differnt": [44, 613], "mounted": [44, 240, 315, 613], "exposed": [44, 262, 613], "pag": [44, 45, 54, 55, 58, 69, 71, 85, 157, 158, 180, 219, 220, 234, 273, 302, 352, 353, 354, 355, 356, 357, 365, 496, 524, 613, 615, 644, 645, 646, 647, 649, 650, 651, 652, 653, 655, 664, 665, 669, 670, 682, 686, 687], "formatted": [44, 45, 63, 136, 149, 370, 615, 620, 643], "raw": [44, 45, 71, 141, 181, 182, 186, 187, 281, 299, 305, 306, 307, 497, 498, 499, 521, 623, 655, 671], "copy": [44, 45, 54, 55, 66, 133, 160, 206, 226, 227, 239, 273, 309, 315, 352, 353, 361, 624, 641, 650, 674, 686], "past": [44, 45, 148, 160, 162, 163, 227, 262, 273, 361, 642, 652], "meta": [44, 45, 52, 143, 145, 305, 335, 646], "5b": [44, 613], "pour": [44, 612, 613, 616], "l": [44, 82, 149, 169, 192, 195, 196, 261, 338, 461, 612, 613, 616, 635, 671], "impl\u00e9mentation": [44, 613], "connectionretri": [44, 120, 613, 653], "verbindungsversuch": [44, 120, 233, 381, 400, 407, 408, 435, 440, 441, 464, 467, 507, 613], "erui": [44, 120, 330, 331, 599, 613, 634], "connection": [44, 45, 55, 69, 71, 85, 116, 130, 138, 141, 168, 179, 180, 181, 183, 186, 195, 200, 211, 218, 219, 234, 257, 301, 305, 315, 318, 355, 356, 357, 422, 613, 615, 616, 623, 632, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 665, 688], "retri": [44, 130, 141, 195, 400, 441, 464, 467, 613, 656], "retriev": [44, 186, 205, 234, 260, 262, 298, 312, 365, 413, 613, 643, 666], "nombr": [44, 612, 613], "tentativ": [44, 613], "connexion": [44, 613], "r\u00e9cup\u00e9r": [44, 613], "benutzernam": [44, 47, 82, 83, 120, 121, 170, 215, 338, 380, 382, 383, 424, 429, 436, 449, 526, 534, 599, 613], "access": [44, 45, 88, 130, 132, 134, 137, 140, 141, 143, 144, 146, 147, 148, 157, 158, 161, 180, 182, 202, 218, 227, 278, 301, 315, 334, 349, 352, 353, 355, 567, 591, 598, 612, 613, 615, 616, 643, 646, 653, 655, 660, 669, 674], "nom": [44, 613, 616], "utilisateur": [44, 613], "acc\u00e8s": [44, 612, 613, 616], "basiqu": [44, 613], "si": [44, 71, 107, 180, 181, 218, 219, 368, 424, 425, 613, 616], "mot": [44, 613], "pass": [44, 47, 52, 53, 54, 55, 113, 120, 123, 126, 141, 194, 210, 219, 248, 273, 288, 370, 423, 522, 554, 555, 613, 650], "est": [44, 613, 616], "d\u00e9fini": [44, 613], "unencrypted": [44, 45, 355, 613, 615, 616], "clair": [44, 613], "supersed": [44, 613], "hach\u00e9": [44, 613], "remplac": [44, 613], "le": [44, 71, 180, 181, 612, 613, 616], "param\u00e8tr": [44, 613], "service_us": [44, 45, 120, 257, 528, 613, 615, 646], "serviceus": [44, 45, 120, 157, 158, 613, 615], "webervic": [44, 157, 613], "au": [44, 373, 613], "service_password": [44, 45, 120, 257, 528, 613, 615, 646], "aux": [44, 613], "service_hashed_password": [44, 45, 120, 613, 615], "operat": [44, 126, 219, 254, 613, 616], "laquell": [44, 613, 616], "devrait": [44, 613, 616], "fonctionn": [44, 613, 616], "il": [44, 71, 180, 181, 613, 616], "g\u00e9n\u00e9ralement": [44, 613, 616], "pas": [44, 613, 616], "n\u00e9cessair": [44, 613, 616], "la": [44, 71, 82, 92, 104, 180, 181, 612, 613, 616, 681], "sp\u00e9cifi": [44, 613, 616], "65535": [44, 45, 211, 391, 413, 419, 426, 427, 428, 434, 442, 444, 445, 452, 457, 459, 470, 498, 499, 504, 612, 613, 615, 616], "portnumm": [44, 120, 375, 426, 427, 428, 458, 518, 613, 616], "num\u00e9ro": [44, 613, 616], "\u00e0": [44, 612, 613, 616], "tls_port": [44, 110, 120, 122, 613, 616, 617, 684, 690], "8385": [44, 120, 613, 617], "when": [44, 45, 52, 54, 55, 66, 83, 103, 107, 113, 115, 116, 130, 133, 136, 137, 141, 151, 152, 157, 158, 160, 162, 176, 183, 185, 186, 199, 211, 216, 218, 227, 232, 248, 254, 255, 257, 263, 274, 288, 294, 301, 305, 312, 318, 322, 335, 355, 356, 357, 368, 395, 479, 583, 585, 612, 613, 615, 618, 623, 624, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "using": [44, 45, 54, 55, 66, 113, 130, 136, 141, 149, 151, 155, 160, 161, 176, 180, 183, 185, 186, 190, 205, 216, 217, 227, 231, 235, 236, 247, 253, 254, 258, 260, 294, 301, 304, 305, 335, 342, 351, 355, 356, 357, 365, 368, 612, 613, 615, 624, 643, 645, 646, 648, 650, 651, 652, 653, 654, 655, 656, 662, 670], "utilisation": [44, 613, 616], "use_tl": [44, 110, 120, 122, 613, 616, 684, 690], "yes_no": [44, 45, 612, 613, 615, 616], "setz": [44, 45, 53, 56, 71, 85, 103, 106, 112, 115, 120, 162, 167, 168, 169, 170, 181, 187, 213, 230, 256, 289, 292, 293, 295, 300, 314, 322, 323, 326, 328, 329, 330, 331, 332, 360, 378, 381, 396, 401, 453, 454, 487, 495, 496, 504, 508, 511, 512, 517, 519, 523, 563, 566, 567, 569, 572, 573, 575, 576, 577, 591, 592, 613, 615, 616, 686, 688, 689], "ermog": [44, 60, 62, 67, 76, 106, 120, 169, 376, 613, 616, 641, 642, 688, 693], "allow": [44, 88, 186, 211, 315, 318, 352, 355, 612, 613, 616, 641, 643, 644, 645, 646, 647, 648, 649, 652, 653, 655, 656, 688], "over": [44, 45, 60, 136, 161, 218, 221, 227, 294, 368, 445, 595, 613, 615, 616, 643, 644, 645, 646, 649, 650, 651, 665, 691], "certificat": [44, 141, 198, 368, 613, 616, 649, 655, 688], "installed": [44, 54, 55, 83, 113, 157, 186, 198, 209, 240, 278, 308, 315, 352, 353, 358, 612, 613, 616, 643, 646, 650], "mettr": [44, 613, 616], "par": [44, 613, 616], "doivent": [44, 613, 616], "\u00eatre": [44, 613, 616], "install\u00e9s": [44, 613, 616], "tls_cert": [44, 110, 120, 122, 613, 616, 684, 690], "zertifikatsdatei": [44, 120, 122, 613, 616], "endung": [44, 83, 98, 103, 106, 112, 120, 122, 188, 381, 613, 616], "pem": [44, 102, 110, 120, 122, 161, 613, 616, 649, 688], "lieg": [44, 52, 106, 111, 117, 120, 122, 194, 314, 328, 329, 423, 592, 600, 613, 616, 685], "stored": [44, 45, 66, 133, 137, 146, 208, 211, 227, 245, 294, 295, 352, 353, 356, 357, 612, 613, 615, 616, 624, 649, 650], "fichi": [44, 612, 613, 616], "contanent": [44, 613, 616], "doit": [44, 613, 616], "se": [44, 321, 328, 414, 508, 545, 550, 613, 616, 642, 645, 646, 649, 654], "trouv": [44, 613, 616], "dan": [44, 612, 613, 616], "tls_key": [44, 110, 120, 122, 613, 616, 684, 690], "privat": [44, 77, 120, 122, 162, 170, 217, 352, 368, 423, 589, 613, 616, 641, 648, 686, 688, 690], "cl\u00e9s": [44, 613, 616], "priv\u00e9s": [44, 613, 616], "servicesport": [44, 45, 613, 615, 617], "8384": [44, 45, 120, 157, 158, 360, 613, 615, 617], "showpluginlist": [44, 45, 120, 613, 615], "show": [44, 45, 66, 71, 107, 115, 141, 157, 158, 163, 164, 180, 312, 423, 613, 615, 624, 643, 646, 651, 652, 653, 655, 677], "affich": [44, 612, 613], "une": [44, 613], "avec": [44, 613], "sous": [44, 613], "showservicelist": [44, 45, 120, 613, 615], "weiterleit": [44, 120, 613, 688], "redirection": [44, 613], "portnumb": [44, 613], "charg\u00e9": [44, 613], "navigateur": [44, 613], "utilisant": [44, 613], "seulement": [44, 613], "setup": [44, 45, 47, 55, 83, 87, 126, 130, 173, 176, 177, 186, 219, 221, 296, 326, 328, 330, 331, 368, 396, 613, 615, 645, 655, 667], "t\u00e2ches": [44, 613], "pr\u00e9vus": [44, 613], "showtraceback": [44, 45, 120, 613, 615], "fehlermeld": [44, 89, 92, 170, 187, 215, 295, 316, 360, 381, 409, 453, 613, 629, 641, 673, 674], "produktionsinstallation": [44, 613], "displayed": [44, 54, 55, 138, 227, 234, 352, 613, 646, 647, 649], "production": [44, 613, 651], "montr": [44, 613], "trac": [44, 120, 613], "exepction": [44, 613], "erreur": [44, 613], "affich\u00e9": [44, 613], "normallement": [44, 613], "environnement": [44, 613], "pro": [44, 56, 58, 60, 116, 120, 123, 131, 162, 164, 187, 189, 193, 194, 222, 238, 241, 262, 276, 314, 315, 322, 327, 328, 330, 334, 346, 347, 359, 414, 478, 508, 519, 545, 550, 613, 641], "wirkt": [44, 123, 613, 641], "sortierbar": [44, 309, 613], "amount": [44, 55, 141, 157, 186, 218, 262, 613, 663], "being": [44, 60, 66, 137, 157, 186, 199, 248, 294, 296, 352, 356, 357, 613, 624, 645, 650, 651, 652, 653, 655], "listed": [44, 107, 115, 130, 157, 180, 190, 227, 613], "automatic": [44, 55, 227, 258, 318, 353, 613, 645, 646, 649, 650, 651, 653, 654, 655, 669], "many": [44, 113, 130, 141, 147, 185, 205, 221, 274, 298, 334, 335, 613, 643, 666, 668], "fitted": [44, 613], "window": [44, 54, 55, 56, 58, 60, 162, 170, 200, 220, 232, 272, 288, 293, 613, 646, 651, 653, 655], "affect": [44, 613], "sortabl": [44, 613], "description_long": [44, 45, 613, 615], "browserfenst": [44, 613, 674], "tabelleneintrag": [44, 613], "adjust": [44, 54, 55, 157, 227, 247, 613, 645, 646, 651, 653, 655], "height": [44, 52, 54, 55, 56, 157, 162, 166, 227, 323, 329, 362, 530, 613, 625, 651, 653], "automatically": [44, 55, 136, 141, 157, 160, 195, 211, 221, 262, 294, 318, 612, 613, 651, 652, 653, 655], "based": [44, 46, 54, 55, 130, 136, 139, 141, 157, 198, 235, 236, 240, 247, 248, 254, 262, 368, 370, 612, 613, 643, 644, 645, 646, 649, 650, 651, 652, 655, 670, 691], "windows": [44, 68, 74, 79, 82, 88, 91, 92, 103, 113, 157, 274, 363, 507, 613, 646, 648, 649], "shows": [44, 157, 202, 288, 294, 295, 352, 356, 357, 613, 643, 667], "entri": [44, 50, 55, 83, 103, 107, 113, 115, 126, 133, 136, 137, 138, 147, 157, 186, 202, 247, 317, 352, 356, 357, 613, 644, 645, 646, 648, 649, 651, 652, 653, 655, 667], "utiliz": [44, 45, 157, 158, 208, 613, 615], "familiar": [44, 157, 613], "well": [44, 55, 154, 157, 159, 160, 161, 193, 211, 240, 247, 290, 297, 342, 612, 613, 646, 651, 653, 688], "librari": [44, 48, 79, 107, 115, 154, 157, 287, 359, 560, 573, 612, 613, 621, 622, 643, 670, 693], "apt": [44, 47, 68, 73, 82, 83, 84, 85, 86, 87, 88, 154, 157, 161, 185, 278, 281, 287, 297, 309, 341, 370, 508, 612, 613, 628, 667, 688], "pleas": [44, 55, 83, 154, 157, 160, 173, 176, 190, 193, 198, 205, 211, 218, 227, 251, 257, 297, 334, 335, 342, 355, 364, 612, 613, 643, 644, 645, 646, 649, 650, 651, 653, 663, 691], "pay": [44, 154, 157, 612, 613], "attention": [44, 52, 72, 141, 154, 157, 198, 205, 240, 334, 368, 612, 613], "old": [44, 88, 92, 126, 133, 136, 137, 154, 157, 208, 218, 234, 254, 301, 312, 341, 352, 396, 612, 613, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667, 670], "probably": [44, 113, 154, 157, 612, 613, 643], "careful": [44, 157, 195, 240, 294, 334, 613], "pip": [44, 48, 68, 83, 113, 154, 157, 169, 179, 192, 231, 235, 236, 249, 253, 301, 309, 338, 370, 433, 612, 613, 629, 630, 645, 646, 649, 651, 653, 655, 667, 678], "without": [44, 45, 53, 54, 55, 60, 66, 104, 141, 142, 149, 151, 152, 157, 158, 186, 205, 211, 218, 227, 263, 274, 276, 285, 315, 318, 352, 610, 613, 615, 624, 633, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655], "availabl": [44, 45, 55, 66, 71, 88, 133, 141, 151, 152, 157, 158, 173, 175, 176, 179, 180, 190, 202, 227, 234, 254, 258, 262, 274, 280, 281, 298, 305, 335, 344, 365, 370, 595, 613, 615, 624, 643, 646, 649, 652, 653, 655, 656, 658, 688], "everyon": [44, 45, 157, 158, 613, 615], "pluin": [44, 45, 157, 158, 613, 615], "shown": [44, 45, 54, 55, 157, 158, 162, 180, 257, 296, 352, 355, 613, 615, 643, 648, 651, 653, 655], "detailing": [44, 45, 157, 158, 613, 615], "want": [44, 45, 54, 55, 130, 136, 140, 157, 158, 160, 164, 175, 183, 185, 186, 195, 205, 211, 227, 231, 240, 248, 251, 262, 273, 278, 280, 288, 294, 296, 301, 305, 312, 356, 357, 365, 368, 613, 615, 667], "result": [44, 45, 53, 62, 66, 115, 130, 133, 137, 148, 155, 157, 158, 183, 186, 195, 198, 211, 227, 229, 253, 273, 304, 335, 338, 351, 356, 357, 368, 609, 613, 615, 618, 624, 646, 647, 650, 653, 655, 659], "tak": [44, 45, 55, 126, 130, 139, 147, 157, 158, 185, 198, 211, 218, 247, 253, 260, 273, 288, 290, 335, 344, 356, 357, 395, 613, 615, 643, 644, 645, 646, 649, 650, 651, 653, 654, 667, 691], "thos": [44, 45, 137, 142, 157, 158, 288, 294, 365, 613, 615], "redirected": [44, 45, 157, 158, 613, 615], "specific": [44, 45, 53, 54, 55, 66, 107, 115, 134, 136, 139, 141, 151, 157, 158, 160, 162, 176, 198, 231, 248, 253, 273, 275, 301, 352, 353, 355, 365, 368, 598, 603, 613, 615, 624, 643, 644, 645, 646, 651, 653, 655, 674], "always": [44, 45, 84, 107, 115, 147, 152, 157, 158, 160, 161, 205, 227, 294, 613, 615, 646, 652, 688], "entering": [44, 45, 157, 158, 227, 613, 615], "too": [44, 45, 72, 137, 147, 157, 158, 180, 186, 205, 208, 231, 253, 260, 298, 301, 312, 335, 344, 355, 413, 613, 615, 643, 646, 650, 651, 652, 653], "much": [44, 45, 157, 158, 262, 613, 615, 668], "slow": [44, 45, 157, 158, 613, 615, 643, 654], "cpus": [44, 45, 79, 120, 157, 158, 613, 615, 647], "404": [44, 45, 120, 141, 157, 158, 341, 613, 615, 688], "terminology": [44, 157, 613], "defin": [44, 45, 54, 55, 107, 115, 133, 134, 137, 138, 157, 160, 170, 182, 199, 205, 227, 231, 234, 240, 248, 254, 274, 281, 288, 290, 301, 305, 312, 342, 352, 353, 356, 357, 365, 613, 615, 643, 653, 655], "An": [44, 52, 53, 54, 55, 66, 132, 134, 142, 152, 157, 162, 165, 170, 186, 227, 257, 273, 311, 315, 338, 355, 365, 370, 382, 488, 518, 534, 610, 613, 618, 624, 681, 688], "app_conf": [44, 157, 613], "staticdir": [44, 157, 613], "root": [44, 82, 83, 85, 88, 107, 115, 116, 136, 157, 160, 161, 222, 256, 261, 304, 352, 353, 356, 357, 389, 612, 613, 656, 670, 687, 688], "current_dir": [44, 157, 613], "auth_basic": [44, 157, 161, 613, 688], "_basic_auth": [44, 157, 613], "earth": [44, 142, 157, 613], "checkpassword": [44, 157, 613], "os": [44, 74, 82, 141, 157, 170, 171, 221, 278, 378, 382, 507, 598, 613, 646, 655, 688], "join": [44, 66, 157, 504, 545, 558, 613, 624, 641, 645, 653, 655, 670], "logon": [44, 157, 613], "security": [44, 79, 88, 157, 161, 162, 170, 176, 219, 227, 292, 368, 428, 613, 643, 644, 645, 646, 647, 648, 649, 650, 653, 688, 691], "login": [44, 45, 76, 83, 119, 121, 141, 157, 160, 164, 180, 198, 216, 219, 220, 227, 248, 292, 376, 382, 383, 391, 399, 406, 417, 421, 422, 423, 451, 456, 465, 518, 612, 613, 615, 644, 646, 650, 652, 653, 655], "delet": [44, 55, 60, 133, 134, 136, 137, 157, 177, 186, 218, 219, 227, 563, 612, 613, 646, 653, 655], "enti": [44, 157, 613], "register_app": [44, 45, 613, 615], "app_object": [44, 157, 613], "appnam": [44, 157, 613], "updates_allowed": [44, 103, 157, 613], "developer_mod": [44, 119, 157, 612, 613], "pypi_timeout": [44, 119, 157, 612, 613], "ref": [44, 47, 157, 161, 190, 198, 205, 211, 218, 227, 251, 341, 342, 353, 356, 357, 613, 643, 644, 645, 646, 649, 650, 651, 691], "expos": [44, 58, 60, 62, 157, 161, 613], "part": [44, 45, 54, 55, 66, 87, 113, 126, 132, 133, 137, 140, 141, 143, 149, 152, 157, 161, 202, 211, 218, 227, 273, 278, 315, 345, 352, 353, 355, 356, 357, 365, 613, 615, 618, 624, 643, 650, 655, 669], "availab": [44, 157, 613], "through": [44, 45, 66, 107, 115, 132, 134, 137, 143, 147, 148, 149, 151, 157, 211, 613, 615, 618, 624, 645, 646, 649, 650, 651, 653], "cherypy": [44, 157, 613], "listening": [44, 45, 141, 157, 158, 169, 227, 244, 248, 315, 613, 615], "domain": [44, 45, 88, 141, 157, 158, 214, 216, 423, 613, 615, 688], "implemented": [44, 45, 54, 55, 66, 132, 137, 141, 143, 147, 148, 149, 150, 151, 152, 157, 158, 160, 173, 211, 227, 231, 234, 247, 248, 288, 352, 356, 357, 365, 613, 615, 618, 623, 624, 643, 645, 646, 649, 650, 651, 652, 653, 655, 670], "would": [44, 45, 107, 115, 157, 158, 168, 183, 211, 234, 262, 296, 353, 356, 357, 612, 613, 615], "protocol": [45, 52, 53, 54, 55, 88, 110, 127, 155, 158, 183, 218, 221, 240, 247, 279, 290, 304, 305, 351, 352, 357, 368, 454, 457, 466, 501, 531, 534, 545, 552, 610, 612, 615, 616, 622, 645, 647, 648, 649, 651, 653, 654, 655], "usabl": [45, 132, 133, 646], "longnam": [45, 615, 616, 655], "schedul": [45, 46, 54, 55, 66, 71, 113, 117, 133, 137, 180, 181, 219, 254, 255, 270, 271, 288, 326, 391, 400, 441, 464, 467, 560, 592, 594, 595, 600, 612, 615, 623, 624, 632, 642, 643, 644, 645, 646, 649, 650, 652, 653, 655, 664, 666, 671, 672], "stops": [45, 54, 55, 134, 145, 227, 281, 288, 294, 512, 615], "broker_uptim": [45, 63, 615, 620, 621], "get_broker_info": [45, 63, 615, 620, 621], "collected": [45, 615], "get_broker_conf": [45, 615], "subscribe_topic": [45, 615], "topic": [45, 54, 63, 76, 121, 337, 341, 359, 371, 454, 479, 511, 537, 595, 615, 620, 621, 645], "callback": [45, 52, 54, 63, 141, 257, 362, 417, 530, 595, 615, 620, 621, 623, 641, 649, 651, 654, 655], "qos": [45, 54, 63, 121, 292, 595, 615, 620, 621], "payload_typ": [45, 54, 63, 595, 615, 620, 621], "item_typ": [45, 615, 622], "bool_valu": [45, 54, 63, 121, 595, 615, 620, 621, 643, 655], "subscrib": [45, 54, 63, 227, 368, 615, 620, 674], "utilizing": [45, 615], "publish": [45, 63, 121, 368, 615, 620, 674], "mqttplugin": [45, 48, 54, 615, 626, 643, 648, 655, 656], "quality": [45, 121, 262, 454, 595, 615], "byt": [45, 141, 160, 165, 170, 230, 232, 239, 240, 249, 279, 308, 309, 310, 351, 434, 478, 498, 499, 522, 595, 615, 622, 641, 646, 649, 653, 655], "casting": [45, 83, 103, 113, 615, 646, 655, 672], "representation": [45, 137, 152, 615], "unsubscribe_topic": [45, 615], "unsubscrib": [45, 615, 653, 674], "publish_topic": [45, 63, 615, 620, 621], "payload": [45, 54, 63, 121, 162, 163, 164, 305, 315, 371, 375, 454, 595, 615, 616, 620, 621, 641, 643, 647, 648, 649, 651, 653, 654, 655], "retain": [45, 54, 63, 615, 620, 621, 645], "flag": [45, 63, 76, 124, 139, 221, 235, 240, 241, 328, 389, 394, 411, 454, 458, 468, 479, 615, 620, 641, 643], "cast_from_mqtt": [45, 615], "raw_data": [45, 615], "cast": [45, 148, 152, 615, 645, 651, 653, 655], "casted": [45, 615], "received": [45, 54, 55, 66, 141, 240, 248, 254, 282, 298, 315, 365, 595, 612, 615, 623, 624, 642, 648, 649, 650, 655], "writt": [45, 55, 66, 107, 115, 133, 136, 137, 152, 186, 202, 211, 247, 248, 257, 353, 365, 615, 618, 624, 645, 649, 651], "cast_to_mqtt": [45, 615], "compatibl": [45, 193, 247, 269, 274, 615, 623, 645, 646, 648, 651, 654, 655], "sampl": [45, 54, 55, 60, 183, 198, 218, 229, 239, 305, 308, 351, 562, 612, 625, 643, 644, 645, 646, 651, 653, 655], "6a": [45, 615], "enabled": [45, 53, 55, 84, 86, 87, 107, 115, 117, 121, 122, 137, 181, 202, 219, 221, 222, 227, 247, 300, 304, 317, 356, 357, 367, 449, 600, 610, 615, 616, 623, 643, 652, 688], "enabl": [45, 54, 55, 71, 82, 86, 89, 90, 110, 133, 137, 141, 160, 175, 180, 183, 186, 199, 218, 235, 236, 254, 255, 258, 278, 292, 296, 317, 342, 368, 370, 594, 615, 616, 623, 645, 646, 649, 650, 651, 653, 655, 666, 671], "disabl": [45, 55, 71, 88, 89, 90, 92, 137, 180, 216, 218, 254, 255, 297, 352, 370, 538, 562, 594, 615, 616, 623, 650, 651, 652, 653, 655, 671], "broker_host": [45, 121, 615], "127": [45, 71, 85, 86, 87, 98, 103, 111, 121, 123, 152, 165, 180, 186, 199, 200, 256, 276, 319, 331, 368, 377, 379, 380, 391, 405, 407, 417, 428, 433, 434, 457, 461, 488, 507, 534, 615], "specifi": [45, 186, 199, 211, 231, 240, 247, 248, 274, 301, 305, 312, 315, 615], "comput": [45, 142, 162, 258, 288, 310, 363, 598, 599, 615, 630, 644, 678, 682, 690], "specify": [45, 130, 160, 186, 195, 211, 221, 227, 239, 248, 290, 301, 305, 315, 317, 352, 365, 615, 686], "assumed": [45, 53, 152, 186, 315, 356, 357, 610, 615], "sam": [45, 66, 126, 127, 130, 133, 138, 147, 160, 183, 186, 210, 227, 234, 248, 263, 274, 278, 280, 288, 312, 315, 353, 355, 615, 624, 643, 645, 646, 650, 651, 653, 654, 655, 656, 660, 663, 666, 674], "machin": [45, 87, 239, 262, 278, 323, 329, 508, 615, 654], "localhost": [45, 69, 71, 85, 86, 87, 111, 121, 180, 181, 215, 221, 222, 223, 258, 391, 426, 427, 459, 525, 537, 615], "broker_port": [45, 121, 615], "1883": [45, 84, 121, 292, 615, 617], "Vom": [45, 92, 615], "8883": [45, 615, 617], "iana": [45, 615], "reserviert": [45, 100, 256, 325, 615], "Er": [45, 52, 53, 106, 292, 416, 419, 420, 448, 492, 530, 532, 584, 593, 609, 615], "tcp": [45, 71, 78, 86, 87, 116, 127, 141, 169, 183, 191, 200, 201, 207, 230, 256, 264, 267, 281, 355, 381, 415, 480, 517, 545, 550, 552, 615, 617, 622, 643, 651, 663, 665], "secur": [45, 227, 368, 615, 616, 617], "reserved": [45, 126, 615, 670], "broker_client": [45, 121, 615], "Muss": [45, 121, 122, 169, 170, 396, 417, 476, 477, 486, 508, 522, 615, 690], "zeitgleich": [45, 121, 615, 642], "kommunizi": [45, 52, 67, 84, 121, 122, 155, 171, 197, 304, 309, 351, 371, 405, 511, 537, 545, 548, 549, 550, 615, 616, 689], "communication": [45, 141, 193, 211, 218, 230, 234, 247, 281, 290, 335, 352, 356, 357, 365, 615, 616, 650, 655], "must": [45, 54, 55, 66, 87, 107, 115, 141, 160, 162, 176, 184, 188, 193, 199, 202, 205, 211, 227, 247, 257, 268, 278, 288, 290, 315, 325, 332, 352, 353, 365, 397, 413, 515, 569, 585, 592, 615, 624, 645], "multipl": [45, 66, 83, 113, 130, 144, 148, 152, 160, 161, 186, 211, 218, 227, 247, 248, 274, 288, 296, 352, 353, 365, 368, 615, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 654, 656, 660, 664, 666, 667, 669, 670, 682], "communicat": [45, 183, 218, 239, 290, 615, 643, 651, 665], "concurrently": [45, 615], "achtung": [45, 82, 85, 162, 192, 219, 255, 262, 328, 359, 369, 374, 376, 381, 382, 383, 384, 385, 387, 389, 394, 397, 399, 400, 406, 408, 411, 416, 420, 421, 422, 424, 426, 428, 435, 437, 438, 441, 446, 447, 449, 463, 464, 465, 467, 474, 475, 477, 478, 480, 482, 483, 484, 485, 488, 489, 491, 497, 501, 503, 505, 506, 508, 511, 513, 514, 515, 518, 521, 523, 524, 526, 527, 532, 537, 538, 575, 577, 615, 641, 652, 671], "Bis": [45, 96, 111, 583, 589, 615, 689], "unverschlusselt": [45, 122, 367, 615, 616], "ubertrag": [45, 47, 62, 82, 86, 97, 162, 165, 188, 219, 230, 306, 307, 316, 359, 362, 405, 457, 615, 688], "authentication": [45, 141, 160, 161, 215, 218, 227, 296, 368, 429, 615, 646, 649, 688], "notic": [45, 55, 107, 115, 125, 293, 615, 638, 649, 653, 655], "implementation": [45, 53, 55, 56, 62, 66, 130, 137, 141, 145, 186, 221, 301, 306, 307, 334, 353, 365, 615, 624, 643, 646, 649, 650, 653, 655], "transmitted": [45, 337, 361, 615], "hid": [45, 66, 107, 115, 141, 615, 624, 653], "jetzig": [45, 225, 615, 677], "stag": [45, 280, 368, 615], "clear": [45, 62, 133, 563, 615, 641, 649, 652], "broker_monitoring": [45, 63, 121, 252, 615, 620], "monitoring": [45, 141, 227, 615, 643, 646, 651, 655], "interfas": [45, 615], "mqtt_qos": [45, 615], "uberschrieb": [45, 58, 60, 79, 85, 92, 120, 184, 232, 268, 322, 326, 328, 329, 332, 333, 412, 452, 454, 496, 508, 523, 585, 591, 615, 685], "onc": [45, 144, 160, 179, 257, 260, 341, 615, 643, 645, 650, 651, 652, 653, 655], "least": [45, 205, 221, 227, 288, 342, 413, 615, 650], "excactly": [45, 615], "meist": [45, 52, 79, 106, 116, 164, 167, 169, 192, 219, 230, 261, 321, 326, 332, 371, 379, 545, 548, 594, 615, 622, 641], "overhead": [45, 365, 615], "notig": [45, 56, 58, 60, 172, 191, 200, 237, 264, 267, 319, 329, 339, 340, 347, 349, 441, 507, 573, 615, 642, 688], "erlauter": [45, 93, 116, 181, 219, 594, 599, 615, 634], "gefund": [45, 48, 54, 55, 58, 65, 90, 153, 162, 164, 170, 171, 179, 200, 212, 213, 261, 285, 302, 314, 321, 322, 347, 349, 354, 360, 382, 453, 477, 483, 565, 573, 591, 615, 635, 652, 653, 654, 656, 678, 682], "hivemq": [45, 615], "essential": [45, 73, 83, 538, 615, 628], "englisch": [45, 47, 50, 51, 53, 68, 80, 82, 106, 165, 259, 262, 373, 532, 615, 641], "communicating": [45, 615, 655], "overwritt": [45, 66, 234, 615, 623, 624], "individual": [45, 66, 288, 615, 624, 643, 644, 645, 646, 649, 650, 651, 653, 691], "three": [45, 66, 137, 217, 240, 288, 352, 361, 615, 624, 663], "good": [45, 160, 251, 257, 281, 296, 491, 615], "explanation": [45, 615, 664], "falsch": [45, 82, 92, 96, 121, 162, 196, 262, 306, 307, 360, 381, 423, 454, 573, 615], "wahr": [45, 121, 169, 217, 321, 325, 328, 333, 360, 401, 423, 432, 454, 481, 486, 573, 615], "wrong": [45, 195, 365, 615, 643, 644, 645, 648, 649, 650, 652, 654, 655], "right": [45, 55, 113, 133, 136, 141, 161, 186, 195, 198, 205, 211, 227, 231, 240, 251, 278, 281, 290, 352, 355, 356, 357, 433, 615, 646], "last_will_topic": [45, 121, 615], "Will": [45, 312, 313, 615, 646, 665, 666, 667], "telegramm": [45, 111, 232, 407, 451, 615], "telegram": [45, 199, 248, 545, 558, 572, 615, 641, 642, 643, 645, 646, 648, 649, 650, 652, 653, 655, 670, 674], "testament": [45, 615], "messag": [45, 63, 66, 84, 107, 111, 115, 116, 121, 136, 138, 141, 148, 155, 156, 179, 188, 192, 198, 199, 202, 210, 218, 227, 229, 232, 243, 256, 263, 273, 279, 294, 295, 296, 303, 304, 305, 306, 307, 315, 337, 338, 339, 340, 356, 357, 359, 368, 382, 401, 406, 422, 446, 454, 456, 463, 479, 490, 512, 521, 534, 545, 548, 575, 583, 584, 586, 595, 615, 620, 624, 643, 644, 645, 646, 649, 650, 652, 653, 654, 655, 663, 677], "versendet": [45, 121, 170, 440, 445, 471, 473, 545, 548, 595, 615], "abbricht": [45, 615], "ordnungsgemass": [45, 85, 86, 615], "birth": [45, 121, 615], "sent": [45, 52, 54, 55, 66, 141, 198, 231, 248, 254, 288, 290, 298, 301, 305, 365, 615, 624, 650], "closed": [45, 136, 141, 170, 200, 227, 257, 615, 647], "orderly": [45, 615], "mann": [45, 615], "shutting": [45, 615], "last_will_payload": [45, 121, 615], "birth_topic": [45, 121, 615], "gegenteil": [45, 615], "opposit": [45, 615], "up": [45, 52, 54, 55, 66, 71, 72, 113, 130, 133, 139, 140, 141, 160, 180, 181, 198, 200, 205, 227, 231, 245, 248, 294, 317, 318, 353, 355, 356, 357, 365, 370, 412, 433, 512, 615, 618, 623, 624, 643, 646, 648, 649, 650, 652, 653, 655, 662, 668], "birth_payload": [45, 121, 615], "publish_item": [45, 615], "publizi": [45, 293, 615], "Noch": [45, 82, 385, 545, 554, 615], "steuert": [45, 314, 428, 496, 524, 615], "publiziert": [45, 293, 454, 615], "items_topic_prefix": [45, 615], "acl": [45, 83, 315, 615, 667, 690], "erlaub": [45, 76, 119, 169, 212, 213, 226, 289, 599, 612, 615, 634], "yet": [45, 176, 183, 211, 231, 281, 294, 352, 595, 615, 646, 655, 656, 670], "control": [45, 83, 103, 113, 160, 162, 166, 170, 173, 175, 176, 183, 190, 198, 200, 211, 216, 221, 227, 230, 233, 237, 240, 247, 248, 280, 290, 295, 301, 319, 338, 353, 368, 369, 370, 384, 415, 479, 490, 511, 545, 550, 615, 617, 623, 643, 645, 646, 649, 650, 653, 655, 665, 666, 667, 674], "published": [45, 54, 55, 298, 595, 615], "their": [45, 126, 151, 205, 227, 248, 312, 353, 359, 615, 646, 670], "prefix": [45, 55, 66, 97, 114, 134, 139, 186, 262, 292, 325, 326, 341, 385, 453, 479, 511, 615, 624, 646, 649, 650, 651, 655], "prafix": [45, 97, 111, 462, 589, 596, 615], "pathfrom": [45, 615], "building": [45, 162, 251, 278, 615, 646, 648], "verschlussel": [45, 162, 359, 429, 444, 445, 615], "encyption": [45, 615], "ca_cert": [45, 615], "pub": [45, 219, 615], "pubsub": [45, 368, 615], "zugriffskontroll": [45, 505, 615], "accesscontrol": [45, 615, 690], "abonni": [45, 595, 615], "akzepti": [45, 256, 401, 457, 615], "definert": [45, 454, 615], "publishing": [45, 63, 615, 620], "accept": [45, 127, 130, 200, 219, 301, 315, 355, 615, 646, 649, 653, 655, 663], "mod_mqtt": [45, 158, 615], "basiert": [46, 47, 200, 262, 283, 284, 310, 314, 344, 360, 367, 370, 502, 545, 558, 599, 636, 692], "kam": [46, 263, 641, 643], "initial": [46, 54, 55, 107, 115, 124, 179, 183, 221, 249, 273, 274, 277, 278, 284, 498, 499, 568, 632, 641, 643, 646, 649, 652, 653, 655, 658, 671], "asynchron": 46, "gab": [46, 642, 687], "zustand": [46, 153, 162, 187, 204, 215, 255, 293, 314, 320, 321, 323, 325, 326, 327, 328, 330, 332, 338, 412, 419, 420, 456, 508, 574, 587, 682], "Viele": [46, 80, 100], "integri": [46, 56, 92, 169, 324, 362, 687], "osen": 46, "zusammengestellt": [46, 60, 617, 637], "tread": 46, "ausserhalb": [46, 53, 77, 92, 111, 196, 373, 545, 547, 548, 550, 552, 554, 558, 596, 609, 610], "eventloop": [46, 55, 66, 618, 624, 650, 652], "gegenub": [46, 79, 83, 165, 170, 212, 213, 289, 331, 512, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "bemerk": [46, 119, 120, 121, 122, 262, 595], "parse_it": [46, 52, 54, 55, 66, 561, 623, 624, 632, 655], "pluginwrapp": 46, "situation": [46, 55, 92, 115, 232, 314, 326, 330, 331, 338, 655], "poll_devic": [46, 55, 66, 624, 649], "pool": [46, 526], "berucksicht": [46, 96, 232, 287, 306, 307, 446, 463, 599, 634, 641], "ubergang": [46, 106, 419, 420], "io": [46, 48, 210, 227, 235, 247, 261, 308, 309, 337, 371, 461, 498, 511, 533, 674, 675, 688], "blocking": [46, 221, 227, 368], "async": [46, 55, 66, 338, 498, 616, 618, 624, 652, 655, 674, 675], "co": [46, 202, 262, 291, 305, 409, 545, 550, 688], "routin": [46, 52, 58, 62, 66, 140, 141, 155, 304, 356, 357, 589, 618, 624], "herausforder": 46, "combining": 46, "traditional": [46, 301], "richtlini": 47, "smarthomehg": 47, "aufgenomm": [47, 50, 53, 82, 110, 207, 294, 370, 373, 609, 621, 652, 653, 655, 656], "umfass": [47, 85, 155, 224, 232, 304, 536, 622], "einfuhr": [47, 67, 68, 219, 671, 674], "gitimmersion": 47, "veroffentlicht": [47, 92, 363], "schnell": [47, 58, 83, 95, 106, 169, 170, 310, 329, 334, 351, 367, 381, 406, 630], "konto": [47, 164, 214, 241, 272, 349, 399], "kommandozeilenversion": 47, "softwar": [47, 52, 54, 55, 67, 68, 92, 103, 111, 167, 170, 224, 225, 278, 279, 341, 356, 357, 368, 412, 419, 420, 508, 617, 625, 628, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 668, 671, 672, 674, 675, 691], "sourcetre": 47, "atlassian": 47, "oberflach": [47, 82, 83, 93], "gegriff": [47, 67], "kostenlos": [47, 103, 314, 516, 545, 558, 688], "repositry": 47, "stattfindet": [47, 217, 423, 508, 569, 592], "featur": [47, 58, 60, 62, 67, 79, 106, 112, 118, 120, 124, 141, 160, 162, 169, 198, 211, 213, 218, 227, 251, 302, 314, 328, 330, 333, 349, 368, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 513, 514, 515, 518, 521, 526, 527, 537, 538, 545, 550, 641, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675, 691], "gemerged": [47, 97, 394, 468], "modell": [47, 116, 165, 169, 191, 192, 201, 214, 215, 230, 244, 264, 267, 306, 307, 345, 378, 421, 422, 514, 653], "workflows": [47, 652, 653, 654, 655, 656], "hol": [47, 82, 83, 308, 309, 500, 512], "clon": [47, 73, 83, 85, 92, 221, 269, 278, 688], "Ihren": [47, 164], "checkout": [47, 73, 92, 653], "myplugin": [47, 52], "pep": [47, 130, 187, 368], "ok": [47, 86, 88, 89, 90, 139, 165, 169, 198, 251, 284, 306, 307, 315, 316, 481, 612], "fehl": [47, 53, 64, 71, 73, 83, 84, 86, 92, 103, 105, 115, 116, 120, 189, 207, 210, 230, 232, 249, 262, 295, 321, 322, 338, 351, 360, 362, 370, 382, 414, 458, 496, 522, 526, 563, 573, 593, 599, 641, 642, 649, 671, 672, 673, 674, 675, 681, 688], "e501": 47, "ignori": [47, 196, 328], "sample_pluginplugin": 47, "hauptdatei": 47, "vi": [47, 103], "qq": 47, "statistics": [47, 655], "yourcod": 47, "vim": [47, 54, 55], "ausgieb": 47, "Ihrem": [47, 164], "user_doc": [47, 48, 53, 54, 55, 64, 247, 309, 350, 373, 381, 610, 619, 621, 622, 625, 626, 645, 646, 648, 649, 651, 652, 653, 655, 671], "rst": [47, 48, 53, 54, 55, 64, 247, 309, 350, 373, 610, 619, 621, 622, 625, 626, 646, 649, 651, 652, 653, 655, 671], "befull": 47, "viplugin": 47, "docstring": [47, 654], "verseh": [47, 50, 85, 106, 260, 508, 537, 545, 548], "aufrufparamet": 47, "ruckgabewert": [47, 62, 162, 263, 316, 326, 332, 351, 360, 380, 506, 522], "unitt": [47, 652, 653, 654, 655, 656], "pull": [47, 80, 92, 191, 201, 212, 218, 238, 264, 267, 646, 652, 653], "requ": [47, 83, 133, 141, 160, 161, 162, 164, 182, 191, 198, 199, 201, 202, 218, 219, 226, 227, 234, 238, 239, 244, 254, 260, 264, 266, 267, 273, 281, 294, 301, 302, 312, 315, 335, 344, 360, 361, 365, 368, 370, 376, 383, 394, 458, 468, 495, 532, 545, 550, 612, 616, 622, 641, 646, 648, 649, 651, 652, 653, 655, 656, 688], "geg": [47, 262, 338, 416, 512, 574, 577, 641, 671, 688], "repositorys": 47, "entwicklerteam": 47, "abgeklart": 47, "maintain": [47, 53, 54, 55, 161, 191, 201, 238, 264, 267, 545, 547, 548, 550, 552, 554, 558, 610, 656], "geh": [47, 82, 86, 164, 189, 233, 276, 339, 340, 381, 519, 594, 596, 642], "aif": 47, "repo": [47, 68, 211, 321, 621], "meld": [47, 83, 103, 293], "terminal": [47, 71, 82, 90, 181, 221], "geb": [47, 52, 68, 71, 92, 93, 100, 106, 226, 272, 306, 307, 314, 331, 434, 566, 579, 597, 630, 646, 685], "entwicklungszweig": 47, "fug": [47, 62, 164], "ubernehm": [47, 58, 244, 255, 266, 314, 328, 359, 527, 566], "kommentar": [47, 62, 83, 86, 100, 123, 169, 577, 673], "commit": [47, 78, 130, 187, 646, 650, 651, 653, 655, 656, 691], "push": [47, 269, 273, 274, 290, 296, 359, 527, 545, 558, 653, 663, 665], "vergleich": [47, 53, 162, 164, 189, 192, 212, 232, 261, 325, 326, 330, 498, 499, 630, 642, 682], "glaub": [47, 622], "hauptsendezeit": 47, "mitglied": 47, "team": [47, 119, 214, 215, 219, 296, 359, 510, 612, 681], "uberpruf": [47, 62, 215, 674, 681, 688], "ausseh": [47, 61, 84, 87, 104, 106, 107, 110, 112, 113, 115, 155, 192, 200, 215, 233, 283, 284, 289, 293, 304, 331, 359, 367, 561, 590, 638, 682], "remot": [47, 141, 165, 198, 202, 205, 210, 237, 247, 248, 278, 281, 290, 440, 477, 648, 649], "origin": [47, 66, 170, 382, 624, 644], "fetch": [47, 130, 141, 641, 665], "head": [47, 55, 58, 62, 141, 156, 160, 161, 164, 165, 219, 222, 223, 230, 303, 356, 357, 360, 368, 412, 527, 612, 646, 651, 653, 656, 665, 688], "verifizierbar": 47, "signiert": [47, 359], "gpg": 47, "signier": 47, "entwicklungsumgeb": 47, "gpgsign": 47, "signingkey": 47, "xxxxxxxxxxxxxxxx": 47, "paar": [47, 85, 155, 188, 249, 261, 272, 304, 306, 307, 325, 328, 338, 347, 427, 471, 512], "kommandozeil": [47, 82, 92, 102, 165, 169, 229, 367, 377, 632, 637, 671, 677], "veroffentlich": [47, 260, 595], "versiontag": 47, "pretty": [47, 203], "xxxidxxx": 47, "ruckgang": 47, "reset": [47, 183, 185, 219, 227, 284, 395, 482, 533, 649, 652, 653, 655, 671], "hard": [47, 67, 92, 545, 548, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 688, 691], "xxxixxx": 47, "zweig": [47, 229, 573, 576], "cherry": 47, "pick": [47, 219], "atom": [47, 79, 103], "feed": [47, 234, 436, 641, 646], "current": [47, 55, 66, 71, 83, 130, 133, 136, 138, 141, 142, 145, 148, 152, 155, 173, 176, 180, 185, 186, 189, 198, 208, 227, 234, 235, 240, 254, 262, 275, 281, 288, 290, 293, 304, 305, 306, 307, 325, 328, 330, 331, 334, 337, 352, 356, 357, 368, 370, 413, 480, 507, 624, 642, 645, 646, 649, 651, 652, 654, 655, 663, 686, 688], "benutzereinstell": 47, "kern": [48, 83, 106, 111, 115, 159, 622, 693], "programmcod": [48, 53, 103, 110], "umfang": [48, 62, 64, 70, 106], "erfordernis": [48, 113], "hinzuzufug": [48, 52, 58, 92, 95, 162, 295, 306, 307, 687], "dateiformat": [48, 51, 60, 71, 100, 112, 124, 314, 679], "kommandos": [48, 62, 83, 85, 86, 181, 228, 233, 250, 302, 314, 338, 360, 381, 390, 391, 400, 408, 440, 441, 453, 464, 466, 467, 480, 504, 507, 521, 545, 548, 621, 626, 635, 642, 671, 674, 689], "nachles": [48, 83, 106, 215, 233, 562, 684], "pypa": 48, "stabl": [48, 292], "pip_install": 48, "bild": [48, 51, 56, 60, 98, 110, 178, 219, 338, 389, 462, 496, 512, 523, 527, 674], "anzuleg": [48, 85, 97, 106, 214, 329, 381, 593], "aufnimmt": [48, 94, 116, 566], "dokumentationsdatei": [48, 51, 52, 625], "developer_doc": 48, "fruh": [48, 51, 52, 53, 54, 55, 83, 92, 103, 111, 115, 262, 328, 347, 599, 625, 634, 677], "veraltet": [48, 51, 52, 53, 54, 55, 103, 106, 260, 262, 354, 396, 440, 532, 586, 610, 652, 653, 654, 655, 656, 677, 682, 689, 693], "grossteil": [48, 51, 52, 53, 54, 55, 79, 212, 238, 545, 547, 548, 550, 552, 554, 558], "ubergegang": [48, 51, 52, 53, 54, 55], "restlich": [48, 51, 52, 53, 54, 55, 86, 103, 184, 219, 268, 295], "aktualisier": [48, 51, 52, 53, 54, 55, 58, 170, 219, 243, 285, 325, 326, 332, 333, 338, 346, 347, 462, 510, 519, 688], "uberfuhrt": [48, 51, 52, 53, 54, 55, 106, 674], "uberschrift": [48, 51, 52, 60, 61, 156, 219, 303, 496, 625, 683], "MUSS": [48, 52, 58, 97, 230, 625], "short": [48, 141, 197, 198, 205, 278, 405, 652], "ident": [48, 62, 97, 116, 145, 168, 324, 347, 370, 508, 563, 572, 576, 585, 674, 688], "inkonsistent": 48, "_pv_": [48, 111], "uberarbeit": [48, 351, 671, 674], "unterstrich": [48, 100, 325, 566], "1_3_5": 48, "css": [48, 55, 56, 57, 58, 106, 161, 172, 251, 314, 353, 645, 646, 651, 655, 687], "cascading": 48, "styl": [48, 55, 56, 58, 62, 130, 170, 172, 186, 198, 234, 253, 318, 496, 523], "sheet": 48, "img": [48, 52, 54, 55, 56, 60, 166, 198, 253, 294, 625, 682], "smartplugin": [48, 52, 53, 54, 55, 59, 63, 115, 144, 147, 151, 248, 301, 312, 313, 341, 365, 618, 620, 623, 626, 641, 642, 643, 645, 646, 648, 651, 652, 653, 655, 656, 669, 670, 671, 674, 692, 693], "abgeleitet": [48, 165, 262, 329, 349, 621, 622, 687], "stattdess": [48, 53, 58, 97, 106, 123, 238, 325, 330, 338, 354, 532, 562, 603, 621, 677], "unterklass": [48, 621], "smartdeviceplugin": [48, 191, 201, 233, 238, 264, 267, 622, 626, 655, 693], "Wie": [48, 53, 58, 62, 85, 92, 94, 97, 98, 111, 116, 200, 323, 325, 326, 330, 453, 457, 513, 517, 603, 682], "command": [48, 66, 71, 113, 141, 160, 164, 169, 179, 180, 181, 183, 185, 191, 199, 200, 201, 218, 230, 231, 238, 248, 255, 258, 264, 267, 278, 279, 281, 284, 301, 304, 315, 318, 319, 330, 349, 351, 355, 356, 357, 368, 370, 400, 413, 441, 451, 456, 464, 467, 478, 521, 522, 545, 554, 618, 621, 623, 624, 626, 629, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 666, 693], "bezieht": [50, 54, 55, 56, 123, 326, 475, 573], "inklusiv": [50, 55, 56, 80, 324, 360, 525, 599, 634], "wort": [50, 97, 100, 169, 256], "phras": 50, "textteil": 50, "deklari": [50, 169, 243, 263, 324, 329, 333, 396, 475, 519], "eingeschloss": [50, 106, 285, 360, 461, 483, 561, 566, 575, 577], "_": [50, 54, 55, 58, 60, 61, 62, 151, 187, 222, 288, 313, 325, 332, 566, 585, 655, 688], "stringliteral": 50, "variabl": [50, 52, 53, 55, 56, 58, 60, 62, 66, 85, 92, 106, 121, 137, 151, 152, 160, 165, 170, 189, 228, 249, 258, 304, 312, 313, 315, 316, 320, 356, 357, 459, 577, 586, 589, 590, 591, 594, 595, 624, 632, 638, 641, 642, 645, 649, 652, 655, 671], "anfuhrungszeich": [50, 106, 112, 124, 263, 325, 326, 330, 332, 569, 577, 579, 592], "heisst": [50, 52, 53, 92, 325, 326, 329, 332, 333, 563, 614, 619, 688], "td": [50, 54, 55, 58, 60, 61, 62, 166, 170, 210, 218, 253, 294, 653], "strong": [50, 54, 55, 58, 60, 62, 170, 460], "markier": [50, 61, 314], "markup": [50, 106, 164, 368], "translat": [50, 51, 54, 55, 63, 66, 148, 151, 620, 624, 652, 655], "translated_text": 50, "mehrstuf": 50, "fundstell": [50, 260], "suchreihenfolg": 50, "folgt": [50, 52, 53, 56, 57, 58, 59, 60, 61, 62, 83, 106, 116, 155, 162, 164, 165, 169, 178, 188, 189, 192, 229, 243, 263, 272, 289, 295, 304, 306, 307, 322, 323, 326, 328, 329, 331, 351, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 565, 576, 591, 610, 678, 688], "sprachdatei": 50, "suchtreff": 50, "unverandert": [50, 96, 103, 106, 116, 162, 219, 508, 573, 576], "fehlend": [50, 79, 262, 545, 547, 548, 550, 552, 554, 558, 641, 671, 673], "dringlich": [50, 272], "vermerkt": [50, 105, 200], "uberwieg": 50, "plugin_translation": [50, 54, 55, 151], "specially": [50, 54, 55], "schliess": [50, 62, 162, 249, 328, 337], "clos": [50, 55, 127, 130, 136, 141, 162, 168, 222, 223, 227, 262, 278, 623, 645, 646, 649, 650, 652, 688], "gleichheitszeich": [50, 568, 570], "sprachcod": 50, "ferm": 50, "macht": [50, 58, 59, 69, 85, 103, 106, 154, 222, 325, 326, 330, 332, 367, 371, 481, 561, 566, 612, 615], "satz": [50, 54, 55, 106, 224, 316, 379], "unterscheidet": [50, 95, 106, 326, 434, 571], "einzufug": [50, 53, 58, 60, 62, 164, 200, 563, 603], "item_id": [50, 55, 58, 186, 187, 398], "geschweift": [50, 566, 575], "klamm": [50, 103, 106, 115, 116, 167, 326, 330, 545, 547, 548, 550, 552, 554, 558, 566, 573, 575, 590, 591, 625, 641], "leerzeich": [50, 53, 71, 83, 97, 103, 106, 112, 116, 165, 169, 230, 326, 339, 340, 566, 569, 592, 610, 682], "loschauftrag": 50, "initiiert": [50, 98, 232], "deletion": [50, 133, 137], "successfully": [50, 66, 141, 190, 227, 334, 618, 624, 653, 655], "initiated": [50, 141, 294, 356, 357, 646], "critical": [50, 76, 83, 115, 116, 243, 263, 575, 643, 646], "todo": [50, 52, 54, 55, 133, 164, 218, 232, 250, 424, 475], "flexibl": [50, 183, 229, 288, 368, 508, 655], "enocean": [50, 78, 199, 221, 545, 548, 644, 646, 649, 650, 652, 653, 654, 655, 656, 671, 674], "argument": [50, 52, 53, 54, 55, 61, 64, 130, 138, 141, 147, 186, 230, 254, 255, 256, 334, 338, 351, 360, 398, 457, 591, 592, 609, 644, 645, 649, 653, 655, 677, 681], "konfigurationsinformation": [51, 98, 545, 547, 548, 550, 552, 554, 558], "enhalt": [51, 53, 609, 642], "restructured": [51, 621, 626], "durchgang": [51, 400, 408, 435, 441, 464, 467, 617], "grund": [51, 100, 103, 106, 116, 165, 219, 232, 283, 299, 323, 325, 328, 330, 333, 369, 381, 561, 588], "englischsprach": [51, 68, 96, 373, 374, 375, 386, 387, 388, 391, 392, 393, 395, 396, 399, 402, 403, 406, 407, 409, 413, 414, 416, 417, 418, 423, 424, 425, 426, 429, 433, 436, 437, 438, 442, 443, 448, 450, 451, 454, 455, 456, 458, 459, 460, 469, 470, 472, 473, 474, 477, 479, 480, 481, 482, 486, 488, 490, 491, 492, 493, 494, 495, 497, 500, 503, 505, 506, 507, 509, 510, 513, 514, 515, 516, 517, 522, 523, 524, 525, 529, 532, 534, 538, 545, 547, 548, 550, 552, 554, 558], "dokuemntation": [51, 597], "googl": [51, 159, 172, 207, 215, 273, 314, 315, 316, 344, 421, 504, 516, 545, 558, 642, 646, 652, 653, 670, 674], "nutzerdokumentation": 51, "homepag": [51, 173, 230], "kurznam": [51, 52, 123, 217, 511, 517, 625], "einstiegspunkt": [51, 52, 625], "inkonsistenz": [51, 52, 625], "navigationselement": [51, 52, 625], "navigationsbaum": 51, "kategori": [51, 78, 95, 263, 305, 373, 375, 682], "navigationspanel": 51, "eim": 51, "anweis": [51, 54, 55, 59, 68, 82, 83, 103, 165, 256, 283, 401, 453, 641], "imag": [51, 52, 54, 55, 56, 79, 82, 92, 183, 185, 198, 219, 227, 228, 253, 274, 359, 370, 625, 643, 663, 674], "pictur": [51, 248, 294, 352], "beispielplugin": [52, 56, 59, 622], "komplett": [52, 54, 55, 91, 92, 116, 162, 172, 189, 212, 233, 262, 284, 289, 314, 316, 321, 328, 333, 347, 351, 362, 376, 381, 401, 462, 506, 508, 563, 573, 630], "kleinschreib": [52, 100, 106, 219, 263, 325, 331], "derzeit": [52, 60, 73, 83, 87, 92, 103, 115, 120, 165, 197, 203, 310, 313, 338, 351, 360, 362, 369, 370, 396, 401, 423, 479, 526, 536, 642], "formal": [52, 64, 106, 125, 638, 653, 671], "umfangreich": [52, 62, 83, 94, 289, 328, 590, 674], "anwendungsmog": 52, "dabgelegt": 52, "ausgeliefert": [52, 57, 103, 292, 528, 641, 671], "logo": [52, 54, 55, 60, 308, 309, 500, 545, 550, 625, 642, 644, 645, 646, 653, 655], "plugin_logo": [52, 54, 55, 60, 625], "png": [52, 54, 55, 60, 178, 198, 219, 253, 294, 295, 352, 425, 625, 653, 687], "zulass": [52, 60, 100, 106, 170, 260, 265, 310, 325, 508, 569, 575, 592], "logos": [52, 60], "jpg": [52, 55, 60, 162, 274, 338, 507, 625], "svg": [52, 56, 60, 166, 218, 219, 253, 284, 288, 294, 424, 425, 682, 683, 686, 687], "konfigurationsoption": [52, 103], "item_attribut": [52, 54, 55, 139, 170, 189, 207, 270, 271, 601, 605, 619, 626, 646, 652, 655], "item_struct": [52, 54, 55, 97, 605, 619, 626], "teilbaum": [52, 97, 532, 566, 578, 682], "logic_paramet": [52, 54, 55, 605, 619, 626], "plugin_function": [52, 54, 55, 605, 619, 626], "gateway": [52, 53, 54, 55, 78, 152, 155, 176, 207, 211, 235, 247, 304, 305, 356, 357, 371, 373, 379, 384, 386, 390, 395, 401, 402, 407, 417, 418, 419, 420, 434, 440, 447, 450, 451, 452, 453, 461, 465, 474, 475, 476, 477, 483, 489, 497, 498, 499, 504, 507, 511, 512, 521, 537, 538, 545, 563, 597, 610, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "titel": [52, 60, 106, 166, 260, 314, 338, 378, 430, 453, 469, 472, 512, 527, 536, 625], "konfigurationsparamet": [52, 83, 111, 113, 118, 119, 120, 121, 122, 625], "konfigurationsdokumentation": [52, 373, 597, 616, 625], "verwies": [52, 82, 625, 687], "samp": 52, "comment": [52, 54, 55, 88, 126, 137, 625, 652, 654, 656], "according": [52, 55, 148, 190, 260, 262, 341, 625, 643, 644, 645, 646, 647, 649, 650, 651, 691], "width": [52, 54, 55, 56, 58, 62, 162, 166, 198, 219, 227, 253, 294, 625, 649, 650, 652, 653], "300px": [52, 54, 55, 625], "scal": [52, 54, 55, 305, 306, 307, 337, 498, 499, 625], "align": [52, 54, 55, 253, 625], "plugins_doc": [52, 54, 55, 228, 233, 625, 660, 665, 666], "ersetz": [52, 54, 55, 58, 76, 82, 85, 164, 262, 272, 321, 507, 566, 586, 625, 641], "webif_tab1": [52, 55, 625], "history": [52, 54, 55, 178, 186, 218, 625, 666], "mitgeteilt": [52, 86, 117, 592], "option": [52, 54, 55, 60, 64, 71, 82, 86, 102, 103, 160, 206, 212, 217, 227, 244, 248, 255, 258, 259, 285, 318, 327, 330, 352, 434, 504, 508, 569, 592, 622, 637, 643, 645, 646, 647, 649, 651, 652, 653, 654, 655, 656, 663, 667, 670, 671, 674, 677, 681, 686, 688], "ggf": [52, 62, 92, 272, 326, 332, 351, 621, 622], "benot": [52, 62, 68, 118, 164, 167, 169, 192, 200, 328, 332, 338, 381, 622], "typisch": [52, 187, 262], "myplugin_instanc": 52, "parameter1": 52, "werf": [52, 73], "tatsach": [52, 58, 83, 115, 194, 276, 306, 307, 329, 347, 378, 381, 427, 461, 569, 592], "frei": [52, 116, 123, 263, 338, 362, 617], "anhand": [52, 56, 71, 83, 106, 115, 200, 229, 314, 326, 332], "initialisier": [52, 58, 59, 115, 164, 283, 328, 331, 347, 412, 434, 508, 522, 565, 566, 570, 591, 641, 642, 673], "N\u00e4chste": [52, 347], "verlinkt": [52, 65, 77, 223, 373], "erford": [52, 58, 59, 62, 112, 124, 194, 222, 233, 314, 326, 331, 332, 351, 369, 434, 599, 636, 678], "aufgab": [52, 86, 224, 289, 583], "angewies": [52, 103, 156, 303, 496, 524], "intervall": [52, 58, 165, 187, 188, 219, 321, 326, 332, 347, 393, 397, 400, 408, 414, 423, 431, 435, 441, 444, 464, 467, 514, 519, 522], "aufzuruf": [52, 125, 325, 396, 510, 545, 558, 573, 638], "nah": [52, 62, 88, 191, 200, 201, 238, 260, 264, 267, 306, 307], "nutzbar": [52, 84, 255, 366, 462, 479, 615, 674], "getlogg": [52, 115, 253, 638, 641], "model": [52, 54, 55, 59, 63, 66, 151, 165, 169, 170, 191, 201, 218, 227, 235, 264, 267, 285, 293, 314, 337, 341, 344, 345, 378, 419, 420, 422, 504, 516, 545, 558, 618, 620, 622, 623, 624, 643, 646, 648, 649, 653, 655, 656], "allow_multiinstanc": [52, 53, 66, 624, 669], "plugin_version": [52, 53, 54, 55, 66, 111, 123, 271, 347, 622, 624, 669], "describ": [52, 128, 160, 251, 353, 356, 357, 652], "pulled": [52, 176], "entry": [52, 55, 66, 113, 127, 136, 137, 147, 152, 164, 186, 216, 217, 260, 306, 307, 618, 624, 645, 646, 648, 649, 652, 653, 654, 655, 667], "param": [52, 54, 55, 58, 130, 139, 141, 142, 152, 155, 203, 274, 293, 304, 349, 356, 357, 622, 623, 638, 644, 646, 650], "sav": [52, 85, 135, 136, 141, 142, 149, 205, 218, 226, 227, 278, 292, 653, 655], "referenc": [52, 54, 55, 66, 126, 133, 137, 141, 160, 173, 186, 217, 247, 352, 623, 624, 645, 646, 649, 650, 652, 655], "standalon": [52, 192, 258], "likely": 52, "rely": 52, "within": [52, 54, 55, 127, 136, 137, 141, 185, 186, 199, 200, 227, 235, 236, 248, 254, 257, 262, 301, 312, 317, 365, 645, 646, 653, 655, 669], "uniqu": [52, 186, 187, 198, 200, 206, 227, 305, 352, 407, 504], "internally": [52, 142], "any": [52, 54, 55, 63, 66, 83, 87, 126, 137, 140, 141, 142, 147, 160, 161, 162, 186, 190, 205, 218, 227, 248, 260, 263, 273, 278, 344, 355, 364, 527, 618, 620, 624, 641, 645, 646, 647, 648, 649, 655, 669, 670], "initialization": [52, 54, 55, 66, 107, 115, 125, 132, 134, 137, 294, 624, 638, 645, 646, 647, 650, 651, 652, 654], "aliv": [52, 54, 55, 66, 219, 248, 356, 357, 624, 643, 645, 649, 655, 660], "initialized": [52, 54, 55, 66, 107, 115, 147, 148, 186, 347, 595, 623, 624, 645, 648, 655], "keyword": [52, 53, 54, 55, 126, 147, 168, 221, 222, 315, 352, 398, 573, 610, 623, 655, 660, 686], "decid": [52, 54, 55, 218, 623], "futur": [52, 54, 55, 142, 148, 152, 298, 364, 623, 645, 652], "adding": [52, 54, 55, 183, 218, 278, 318, 352, 623, 655, 663, 665, 666, 667], "internal": [52, 54, 55, 133, 147, 168, 202, 227, 260, 290, 335, 355, 623, 643, 646, 652, 655, 659], "array": [52, 54, 55, 141, 170, 198, 228, 253, 260, 312, 313, 335, 344, 382, 394, 455, 460, 468, 472, 510, 521, 579, 623, 648], "process": [52, 54, 55, 129, 141, 152, 160, 198, 199, 208, 623, 641, 643, 645, 646, 650, 652], "informed": [52, 54, 55], "back": [52, 54, 55, 133, 142, 149, 218, 248, 261, 288, 347, 375, 646, 649, 652, 653], "update_it": [52, 54, 55, 66, 360, 376, 618, 623, 624, 645, 646, 649, 650, 652, 656], "wher": [52, 53, 54, 55, 66, 83, 113, 126, 130, 137, 141, 142, 148, 160, 164, 186, 199, 218, 227, 262, 278, 288, 290, 294, 317, 353, 356, 357, 610, 612, 624, 641, 644, 646, 649, 650, 655, 688], "mean": [52, 54, 55, 141, 211, 221, 290, 305, 355, 643, 644, 645, 646, 649, 650, 651, 669, 691], "updated": [52, 54, 55, 66, 133, 183, 186, 187, 195, 211, 216, 218, 234, 260, 273, 341, 355, 623, 624, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 663, 675], "dest": [52, 54, 55, 66, 90, 133, 137, 147, 221, 222, 223, 263, 325, 338, 563, 573, 575, 577, 594, 623, 624, 666], "has_iattr": [52, 54, 55, 66, 624], "foo_itemtag": [52, 54, 55], "pars": [52, 54, 55, 58, 66, 98, 106, 126, 140, 143, 144, 216, 258, 263, 312, 315, 318, 361, 431, 505, 532, 545, 558, 624, 641, 645, 664], "interesting": [52, 54, 55, 641], "sending": [52, 54, 55, 179, 183, 199, 205, 231, 274, 278, 296, 301, 305, 368, 642, 645, 646, 647, 648, 654, 655, 663, 665, 666], "parse_logic": [52, 54, 55, 66, 624, 632], "toward": [52, 54, 55, 66, 623, 624], "represent": [52, 54, 55, 66, 141, 186, 202, 211, 612, 623, 624], "ws": [52, 122, 219, 360, 362, 528, 616, 617, 651, 687, 690], "run_logic": 52, "bla": [52, 325, 326, 573, 652], "auszugeb": [52, 67, 107, 164, 263, 577], "klassendefinition": 52, "klassennam": 52, "ladt": [52, 82, 115, 192, 262, 314, 462], "einricht": [52, 83, 89, 103, 162, 170, 188, 212, 213, 220, 265, 289, 293, 574, 630], "seriell": [52, 67, 192, 194, 351, 381, 393, 400, 401, 402, 403, 408, 439, 464, 467, 497, 498, 499, 509, 514, 522, 621, 622, 693], "extern": [52, 67, 77, 82, 92, 165, 204, 207, 260, 314, 328, 338, 373, 412, 563, 635], "vorbereitet": [52, 82, 89, 90], "ausgeles": [52, 53, 56, 170, 178, 232, 243, 279, 282, 306, 307, 314, 349, 351, 362, 367, 396, 401, 403, 443, 481, 482, 497, 575], "verarbeitet": [52, 58, 62, 105, 106, 219, 241, 381, 382, 577, 622, 641], "vorgabewert": [52, 287, 326, 328, 330, 331, 332, 338, 508], "klassenvariabl": 52, "einmalig": [52, 171, 200, 244, 351, 400, 408, 435, 441, 464, 467], "aufgruf": 52, "zeitpunkt": [52, 77, 102, 170, 189, 192, 225, 232, 237, 261, 262, 287, 295, 306, 307, 314, 347, 396, 516, 562, 567, 568, 569, 570, 573, 576, 577, 583, 584, 591, 592, 599, 634, 636, 671, 673], "weitergeb": 52, "empfang": [52, 58, 62, 169, 170, 223, 237, 241, 244, 293, 323, 337, 338, 369, 381, 390, 434, 440, 444, 445, 454, 466, 493, 507, 511, 512, 521, 545, 558, 595, 622, 641, 642, 671], "sichern": [52, 85, 88, 92, 102, 292], "liest": [52, 165, 289, 300, 314, 333, 393, 396, 400, 408, 434, 435, 441, 464, 467, 494, 522, 545, 550, 622], "upstair": 52, "ivalu": 52, "ad": [52, 368], "zuruckgegeb": [52, 56, 58, 62, 165, 170, 229, 316, 330, 382, 416, 434, 519, 527, 528, 563, 565, 591], "parameterwert": [52, 189, 310, 338, 443], "stringwert": [52, 112, 124], "umgewandelt": [52, 169, 367, 533, 595], "einfluss": [52, 77], "logikparamet": 52, "jalousie_up": 52, "jalousi": [52, 162, 321, 323, 324, 328, 329, 331, 508, 572], "20m": 52, "some_plugin_setting": 52, "notify": [52, 261, 269, 272, 296, 646], "feststell": [52, 232, 370], "interagi": 52, "einzuricht": [52, 306, 307, 596], "wer": [52, 53, 66, 86, 88, 92, 115, 136, 141, 184, 227, 268, 363, 370, 610, 624, 642, 643, 644, 645, 646, 649, 650, 651, 653, 655, 668, 688, 691], "zentral": [52, 224, 417, 545, 548, 554, 555, 591, 674, 682, 689], "aufruft": [52, 85, 595], "prio": [52, 66, 117, 137, 147, 216, 217, 328, 594, 600, 624], "fugt": [52, 116, 172, 563, 686], "timing": [52, 211, 646, 649], "sogenannt": [52, 62, 85, 189, 200, 338, 363, 586], "kwarg": [52, 66, 137, 147, 189, 398, 618, 623, 624, 641], "ruft": [52, 58, 62, 338, 570], "fordert": [52, 155, 304, 313], "einmalige": 52, "nd": 52, "jan": [52, 79, 104, 219, 341, 545, 558, 569, 592, 633, 657, 667], "2015": [52, 142, 273, 341], "09pm": 52, "p": [52, 54, 55, 58, 59, 60, 62, 80, 169, 170, 176, 222, 223, 231, 235, 236, 248, 254, 255, 290, 367, 433, 635, 647, 651, 688], "absturz": 52, "wertpaar": 52, "_bla": 52, "heinz": 52, "em": [52, 210, 646, 670, 674], "wertelist": [52, 575, 671], "tom": [52, 206, 545, 550], "_ndat": 52, "period": [52, 58, 117, 176, 187, 189, 192, 213, 262, 289, 291, 341, 351, 356, 357, 592, 600, 655], "verzogert": [52, 326, 328, 332, 508, 519], "zufallswert": 52, "loscht": [52, 154, 181, 189, 337, 396, 423, 508, 563, 567, 591, 612, 641], "bezeichnet": [52, 106, 446, 563], "schedulereintrag": 52, "ebene1": [52, 338], "raum4": 52, "lampe2": [52, 371], "boolesch": [52, 106, 360], "denjen": 52, "identifiziert": [52, 83, 192, 306, 307, 338, 370], "sech": [53, 192, 212, 213, 265, 289], "kompatibilitat": [53, 162], "sprachversion": 53, "vorgefertigt": [53, 189, 219, 244, 622], "paket": [53, 68, 79, 82, 86, 91, 92, 167, 170, 249, 256, 287, 306, 307, 314, 338, 434, 627, 641, 674], "bereitstell": [53, 83, 91, 159, 187, 260, 641], "funktionsaufruf": [53, 338, 347, 472], "vorgeseh": [53, 58, 62, 191, 201, 232, 264, 267], "automatisiert": [53, 117, 170, 189, 323, 434, 592, 600, 652, 653, 654, 655, 656, 688], "grafisch": [53, 79, 82, 347, 642], "konfigurationsoberflach": [53, 577], "systemat": 53, "abgeschloss": [53, 62, 80, 83, 330, 508, 628, 632], "bereitgestellt": [53, 58, 86, 92, 109, 115, 162, 178, 194, 219, 262, 279, 313, 314, 324, 329, 366, 370, 371, 375, 382, 511, 573, 581], "trotzd": [53, 77, 92, 115, 120, 314, 381], "sichergestellt": [53, 58, 106, 192, 262, 289, 360, 596, 628], "dateiversion": 53, "zueinand": 53, "verhindert": [53, 71, 84, 116, 295, 326, 332, 496, 523, 675], "validi": 53, "plugin_metadata_check": [53, 643, 644, 645, 646, 650, 654, 676], "fehlerfrei": [53, 73, 89, 92, 260], "smart": [53, 66, 160, 162, 165, 192, 195, 218, 219, 220, 257, 262, 266, 305, 306, 307, 318, 337, 362, 383, 438, 445, 458, 497, 545, 550, 610, 618, 623, 624, 641, 643, 649, 666, 681], "cloud": [53, 78, 160, 162, 163, 215, 219, 221, 229, 262, 265, 316, 346, 373, 447, 465, 545, 548, 610, 652], "classified": [53, 610], "msinn": [53, 54, 545, 548, 550, 552, 554, 558, 610], "who": [53, 54, 55, 610], "stat": [53, 54, 55, 66, 71, 83, 96, 104, 133, 137, 141, 146, 162, 186, 198, 200, 202, 208, 215, 218, 227, 235, 240, 250, 254, 255, 276, 288, 290, 291, 293, 295, 310, 321, 323, 329, 333, 338, 359, 365, 367, 368, 370, 422, 453, 456, 458, 490, 501, 508, 533, 535, 610, 618, 624, 633, 641, 643, 644, 646, 647, 648, 649, 651, 652, 653, 654, 655, 666, 681], "qa": [53, 610, 641, 681], "passed": [53, 60, 130, 147, 152, 185, 227, 248, 356, 357, 395, 610, 641, 653, 681], "applicabl": [53, 254, 370, 610, 623], "supportfor": [53, 54, 55, 170, 182, 186, 198, 218, 234, 239, 245, 253, 260, 278, 298, 301, 335, 344, 352, 353, 355, 356, 357, 364, 610, 647, 651], "multi_instanc": [53, 54, 55, 610], "restartebly": [53, 610], "unknown": [53, 54, 55, 137, 210, 257, 328, 545, 548, 610, 642, 645, 649, 650, 652, 655], "startord": [53, 610, 653], "configuration_needed": [53, 55, 610, 646], "plugin_class": [53, 610], "klassifiziert": [53, 78, 373, 610], "anbind": [53, 78, 259, 345, 373, 407, 409, 416, 418, 419, 420, 434, 436, 437, 438, 447, 452, 456, 459, 466, 470, 472, 473, 474, 479, 480, 481, 488, 502, 504, 507, 512, 521, 526, 530, 545, 548, 550, 552, 554, 555, 558, 610, 621], "dien": [53, 60, 67, 78, 83, 86, 92, 93, 96, 100, 103, 120, 153, 171, 262, 272, 291, 313, 337, 338, 359, 371, 373, 434, 470, 473, 490, 491, 545, 558, 587, 610, 627, 632, 638, 671], "ubertragungsprotokoll": [53, 373, 610], "pflegt": [53, 610], "weiterentwickelt": [53, 73, 370, 610, 641], "erklart": [53, 103, 107, 169, 610, 622], "ready": [53, 54, 55, 56, 60, 62, 173, 176, 235, 610, 641, 646, 651, 653, 655], "schlusselwort": [53, 58, 98, 241, 256, 263, 333, 610], "weiterfuhr": [53, 98, 103, 545, 547, 548, 550, 552, 554, 558, 580, 610], "gemeint": [53, 92, 610, 682], "lag": [53, 68, 107, 223, 229, 550, 551, 574, 610], "lauffah": [53, 67, 79, 83, 212, 213, 261, 265, 289, 610, 622, 674], "restartabl": [53, 54, 55, 610, 641, 647], "fahlg": [53, 610], "besond": [53, 76, 79, 85, 86, 103, 115, 116, 123, 210, 320, 323, 326, 328, 329, 332, 347, 381, 406, 561, 566, 573, 584, 586, 589, 598, 610, 630, 671], "startreihenfolg": [53, 610], "early": [53, 610, 643, 652, 653], "classpath": [53, 139, 143, 145, 610], "attributnam": [53, 326, 330, 566, 577, 602, 641], "zukunft": [53, 58, 82, 106, 191, 201, 238, 262, 264, 267, 326, 426, 427, 487, 599, 601, 602, 609, 634, 672], "attribute1": [53, 126, 601, 602], "attribute2": [53, 126, 601, 602], "duplicate_us": [53, 602, 652], "ubereinstimm": [53, 79, 169, 194, 326, 328, 332, 450, 602], "trees": [53, 97, 304, 603, 664, 689], "struct1": [53, 603], "item1": [53, 103, 188, 256, 315, 603, 641], "item2": [53, 103, 188, 256, 603, 641], "item3": [53, 188, 256, 603], "my": [53, 97, 152, 169, 189, 191, 196, 201, 218, 221, 234, 238, 253, 264, 267, 273, 274, 285, 317, 338, 347, 370, 506, 566, 573, 596, 603, 612, 667], "plg_attr1": [53, 603], "item4": [53, 603], "item_name_of_struct": [53, 603], "example_plugin": [53, 603], "ineinand": [53, 603], "referenzi": [53, 324, 329, 561, 566, 603], "redefini": [53, 603], "einles": [53, 106, 338, 440, 537, 603], "zuletzt": [53, 97, 164, 165, 237, 295, 325, 330, 347, 376, 460, 508, 519, 562, 563, 567, 591, 603], "hingeg": [53, 92, 293, 326, 330, 332, 359, 589, 603, 688], "auflos": [53, 82, 97, 187, 330, 331, 453, 561, 573, 603], "gewinn": [53, 603], "uberschreib": [53, 97, 333, 596, 603], "betreff": [53, 71, 241, 424, 425, 445, 603, 637], "reihenfolg": [53, 80, 86, 92, 97, 105, 162, 219, 241, 323, 324, 325, 326, 331, 332, 333, 577, 603, 632, 682], "verschachteln": [53, 603], "redefiniert": [53, 603], "aneinand": [53, 603], "gehangt": [53, 603], "fahig": [53, 97, 189, 212, 213, 289, 362, 603, 617, 641, 674, 689], "wahrschein": [53, 58, 71, 191, 201, 267, 325, 485, 603], "angefugt": [53, 59, 97, 527, 566, 585, 603, 682], "kennzeichn": [53, 100, 287, 563, 566, 603, 641], "bekomm": [53, 58, 71, 79, 103, 112, 162, 192, 229, 232, 262, 285, 338, 573, 603, 641], "konstant": [53, 124, 249, 487, 519, 568, 570, 595, 603, 693], "real": [53, 68, 87, 126, 160, 161, 164, 187, 193, 262, 305, 603, 650, 655, 688], "mitgegeb": [53, 58, 121, 123, 330, 588, 603], "plg_instanc": [53, 603], "benannt": [53, 124, 169, 224, 263, 326, 328, 428, 563, 585, 603, 642], "offent": [53, 187, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 597, 609, 619, 641], "aufrufbar": [53, 609], "funktionsdefinition": [53, 589, 609], "example_function": [53, 609], "funktionsparamet": [53, 62, 609], "entfallt": [53, 609, 682, 689], "funktionsnam": [53, 116, 381, 609], "umgesetzt": [54, 55, 189, 326, 339, 340, 347, 519], "anreg": [54, 55], "beispieldatei": [54, 55, 87, 103], "beispieldokumentation": [54, 55], "development": [54, 55, 66, 107, 114, 115, 121, 176, 198, 239, 280, 618, 624, 642, 644, 645, 646, 651, 653, 668, 681], "iot": [54, 55, 218, 219, 424, 425], "thes": [54, 55, 137, 141, 149, 150, 152, 160, 173, 186, 195, 221, 234, 240, 248, 253, 257, 260, 282, 294, 305, 334, 344, 352, 353, 356, 357, 365, 370, 643, 644, 645, 646, 649, 650, 651, 655, 691], "max": [54, 55, 88, 133, 155, 161, 186, 187, 189, 200, 203, 207, 221, 235, 239, 262, 281, 287, 292, 294, 304, 308, 309, 317, 325, 329, 330, 338, 356, 357, 361, 398, 462, 506, 510, 573, 632, 642, 646, 650, 651, 671, 688], "quot": [54, 55, 106, 126, 152, 189, 398, 575, 577], "interpreted": [54, 55, 290, 643, 655], "omit": [54, 55, 160, 186], "stopping": [54, 55, 646], "starting": [54, 55, 83, 84, 104, 126, 140, 143, 147, 190, 200, 211, 234, 257, 315, 318, 355, 436, 633, 643, 646, 649, 652, 655], "sampleplugin": [54, 55, 58], "toggl": [54, 55, 137, 170, 198, 200, 247, 338, 406, 407], "execution": [54, 55, 71, 130, 147, 180, 221, 269, 288, 292, 646, 655], "wanted": [54, 55, 281, 288], "pause_it": [54, 55, 338], "controlling": [54, 55, 645, 651], "encoding": [54, 55, 107, 115, 116, 136, 141, 169, 170, 188, 263, 322, 583, 585, 647, 648, 666], "utf": [54, 55, 62, 71, 82, 83, 103, 164, 170, 310, 376, 445, 655, 666], "tabstop": [54, 55], "softtabstop": [54, 55], "shiftwidth": [54, 55], "expandtab": [54, 55], "copyright": [54, 55, 182, 344, 352, 353, 355, 356, 357, 646], "2020": [54, 55, 68, 79, 104, 107, 115, 184, 187, 268, 270, 271, 312, 313, 360, 633, 646, 647, 648, 649, 650, 657, 682], "author": [54, 55, 176, 190, 208, 298, 372, 670], "new": [54, 55, 56, 68, 71, 129, 130, 136, 137, 141, 149, 150, 151, 152, 170, 180, 181, 183, 185, 186, 195, 198, 200, 216, 218, 227, 234, 239, 251, 254, 273, 274, 288, 296, 297, 298, 301, 315, 338, 341, 353, 356, 357, 395, 612, 616, 623, 647, 652, 653, 654, 655, 656, 659, 660, 663, 664, 668, 688], "upward": [54, 650], "free": [54, 55, 218, 239, 251, 273, 274, 344, 364, 365, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "redistribut": [54, 55], "modify": [54, 55, 149, 355, 655], "term": [54, 55, 79], "gnu": [54, 55], "general": [54, 55, 169, 171, 190, 191, 253, 262, 264, 267, 295, 296, 322, 323, 324, 325, 326, 327, 328, 330, 331, 332, 353, 358, 646, 649, 653], "public": [54, 55, 148, 161, 310, 311, 368, 641, 646, 653, 688], "licens": [54, 55, 172, 182, 227, 251, 311], "foundation": [54, 55], "eith": [54, 55, 127, 133, 136, 142, 147, 160, 227, 281, 294, 359], "distributed": [54, 55], "hop": [54, 55, 288, 663], "useful": [54, 55, 138, 141, 183, 186, 205, 247, 248, 305, 650, 652], "but": [54, 55, 66, 87, 107, 115, 129, 141, 146, 152, 160, 162, 183, 186, 208, 218, 227, 234, 247, 274, 278, 288, 294, 312, 318, 352, 355, 368, 512, 624, 643, 644, 645, 646, 649, 650, 651, 653, 668, 686, 691], "warranty": [54, 55, 195], "even": [54, 55, 126, 161, 211, 221, 231, 257, 278, 301, 341, 365, 645, 646, 648, 649, 650, 652, 655, 668], "implied": [54, 55], "merchantability": [54, 55], "fitness": [54, 55], "particular": [54, 55, 142], "purpos": [54, 55, 107, 115, 141, 160, 251, 645, 646, 648], "see": [54, 55, 136, 141, 142, 148, 152, 160, 173, 176, 180, 182, 183, 186, 195, 198, 199, 205, 206, 218, 221, 232, 251, 253, 257, 260, 273, 275, 278, 280, 281, 294, 305, 315, 341, 344, 350, 361, 365, 368, 370, 650, 651, 652, 653, 659, 663, 664], "mor": [54, 55, 60, 63, 66, 136, 137, 148, 152, 176, 186, 193, 198, 205, 211, 216, 221, 222, 227, 231, 248, 258, 260, 262, 278, 288, 294, 296, 298, 301, 305, 315, 344, 361, 364, 620, 624, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 659, 663, 669, 670, 677], "along": [54, 55], "imported": [54, 55, 653], "might": [54, 55, 58, 113, 162, 193, 218, 227, 280, 294, 649, 650, 655], "samplemqttplugin": 54, "stuff": [54, 55, 218, 234, 646], "initaliz": [54, 55], "get_sh": [54, 55, 66, 624, 649], "almost": [54, 55, 312, 653, 655], "way": [54, 55, 66, 127, 132, 134, 137, 140, 141, 143, 144, 146, 147, 148, 160, 183, 234, 240, 247, 248, 258, 262, 288, 290, 312, 335, 352, 355, 595, 624, 644, 646, 650, 655, 686], "getting": [54, 55, 195, 257, 562, 612, 646, 649, 650, 655], "get_parameter_valu": [54, 55, 60, 66, 624, 644, 645, 655], "parameter_nam": [54, 55, 66, 592, 624], "anywh": [54, 55], "sup": [54, 55, 66, 624, 645, 651, 653, 655], "uncomment": [54, 55], "_pause_item_path": [54, 55], "goes": [54, 55, 149, 645], "_init_complet": [54, 55], "init_webinterfac": [54, 55, 59, 66, 624, 645, 655], "dbghigh": [54, 55, 115, 651, 653], "_pause_it": [54, 55], "get_fullnam": [54, 55, 66, 624, 655], "subscription": [54, 63, 227, 595, 620, 645, 647, 653], "topics": [54, 63, 121, 223, 479, 595, 620, 645, 674], "start_subscription": [54, 63, 620, 621], "scheduler_remove_all": [54, 55, 66, 624], "stop_subscription": [54, 63, 620, 621], "updating": [54, 55, 66, 254, 255, 329, 341, 623, 624, 646, 653], "foo_itemid": 54, "relay": [54, 337, 489, 511, 646, 655], "mqtt_id": 54, "get_iattr_valu": [54, 66, 624, 646], "upp": [54, 133, 142, 211, 352, 574], "shelli": [54, 292], "shellyplug": [54, 292, 293, 489, 645], "add_subscription": [54, 63, 620, 621], "on_mqtt_messag": 54, "changed": [54, 55, 66, 87, 107, 115, 133, 183, 185, 187, 205, 211, 218, 227, 234, 240, 247, 248, 257, 263, 273, 278, 290, 294, 355, 356, 357, 365, 395, 589, 623, 624, 642, 643, 644, 645, 646, 647, 649, 650, 651, 652, 653, 654, 655, 656, 663, 667, 670], "shall": [54, 199, 245, 278, 653], "been": [54, 55, 63, 66, 133, 135, 139, 141, 186, 190, 211, 218, 227, 248, 294, 298, 315, 317, 356, 357, 618, 620, 623, 624, 643, 644, 645, 646, 647, 649, 650, 651, 653, 655, 656, 670, 691], "managed": [54, 55, 66, 623, 624], "execut": [54, 55, 130, 152, 186, 205, 227, 254, 294, 330, 368, 643, 648, 650], "stopped": [54, 55, 66, 200, 294, 479, 618, 624, 653], "outsid": [54, 55, 97, 162, 186, 260, 261, 317, 521, 646, 651, 653, 655], "funf": [54, 55, 104, 169, 633], "inhaltsblock": [54, 55], "befullt": [54, 55, 58, 62, 92, 102, 192, 330, 642], "kopfdat": [54, 55], "headtabl": [54, 55, 58, 62, 653, 654, 655], "hauptteil": [54, 55], "bodytab1": [54, 55, 58, 60, 62], "bodytab2": [54, 55], "bodytab3": [54, 55], "bodytab4": [54, 55], "bodytab": [54, 55, 58, 62, 651, 655, 656], "tabcount": [54, 55, 60], "base_plugin": [54, 55, 655, 656], "logo_fram": [54, 55], "update_interval": [54, 55, 58, 653], "millisecond": [54, 55, 152], "periodic": [54, 55, 643, 646], "additional": [54, 55, 107, 113, 115, 116, 141, 151, 176, 180, 183, 195, 202, 205, 218, 262, 331, 352, 353, 355, 356, 357, 365, 623, 645, 646, 647, 649, 651, 652, 653, 654, 655], "script": [54, 55, 56, 57, 58, 60, 62, 205, 251, 263, 278, 321, 337, 353, 644, 653, 655], "javascript": [54, 55, 85, 106, 151, 161, 312, 313, 353, 649, 653, 687, 690], "go": [54, 55, 164, 206, 218, 248, 257, 296], "pluginscript": [54, 55, 56, 58, 60, 62], "document": [54, 55, 56, 58, 60, 62, 334, 365], "datatabl": [54, 55, 57, 58, 60, 646, 649, 650, 651, 652, 653, 654, 655, 656], "js": [54, 55, 56, 57, 58, 60, 160, 172, 251, 314, 353, 356, 357, 496, 524, 646, 649, 651, 655, 670, 690], "renam": [54, 55, 317, 646, 649, 655], "bind": [54, 55, 221, 222, 256, 288, 329], "datatables_default": [54, 55, 60], "behaviour": [54, 55, 60, 133, 211, 355, 645, 650, 655], "cours": [54, 55], "overwrit": [54, 55, 130, 623, 677], "putting": [54, 55, 222, 653], "declaration": [54, 55, 647, 652, 655], "pagelength": [54, 60, 653, 655], "pageresiz": [54, 57, 651, 652, 655], "included": [54, 55, 227, 274, 305, 352, 370, 653, 655], "maintabl": [54, 55, 58, 60, 61, 62], "columndef": [54, 55, 58], "hiding": [54, 55], "column": [54, 55, 186, 187, 645, 648, 652, 653, 655], "concat": [54, 55, 58], "target": [54, 55, 58, 84, 89, 90, 147, 273, 368, 630], "fn": [54, 55, 58, 169], "catch": [54, 55, 60, 195, 641, 646, 648, 649, 652, 653, 654, 655, 656], "consol": [54, 55, 60, 82, 107, 115, 116, 160, 162, 199, 646, 653, 655], "warn": [54, 55, 368, 641, 653], "showing": [54, 55, 60, 227, 280, 646, 649, 653], "reord": [54, 55, 60], "handleupdateddata": [54, 55], "respons": [54, 55, 58, 62, 141, 169, 218, 219, 227, 356, 357, 394, 407, 468, 646, 648, 649, 650, 651, 652, 655, 667], "dataset": [54, 55], "null": [54, 55, 58, 88, 92, 129, 165, 187, 244, 654], "devices_info": [54, 55, 58], "objrespons": [54, 55, 58], "json": [54, 55, 58, 62, 85, 104, 106, 133, 141, 160, 161, 162, 164, 178, 184, 203, 208, 219, 227, 229, 234, 268, 349, 356, 357, 360, 365, 368, 370, 431, 436, 462, 472, 496, 511, 525, 545, 550, 558, 599, 622, 633, 641, 646, 647, 649, 651, 655, 656, 670, 672], "myproto": [54, 55], "getelementbyid": [54, 55, 56, 58], "shnginserttext": [54, 55, 58, 62, 651], "_sourc": 54, "_powerstat": 54, "powerstat": [54, 162, 198, 266, 276, 384, 466], "draw": [54, 55, 58], "endblock": [54, 55, 56, 58, 60, 62, 314], "striped": [54, 55, 58, 61, 62], "hov": [54, 55, 58, 61, 62], "tbody": [54, 55, 58, 60, 61, 62], "tr": [54, 55, 58, 60, 61, 62, 71, 166, 180, 181, 253, 294, 382, 655, 660, 674], "prompt": [54, 55, 646], "nein": [54, 55, 71, 219, 255, 338, 406], "endif": [54, 55, 56, 60, 353], "50px": [54, 55], "div": [54, 55, 56, 60, 61, 78, 166, 253, 294, 314, 644, 651, 653, 655], "btn1": [54, 55], "btn": [54, 55, 62], "sm": [54, 55, 62, 210, 211], "scan": [54, 55, 58, 62, 164, 297, 492], "onclick": [54, 55, 56, 62], "shngpost": [54, 55], "learn": [54, 55, 112, 124, 199, 296, 649], "fas": [54, 55, 137], "fa": [54, 55], "question": [54, 55, 152, 160, 161, 205, 227, 338], "nbsp": [54, 55, 166], "body": [54, 55, 142, 150, 161, 170, 227, 362, 368, 612], "visibl": [54, 55, 160, 651], "anoth": [54, 55, 126, 129, 132, 134, 160, 161, 185, 227, 273, 296, 304, 356, 357, 365, 368, 395, 647, 651, 655], "item_count": [54, 55, 60, 134], "start_tab": [54, 55, 60], "tab1titl": [54, 55, 60], "mb": [54, 60, 653], "datatableadditional": [54, 55, 58, 60, 61, 651, 655], "thead": [54, 55, 58, 60, 61, 62], "th": [54, 55, 58, 60, 61, 62, 104, 139, 149, 210, 347, 520, 545, 558, 643, 653, 655], "mqtt_topic_in": 54, "mqtt_topic_out": 54, "_path": [54, 55, 58, 60, 61], "_typ": [54, 58, 60, 61], "_valu": [54, 55, 58, 62, 223, 224, 655], "br": [54, 198, 294, 460, 682, 683, 688], "_last_updat": 54, "last_updat": [54, 133, 297, 360, 492, 562, 567, 591, 667], "strftim": [54, 56, 164, 184, 253, 262, 268, 330, 338], "_last_chang": 54, "last_chang": [54, 133, 355, 360, 562, 567, 571, 577, 591, 641, 667], "endfor": [54, 55, 58, 60, 61, 62], "etwaig": [54, 55, 58, 189, 191, 196, 201, 264, 267, 295, 326, 330, 331, 332, 333, 347, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "tab2titl": [54, 55], "device_count": [54, 55], "third": [54, 55, 243, 288, 315, 659], "titl": [54, 55, 161, 166, 169, 178, 206, 228, 250, 359, 453, 612, 645, 651, 655, 665], "tab3titl": [54, 55], "fourth": [54, 55, 243, 315], "tab4titl": [54, 55], "long": [54, 55, 66, 79, 142, 176, 179, 208, 219, 227, 251, 278, 317, 624, 643, 646, 647, 649, 653, 655, 656, 663, 670], "skizziert": [54, 55, 688], "mindestumfang": [54, 55], "demo": 55, "demonstration": 55, "value2": [55, 106, 563], "value1": [55, 106, 563], "value3": [55, 106], "value4": [55, 106], "value5": 55, "gultigkeitslist": 55, "valid": [55, 126, 132, 133, 139, 149, 152, 170, 177, 179, 205, 211, 227, 262, 278, 288, 312, 314, 352, 355, 370, 413, 508, 623, 646, 647, 649, 652, 655, 656, 681], "param3": 55, "item_attribute_prefix": [55, 139, 605, 619, 626, 647], "common": [55, 122, 227, 253, 301, 612, 649], "ommit": 55, "really": 55, "nessesary": 55, "stateengin": [55, 67, 78, 97, 111, 116, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 545, 554, 601, 638, 641, 642, 643, 645, 646, 647, 648, 649, 650, 652, 653, 655, 656], "asyncio": [55, 66, 624, 626, 646, 652, 656, 692], "hint": [55, 72, 86, 169, 247, 259, 321, 326, 330, 332, 368, 472, 545, 547, 548, 550, 552, 554, 558, 573, 585, 648, 681], "properti": [55, 133, 134, 144, 145, 162, 227, 305, 330, 349, 355, 562, 564, 573, 641, 643, 646, 652], "already": [55, 66, 71, 107, 115, 129, 130, 136, 137, 148, 186, 217, 243, 257, 278, 294, 623, 624, 643, 644, 645, 646, 647, 649, 650, 651, 691], "polled": [55, 655], "mayb": [55, 227, 240, 288, 290, 334, 650], "_cycl": [55, 649], "connect": [55, 71, 83, 111, 127, 130, 141, 175, 183, 186, 208, 215, 218, 219, 235, 236, 248, 254, 257, 278, 281, 283, 284, 292, 297, 345, 350, 355, 368, 411, 416, 424, 425, 482, 538, 545, 550, 558, 623, 643, 645, 646, 650, 654, 655], "serial": [55, 87, 155, 183, 192, 193, 200, 206, 218, 227, 235, 281, 298, 304, 305, 334, 341, 356, 357, 384, 422, 479, 533, 622, 623, 646, 655, 656, 688], "forget": [55, 288], "disconnect": [55, 141, 297, 623, 645, 649], "poll": [55, 66, 127, 213, 244, 341, 382, 478, 479, 624, 646, 652, 655, 666, 670, 674], "loop": [55, 66, 227, 618, 623, 624, 646, 648, 652, 655, 660], "remb": 55, "scheduler_add": [55, 66, 137, 594, 624, 643, 645, 655], "_poll": 55, "start_asyncio": [55, 66, 618, 624], "plugin_coro": [55, 66, 618, 624], "coroutin": [55, 66, 618, 624], "them": [55, 66, 136, 166, 186, 218, 227, 231, 240, 245, 251, 253, 257, 288, 294, 296, 301, 312, 314, 562, 618, 624, 631, 652, 655], "shutdown": [55, 186, 243, 645, 649, 650, 652, 653, 654, 655, 660, 671], "properly": [55, 133, 141, 193, 262, 278, 646], "bug": [55, 162, 205, 227, 249, 334, 359, 641, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 675], "Also": [55, 87, 92, 102, 123, 169, 186, 226, 257, 260, 278, 577, 579, 596], "restarted": [55, 186, 646], "stop_asyncio": [55, 66, 618, 624], "rememb": [55, 138, 240, 248], "clean": [55, 71, 136, 140, 141, 180, 190, 281, 645, 646, 650, 653, 655, 660, 666], "anything": [55, 221, 294, 666], "cleanly": 55, "_itemlist": 55, "append": [55, 60, 133, 170, 180, 288, 563], "comparing": [55, 66, 624], "fullnam": [55, 612], "callerinfo": [55, 66, 624], "propagat": 55, "device_valu": 55, "simpl": [55, 90, 115, 130, 152, 160, 161, 186, 200, 273, 274, 275, 288, 297, 504, 643, 659, 665, 688], "receiv": [55, 63, 66, 107, 115, 169, 198, 199, 205, 231, 247, 248, 274, 368, 369, 370, 381, 400, 406, 433, 440, 467, 535, 545, 550, 620, 624, 646, 649, 652, 655, 663, 669, 671], "several": [55, 231, 278, 281, 301, 353, 645, 653, 654, 655, 663], "external": [55, 141, 152, 186, 227, 230, 293, 368, 649, 655, 670], "device_source_id": 55, "plugintask": 55, "terminat": [55, 66, 618, 624, 655], "finished": [55, 66, 107, 115, 125, 141, 272, 329, 618, 624, 638, 650], "heavy": 55, "interval": [55, 58, 136, 186, 206, 227, 234, 245, 297, 317, 341, 347, 514, 569, 585, 592, 652, 655], "200": [55, 79, 112, 141, 168, 170, 189, 195, 196, 229, 329, 334, 349, 380, 382, 422, 651], "log_array": 55, "length": [55, 66, 136, 148, 624, 643, 650, 653, 655], "update_param": [55, 58], "auto": [55, 58, 71, 133, 141, 162, 260, 270, 271, 352, 353, 375, 449, 453, 479, 643, 647, 649, 651, 652, 653, 655], "completely": [55, 183, 186, 198, 298, 646], "refresh": [55, 58, 253, 349, 376, 521, 645, 651, 652, 653, 655, 674], "autorefresh_button": [55, 58], "reload_button": [55, 58], "close_button": [55, 58], "know": [55, 186, 227, 234, 290, 297, 305, 312, 317, 512], "rows": [55, 58, 130, 651], "activat": [55, 58, 68, 162, 205, 227, 247, 334, 347, 420, 538, 612, 646, 652, 666, 670, 688], "increas": [55, 169, 247, 278, 335, 645, 652, 653, 655], "performanc": [55, 211, 221, 227, 643, 649], "row_count": [55, 58], "retrieved": [55, 66, 260, 305, 315, 624], "beginning": [55, 133, 136, 148, 227, 646], "initial_updat": [55, 58], "pluginstyl": [55, 56, 58], "100px": [55, 58], "highligt": 55, "effect": [55, 57, 164, 211, 212, 213, 290, 419, 420, 648, 651], "color": [55, 58, 71, 170, 200, 211, 219, 247, 253, 337, 382, 649, 651, 652, 655], "shng_effect_highlight": [55, 58], "background": [55, 58, 253, 278], "ffffe0": [55, 58], "shng_effect_standard": [55, 58], "cell": [55, 651], "visual": [55, 103, 342], "highlight": [55, 58, 651], "duration": [55, 133, 148, 170, 187, 250, 260, 329, 344, 382, 453, 460, 645, 646, 655, 670], "redraw": 55, "resorting": 55, "table_id": [55, 60], "tooltips": [55, 57, 650, 655], "tooltip": [55, 56, 347], "const": [55, 56], "tooltiplist": [55, 56], "Nach": [55, 58, 71, 77, 82, 83, 84, 87, 106, 155, 164, 169, 187, 200, 212, 213, 220, 233, 237, 244, 255, 304, 314, 328, 330, 331, 338, 349, 369, 508, 512, 561, 569, 573, 576, 592, 652, 688], "createtooltips": [55, 56, 655], "cooki": [55, 122, 141, 376, 545, 558, 644, 655, 656, 688], "sort_ord": [55, 56], "resepctiv": 55, "ord": [55, 56, 151, 162, 185, 206, 254, 294, 297, 315, 326, 332, 335, 342, 368, 395, 643, 646, 647, 652, 653, 655, 682], "getcooki": [55, 56], "desc": [55, 56, 304, 356, 357], "click": [55, 56, 62, 119, 164, 274, 612, 646, 653, 655], "deactivated": [55, 58, 257], "12th": [55, 58, 639], "decemb": [55, 58, 127], "sens": [55, 58, 165], "today": [55, 58, 148, 217, 234, 262, 294, 311, 599, 634], "today_dat": [55, 58], "getdat": [55, 56, 58], "getmonth": [55, 56, 58], "getfullyear": [55, 56, 58], "test_dat": [55, 58], "12122022": [55, 58], "specialit": [55, 58, 325, 326], "2000": [55, 58, 207, 211, 337, 622], "update_activ": [55, 58], "px": 55, "responsiv": [55, 58, 60, 62, 85, 651, 652, 653, 654, 655], "setcooki": [55, 56], "365": [55, 56, 122, 389, 688], "accordingly": [55, 211, 646, 653, 655], "correct": [55, 149, 185, 195, 202, 206, 227, 248, 646, 649, 651, 652, 653, 654, 655], "plugin_attribut": [55, 134], "ui": [56, 57, 58, 170, 198, 234, 244, 436, 545, 550, 655], "plugindat": 56, "erganzt": [56, 58, 62, 102, 123, 162, 170, 207, 219, 261, 262, 328, 329, 351, 381, 591, 621, 626, 638, 641, 671, 687], "templateengin": 56, "gerendert": [56, 219], "standardtemplat": 56, "kopfteil": 56, "ober": [56, 60, 97, 188, 200, 263, 496, 523, 569, 575, 577, 592, 682, 686], "rand": [56, 686], "webseit": [56, 58, 61, 62, 85, 111, 120, 164, 184, 229, 261, 268, 279, 313, 424, 425, 455, 599], "popp": [56, 57, 251, 352, 353, 355, 356, 357, 649, 655], "zehn": [56, 162, 585], "ansprech": [56, 589], "auszustatt": 56, "codezeil": [56, 58, 622], "dauerhaft": [56, 232, 461], "angebot": [56, 77, 82], "cookienam": 56, "cookiewert": 56, "speicher": [56, 192, 220, 426, 427, 428, 545, 554], "beispielhaft": [56, 62, 192, 200, 215, 261, 359], "alpha": [56, 164, 643], "asc": 56, "sortierfunktion": [56, 641], "heiss": [56, 82, 169, 189, 325], "sort": [56, 136], "eingefarbt": [56, 232], "20px": 56, "bord": 56, "padding": [56, 253], "margin": [56, 253, 653], "bottom": 56, "5px": [56, 253], "invert": [56, 107, 115, 116, 137, 138, 229, 297, 312, 313, 436, 492, 545, 550, 583, 645, 649, 653], "sepia": 56, "saturat": 56, "6481": 56, "rotat": 56, "246deg": 56, "brightness": [56, 200, 211, 213, 247, 323, 337, 646], "102": [56, 155, 239, 288, 304, 308, 309, 312, 313, 356, 357, 365, 442], "contrast": 56, "143": [56, 444], "alpha_asc": 56, "alpha_desc": 56, "eventlist": 56, "reagiert": [56, 83, 302, 338, 407, 451, 671, 689], "addeventlist": 56, "samtlich": [56, 82, 83, 116, 169, 191, 201, 243, 244, 263, 264, 267, 319, 320, 322, 325, 328, 330, 338, 346, 347, 507, 569, 575, 592, 671], "entfernt": [56, 95, 103, 106, 162, 302, 326, 332, 354, 396, 453, 506, 563, 566, 635, 641, 652, 653, 654, 655, 656, 677, 682], "classlist": 56, "geklickt": [56, 71, 83, 96, 187, 226, 292], "inputelement": 56, "src": [56, 57, 166, 198, 251, 253, 288, 294, 353, 628], "bootstrap": [56, 57, 251, 641, 646, 649, 655, 674, 675], "datepick": [56, 57, 251, 643, 649, 655, 674], "kalendertag": 56, "auszuwahl": [56, 369, 431], "initialisi": [56, 58, 210, 382], "autoclos": 56, "todayhighlight": 56, "todaybtn": 56, "linked": [56, 273, 646, 650], "enddat": 56, "sobald": [56, 117, 121, 169, 188, 217, 219, 237, 323, 324, 325, 330, 333, 347, 381, 423, 508, 573, 592, 600, 628, 688], "eruiert": [56, 169, 325, 326, 330, 332, 367], "changedat": 56, "interaktion": [56, 373], "erweit": [56, 67, 76, 98, 111, 116, 159, 219, 241, 328, 333, 373, 554, 555, 611], "drittanbiet": [56, 103, 224], "drittanbieterkomponent": 57, "jquery": [57, 58, 251, 649, 655, 662, 663, 665, 674], "rel": [57, 251, 338], "stylesheet": [57, 251], "href": [57, 161, 170, 198, 251], "incl": [57, 218, 260, 289, 335, 396, 646, 649, 655, 656, 670, 674, 691], "view": [57, 219, 251, 345, 352, 646, 649, 655, 665, 669, 674], "treeview": [57, 251, 674], "dist": [57, 335, 439, 510], "popper_function": 57, "codemirror": [57, 251, 653, 671, 674], "46": [57, 251], "font": [57, 170, 251, 253, 641, 649, 674], "awesom": [57, 251, 641, 649, 674], "fontawesom": [57, 251], "jederzeit": [57, 115, 260, 328, 370, 376], "lizenz": [57, 224], "sendet": [58, 111, 155, 164, 165, 167, 169, 170, 192, 194, 232, 237, 256, 293, 304, 306, 307, 337, 338, 369, 376, 379, 382, 400, 406, 420, 425, 434, 440, 441, 453, 464, 467, 472, 480, 512, 527, 531, 545, 548, 599], "ajax": [58, 62, 234, 351, 643], "millisekund": [58, 469], "zusammenstellt": 58, "zuruckgibt": 58, "smartpluginwebif": [58, 62, 151], "webif_dir": [58, 62, 612], "webpag": [58, 312, 342], "mechanism": [58, 218, 646, 653, 656], "overview": [58, 161, 288, 352, 496, 523, 643, 645, 649, 655, 686], "_webdata": 58, "dumps": [58, 62, 203, 317, 645], "fromip": [58, 62], "getitemvalu": 58, "zykl": [58, 210, 233, 570], "anspruch": [58, 96, 293], "anzuford": 58, "600px": [58, 62], "scann": [58, 62, 378, 384], "datenzeil": [58, 409], "rend": [58, 59, 60, 62], "schleif": [58, 62], "wertetabell": [58, 62], "schleifenvariabl": 58, "datentabell": [58, 62], "zell": 58, "vermied": [58, 100], "Jetzt": [58, 62, 71, 82, 83, 86, 92, 189, 262, 328, 630, 673, 682], "adaption": [58, 312, 653], "einwandfrei": [58, 262], "elementar": 58, "saub": [58, 71], "exakt": [58, 92, 325, 330, 347, 490, 519], "anfang": [58, 87, 96, 97, 106, 178, 287, 316, 354, 563, 598, 601], "passiert": [58, 71, 92, 115, 232, 321, 325, 331, 333, 462, 561, 572, 573], "fuhr": [58, 67, 97, 100, 170, 189, 263, 328, 458, 508, 573, 576, 641, 649, 671, 672, 674, 675], "regelmass": [58, 73, 187, 188, 321, 400, 408, 434, 435, 441, 464, 467, 570, 577, 632], "vorgestellt": [58, 328, 585], "obligator": [58, 362], "tabellenzell": [58, 62], "schreibend": [58, 255, 314, 349, 443, 470, 489, 511, 522, 537], "effekt": [58, 262, 314], "laut": [58, 92, 165, 196, 213, 314, 328, 331, 561, 591, 641], "aktualisert": [58, 423], "erwahnt": [58, 154, 200, 323, 612], "durchsuchbar": [58, 641], "sortier": [58, 508], "erkannt": [58, 92, 164, 166, 170, 196, 219, 244, 261, 263, 295, 316, 378, 381, 561, 674], "mitzugeb": [58, 97], "skaliert": 58, "va": [58, 115, 235, 236], "unerwunscht": [58, 583], "insof": [58, 328, 330], "empfehlenswert": [58, 106, 321, 354], "vorzugeb": 58, "40px": 58, "zuzuweis": [58, 188, 261, 306, 307, 332, 337, 573, 591, 672], "bess": [58, 67, 79, 94, 106, 115, 219, 262, 351, 565, 589, 591, 593, 641, 642, 671], "ansatz": [58, 68, 92], "erwartungsgemass": 58, "ausklappbar": [58, 496], "informationszeil": 58, "auszuseh": 58, "intern": [58, 165, 181, 207, 232, 262, 293, 329, 337, 375, 382, 389, 401, 423, 425, 434, 446, 447, 463, 490, 514, 519, 596, 641], "nummerier": [58, 412], "tabellenspalt": [58, 62], "manch": [58, 314, 321, 359, 382, 401], "durchgefuhrt": [58, 59, 64, 82, 83, 92, 93, 102, 112, 162, 165, 169, 282, 292, 331, 332, 349, 381, 508, 565, 573, 591, 632, 652, 653, 654, 655, 656], "commandos": 58, "evaluiert": [58, 115, 169, 321, 323, 324, 326, 328, 332, 381, 508, 575], "sanft": [58, 519], "eingeblendet": [58, 314], "gecheckt": 58, "isdatatabl": 58, "table_to_updat": 58, "row": [58, 62, 130, 222, 223, 643, 653, 655], "beispielfall": 58, "eq": 58, "abschliess": [58, 215, 260, 328], "dank": [58, 162, 188, 219], "farblich": [58, 295], "gezeichnet": 58, "newrow": 58, "nod": [58, 122, 149, 160, 214, 248, 276, 379, 538, 643, 655], "_row": 58, "attr": [58, 66, 126, 133, 149, 192, 193, 194, 219, 261, 337, 624, 655, 656, 688], "farbig": 58, "hervorgehob": 58, "switchclass": 58, "sorg": [58, 263, 329, 381, 571, 685], "vorig": [58, 295, 325, 330, 333, 381, 508], "templatedatei": 58, "item_detail": [58, 649], "via": [58, 62, 66, 85, 88, 92, 98, 102, 141, 152, 160, 162, 163, 164, 170, 182, 185, 193, 199, 201, 208, 211, 219, 221, 227, 230, 234, 235, 236, 238, 244, 248, 253, 254, 255, 256, 257, 258, 260, 262, 280, 292, 298, 301, 305, 328, 329, 344, 347, 349, 352, 355, 356, 357, 360, 367, 368, 371, 374, 375, 376, 382, 392, 401, 406, 423, 434, 440, 444, 445, 452, 475, 479, 497, 499, 516, 521, 528, 534, 535, 545, 548, 550, 558, 573, 624, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 655, 669, 670, 671, 674, 686, 688], "genug": [58, 92, 295, 328], "ca": [58, 60, 98, 219, 365, 394, 468, 524, 527, 649, 688], "ms": [58, 131, 199, 261, 412], "5000": [58, 201, 323, 408, 574, 612], "datenintensiv": 58, "sinn": [58, 69, 103, 238, 321, 325, 326, 330, 332, 352, 353, 355, 356, 357, 367, 561], "datensatz": [58, 165, 187, 189, 229, 306, 307, 360, 379, 431, 493, 641], "festzuleg": [58, 112, 226, 232, 256, 321, 326, 327, 575, 577, 592], "optimal": [58, 191, 201, 264, 267], "updateintervall": 58, "kopfbereich": [58, 187], "adaptier": 58, "vereinfacht": [58, 92, 212, 213, 219, 229, 265, 289, 321, 325, 326, 330, 351, 566, 589], "entnomm": [58, 111, 265, 314, 594, 622], "anzeigt": [58, 116, 292, 328, 337, 593, 690], "versteck": [58, 116], "datenreih": [58, 485], "insbesond": [58, 77, 106, 189, 222, 260, 323, 324, 326, 330, 332, 381, 688], "dummy": [58, 63, 205, 332, 620, 645, 683, 687], "readlog": 58, "time_start": 58, "time_": 58, "umstand": [58, 117, 261, 321, 328, 329, 381, 569, 585, 592], "dictionari": [58, 62, 106, 672], "fiktiv": [58, 98], "vermut": [58, 324], "ans": [59, 228, 577, 645], "funktionier": [59, 162, 163, 197, 214], "wenngleich": 59, "seitenerstell": 59, "rendert": 59, "tmpl": [59, 60], "einzig": [59, 68, 83, 102, 111, 165, 313, 332, 566], "leb": 60, "ubergab": [60, 106, 314, 589], "modifiziert": [60, 189, 219, 496, 524, 573, 682, 687], "besitz": [60, 103, 178, 200, 366, 563], "beispielcod": 60, "delivered": [60, 227, 251, 652], "rendered": 60, "eg": [60, 98, 132, 133, 134, 137, 140, 143, 144, 146, 147, 148, 162, 247, 294, 295, 338, 347, 368, 682], "tplenv": [60, 151], "get_templat": 60, "plgitem": 60, "additionally": [60, 107, 115, 127, 130, 137, 186, 257, 305, 356, 357, 656], "hand": [60, 643, 682], "sorted": [60, 134, 645, 649, 654], "k": [60, 104, 126, 170, 175, 218, 339, 340, 487], "starttab": 60, "hidd": [60, 62], "gar": [60, 103, 293, 370, 573], "obig": [60, 71, 112, 116, 123, 314, 322, 325, 326, 330, 332, 333, 338, 561, 573, 574, 583, 589, 638, 682], "ua": [60, 688], "einzigart": [60, 238, 338], "vergeb": [60, 62, 71, 82, 112, 124, 184, 200, 223, 226, 268, 292, 338, 671, 688], "tablehead": 60, "tablebody": 60, "Sollen": [60, 92, 102, 115, 119, 187, 381, 496, 523, 589, 598, 612], "_knx_dpt": 60, "scriptcod": 60, "sicher": [60, 62, 82, 86, 92, 262, 339, 340, 532, 545, 547, 548, 550, 552, 554, 558, 632, 688], "variant": [60, 62, 74, 79, 122, 167, 189, 191, 201, 227, 261, 264, 267, 323, 326, 329, 568, 569, 570, 585, 591, 592, 638, 683], "codeteil": 60, "entnehm": [60, 110, 123, 178, 319, 507, 579, 671], "table_xx": 60, "mitbring": 60, "bilddatei": [60, 338], "180x150": 60, "pixel": [60, 227, 378, 646], "uberschreit": [60, 574, 577], "unnot": [60, 314, 329], "datenubertrag": 60, "anpasst": 61, "fluid": 61, "resiz": [61, 651, 653, 654, 655], "pluginlist": [61, 671], "spaltenuberschrift": 61, "ublicherweis": [61, 62, 323, 331, 508, 532], "einschloss": 61, "verarbeit": [62, 192, 224, 338, 371, 408, 501], "zuruckzus": 62, "eingabefeld": [62, 255, 674], "datentransf": 62, "biet": [62, 189, 622, 682], "zuruckzulief": 62, "result_dict": 62, "tu_was_mit_dat": 62, "zurucks": 62, "encod": [62, 164, 315, 334, 376], "gesammelt": [62, 400, 408, 435, 441, 464, 467], "berucksichtigt": [62, 76, 96, 102, 169, 191, 192, 201, 267, 304, 314, 331, 360, 398, 508, 646, 656, 691], "denkbar": 62, "transformation": 62, "gekapselt": [62, 496, 523], "empfiehlt": [62, 82, 98, 162, 179, 184, 268, 311, 321, 688], "Einen": [62, 71, 100, 380], "transport": [62, 161, 314, 368, 642, 688], "verkapselt": 62, "nativ": [62, 186], "kategorie1": 62, "attr1": 62, "attr2": 62, "kategorie2": 62, "unmittelbar": [62, 272, 370], "kat1attr1": 62, "kat2": 62, "design": [62, 222], "optimi": 62, "elem": 62, "nachtrag": 62, "gener": [62, 67, 256, 349, 457], "headertabell": 62, "bietet": [62, 74, 79, 83, 86, 91, 92, 106, 162, 164, 166, 181, 189, 212, 237, 241, 261, 310, 320, 321, 324, 325, 328, 329, 331, 336, 338, 346, 347, 362, 367, 381, 562, 567, 573, 584, 587, 591, 594, 599, 621, 622, 630, 636, 641, 682, 689], "formularkonstruktion": 62, "skali": 62, "gewahrleist": [62, 262, 508], "NACH": 62, "val": [62, 150, 155, 272, 304, 326, 332, 356, 357, 360, 471, 528, 622, 641], "button_pressed": 62, "action": [62, 88, 112, 141, 146, 160, 162, 163, 168, 173, 185, 227, 244, 253, 254, 255, 292, 314, 315, 329, 371, 395, 458, 612, 616, 642, 643, 646, 652, 653, 655, 668], "post": [62, 141, 164, 219, 240, 256, 296, 360, 612, 647, 651, 688], "zeilenwert": 62, "formular": 62, "webserv": [62, 82, 85, 120, 202, 240, 409, 688, 690], "daraufhin": [62, 92, 226, 338], "schickt": 62, "verhind": [62, 89, 90, 262, 325, 326, 332, 338, 412, 508, 527, 576, 641, 675, 685], "gleichzeit": [62, 86, 106, 121, 178, 283, 326, 328, 332, 351, 360, 370, 400, 408, 435, 441, 458, 464, 467, 570], "antwortdat": 62, "webseitenspezif": 62, "einfug": [62, 88, 97, 106, 164, 169, 189, 219, 226, 338, 688], "preventdefault": 62, "kennung": [62, 187, 306, 307, 641], "gedruckt": [62, 169, 293, 302, 420, 495, 511, 545, 550], "ermitteln": [62, 83, 155, 189, 244, 262, 287, 304, 330], "betroff": [62, 169, 192, 332, 351], "shnginsertext": 62, "strukturiert": [62, 106, 224, 351, 682], "datenstruktur": [62, 427, 436, 577, 579], "erheb": [62, 67, 69, 103, 233, 618, 692], "basisklass": [63, 66, 620, 622, 623, 624], "vererbt": [63, 66, 171, 189, 462, 620, 622, 623, 624], "translated": [63, 66, 148, 151, 620, 624, 646, 649], "subscribed_topics": [63, 620], "subscribing": [63, 620, 645, 655], "directly": [63, 126, 132, 137, 140, 143, 147, 148, 149, 162, 186, 208, 211, 258, 260, 305, 335, 355, 620, 646, 652, 653, 655], "broker_conf": [63, 620], "mqtt_init": [63, 620], "rtyp": [63, 66, 133, 148, 620, 624], "prufung": [64, 106, 162, 325, 328, 331, 382, 396, 406, 460, 492, 566, 641, 671, 673, 674], "hinweis": [64, 68, 77, 115, 116, 162, 167, 200, 232, 260, 360, 370, 373, 434, 510, 545, 558, 585, 641, 675, 681, 688], "beseitigt": [64, 675], "nahezu": [64, 359, 508], "check_plugin": [64, 653, 681], "eingeschrankt": [64, 115, 118, 504, 573], "v0": [64, 73, 83, 125, 155, 221, 545, 548, 550, 554, 638, 647, 651, 653, 654, 655], "improvement": [64, 195, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 667, 669], "potential": [64, 652, 655], "usag": [64, 133, 273, 278, 308, 368, 643, 646, 649, 677, 681, 682], "positional": 64, "successiv": 64, "ausgebaut": 64, "smartobject": [66, 618, 624], "addition": [66, 211, 318, 370, 618, 624, 643, 648, 649, 653, 655, 670], "inherited": [66, 618, 623, 624], "stop_on_item_chang": [66, 624], "during": [66, 126, 132, 134, 278, 294, 297, 365, 624, 645, 646, 647, 649, 650, 651, 653, 654, 655, 670], "raised": [66, 248, 624, 652], "shut": [66, 624, 643, 646], "abl": [66, 142, 147, 186, 218, 365, 618, 624, 645, 646, 651, 653, 655], "react": [66, 624], "bending": [66, 624], "arm": [66, 79, 624], "periodically": [66, 624], "thing": [66, 240, 288, 368, 624, 649], "deinit": [66, 624], "deinitializ": [66, 624], "prepar": [66, 136, 624, 646, 651, 655], "unloading": [66, 137, 624], "provided": [66, 127, 130, 141, 193, 218, 234, 260, 301, 305, 335, 341, 342, 344, 365, 624, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 659, 662, 691], "executed": [66, 130, 141, 221, 227, 278, 315, 618, 624, 650, 654], "unloaded": [66, 137, 624, 655], "keep": [66, 88, 107, 115, 141, 219, 248, 365, 624, 652, 653, 655], "original": [66, 150, 176, 220, 221, 229, 240, 262, 326, 330, 332, 341, 545, 547, 548, 550, 552, 554, 558, 624, 645, 653, 655, 668], "unregistered": [66, 227, 624], "singl": [66, 106, 126, 133, 161, 185, 211, 219, 234, 250, 315, 355, 395, 453, 575, 576, 577, 612, 624, 643, 649, 652, 653, 655], "config_data_dict": [66, 624], "mapping": [66, 80, 106, 136, 240, 243, 260, 335, 344, 368, 577, 624, 653, 655], "handled": [66, 107, 115, 151, 193, 218, 248, 624, 646, 647, 648, 650], "stor": [66, 80, 186, 208, 221, 288, 315, 335, 353, 356, 357, 488, 624, 651, 652, 655, 666, 670], "get_item_configdata": [66, 624], "item_path": [66, 360, 624, 655], "matchstring": [66, 365, 394, 462, 468, 624, 652], "3rd": [66, 67, 251, 278, 624, 641, 667], "revers": [66, 160, 161, 219, 247, 441, 624, 652], "lookup": [66, 127, 139, 177, 186, 191, 264, 267, 365, 400, 408, 435, 441, 464, 467, 622, 623, 624], "get_itemlist_for_mapping": [66, 624], "than": [66, 107, 115, 136, 137, 152, 185, 186, 205, 211, 222, 227, 231, 254, 288, 296, 298, 301, 315, 317, 341, 356, 357, 361, 365, 395, 624, 645, 646, 649, 650, 652, 653], "_plg_item_dict": [66, 624, 653, 655], "is_updating": [66, 624], "nothing": [66, 107, 115, 149, 624, 669, 670], "happ": [66, 136, 211, 624, 646, 651, 653, 655], "identifing": [66, 624], "kind": [66, 100, 171, 189, 305, 347, 519, 563, 565, 573, 591, 624], "remove_it": [66, 134, 623, 624], "removed": [66, 133, 136, 137, 141, 179, 200, 211, 341, 364, 496, 624, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 682, 691], "register_updating": [66, 624], "mark": [66, 164, 227, 239, 288, 308, 309, 368, 624, 653, 655, 667], "usually": [66, 206, 211, 227, 305, 361, 365, 624], "could": [66, 84, 107, 115, 160, 186, 193, 195, 211, 221, 234, 239, 247, 248, 251, 261, 262, 315, 317, 352, 355, 356, 357, 365, 368, 624, 644, 646, 647, 649, 652, 653, 654, 655, 660, 664, 665, 686], "occur": [66, 141, 162, 227, 334, 624, 646, 649, 653, 654, 655], "turn": [66, 141, 162, 198, 247, 624, 646], "get_item_conf": [66, 624], "get_item_mapping": [66, 624, 653], "get_item_mapping_list": [66, 624], "executor": [66, 545, 554, 618, 624, 643, 645, 653, 655], "get_item_path_list": [66, 624, 653], "filter_key": [66, 624, 653], "filter_valu": [66, 624, 653], "configdata": [66, 624], "filtering": [66, 624], "item_path_list": [66, 624], "compar": [66, 139, 152, 294, 624], "different": [66, 107, 115, 130, 136, 141, 147, 160, 183, 186, 199, 200, 211, 218, 227, 240, 247, 254, 278, 288, 296, 305, 352, 353, 365, 624, 646, 648, 666, 670], "ommitting": [66, 624], "get_item_list": [66, 624, 653, 655], "get_trigger_item": [66, 624], "marked": [66, 190, 334, 624, 643, 644, 645, 646, 649, 650, 651, 655, 691], "get_items_for_mapping": [66, 624, 653], "receiving": [66, 141, 274, 288, 368, 624, 665], "get_mapping": [66, 624], "associated": [66, 186, 205, 623, 624], "unparse_it": [66, 624], "ensur": [66, 133, 248, 278, 365, 624, 652, 654], "propagated": [66, 355, 624], "unpars": [66, 624], "get_confignam": [66, 624], "instancenam": [66, 237, 239, 308, 624], "get_version": [66, 139, 624, 674], "extended": [66, 130, 298, 329, 355, 368, 370, 624, 643, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 674], "pv": [66, 235, 312, 313, 624, 674], "is_multi_instance_capabl": [66, 624], "capabl": [66, 624, 646, 655], "multiinstanc": [66, 123, 239, 624, 643, 645, 646], "get_plugin_dir": [66, 624], "pluing": [66, 624], "get_info": [66, 624], "small": [66, 136, 318, 624, 643, 644, 646, 647, 648, 649, 650, 652, 653, 654, 655, 660], "depend": [66, 169, 186, 205, 227, 231, 234, 262, 278, 301, 334, 381, 624], "get_parameter_value_for_display": [66, 624], "update_config_section": [66, 137, 624, 646, 647, 648], "param_dict": [66, 624], "get_loginstanc": [66, 624], "logmessag": [66, 116, 624], "preseeded": [66, 624], "traild": [66, 624], "easy": [66, 107, 115, 133, 160, 173, 176, 190, 193, 258, 278, 415, 545, 550, 612, 624, 643, 653, 655, 688], "logstring": [66, 624], "set_attr_valu": [66, 624], "atteibut": [66, 624], "refered": [66, 624], "modulenam": [66, 624], "path_join": [66, 624], "scheduler_return_next": [66, 624], "scheduler_trigg": [66, 624], "obj": [66, 127, 137, 141, 147, 624], "identification": [66, 200, 612, 624, 655], "identical": [66, 137, 183, 624, 653], "cron": [66, 137, 147, 519, 594, 624, 649, 650, 688], "offset": [66, 137, 142, 147, 148, 170, 199, 200, 217, 279, 330, 347, 383, 407, 478, 504, 508, 569, 592, 599, 624, 634, 636, 649, 650, 651, 656, 659], "next": [66, 71, 107, 115, 133, 137, 138, 147, 160, 162, 173, 180, 185, 198, 206, 218, 221, 250, 262, 294, 315, 330, 347, 370, 395, 453, 504, 624, 643, 644, 645, 646, 649, 650, 651, 656, 691], "scheduler_chang": [66, 137, 594, 624], "scheduler_remov": [66, 137, 594, 624], "identifiction": [66, 137, 624], "scheduler_get": [66, 624], "scheduler_get_all": [66, 624], "asyncio_stat": [66, 618, 624], "unused": [66, 205, 618, 624, 652, 655], "processed": [66, 185, 240, 298, 395, 618, 624], "task": [66, 71, 86, 113, 141, 180, 181, 315, 316, 618, 624, 646, 650, 655], "run_asyncio_coro": [66, 618, 624], "coro": [66, 618, 624], "return_exeption": [66, 618, 624], "operated": [66, 618, 624], "wait": [66, 83, 129, 152, 182, 183, 205, 298, 616, 618, 624, 646, 655, 656], "wait_for_asyncio_termination": [66, 618, 624], "queu": [66, 136, 598, 618, 624, 643, 646, 649], "put_command_to_run_queu": [66, 618, 624], "get_command_from_run_queu": [66, 618, 624], "list_asyncio_task": [66, 618, 624], "intention": [66, 618, 624], "debugging": [66, 107, 181, 618, 624, 649, 651, 652, 655], "frag": [67, 92, 122, 125, 325, 638], "beantwort": 67, "Soll": [67, 83, 162, 169, 170, 189, 223, 289, 338, 381, 391, 486, 487, 498, 526, 569, 592, 622], "anzusteuernd": [67, 419, 420, 465, 487], "angesteuert": [67, 98, 124, 162, 215, 250, 402, 417, 692], "existier": [67, 82, 92, 100, 123, 189, 496, 523, 671, 672], "verbindet": [67, 170, 197, 276, 292, 314, 381, 382, 405, 545, 550], "netzw": 67, "ansteu": [67, 166, 214, 215, 479, 545, 550], "ausgelegt": [67, 116, 165], "angeseteuert": 67, "avdevic": [67, 545, 550, 643, 645, 646, 650, 651, 653, 655, 671, 672, 674, 675], "viessmann": [67, 349, 521, 545, 548, 550, 622, 646, 649, 650, 652, 655], "sprech": [67, 316], "bussyst": [67, 91, 261], "anspricht": 67, "philips": [67, 78, 112, 205, 211, 212, 213, 266, 371, 418, 419, 420, 466, 545, 548, 552, 646, 649], "homematic": [67, 78, 545, 548, 566, 641, 644, 645, 646, 647, 648, 656, 674], "hue2": [67, 213, 545, 548, 646, 648, 649, 651, 652, 653, 655], "tasmota": [67, 545, 548, 645, 646, 648, 649, 650, 651, 653, 655, 656], "snmp": [67, 545, 552, 643, 649, 654], "wol": [67, 545, 552, 649], "einzules": [67, 204, 217, 403, 412], "alexa4p3": [67, 545, 558, 617, 641, 643, 644, 645, 646, 649, 651, 691], "ical": [67, 545, 558, 642, 643, 644, 645, 646, 649, 653, 654, 655, 656, 664], "jsonread": [67, 545, 558, 641, 645, 649, 651, 653, 655, 656], "piratewthr": [67, 545, 558, 653, 654, 655], "sample_mqttplugin": 67, "kommuniziert": [67, 291, 337, 338, 346, 362, 371, 405, 535, 545, 550], "aufgabenstell": 67, "uberleg": 67, "fertig": [67, 79, 82, 86, 162, 163, 220, 324, 329, 621, 622], "party": [67, 112, 251, 278, 290, 488, 622, 641, 659], "abzuwag": 67, "vorteil": [67, 98, 103, 116, 170, 566, 573, 688], "anzufuhr": 67, "spart": 67, "allerding": [67, 71, 82, 83, 84, 102, 103, 106, 122, 124, 187, 192, 213, 265, 314, 324, 325, 326, 330, 331, 333, 490, 519, 596, 630], "weiterentwickl": [67, 612, 613, 615], "breaking": [67, 213, 648, 650, 651, 654, 655, 656], "einsatz": [67, 79, 110, 115, 117, 118, 123, 192, 212, 213, 263, 329, 441, 592, 600, 630], "neuinstallation": [67, 79, 92, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "plotzlich": 67, "unerwartet": [67, 115, 189, 351, 583, 596], "geeignet": [67, 83, 652, 653, 654, 655, 656], "felxibel": 67, "einsetzbar": [67, 642], "voneinand": [68, 74, 326, 332, 573], "virtual": [68, 83, 107, 115, 125, 152, 262, 334, 629, 630, 638, 653, 654, 655, 688], "why": [68, 278], "lesenswert": 68, "stackoverflow": [68, 142, 152], "stand": [68, 78, 162, 165, 199, 220, 265, 294, 384, 564, 632, 642, 646, 678], "novemb": [68, 92, 104, 526, 639], "packaging": 68, "standardumfang": 68, "zunach": [68, 73, 80, 82, 83, 86, 92, 98, 192, 331, 338, 573], "basisordn": 68, "basisabhang": 68, "basisverzeichnis": [68, 92, 496, 508, 523, 630], "shell": [68, 71, 79, 82, 83, 152, 192, 211, 330, 629, 635, 680], "upgrad": [68, 81, 82, 130, 198, 234, 245, 249, 253, 260, 278, 335, 344, 580, 649, 651, 688], "erfullt": [68, 92, 97, 169, 321, 325, 329, 330, 331, 333, 381, 573, 576, 583, 632], "brauch": [68, 83, 328], "denk": [68, 300, 566, 572], "mu\u00df": [68, 71, 82, 83, 86, 87, 92, 98, 102, 192, 229, 261, 265, 291, 293, 337, 338, 590], "deactivat": [68, 227, 281, 629, 630, 646, 649, 670], "umzugeh": 68, "lieferumfang": [68, 622], "extra": [68, 202, 227, 288, 363, 396, 649], "nutzungsbeschreib": 68, "portiert": 68, "sogar": [68, 169, 289, 326, 332, 514, 583, 621], "guid": [68, 84, 85, 229, 646], "antwort": [69, 119, 125, 155, 156, 169, 232, 237, 262, 303, 304, 316, 338, 381, 400, 406, 423, 435, 441, 464, 467, 522, 622, 638, 642, 671], "involviert": 69, "miteinand": [69, 79, 97, 328], "red": [69, 167, 198, 200, 247, 248, 407, 643, 652], "eibd": [69, 92, 111, 434, 545, 548], "knxd": [69, 80, 89, 91, 92, 111, 232, 434, 545, 548, 617, 630, 645, 649, 652], "funktionsfah": [69, 86, 250, 371, 652, 653, 654, 655, 656], "kommando": [69, 83, 84, 86, 92, 122, 162, 169, 181, 210, 225, 256, 330, 338, 381, 391, 393, 400, 405, 408, 421, 422, 425, 433, 435, 441, 451, 456, 464, 467, 512, 522, 535, 536, 622, 630, 671, 674, 678], "groupswrit": [69, 71, 86], "funktioni": [69, 79, 86, 89, 90, 97, 165, 169, 191, 194, 201, 203, 262, 267, 333, 347, 363, 369, 545, 547, 548, 550, 552, 554, 558, 622, 641, 671, 674, 682, 693], "redet": 69, "quick": [69, 107, 115, 197, 211, 643, 644], "dirty": 69, "erganz": [69, 98, 112, 123, 162, 191, 201, 249, 264, 267, 346, 424, 504, 511, 688], "ausschalt": [69, 82, 98, 112, 164, 169, 170, 338, 360, 419, 420, 479, 536, 642, 688], "zuzuw": 69, "driv": [69, 83, 111, 130, 165, 186, 193, 281, 355, 356, 357, 646, 653, 670], "2424": [69, 71, 83, 85, 110, 119, 122, 355, 524, 612, 616, 617, 684, 688, 690], "realtim": [69, 79, 306, 307, 650], "zeitnah": [69, 293], "pflegbar": 69, "helf": [70, 92, 584], "startpunkt": [70, 516], "checklist": 70, "administrationsinterfac": [70, 102, 103], "klappt": [71, 92, 196, 201], "supportforum": [71, 78, 347], "Aber": [71, 306, 307], "durchdenk": 71, "Euch": 71, "weiterhelf": 71, "beisteu": 71, "ausgab": [71, 83, 84, 86, 115, 116, 189, 203, 249, 270, 271, 283, 309, 351, 367, 412, 413, 423, 449, 489, 584, 628, 632, 671, 673], "anhang": [71, 92, 400, 408, 435, 441, 464, 467, 569, 592], "ersicht": [71, 79, 508], "beseit": [71, 674], "Euer": [71, 170], "zusammenhangt": 71, "vm": [71, 82, 200, 239, 308, 309], "raspi": [71, 82, 229, 285, 655, 688], "raspbian": [71, 79, 82], "ubuntu": [71, 79], "davor": [71, 170, 179, 184, 189, 192, 210, 223, 232, 252, 255, 289, 328, 348, 357, 360, 366, 573, 657], "durcharbeit": 71, "ssh": [71, 367, 477], "festzustell": [71, 83, 599, 634], "ps": [71, 83, 210, 370], "ef": [71, 83], "grep": [71, 83], "augegeb": 71, "aussieht": [71, 83, 306, 307, 682], "smartho": [71, 83], "28373": [71, 83], "00": [71, 83, 86, 115, 116, 155, 162, 165, 169, 186, 187, 192, 203, 227, 262, 281, 289, 294, 295, 297, 304, 306, 307, 317, 325, 328, 337, 347, 356, 357, 360, 367, 569, 592, 652], "abgekurzt": [71, 83, 200], "pid": [71, 76, 83, 86, 89, 107, 115, 116, 125, 129, 161, 263, 289, 487, 575, 577, 630, 638, 641, 644, 646, 651, 655, 656, 680], "highland": 71, "versuch": [71, 83, 232, 233, 381, 403, 412, 434, 440, 507], "mehrfach": [71, 83, 184, 262, 263, 268, 338, 417, 423, 561], "parallel": [71, 92, 122, 123, 171, 183, 278, 550, 551, 630, 653], "strikt": [71, 682], "geachtet": [71, 92, 106, 123, 229, 577, 579, 593], "bindung": [71, 87], "quittiert": [71, 230, 256], "lasst": [71, 86, 192, 226, 232, 233, 289, 306, 307, 321, 326, 329, 332, 339, 340, 381, 568, 591], "binding": [71, 669], "errno": [71, 334], "98": [71, 229, 586], "2323": [71, 83, 111, 180, 181, 391], "klar": [71, 262, 339, 340, 351, 641, 688], "indiz": [71, 262, 563], "kill": [71, 129], "modus": [71, 119, 162, 165, 192, 196, 233, 244, 261, 292, 295, 302, 314, 324, 328, 349, 378, 395, 400, 408, 412, 435, 441, 443, 450, 453, 464, 467, 479, 486, 487, 488, 528, 612, 671], "logausgab": [71, 263, 593, 651], "unubersicht": [71, 106], "vorzuzieh": 71, "gezielt": [71, 103, 232, 347, 519], "aktivier": [71, 111, 203, 289, 291, 337, 417, 487], "dbug": 71, "meng": [71, 116, 187, 192, 339, 340, 586, 641, 642, 643, 645, 646, 649, 650, 655, 671, 674, 675, 691], "loggingdat": 71, "aufgelistet": [71, 79, 92, 192, 215, 230, 310, 349, 351, 359, 373, 681], "ax": 71, "sh13": 71, "908": 71, "ss": [71, 83, 102, 116, 188, 263, 314, 575, 599, 634], "208": [71, 165, 334], "11045": 71, "pts": 71, "zugreift": 71, "auftaucht": 71, "170": [71, 86, 229], "gruppenadress": [71, 86, 124, 162, 232, 289, 328, 329, 331, 434, 597], "schaltaktor": [71, 86, 200, 567, 591], "hangt": [71, 79, 83, 92, 98, 165, 261, 262, 314, 381, 412, 563], "vorgehensweis": [71, 306, 307], "hoch": [71, 162, 263, 325, 326, 328, 572, 592], "systemd": [71, 73, 82, 84, 89, 90, 92, 630], "herkomm": [71, 325], "startskript": 71, "synonym": 71, "systemctl": [71, 82, 84, 86, 87, 89, 90, 92, 103, 199, 646, 688], "sh11": [71, 165], "job": [71, 453, 479, 643, 645, 688], "queued": [71, 141], "failed": [71, 116, 141, 227, 269, 646, 655, 665], "unit": [71, 84, 89, 90, 152, 192, 230, 234, 235, 236, 249, 258, 260, 262, 298, 305, 306, 307, 334, 349, 401, 409, 452, 460, 487, 497, 498, 499, 630, 650, 652, 653, 654, 655, 665, 669], "2016": [71, 79, 155, 169, 304, 341, 352, 353, 355, 356, 357, 381, 426, 545, 554, 640], "03": [71, 86, 116, 155, 187, 282, 293, 294, 295, 304, 328, 337, 356, 357, 407, 585, 682], "49": [71, 86, 165, 219, 229, 230], "08": [71, 86, 116, 125, 165, 199, 227, 270, 271, 273, 274, 293, 325, 328, 638], "cet": [71, 148, 599, 634], "ago": [71, 84, 86], "cgroup": [71, 84, 86], "sbin": [71, 84, 90, 185], "slic": [71, 84, 86], "avahi": 71, "463": 71, "489": 71, "chroot": 71, "help": [71, 150, 152, 180, 181, 193, 218, 314, 666, 671, 677], "1204": 71, "scop": 71, "2757": 71, "1152": 71, "1153": 71, "sd": [71, 79, 82, 210, 641], "pam": [71, 88], "1119": 71, "27926": 71, "sshd": [71, 82], "priv": 71, "27928": 71, "27929": 71, "bash": [71, 83, 85, 199, 321], "28229": 71, "28230": 71, "gang": 71, "geklappt": 71, "knxtool": [71, 86], "tun": [71, 82, 86, 92, 93, 94, 97, 106, 111, 169, 191, 264, 267, 290, 306, 307, 368, 370, 618, 688], "irgendwo": [71, 86], "uberseh": [71, 86], "schaltvorgang": [71, 260, 347, 519], "adminstration": 71, "mithilf": [71, 90, 92, 97, 164, 200], "zwingend": [71, 80, 112, 200, 326, 329, 330, 331, 332, 434, 530, 583, 688], "eroffnet": 71, "telnet": [71, 141, 180, 181, 200, 258, 319, 405, 459, 507, 659], "darin": [71, 566, 581], "eingeb": [71, 83, 85, 86, 92, 106, 164, 225, 292, 532, 638, 688], "yourcomput": [71, 677, 678], "trying": [71, 623, 645, 647, 649, 653, 655], "fe80": 71, "c23f": 71, "d5ff": 71, "fe68": 71, "e9a": 71, "refused": 71, "connected": [71, 130, 141, 160, 162, 170, 176, 195, 227, 248, 258, 278, 284, 288, 290, 305, 341, 349, 382, 465, 482, 646, 650, 652, 653, 654, 655], "escap": [71, 106, 116, 649], "charact": [71, 126, 152, 160, 183, 205, 227, 334, 612, 650], "alias": [71, 82, 160, 161, 162, 163, 180, 181, 216, 217, 261, 285, 423, 461, 483, 643], "group": [71, 88, 128, 152, 160, 180, 181, 189, 192, 205, 211, 212, 213, 227, 228, 247, 261, 262, 276, 278, 290, 293, 314, 359, 419, 420, 504, 511, 623, 653, 671], "ii": [71, 180, 181, 234], "dump": [71, 149, 180, 181, 222, 223, 652, 653], "iup": [71, 180, 181], "iupdat": [71, 180, 181], "ld": [71, 180, 181], "dl": [71, 180, 181, 225, 688], "el": [71, 180, 181], "li": [71, 161, 170, 180, 181, 210, 681], "ll": [71, 82, 180, 181, 234, 296], "lo": [71, 180, 181, 674], "logc": [71, 180, 181], "memory": [71, 136, 161, 180, 181, 221, 227, 230, 243, 263, 463, 580, 585, 632, 642, 645, 646, 649, 655, 665, 666], "logd": [71, 180, 181, 649], "lr": [71, 180, 181], "rl": [71, 180, 181, 665], "lrr": [71, 180, 181], "rr": [71, 180, 181, 665], "lt": [71, 77, 180, 181], "rt": [71, 180, 181, 210], "sl": [71, 104, 180, 181, 520, 545, 558, 643], "st": [71, 104, 180, 181, 288, 517, 520, 545, 558, 643], "tl": [71, 180, 181], "q": [71, 180, 181, 229, 239, 308, 309, 612, 635], "ausprobiert": 71, "ls": [71, 82, 92], "aufzulist": 71, "abzufrag": [71, 85, 184, 212, 213, 215, 268, 270, 289, 360, 382, 398, 453, 501, 507, 524, 573, 574, 594], "anzuschalt": 71, "hierh": 71, "grundsyst": [71, 123], "funktional": [71, 314, 622], "verfolgt": [71, 96], "ursach": 71, "fehlerbild": 71, "behebungsansatz": 71, "bom": [71, 83, 103, 206, 210, 545, 550], "bricht": [71, 83, 599, 641], "einlesevorgang": 71, "widget": [71, 76, 85, 106, 155, 187, 211, 219, 262, 263, 295, 302, 304, 329, 344, 345, 347, 352, 356, 357, 496, 508, 519, 523, 545, 554, 585, 643, 646, 648, 649, 651, 652, 653, 655, 666, 674, 684, 686, 689], "doppelt": [71, 76, 97, 106, 116, 187, 360, 498, 499, 593, 675, 688], "Keine": [71, 165, 213, 214, 328, 339, 340, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 671, 674], "merkwurd": 71, "andernd": [71, 103, 326, 332, 514], "plausibilitat": 71, "visu_smartvisu": [71, 302, 352, 545, 554, 561, 566, 646, 669, 670, 671, 682, 687, 689], "host": [71, 80, 86, 87, 88, 98, 103, 111, 123, 127, 141, 150, 160, 161, 164, 170, 176, 181, 183, 186, 191, 198, 200, 211, 219, 222, 230, 231, 233, 238, 239, 240, 241, 248, 249, 250, 258, 264, 267, 270, 276, 278, 290, 299, 300, 301, 305, 306, 307, 308, 309, 310, 312, 313, 319, 355, 358, 369, 374, 469, 477, 484, 496, 524, 531, 545, 550, 643, 648, 655, 662, 663, 688], "implicit": [71, 181], "cr": [71, 141, 181], "lf": [71, 181, 210], "keyboard": [71, 181, 338, 512, 688], "hilfestell": [72, 74, 638], "dokumentationsseit": [72, 74], "caution": 72, "dang": [72, 296, 368, 491], "important": [72, 147, 162, 186, 240, 257, 258, 262, 290, 315, 365, 646, 651, 653, 655, 667], "tip": [72, 315], "linux": [73, 74, 92, 103, 107, 115, 116, 125, 193, 194, 198, 200, 225, 237, 256, 261, 279, 306, 307, 309, 351, 370, 407, 507, 569, 592, 617, 628, 638, 688], "installationspaket": [73, 86, 225], "compiliert": 73, "grundsatz": [73, 92, 97, 98, 109, 111, 116, 192, 212, 213, 256, 260, 289, 346, 351, 360, 371, 621, 672], "me": [73, 126, 208, 297, 368], "verpass": 73, "eher": 73, "histor": [73, 187, 262, 338, 674], "installationsschritt": [73, 86], "grundleg": [73, 83, 115, 192, 212, 213, 215, 359, 587, 612, 632], "dh": 73, "autoconf": 73, "libtool": 73, "libusb": 73, "pkg": 73, "libsystemd": 73, "libev": 73, "cmak": 73, "sicherstell": [73, 223, 314, 373, 510, 545, 558], "libfmt": 73, "herunterzulad": [73, 172], "get_libfmt": 73, "dpkg": [73, 225, 255], "buildpackag": 73, "uc": 73, "paketerstell": 73, "gemeldet": [73, 92, 162, 165, 255, 304, 453, 641, 649, 671, 672, 674, 675], "knxd_": 73, "deb": [73, 225], "tools_": 73, "unabhang": [74, 106, 122, 184, 192, 268, 321, 325, 326, 327, 328, 332, 351, 508, 545, 546, 561, 593, 622, 630, 638, 641, 674], "standardattribut": [74, 115], "parametersatz": [74, 569, 592], "Oder": [74, 82, 573], "betriebssystem": [74, 225, 585], "posix": 74, "bsd": [74, 79, 88, 688], "unix": [74, 79, 88, 103, 186, 187, 188, 227, 262, 263, 288, 306, 307, 309, 453, 479, 498, 499, 575, 585, 599, 649, 688], "vordergrund": [76, 635], "kaputt": 76, "spatest": [76, 569, 592], "umgeh": [76, 77, 82, 338, 370, 485], "hatt": [76, 97, 116, 212, 213, 331, 562, 567, 573, 591, 595, 597, 599, 636, 682], "issu": [76, 162, 183, 293, 359, 623, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656], "aufgemacht": 76, "spassig": 76, "adminui": [76, 573], "hrhr": 76, "herunterfahr": [76, 328], "woll": [76, 78, 324, 328, 561, 641, 671, 672, 674, 675, 685, 688], "anderbar": [76, 328, 331, 419, 420, 671], "384": [76, 368], "sysinfo": [76, 136], "shnginfo": 76, "info_l2": 76, "info_l3": 76, "debug_l2": 76, "debug_l3": 76, "ausnahm": [76, 83, 369, 394, 468, 563, 566, 682], "vorbehalt": [76, 256], "solle": 76, "plginfo": 76, "abstuf": 76, "27": [76, 79, 155, 165, 187, 192, 262, 265, 294, 295, 304, 347, 356, 357, 651, 652, 654, 655, 656], "23": [76, 79, 115, 116, 155, 162, 169, 187, 191, 193, 194, 219, 262, 264, 275, 288, 304, 325, 328, 346, 347, 355, 356, 357, 361, 381, 400, 408, 464, 496, 524, 563, 569, 592, 629, 640, 651, 652, 657], "user_debug": 76, "debug_low": 76, "library": [76, 126, 127, 132, 137, 139, 140, 141, 143, 147, 148, 149, 150, 151, 152, 166, 190, 208, 216, 239, 245, 273, 277, 308, 309, 573, 641, 643, 646, 649, 653, 655], "umrechn": [76, 131], "farbraum": 76, "aufnehm": [76, 116, 579, 585], "umgeb": [76, 83, 85, 104, 116, 504, 580, 629, 630], "nacheinand": [76, 230, 513, 545, 554, 572], "jemand": [76, 79, 92, 116, 261, 339, 340, 685], "uberspringt": 76, "Wo": [76, 192], "v5": [76, 121, 674], "verbess": 76, "vorletzt": [76, 92, 189, 562, 563, 567, 591, 599, 634], "changed_by": [76, 133, 360, 561, 562, 571, 577], "updated_by": [76, 133, 562, 646, 650], "previous": [76, 133, 148, 162, 173, 198, 205, 234, 250, 330, 370, 453, 504, 643, 644, 645, 646, 649, 650, 651, 652, 654, 655, 691], "change_by": [76, 650], "graph": [76, 312, 426, 545, 554, 643, 645, 655, 693], "umstell": [76, 92, 106, 170, 219, 371, 641, 671], "discoverhu": 76, "regl": [76, 279, 289, 345, 486, 487, 545, 554], "korrektur": [76, 170, 189, 674], "faktor": [76, 452], "kp": [76, 288, 289, 487, 653, 688], "ki": [76, 288, 289, 487, 653], "kd": [76, 289], "setzbar": 76, "zuklappbar": 76, "maximierbar": 76, "raum": [76, 85, 98, 103, 255, 289, 316, 328, 339, 340, 351, 399, 428, 451, 486, 487, 496, 523, 545, 554, 573, 622, 682, 683, 686], "vorkomm": [76, 92, 100, 106, 111, 293, 373, 423, 561], "diensteanbiet": 77, "abs": [77, 260, 263], "verantwort": [77, 330, 642], "verpflichtet": 77, "fremd": 77, "berwach": 77, "umsta": 77, "forsch": 77, "ta": 77, "tigkeit": 77, "verpflicht": [77, 123, 351], "sperrung": 77, "hiervon": [77, 618], "unberu": 77, "hrt": 77, "diesbezu": 77, "kenntnis": [77, 153, 587], "rechtsverletz": [77, 260], "bekanntwerd": 77, "Unser": 77, "entha": 77, "gewa": 77, "hr": 77, "bernehm": 77, "anbiet": [77, 212], "verlink": [77, 169, 671], "rechtsversto": 77, "sse": 77, "berpru": 77, "ft": 77, "permanent": [77, 594], "kontroll": [77, 232, 434, 453, 641], "zumutbar": 77, "derart": 77, "werk": 77, "unterlieg": 77, "vervielfa": 77, "ltigung": 77, "verbreit": 77, "verwert": 77, "bedu": 77, "rfen": 77, "schriftlich": 77, "download": [77, 79, 82, 141, 161, 187, 216, 218, 227, 234, 239, 278, 279, 309, 423, 627, 653, 688], "kommerziell": 77, "gebrauch": [77, 369, 445, 687], "gestattet": 77, "beachtet": [77, 83, 122], "gekennzeichnet": [77, 103, 260, 325, 374, 376, 381, 382, 383, 384, 385, 387, 389, 394, 397, 399, 400, 408, 411, 416, 420, 421, 422, 424, 426, 428, 435, 437, 438, 441, 446, 447, 449, 463, 464, 465, 467, 474, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 497, 501, 503, 505, 506, 513, 514, 515, 518, 521, 523, 524, 526, 527, 532, 537, 538, 635, 641, 682], "urheberrechtsverletz": 77, "aufmerksam": 77, "flexibel": [78, 310, 328, 351], "wire": [78, 285, 461, 483, 617, 645, 646, 674], "dmx": [78, 167, 379, 545, 548, 643, 659, 663], "avm": [78, 107, 115, 123, 171, 185, 339, 340, 383, 545, 550, 566, 641, 642, 643, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 669, 670, 674, 685], "fritzbox": [78, 170, 171, 185, 227, 339, 340, 650, 666, 682, 688], "heizungssteuer": 78, "av": [78, 169, 191, 205, 267, 381, 400, 467, 545, 550, 655, 671], "mail": [78, 227, 244, 335, 355, 356, 357, 411, 445, 456, 641, 643, 644, 645, 646, 649, 665, 666, 672, 674, 688, 691], "prowl": [78, 545, 558, 644, 646, 647, 648], "wett": [78, 219, 262, 328, 329, 338, 339, 340, 361, 365, 425, 529, 532, 545, 558, 674], "alexa": [78, 161, 163, 164, 375, 376, 545, 558, 617, 641, 643, 644, 645, 646, 649, 670, 691], "xmpp": [78, 545, 552, 641, 646, 649], "systemnah": 78, "zeitschaltuhr": [78, 282, 347, 376, 545, 554], "endlich": [78, 162, 508], "richt": [78, 79, 533], "reflektiert": 78, "oktob": [78, 79, 526, 585], "2024": [78, 79, 265, 657], "11bb17b": 78, "chat": [78, 88, 92, 338, 359, 368, 512, 641, 649, 674], "gitt": [78, 92], "anmerk": [78, 115, 328, 405], "anderungswunsch": 78, "feedback": [78, 160, 200, 231, 655], "hinterlass": 78, "kennenlern": 79, "bust": [79, 83, 86, 92, 688], "18": [79, 189, 192, 195, 196, 210, 219, 229, 262, 265, 275, 293, 306, 307, 314, 329, 334, 347, 360, 361, 434, 443, 641, 655, 682], "04": [79, 86, 115, 155, 187, 263, 274, 281, 293, 294, 295, 304, 337, 356, 357, 360, 363, 463, 585], "benutzeroberflach": [79, 82, 164, 302, 354, 376], "schlank": 79, "x86": [79, 225], "x64": [79, 309], "cpu": [79, 83, 113, 170, 198, 310, 484, 632, 652, 653, 654, 688], "genauso": [79, 215, 360, 565, 591], "visualisier": [79, 85, 91, 117, 166, 178, 187, 302, 330, 331, 347, 354, 496, 523, 592, 600, 642, 682, 683], "umfrag": [79, 641], "geschwindigkeitst": 79, "stabilitat": 79, "geschwind": [79, 83, 131, 192, 334, 361, 450, 514, 517, 622], "leistung": [79, 165, 170, 187, 192, 293, 306, 307, 337, 436, 502, 526, 622], "sata": 79, "festplatt": [79, 82], "ssd": 79, "kart": [79, 82, 219, 262, 399, 456], "beagl": 79, "bon": 79, "gehostet": 79, "dock": [79, 81, 85, 281, 282, 284, 346, 417, 482, 504], "brauchbar": [79, 115], "auszuprobi": 79, "512mb": 79, "ram": [79, 263], "40gb": 79, "80gb": 79, "plattenplatz": 79, "gunstig": [79, 91, 261], "einstieg": [79, 321, 325, 328], "verbreitet": [79, 87, 106, 630], "onkelandy": [79, 185, 545, 548, 550, 552, 554, 558, 646], "pis": [79, 646], "massenspeich": [79, 80], "hochwert": 79, "dringend": [79, 106, 321, 354, 519], "schreibzykl": 79, "auslager": 79, "stick": [79, 82, 126], "boot": [79, 278, 285], "hd": [79, 205], "empfind": [79, 219], "spannungsversorg": [79, 461], "plattform": [79, 103, 165, 675], "vollkomm": [79, 80], "ausreich": [79, 203, 328, 331], "i3": [79, 239, 298, 308, 309, 461], "prozessor": [79, 225, 229], "hardwareausstatt": 79, "niedrig": [79, 164, 262, 263, 328, 592], "teur": 79, "dn2820fykh0": 79, "4gb": 79, "60gb": 79, "250": [79, 328], "eur": [79, 262, 367], "celeron": 79, "150": [79, 166, 227, 299, 300, 328, 337, 487], "pentium": 79, "350": [79, 162, 183, 218, 219, 262, 393, 545, 550], "zumeist": [79, 98, 115, 159, 261], "reicht": [79, 80, 89, 90, 107, 123, 261, 263, 333, 598], "prozessortyp": 79, "systemsoftwar": 79, "oft": [79, 83, 106, 123, 162, 211, 218, 221, 232, 233, 253, 260, 274, 297, 314, 328, 335, 341, 344, 379, 381, 396, 423, 510, 545, 558, 646], "teilweis": [79, 169], "zugang": [79, 82, 85, 164, 184, 222, 244, 268, 338, 349, 641, 688, 689], "amd64": [79, 107, 115, 125, 225, 638], "gepuffert": [79, 162, 381], "echtzeituhr": 79, "clock": [79, 329, 370, 508, 644, 646], "ntp": 79, "zeitinformation": [79, 585], "benutz": [79, 82, 103, 121, 162, 165, 192, 212, 213, 214, 224, 230, 241, 306, 307, 338, 375, 421, 473, 496, 510, 512, 517, 523, 524, 562, 635], "artig": 79, "erwart": [79, 97, 360, 599, 634], "macos": [79, 643, 654], "angehob": [79, 314, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "lif": [79, 160, 643, 644, 645, 646, 647, 648, 649, 650, 691], "fix": [79, 162, 200, 216, 219, 318, 319, 324, 328, 329, 507, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 691], "offizell": 79, "aufzusetz": [79, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "offiziell": [79, 83, 179, 311, 314, 321, 334, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "grundregel": [79, 123], "enwicklungsstart": 79, "vorgangerversion": 79, "akt": [79, 197], "entwicklungsstart": 79, "tbd": [79, 227], "jewil": 79, "zud": [79, 85, 98, 122, 166, 169, 321], "bugfix": [79, 642, 650, 651, 652, 653, 654, 655, 670, 672, 673, 674], "Sicherheits": 79, "lifecycl": 79, "keinerlei": 79, "maintenanc": [79, 227, 336, 341, 545, 547, 548, 550, 552, 554, 558, 632, 646, 653], "dezemb": [79, 325, 526, 569, 592, 640, 651, 657], "2021": [79, 104, 115, 125, 127, 184, 270, 271, 585, 633, 638, 651, 657], "juni": [79, 526, 652, 653, 654, 655, 656, 657], "2018": [79, 84, 116, 210, 273, 274, 306, 307, 338, 640, 641, 643], "2023": [79, 155, 267, 268, 270, 271, 274, 293, 337, 467, 569, 585, 592, 652, 655, 656, 657], "2019": [79, 86, 104, 203, 306, 307, 312, 313, 355, 356, 357, 538, 633, 643, 644, 645, 657, 691], "2025": 79, "2026": 79, "2027": 79, "2028": 79, "prereleas": 79, "2029": 79, "2030": 79, "bring": [79, 83, 280, 635, 671, 672], "aktialisiert": 79, "aufsetz": [79, 92], "sies": 79, "mitgelief": 79, "sep": [79, 222, 223], "jun": [79, 639], "bullsey": [79, 82, 92], "jul": 79, "bookworm": [79, 82, 83, 89, 91, 628, 655], "lts": 79, "bionic": 79, "beav": 79, "apr": [79, 169], "focal": 79, "fossa": 79, "jammy": 79, "jellyfish": 79, "2032": 79, "lunar": 79, "lobst": 79, "mantic": 79, "minotaur": 79, "stretch": [79, 84, 688], "andau": [79, 574, 577], "systemander": 79, "konfrontiert": 79, "verpack": 80, "applikation": [80, 215, 260, 362, 471, 612], "vergleichbar": [80, 326, 332, 577], "apk": [80, 219], "android": [80, 274, 315, 316, 359, 527, 545, 550, 688], "nas": [80, 111, 310], "herstell": [80, 162, 169, 170, 192, 212, 213, 306, 307, 337, 362, 456], "sozusag": [80, 89, 90], "isoliert": [80, 630], "ahnelt": [80, 326], "virtualisier": 80, "wesent": [80, 85, 103, 106, 270, 271, 316, 514, 563, 622], "handy": [80, 179, 688], "henfri": [80, 545, 548, 550, 558], "ng": [80, 165, 185, 214, 215, 359], "abgeschottet": 80, "netzwerk": [80, 82, 84, 90, 162, 164, 179, 181, 197, 200, 207, 212, 283, 314, 378, 390, 391, 405, 493, 497, 504, 526, 545, 550, 558, 559, 621, 622, 693], "abgebildet": [80, 153, 220, 261, 324, 587], "v": [80, 104, 169, 170, 235, 248, 261, 293, 305, 306, 307, 351, 369, 461, 535, 545, 550, 622, 635, 646, 653, 656, 667, 677, 681], "123": [80, 103, 183, 240, 247, 256, 281, 290, 352, 597, 623], "456": 80, "mapp": [80, 200, 688], "unsere": 80, "belang": 80, "yml": [80, 207, 652, 654], "erlaut": 81, "nachinstalliert": [81, 82, 83, 85, 630], "betriebsystem": 82, "paketauswahl": 82, "kompakt": 82, "netinstall": 82, "nuc": 82, "balena": 82, "etch": 82, "creator": [82, 142, 646, 668], "universal": [82, 199, 200, 227], "unetbootin": 82, "virtuell": [82, 83, 90, 91, 92, 162, 416, 627, 629, 693], "maschin": [82, 91, 92, 477], "vmwar": [82, 91], "derivat": 82, "idealerweis": [82, 162], "fast": [82, 111, 211, 642, 649, 652], "raspberrypi": [82, 278, 283, 688], "win32diskimag": 82, "einzulogg": 82, "tastatur": 82, "tastaturlayout": 82, "rechnernam": 82, "shmuc": 82, "smarthome23": 82, "gerad": [82, 92, 162, 203, 325, 326, 330, 332, 339, 340, 363, 420, 456, 479, 481, 632], "gefuhrt": [82, 115, 223, 382], "partitioni": 82, "speicherbereich": 82, "platt": [82, 396], "grundinstallation": [82, 83], "basispaket": 82, "landesauswahl": 82, "spiegelserv": 82, "festleg": [82, 232, 324, 333, 401, 452, 485, 499, 569, 592, 688], "geleg": [82, 329], "kaltgetrank": 82, "netzwerkgeschwind": 82, "abgelehnt": 82, "abwahl": 82, "kde": 82, "gnom": 82, "machtig": [82, 115], "lxde": 82, "apache2": [82, 85, 688], "putty": 82, "bitvis": 82, "systemwerkzeug": 82, "auswahlmog": 82, "getrank": 82, "nachlad": 82, "installier": 82, "wiederum": [82, 87, 92, 100, 169, 329, 347, 440, 545, 548], "grub": 82, "akzeptiert": [82, 116, 178, 241, 256, 304, 359, 457, 495, 545, 550], "reboot": [82, 198, 227, 278, 288, 406, 641, 643, 688], "eintipp": 82, "ip_des_serv": 82, "komfortabl": [82, 688], "kitty": 82, "umbenenn": [82, 92, 512, 561, 641], "exe": 82, "bak": [82, 88, 653], "operation": [82, 202, 234, 248, 368, 646, 653], "sed": 82, "permitemptypassword": 82, "sshd_config": 82, "nssh": 82, "securetty": 82, "abzusich": 82, "unterbind": 82, "thomas": [82, 215, 545, 548, 550, 554, 558], "krenn": 82, "systemupdat": 82, "versorg": [82, 287], "nix": 82, "herunterzufahr": 82, "poweroff": [82, 205, 244, 266, 466, 653], "snapshot": [82, 162, 227, 274, 338], "angesetzt": 82, "Hat": [82, 189, 306, 307, 562, 567, 591], "menu": [82, 94, 95, 96, 166, 169, 198, 202, 219, 226, 227, 231, 248, 254, 255, 262, 338, 351, 378, 409, 433, 646, 651, 653, 686], "getatigt": [82, 519], "de_d": 82, "umzustell": [82, 693], "filesyst": 82, "sei": [82, 304, 632, 687], "virtualbox": [82, 91], "gasterweiter": 82, "mitinstalliert": 82, "servervariant": 82, "bildschirmgross": 82, "gasteerweiter": 82, "einleg": 82, "media": [82, 162, 172, 231, 233, 276, 368, 370, 433, 507], "cdrom": 82, "vboxlinuxaddition": 82, "passt": 82, "addus": 82, "gecos": 82, "roomnumb": 82, "workphon": 82, "homephon": 82, "usermod": [82, 278], "ag": [82, 104, 278], "sleep": [82, 248, 281, 338, 370, 536, 646, 654], "hybernat": 82, "abgeschaltet": [82, 381], "allowsusp": 82, "allowhibernation": 82, "allowsuspendthenhibernat": 82, "allowhybridsleep": 82, "Vor": [82, 189, 284, 536, 641], "bashrc": 82, "abzukurz": 82, "nano": [82, 83, 84, 86, 87, 88, 89, 92, 103, 265, 278, 465, 630, 688], "anfug": [82, 479], "kommentarzeich": 82, "zeilenanfang": 82, "abgemeldet": [82, 220], "angemeldet": [82, 212, 213, 220, 319], "setuptool": [83, 629, 630, 667], "venv": [83, 152, 627, 655], "wget": [83, 225, 256, 309, 628, 688], "unzip": 83, "account": [83, 139, 176, 198, 208, 211, 227, 254, 262, 273, 314, 335, 361, 362, 365, 368, 388, 390, 456, 530, 532, 534], "postinstall": [83, 89, 630, 655, 693], "dateiberecht": 83, "py_shng": [83, 89], "auslogg": 83, "einlogg": [83, 220, 362, 472, 688], "getetet": 83, "setpermission": [83, 85, 653, 655], "nachinstalli": 83, "konsol": [83, 116, 162, 163, 192, 200, 314, 376, 573], "test_requirement": 83, "eph": [83, 580, 598, 647, 650, 667], "v3": [83, 84, 85, 107, 115, 116, 125, 162, 247, 493, 545, 548, 638, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 674, 687, 691], "holidays": [83, 96, 102, 106, 148, 217, 423, 520, 599, 633, 634, 643, 646, 649, 651], "psutil": 83, "dateutil": [83, 361], "v2": [83, 85, 106, 152, 162, 213, 220, 223, 247, 248, 261, 270, 271, 273, 282, 302, 304, 338, 354, 355, 356, 357, 375, 419, 420, 487, 493, 496, 506, 524, 545, 548, 550, 552, 554, 558, 577, 579, 641, 646, 649, 651, 652, 653, 654, 655, 671, 674, 678, 682, 689], "ruamel": 83, "installing": [83, 651], "virtualenv": [83, 152, 627], "4024": 83, "mechanismus": [83, 566], "nachgelad": 83, "erschein": [83, 115], "fehlersuch": [83, 115, 189], "versucht": [83, 100, 115, 164, 165, 203, 233, 262, 331, 351, 381, 453, 527, 682], "netzwerkverbind": [83, 363, 393, 400, 408, 435, 441, 464, 467, 622], "erstkonfiguration": 83, "startseit": 83, "ausgegraut": 83, "begonn": [83, 119], "sucht": [83, 103, 115, 314, 333, 453], "gelingt": 83, "notepad": [83, 103], "einruck": [83, 100, 103, 106, 112], "position": [83, 142, 200, 215, 218, 219, 325, 331, 332, 333, 334, 453, 508, 563, 598, 599, 636, 638, 651, 652, 653, 682], "objekthierarchi": 83, "bildet": [83, 585], "logikeditor": [83, 671], "konfigurationseinstell": [83, 106, 671], "standort": [83, 219], "mapcoordinat": [83, 113], "net": [83, 97, 113, 167, 184, 198, 200, 239, 268, 274, 275, 278, 309, 315, 379, 394, 440, 468, 545, 558], "airport": [83, 113, 365], "berlin": [83, 103, 113, 148, 344, 460], "tegel": [83, 113], "5588327": [83, 113], "2884374": [83, 113], "elev": [83, 103, 113, 142, 599, 636, 649], "tz": [83, 103, 113, 148, 263, 575, 599, 634, 662, 664], "europ": [83, 103, 113, 148], "deprecated_warning": [83, 113], "default_languag": [83, 113, 151], "supported": [83, 113, 130, 139, 148, 152, 160, 161, 175, 182, 183, 186, 193, 199, 227, 231, 254, 257, 290, 298, 301, 305, 317, 344, 352, 365, 370, 538, 616, 644, 645, 646, 649, 651, 655, 663, 670], "possibl": [83, 103, 113, 141, 148, 159, 176, 185, 205, 231, 245, 247, 257, 274, 278, 280, 290, 301, 334, 355, 356, 357, 368, 370, 395, 623, 641, 646, 647, 649, 650, 651, 652, 653, 654, 655, 670], "sqlit": [83, 92, 103, 106, 113, 162, 183, 186, 187, 192, 200, 218, 221, 222, 239, 258, 287, 356, 357, 396, 485, 545, 554, 641, 643, 644, 645, 646, 649, 666, 667, 691], "pymysql": [83, 111, 113, 186], "module_path": [83, 103, 113, 670], "assiging": [83, 103, 113], "assign_compatibility": [83, 103, 113], "compat_1": [83, 103, 113], "programmablauf": [83, 103, 115], "notiert": [83, 98, 103, 577], "ausfuhrungskett": 83, "untersuch": [83, 115, 401], "grundkonfiguration": [83, 96], "yyyy": [83, 116, 263, 411, 520, 575, 585, 599, 634], "mm": [83, 102, 116, 184, 188, 262, 263, 268, 269, 314, 325, 365, 411, 479, 520, 575, 599, 634], "dd": [83, 116, 185, 263, 411, 520, 575, 599, 634, 646, 681], "hh": [83, 104, 107, 115, 116, 125, 184, 188, 263, 268, 314, 325, 479, 520, 545, 558, 575, 599, 633, 634, 638, 643], "__main__": [83, 116], "platform": [83, 113, 116, 645, 646], "provinz": [83, 96, 104, 107, 115, 125, 638], "feiertagsdefinition": 83, "meldungstext": 83, "zeitangab": [83, 155, 184, 268, 291, 304, 347, 562, 599, 634], "startzeit": [83, 244, 396, 423, 479, 580], "kritisch": [83, 107, 115], "ungewohnt": 83, "funktionsschwier": 83, "gelt": [83, 97, 328, 330], "entscheid": 83, "ohnehin": [83, 333, 381], "handlungsbedarf": 83, "123456789abcdef123456789abcdef123456789abcdef": 83, "wsproto": 83, "check_same_thread": [83, 111, 186], "kraft": 83, "weiss": [83, 92, 162, 196, 200, 321, 403, 450, 486, 545, 550], "arbeitsgrundlag": 83, "stattfind": [83, 326, 330, 332], "einsetz": [83, 219, 330], "abbruch": [83, 92, 189, 398, 400, 408, 435, 441, 464, 467], "entwicklungsteam": 83, "skriptdatei": 83, "wann": [83, 108, 109, 155, 187, 237, 304, 324, 327, 423, 460, 508, 519, 577], "ex_logging": [83, 243, 263], "example_logging": [83, 243], "ex_persist": 83, "example_persistanc": 83, "kernfunktionalitat": 83, "smarthomemg": 84, "popular": [84, 104, 185], "eclips": [84, 121, 279], "lsb": 84, "vendor": [84, 86, 160, 192, 280, 646], "preset": [84, 86, 173, 370, 536], "05": [84, 116, 187, 234, 247, 270, 271, 273, 294, 295, 337, 436, 545, 550], "39": [84, 155, 165, 304, 341, 356, 357, 674], "47": [84, 187, 230, 262], "cest": [84, 86, 148], "5min": 84, "docs": [84, 162, 221, 222, 296, 325, 337, 359, 394, 472, 511, 646, 648, 655], "sysv": 84, "generator": [84, 180, 346, 352, 646, 686, 688], "3548": 84, "mai": [84, 526, 640, 657], "3543": 84, "gestoppt": [84, 112, 200, 295, 416], "texteditor": [84, 89, 92, 164, 490, 630], "hineinkopi": [84, 89, 630, 682], "execstart": [84, 89, 90, 630], "workingdirectory": [84, 89, 630], "timeoutstartsec": [84, 89, 90, 630], "90": [84, 160, 226, 229, 325, 328, 329, 334, 370, 419, 502, 508, 574], "wantedby": [84, 89, 90, 630], "service": 84, "authentifizi": [84, 120, 599], "anonym": 84, "password_fil": 84, "passwd": [84, 88, 111, 161, 186, 234, 688], "allow_anonymous": 84, "accountinformation": 84, "stev": 84, "explizit": [84, 87, 222, 223, 314, 472, 552, 553, 589, 593, 598], "php": [85, 106, 156, 192, 303, 312, 313, 341, 355, 356, 357, 496, 524, 525, 652, 688], "libawl": 85, "curl": [85, 164, 170, 229, 641, 670], "xml": [85, 106, 161, 170, 279, 365, 368, 369, 535, 545, 550], "mbstring": 85, "rws": 85, "martin": [85, 104, 218, 352, 353, 355, 356, 357], "gleiss": [85, 218], "schreibrecht": [85, 226, 302, 424, 425, 512], "apach": 85, "umgang": [85, 131, 162, 423, 563, 573, 599, 634, 676, 693], "konflikt": [85, 90, 381], "entsteh": [85, 566], "vorkonfiguriert": [85, 115], "checking": [85, 130, 136, 141, 186, 645, 646, 649, 652, 655, 656, 670], "knopf": [85, 407], "einzugeb": [85, 93, 261], "demoseit": 85, "funktionsbereich": 85, "_templat": [85, 650], "meineneuevisu": 85, "bedienelement": 85, "flips": 85, "werteanzeig": 85, "makros": [85, 642, 687], "makrosprach": 85, "twig": [85, 652, 687], "bedurfnis": [85, 107, 575], "projektseit": 85, "nachzules": [85, 223, 256, 262, 271, 285, 330, 338, 532, 577], "gitgub": 85, "nachzuinstalli": 85, "gepflegt": [85, 106, 354, 545, 547, 548, 550, 552, 554, 558, 577, 688, 693], "durchweg": 85, "statisch": [85, 103, 314, 325, 326, 328, 332, 690], "manipuliert": [85, 330], "ubermittelt": [85, 162, 168, 170, 219, 223, 306, 307, 323, 375, 562, 567, 591], "dom": 85, "newstuff": 85, "heran": 85, "vertraut": [85, 338, 512], "inlin": [85, 646, 653, 656], "assistent": [85, 302, 496, 689], "parametriert": 85, "zwischenablag": [85, 164, 219, 226], "systemmenu": 85, "erreich": [85, 103, 249, 450], "visuseit": [85, 354], "misch": [85, 103, 302, 354, 682], "softwareschnittstell": 86, "uberspring": 86, "distribution": [86, 258, 370, 630], "n\u00e4chstes": [86, 331], "originalzeil": 86, "darunt": [86, 96, 97, 98, 189, 204, 323, 329, 450], "physikal": [86, 192, 232, 328, 329], "multicast": [86, 298, 314, 369, 434, 493, 545, 550, 622, 643], "tp": 86, "uart": [86, 200], "konsulti": [86, 96, 347, 641, 652, 653, 654, 655, 656, 675], "telegrammverlust": 86, "minimi": [86, 189], "wartezeit": [86, 165, 233, 392, 423, 461, 498, 499], "30msec": 86, "eingelegt": 86, "uberfahr": 86, "obsolet": [86, 347, 655], "ets": [86, 162, 232, 434, 646], "groupsocketlist": 86, "protokolliert": [86, 162, 163, 188, 222, 243, 362, 434], "202": [86, 187], "43": [86, 328, 682], "203": [86, 264, 464], "2e": [86, 283], "204": 86, "0b": 86, "16": [86, 115, 131, 160, 161, 165, 169, 192, 227, 262, 270, 271, 273, 279, 293, 305, 306, 307, 328, 334, 337, 338, 339, 340, 347, 389, 434, 443, 494, 511, 526, 545, 554, 569, 592, 638, 640, 643, 665], "bf": 86, "34": [86, 107, 111, 115, 160, 256, 306, 307, 347], "191": 86, "c0": 86, "c3": [86, 182, 218, 253, 260], "f2": 86, "fb": 86, "7e": [86, 245], "243": 86, "protokolli": [86, 115, 188], "ctrl": [86, 90, 203, 227, 278], "socket": [86, 89, 141, 355, 630, 649, 653, 655], "6720": [86, 103, 111, 123, 434, 617], "ubernimmt": [86, 259, 330, 562, 567, 591, 652, 653, 654, 656, 679], "sofort": [86, 165, 169, 178, 219, 295, 324, 326, 327, 328, 330, 332, 508, 519, 641, 674], "19": [86, 104, 178, 192, 198, 210, 215, 227, 240, 262, 288, 334, 338, 341, 443, 538, 586, 633, 638, 643], "07": [86, 125, 165, 171, 199, 273, 328, 347, 360, 638, 671], "stream": [86, 107, 115, 116, 127, 136, 161, 198, 244, 275, 368, 375, 453], "865": 86, "limit": [86, 160, 211, 221, 235, 263, 344, 407, 649, 651, 652, 655], "4915": 86, "99": [86, 164, 167, 239, 308, 309, 314, 334], "groupwrit": [86, 597], "send_tim": [86, 103, 111, 123, 232], "600": [86, 103, 111, 123, 183, 284, 365, 416, 442, 461, 508, 509, 530, 532, 649], "time_ga": [86, 103, 111, 123], "ga": [86, 223, 328, 339, 340, 594, 597, 650, 653, 670], "date_ga": [86, 103, 111, 123], "busmonitor": [86, 107, 111, 115, 195, 196, 232, 646, 666], "owhttpd": 87, "paketinstallation": 87, "adapt": [87, 160, 167, 181, 195, 200, 281, 351, 379, 387, 407, 545, 548, 550, 646, 651, 652, 653], "ds9490r": 87, "4304": [87, 461, 617], "fak": 87, "ds18s20": [87, 667], "ds2405": 87, "ds9490": [87, 261], "ds9097": 87, "ttys1": 87, "3131": 87, "random": [87, 250, 325, 453, 598, 646], "simulated": 87, "mountpoint": 87, "mnt": [87, 367], "1wir": [87, 285], "allow_oth": 87, "2121": [87, 663], "owftpd": 87, "ftp": 87, "2120": 87, "tcp6": 87, "owhttp": 87, "konfigurationsander": 87, "bridg": [87, 247, 257, 337, 371, 418, 419, 420, 458, 545, 548, 641, 646, 648, 649, 653, 655], "auskommentiert": [87, 106, 612, 613, 615], "mv": [88, 104, 197, 281, 405, 520, 545, 558, 643, 688], "workgroup": 88, "syslog": 88, "panic": 88, "encrypt": 88, "passdb": 88, "tdbsam": 88, "obey": 88, "restriction": [88, 186], "sync": [88, 279, 319, 653, 655], "program": [88, 176, 248, 301, 521], "snew": 88, "spassword": 88, "retyp": 88, "supdated": 88, "ssuccessfully": 88, "map": [88, 215, 218, 219, 254, 255, 260, 262, 367, 649, 652, 688], "guest": [88, 170, 261], "bad": [88, 98, 164, 250, 275, 276, 682], "usershar": 88, "printing": 88, "printcap": 88, "spoolss": 88, "due": [88, 138, 227, 245, 334, 364, 643, 644, 646, 649, 650, 652, 653, 655, 663, 667], "reason": [88, 133, 141, 227, 240, 660], "smb2_10": 88, "smb3": 88, "deny": [88, 355, 496, 524, 688, 690], "browseabl": 88, "writabl": [88, 202, 211, 370], "mask": [88, 141, 230, 423, 478], "0664": 88, "0775": 88, "besagt": [88, 508], "smb2": 88, "freigab": [88, 200, 219], "smb3_11": 88, "smbpasswd": 88, "explor": 88, "debiam": 89, "neuling": 89, "einrichtet": 89, "verstand": [89, 112, 115, 319, 590, 596], "forking": [89, 630], "pidfil": [89, 129, 630, 646], "failur": [89, 90, 144, 227, 278, 630], "900": [89, 90, 176, 192, 195, 282, 284, 329, 361, 388, 462, 468, 481, 482, 510, 537, 545, 550, 574, 630, 650], "restartforceexitstatus": [89, 90, 630], "nachinstallation": 89, "admingui": [89, 632], "zusammenhang": [89, 92, 106, 215, 261, 326, 332, 599, 619, 622, 634], "venvs": [89, 90, 630, 655], "tail": [89, 328], "autostart": [89, 90], "auszuschalt": [89, 90, 103], "genugt": [89, 90, 116], "esphome_install": 90, "verseichnis": 90, "restauriert": 90, "esphome_start": 90, "chrom": [90, 155, 359], "safari": [90, 304, 356, 357, 651], "6052": 90, "entdeckt": [90, 306, 307], "discovered": [90, 261, 645, 652], "onlin": [90, 121, 165, 179, 193, 194, 216, 217, 218, 219, 258, 259, 291, 293, 312, 313, 314, 337, 371, 642, 649, 655, 656], "restartsec": 90, "py_esphom": 90, "linuxsyst": 91, "mosquitto": [91, 617], "messdat": [91, 189, 287], "temperatur": [91, 107, 115, 131, 150, 160, 163, 164, 165, 170, 176, 177, 178, 182, 186, 189, 192, 195, 200, 207, 212, 218, 219, 221, 229, 232, 235, 244, 245, 249, 261, 262, 279, 281, 287, 288, 289, 291, 293, 310, 315, 317, 321, 325, 328, 329, 333, 334, 337, 341, 343, 349, 358, 361, 365, 371, 382, 383, 392, 394, 419, 420, 443, 448, 461, 465, 468, 479, 480, 484, 485, 486, 487, 514, 521, 526, 530, 545, 554, 573, 599, 622, 643, 646, 651, 652, 655], "samba": 91, "dateifreigab": 91, "allererst": [91, 530, 632], "geseh": 91, "Sichern": 92, "szenari": 92, "upgedated": [92, 283], "systemubergreif": 92, "stuckwerk": 92, "abschalt": [92, 170, 289], "itemwert": [92, 167, 170, 187, 256, 287, 326, 332, 338, 351, 360, 412, 507, 512, 563, 573, 574, 599], "owserv": [92, 261, 461, 545, 548, 617, 646], "sonstig": [92, 162, 183, 260, 320, 324, 331, 671], "basisinstallation": 92, "fehlschlagt": 92, "verzweig": [92, 370], "fehlschlag": 92, "ungesichert": 92, "auskennt": 92, "selbstand": 92, "ausgegang": [92, 330, 630], "less": [92, 147, 262, 365], "cat": [92, 126, 367], "zuruckgespielt": 92, "rrd": [92, 102, 545, 554, 643, 645, 646, 655, 656, 665, 667], "zuruckspiel": 92, "wirklich": [92, 162, 229, 262, 325, 338, 431, 583], "pluginverzeichnis": [92, 321], "wiss": [92, 103, 108, 192, 641], "erhoht": [92, 112, 162, 450, 461, 571, 586, 671, 672, 674], "distributionsupgrad": 92, "mitbringt": [92, 328, 583, 687], "nachgeles": [92, 194, 212, 213, 265, 289, 563, 584, 631, 693], "revision": 92, "programmstart": 92, "eingespielt": 92, "durchaus": [92, 103, 115, 326], "abgebroch": [92, 169, 189, 338, 498, 499], "committ": [92, 648], "stash": 92, "fraglich": 92, "auscheck": 92, "uberschreibbar": 92, "pypi": [92, 119, 368, 520, 598, 612, 641, 643, 646, 648, 650, 651, 655, 670, 671, 674], "programmk": 92, "aufgeteilt": [92, 229, 351, 641], "durchlauft": 92, "build_requirement": [92, 675, 676], "ausgelass": 92, "Und": [92, 106, 116, 184, 268, 328, 333], "Von": [92, 102, 167], "ruh": 92, "anschau": 92, "durchsuch": [92, 217, 532], "stimmt": 92, "einschalt": [92, 163, 164, 169, 256, 316, 338, 369, 375, 381, 407, 488, 591], "2013": [92, 312, 313, 352, 353, 355, 356, 357, 639, 668], "wheezy": 92, "kinderschuh": 92, "vielen": [92, 179, 219, 282, 283, 287, 289, 337, 453], "etlich": 92, "entwicklungsschub": 92, "rechtfert": 92, "vorzuschlag": 92, "problemlos": [92, 351], "umzusteig": [92, 374, 381, 383, 394, 397, 421, 426, 446, 463, 474, 497, 506, 523, 524, 532], "weiterverwendet": [92, 162], "vornehm": [92, 101, 292, 622, 682], "umgestieg": 92, "gescheh": [92, 333, 338, 589, 628, 688], "zuruckgesichert": 92, "ubernahm": [92, 200, 328], "ideal": 92, "konvert": [92, 106, 306, 307, 436, 671, 673], "einarbeit": 92, "doppel": [92, 106, 585], "einruckeb": 92, "kontrolliert": [92, 162, 206], "geschaut": 92, "konvertierungstool": 92, "conf_to_yaml_convert": [92, 106, 135, 673, 676], "durchlauf": [92, 328, 329, 330, 331, 333, 515, 641, 688], "umschwenk": 92, "nacharbeit": 92, "empfehl": [92, 101, 283, 586], "prominent": 92, "169712030000": 92, "16971203": 92, "konfigurier": 93, "freitext": 93, "dialogfeld": 93, "umgestellt": [93, 162, 170, 233, 641, 652, 671], "beschreibungstext": 93, "auffind": [93, 116], "erleichtert": [93, 223], "Was": [94, 123], "hinzukonfiguriert": 95, "aufklapp": [95, 292, 674], "offnet": [95, 291, 320, 337], "konfigurationsdialog": [95, 96], "gemein": 95, "geschob": 95, "n\u00e4chsten": [95, 115, 164, 184, 243, 262, 263, 268, 295, 314, 323, 325, 329, 333, 347, 373, 453, 502, 519, 569, 585, 589, 592, 596, 599, 635, 636, 641, 673], "verli": 95, "essentiell": 96, "mondstand": 96, "veranlasst": [96, 325, 331, 338], "fortschritt": 96, "reit": [96, 104, 170, 189, 210, 212, 213, 262, 336, 633, 671], "vorzugsweis": [96, 106, 292], "abkurz": [96, 131, 237], "ch": [96, 104, 176, 210, 248, 315], "fra": [96, 104], "uk": [96, 104, 229], "bundesland": [96, 520, 545, 558], "regional": [96, 104, 643], "landesweit": 96, "usa": 96, "brasili": 96, "holidays_custom": [96, 104, 633], "regeln": [96, 97, 104, 194, 263, 316, 325, 326, 330, 575, 577, 633], "sysadmin": [96, 104, 633], "systemadministrator": 96, "freitag": [96, 104, 325, 328, 479], "juli": [96, 104, 526, 640], "begang": 96, "benutzerspezif": 96, "vervollstandigt": [96, 674], "administation": 96, "dahin": [96, 272], "demzufolg": 97, "struct_": [97, 102, 106], "vorangestellt": [97, 114, 262, 462, 629, 671], "namensdoppl": [97, 114], "vorzubeug": [97, 114], "namensvergab": 97, "darksky": [97, 268, 364, 366, 545, 558, 641, 643, 645, 646, 648, 649, 652, 653, 655, 674], "vordefiniert": [97, 115, 170, 219, 263, 293, 578, 594], "angewendet": [97, 115, 121, 230, 314, 575, 577], "mein_wetter1": 97, "mein_wetter2": 97, "verdeutlicht": [97, 566, 589], "wettervorhersag": [97, 641], "mein_wett": [97, 365], "local_weath": 97, "wetterbericht": 97, "platzhalt": [97, 116, 169, 188, 263, 319, 330, 376, 397, 507, 564, 575, 585, 693], "report": [97, 162, 205, 227, 278, 365], "weather_hom": 97, "weather_summer_residenc": 97, "summer_residenc": 97, "oberst": [97, 100, 106, 112, 181, 369], "individual_struct_01": 97, "individual_struct_02": 97, "item_01": 97, "item_02": 97, "subit": [97, 202, 211], "item_a": [97, 446, 463], "item_b": [97, 446, 463], "my_tre": 97, "my_complex_data": 97, "individual_it": 97, "stammt": [97, 116, 261], "konntn": 97, "strukturdefinition": 97, "verweis": [97, 103, 327, 329, 330, 331, 347, 423, 545, 547, 548, 550, 552, 554, 558, 575], "unterstrukturreferenz": 97, "beschleun": 97, "unterstrukturdefinition": 97, "tret": [97, 632], "zutag": [97, 576], "unterstruktur": [97, 106, 112, 682], "kapitel": [97, 170, 189, 200], "dasselb": 97, "zusammengefuhrt": 97, "attributdefinition": 97, "attributwert": [97, 169, 170, 229, 338, 351, 443, 564, 693], "substruct": 97, "gemergt": 97, "spezialeintrag": 97, "standardverhalt": [97, 262, 314], "abgeandert": [97, 328, 508, 630], "verbund": [97, 124, 170, 171, 178, 189, 207, 212, 213, 223, 244, 259, 265, 283, 284, 285, 289, 302, 314, 336, 382, 395, 471, 562, 572, 621, 626, 642, 693], "mergend": 97, "merge_uniqu": [97, 328, 329], "listeintrag": 97, "neudefinition": 97, "zusammengefugt": 97, "listeneintrag": [97, 314, 326, 338, 674], "namensschema": 97, "namensdoppel": 97, "individual_struct": 97, "herkunft": [97, 232], "auszuschliess": [97, 351], "ruckgrat": 98, "typischerweis": [98, 170, 261, 262, 331], "doppelpunkt": [98, 106, 331, 566, 577], "eingeruckt": 98, "zeig": [98, 120, 162, 163, 262, 561], "signalisiert": 98, "weitergeleitet": [98, 120, 262], "vorgegeb": [98, 107, 124, 203, 316, 323, 326, 328, 332, 446, 463, 498, 499, 577, 622], "codiert": [98, 164, 192, 219, 232, 306, 307, 401, 434], "decodiert": [98, 310], "133": [98, 162, 210], "130": [98, 169, 195, 196, 210, 288, 305, 306, 307, 403], "dimmwert": [98, 106, 162, 337, 407], "zahlenwert": 98, "dimmeinstell": 98, "vorsieht": 98, "lampedimm": 98, "134": [98, 210], "132": [98, 210], "tipparbeit": 98, "erspar": 98, "hierarch": [98, 100, 112, 192, 323, 333, 508], "angeordnet": 98, "hauptit": [98, 238], "kinditem": [98, 424, 425], "eingefuhrt": [98, 562, 589, 641, 671], "uberblick": [98, 106, 215, 367], "schema": [98, 222], "stockwerk": 98, "gewerk": 98, "deck": [98, 196, 289, 683], "haus": [98, 219, 316, 339, 340], "auszulos": [98, 241, 285, 316, 351, 511], "berechtigungseb": 98, "schreibzugriff": 98, "reagi": [98, 169, 324, 382], "dash": [98, 185, 395], "dashbutton_mac": [98, 185], "ac": [98, 219, 229, 234, 235, 346, 436], "b0": [98, 200], "dashbutton_mod": [98, 185], "flip": [98, 185, 395], "dashbutton": [98, 545, 548, 641, 643, 646, 670], "myit": [100, 203, 205, 368, 568, 570], "_innerhalb_": 100, "1w_bus": 100, "_bus": 100, "unzulass": [100, 103], "programmiersprach": [100, 103, 106, 153, 172, 587], "aufgebaut": [100, 106, 164, 169, 244, 292, 308, 309, 321, 328, 333, 500, 512, 534, 641, 682], "ihrerseit": 100, "hierarchieeb": [100, 324, 331], "oma": [100, 563], "papa": [100, 563], "referenzier": [100, 329, 519, 561, 638, 671], "erfull": [100, 187, 289], "glieder": 100, "zuweis": [100, 106, 112, 215, 232, 261, 262, 306, 307, 337, 338, 351, 426, 427, 498, 499, 517, 522, 563, 567, 573, 576, 577, 589, 591, 672], "top": [100, 123, 134, 206, 304, 352, 356, 357, 651, 653, 655], "namensraum": [100, 594], "unvorhergeseh": 100, "einzeil": [100, 106], "zeilen": [100, 381], "angenomm": [100, 112, 121, 155, 169, 304, 325, 326, 330, 332, 333, 370, 396, 419, 420, 457, 508, 561, 568, 570, 599, 634], "mehrzeil": [100, 106, 229], "vorerst": [100, 333, 517], "herauszufind": [100, 111, 283, 325, 448, 492, 597], "nachseh": [100, 106, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "einsteig": [101, 103], "nachfolg": [101, 124, 170, 187, 189, 192, 215, 232, 262, 285, 287, 328, 339, 340, 359, 371, 381, 589, 641, 652, 653, 654, 655, 656, 682], "richtet": [101, 265], "cb": [102, 635], "create_backup": [102, 136, 149, 635], "shng_config_backup": 102, "cbt": [102, 635], "create_backup_t": [102, 635], "shng_config_backup_yyyy": 102, "tt_hh": 102, "ausschliess": [102, 339, 340, 575, 682, 688], "gelegt": 102, "rb": [102, 275, 635], "restore_backup": [102, 635], "config_dir": [102, 635], "codebasis": 103, "erlern": [103, 106], "elegant": 103, "objektorientiert": 103, "plattformunabhang": 103, "bedingt": [103, 262, 329], "threaded": [103, 141], "peinlich": 103, "achtet": 103, "Etwas": [103, 688], "bar": [103, 126, 222, 262, 263, 352, 563, 646, 686], "unweig": 103, "oftmal": [103, 232, 325, 326, 381], "fehlerquell": 103, "argernis": 103, "herein": 103, "emacs": 103, "ging": 103, "studio": 103, "bbedit": 103, "syntaxeinfarb": 103, "hauptverzeichnis": 103, "gewohn": [103, 169], "hauptmodul": 103, "grundgerust": 103, "pluginentwickl": 103, "grundsystem": 103, "userfunction": [103, 649, 652, 655], "modulbibliothek": 103, "bekommt": [103, 192, 200, 237, 261, 262, 282, 349, 576, 596, 685], "hilfsprogramm": [103, 165], "w\u00e4ren": [103, 106, 116, 328, 674], "wunsch": [103, 354, 370], "verwaltet": [103, 164, 265, 339, 340, 346], "verzeichnisstruktur": 103, "ublich": [103, 169, 291, 293, 333, 586], "aufteil": [103, 671], "67": [103, 247, 254, 255, 283], "36": [103, 107, 115, 155, 230, 275, 279, 289, 304, 347, 356, 357], "modulpfad": 103, "wertzuweis": [103, 333, 577, 579], "autotim": [103, 133, 148, 162, 200, 218, 262, 266, 282, 283, 284, 351, 360, 562, 573, 577, 646, 649, 655, 667, 670, 693], "beeinflusst": [103, 314, 563], "konfigurationsanweis": 103, "sql": [103, 130, 317, 506, 653], "sqlite_visu2_8": [103, 317, 545, 554, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "inzwisch": [103, 115, 212, 213, 314, 332, 383, 545, 550, 586], "leistungsfah": 103, "bindet": [103, 333], "auszug": [103, 229], "backendserv": 103, "xxxx": [103, 219], "eckig": [103, 106, 115, 116, 167, 213, 326], "abgearbeitet": [103, 230, 339, 340, 632], "beispiellog": [103, 164, 338], "umgebungsvariabl": 103, "diskusag": [103, 580], "logikaufruf": 103, "afterward": [103, 130, 218, 273, 296, 648, 655], "erklarungsbedurft": 103, "programmzustand": 103, "noti": [103, 306, 307], "komprimier": 103, "bericht": [103, 306, 307], "stromzahl": [103, 497, 498, 499, 545, 548, 550], "ziemlich": [103, 106, 229], "fein": 103, "hartnack": 103, "reduzi": 103, "aufs": [103, 622, 688, 693], "konzentri": [103, 164], "egal": [103, 169, 314, 332, 339, 340, 351], "eingebaut": [103, 162, 219, 232, 270, 271, 363, 641], "aufbaus": 103, "themat": 103, "gesichtspunkt": 103, "aufzusplitt": 103, "parametri": 103, "eg_kuech": 103, "eg_wohnzimm": 103, "og_schlafzimmer_elt": 103, "og_schlafzimmer_ryan": 103, "terrass": [103, 682], "kwl": [103, 183, 195, 196, 207, 270, 271, 393, 415, 470, 545, 550, 643, 670], "zentralheiz": 103, "zzt": 104, "region": 104, "holidays_country": [104, 633], "holidays_provinc": [104, 633], "holidays_stat": [104, 633], "Des": [104, 170, 359], "formuliert": [104, 573, 633], "weitestgeh": [104, 576, 633], "feiertagsdatum": 104, "weggelass": [104, 115, 116, 155, 192, 262, 289, 304, 306, 307, 314, 325, 326, 330, 531, 595, 641], "jahrlich": [104, 585], "dow": [104, 633], "dow_week": [104, 633], "dow_start_week": [104, 633], "jon": [104, 633], "doe": [104, 338, 633], "birthday": [104, 633], "august": [104, 265, 431, 526, 639, 640, 657], "geburtstag": 104, "100th": [104, 633], "tuesday": [104, 633], "july": [104, 633, 639], "dienstag": [104, 325, 351, 479, 585], "wednesday": [104, 633], "mittwoch": [104, 325, 479], "1st": [104, 633], "countri": 104, "provinc": [104, 633], "country": [104, 219, 229, 262, 365, 633, 655, 688], "germany": [104, 183, 227, 260, 365, 633, 655], "bw": [104, 520, 545, 558, 643], "bb": [104, 520, 545, 558, 643], "hb": [104, 520, 545, 558, 643], "he": [104, 353, 520, 545, 558, 643], "ni": [104, 239, 308, 309, 520, 545, 558, 643], "rp": [104, 520, 545, 558, 643], "sn": [104, 297, 520, 545, 558, 643], "austria": 104, "switzerland": 104, "ar": 104, "ai": [104, 200, 239, 308, 309], "bl": 104, "bs": 104, "ge": 104, "gl": 104, "gr": 104, "ju": 104, "ne": [104, 688], "sg": 104, "sz": [104, 451], "tg": 104, "ti": 104, "ur": 104, "vd": [104, 169, 210], "vs": [104, 262], "zg": 104, "zh": 104, "belgium": 104, "franc": 104, "m\u00e9tropol": 104, "alsac": 104, "mosell": 104, "guadeloup": 104, "guyan": 104, "martiniqu": 104, "mayott": 104, "nouvell": 104, "cal\u00e9doni": 104, "r\u00e9union": 104, "polyn\u00e9si": 104, "fran\u00e7ais": 104, "saint": 104, "barth\u00e9l\u00e9my": 104, "wallis": 104, "et": 104, "futuna": 104, "luxembourg": 104, "poland": 104, "unitedkingdom": 104, "england": 104, "north": [104, 502], "ireland": [104, 160], "scotland": 104, "wal": 104, "fl": [104, 169, 633], "united": [104, 633], "brazil": [104, 633], "custom": [104, 136, 148, 160, 188, 230, 432, 441, 538, 633, 643, 646, 649, 655], "repeat": [104, 166, 170, 250, 326, 332, 382, 420, 453, 545, 550, 633, 643, 669], "friday": [104, 633], "reprasenti": [105, 117, 592, 600], "herz": 105, "eingearbeitet": [105, 682], "syntakt": [105, 172], "fehlerhalft": 105, "vermutet": 105, "werdeen": [106, 487], "configobj": 106, "multilevel": 106, "umsteig": 106, "konvertiert": [106, 165, 270, 271, 325, 329, 423], "blockly": [106, 109, 137, 545, 554, 643, 653, 655, 671], "lern": [106, 112, 124, 440], "gelernt": [106, 124, 673], "szenendefinition": [106, 112, 641], "beschaftigt": 106, "konfigurationsmog": [106, 115, 168, 197, 276, 568, 570, 577], "standardformat": 106, "voraussicht": [106, 262, 381, 502], "beigefugt": [106, 689], "durchfuhrt": [106, 291, 337, 371, 632], "dateityp": 106, "interess": [106, 289], "section1": 106, "key1": 106, "key2": 106, "section2": 106, "key3": [106, 210], "key4": [106, 210], "subsection": 106, "sub_subsection": 106, "gegensatz": [106, 112, 187, 212, 351, 562, 567, 576, 591], "sektion": [106, 123, 320], "binar": [106, 306, 307, 400, 408, 464, 467, 476, 477, 621, 622], "boolwert": 106, "hierarchi": [106, 321, 330, 331, 347, 519, 560], "spezifikation": [106, 167, 192, 686], "wohnung": [106, 112, 155, 187, 289, 304, 356, 357, 561, 567, 591, 682], "koch": [106, 187, 325, 682, 683], "strahl": 106, "kuchenwand": 106, "knx_init": [106, 160, 162, 232, 239, 275, 360, 641, 665, 683], "kochfeldgesamt": 106, "kochfeld": 106, "watt": [106, 165, 234, 305, 337, 436, 502, 574], "kochfeld1": 106, "kochfeld2": 106, "lesbarst": 106, "folgezeil": 106, "doubl": [106, 126, 186, 262, 646], "escaped": 106, "sv_pag": [106, 162, 288, 566, 682, 683], "room": [106, 160, 173, 185, 193, 195, 222, 248, 272, 276, 288, 352, 355, 368, 427, 496, 523, 562, 573, 590, 646, 649, 655, 682, 683, 686], "visu_downlight": 106, "downlight": 106, "tres": [106, 160, 683], "sv_widget": [106, 195, 206, 219, 289, 314, 561, 566, 646, 656, 682, 683, 687], "dl_auss": 106, "dl_inn": 106, "inn": [106, 133, 191, 201, 264, 267], "dl_mitt": 106, "mittl": [106, 160, 262, 334, 362, 622], "selbet": 106, "fragt": [106, 165, 261, 380], "auskommentier": 106, "bewegt": 106, "einli": 106, "zweimal": 106, "herausbeweg": 106, "lesbar": [106, 262, 561, 584, 586], "konformitat": 106, "editierbar": [106, 672], "sytax": [106, 597], "highlighting": [106, 671], "faltung": 106, "ausruck": 106, "logikdefinition": 106, "itemdefinition": [106, 192], "ain": [106, 170, 171, 382, 383, 653], "datenformat": [106, 313, 622], "unhand": 106, "leistungsstark": 106, "bereitzustell": 106, "codetyp": 106, "bedi": 106, "mehrdeut": 106, "bezug": [106, 192, 196, 228, 306, 307, 325, 330, 573], "bearbeitungsprogramm": 106, "konsistent": 106, "interpretation": [106, 262], "strukturier": [106, 682], "hinreich": [106, 684], "gering": [106, 328, 333, 621], "unles": 106, "zeichnet": [106, 115, 295], "datenstrukturtyp": 106, "herum": [106, 339, 340], "perl": [106, 341], "ruby": 106, "konzept": [106, 179, 222, 224], "zeichenfolg": [106, 224, 381], "zusammensetz": [106, 672], "textzeichenfolg": 106, "pflanz": 106, "interpunktionszeich": 106, "verwechselt": 106, "bindestrich": 106, "ascii": [106, 230, 254, 255, 334, 434, 456], "unicod": 106, "offnend": 106, "hell": [106, 112, 179, 333], "platziert": [106, 682], "derselb": [106, 370], "unterelement": 106, "standerdmass": 106, "hund": 106, "katz": 106, "maus": [106, 164], "rind": 106, "schwein": 106, "zieg": 106, "nutzlich": [106, 189, 289, 306, 307, 333, 396, 508, 560, 599, 634], "reich": 106, "detailinformation": 107, "disable_existing_logg": [107, 115, 116], "formatt": [107, 115, 136, 188, 232, 263, 322, 368, 583, 585], "shng_simpl": [107, 115, 116, 263, 322, 368, 583, 584, 585], "asctim": [107, 115, 116, 232, 584], "levelnam": [107, 115, 116, 584], "8s": [107, 115, 116, 584], "19s": [107, 115, 116, 584], "datefmt": [107, 115, 116, 232, 584], "shng_detail1": [107, 115], "17s": [107, 115, 116], "threadnam": [107, 115, 116], "12s": [107, 115, 116], "funcnam": [107, 115, 116], "lineno": [107, 115, 116], "shng_detail2": [107, 115], "ln": [107, 115, 161, 688], "3d": [107, 115, 586], "shng_item": [107, 115], "shng_busmonitor": [107, 115], "knx_filt": [107, 115], "coming": [107, 115, 221], "knx_busmonitor": [107, 115, 232, 434, 648], "filter_exampl": [107, 115], "very": [107, 115, 160, 161, 168, 218, 359, 650, 667], "nic": [107, 115, 161, 211, 651], "msg": [107, 115, 116, 126, 138, 141, 172, 243, 263, 322, 338, 359, 368, 583, 688], "both": [107, 115, 126, 142, 160, 183, 205, 234, 260, 413, 623, 646, 655], "shng_warnings_fil": [107, 115, 116, 585], "abov": [107, 115, 130, 133, 138, 142, 148, 160, 180, 199, 206, 221, 245, 254, 273, 281, 290, 294, 296, 297, 312, 335, 355, 356, 357, 361, 370, 651, 653, 655], "smooth": [107, 115, 211, 651], "readabl": [107, 115, 148, 202, 211, 248], "seperat": [107, 115, 195, 454, 645, 646, 649, 654, 655], "logentri": [107, 115, 136, 648], "keeps": [107, 115], "sev": [107, 115], "shngtimedrotatingfilehandl": [107, 115, 136, 188, 583, 656], "utc": [107, 115, 136, 148, 211, 262, 306, 307, 322, 516, 583, 585, 599, 636, 672], "backupcount": [107, 115, 116, 136, 232, 263, 322, 583, 585], "utf8": [107, 115, 116, 188, 255, 263, 322, 583, 585], "shng_details_fil": [107, 115, 116, 322, 583, 593, 638], "develop_fil": [107, 115], "shng_detail": [107, 115, 116], "shng_busmonitor_fil": [107, 115], "shng_items_fil": [107, 115], "streamhandl": [107, 115, 116, 136], "ext": [107, 115, 116, 168, 170, 331, 382], "sys": [107, 113, 115, 116, 229, 262, 278, 361, 483, 598], "stdout": [107, 115, 116, 129, 152, 205], "required": [107, 115, 130, 160, 173, 176, 185, 205, 227, 305, 643, 655], "shoud": [107, 115], "doubled": [107, 115], "x86_64": [107, 115, 125, 638], "glibc2": [107, 115, 125, 638], "24407": [107, 115], "54": [107, 113, 115, 203, 230, 349, 518, 638], "shng_develop_fil": [107, 115], "unwanted": [107, 115, 227], "log_chang": [107, 115, 188, 243, 263, 577, 646, 655], "ererbt": [107, 115], "new_devic": [107, 115], "handed": [107, 115, 147, 595], "mylogic": [108, 326, 332], "mydoorcontact": 108, "Du": [109, 111], "konvention": 109, "dateiend": [109, 112], "ressourcenbedarf": 110, "leistungsschwach": [110, 118, 120], "einzusetz": [110, 118], "verzicht": [110, 118, 641], "graphical": 110, "2425": [110, 122, 616, 617, 684, 690], "myprivat": [110, 122], "going": [110, 141, 150, 152, 218, 364, 365], "empfangt": [111, 115, 116, 326], "gateways": [111, 247, 371, 451], "plugin_enabled": [111, 123, 249, 322, 641], "1245a9633edf47b7091f37c4d294b5be5a9936c81c5359b16d1c48337": 111, "database_mysql": 111, "precision": [111, 186, 200, 337, 641], "3306": [111, 186], "autogenerier": [111, 496, 523, 545, 554, 682, 686], "UND": [111, 169, 325, 569, 592], "nutzdatenprotokoll": [111, 302], "smartvisu_pag": 111, "smartvisu_dir": [111, 353, 684], "generate_pag": [111, 655, 684, 693], "overwrite_templat": [111, 684], "create_masteritem_fil": [111, 649], "visu_styl": [111, 682, 684], "std": [111, 496, 523, 682], "default_acl": [111, 302, 684], "handle_widget": [111, 684], "list_deprecated_warning": [111, 684], "log_level": [111, 243, 322, 577], "log_directory": [111, 322, 338], "startup_delay_default": [111, 322], "120": [111, 162, 165, 167, 169, 196, 227, 244, 284, 288, 289, 334, 370, 403, 483, 484, 487, 504, 512, 574], "suspend_time_default": [111, 322, 331], "10800": 111, "laststate_name_manually_locked": 111, "gesperrt": [111, 289, 329, 331], "laststate_name_suspended": 111, "ausgesetzt": [111, 330, 331, 508], "log_maxag": [111, 322], "2727": [111, 256, 457, 617], "8765": [111, 440], "tcp_acl": [111, 256], "udp": [111, 127, 141, 221, 247, 264, 314, 369, 370, 427, 464, 514, 545, 552, 617, 622, 649, 650, 663, 667], "udp_acl": [111, 256], "spezifizi": [111, 188, 289, 397], "class_path": [111, 123, 211, 219, 257, 258, 260, 269, 270, 273, 274, 275, 278, 281, 282, 288, 290, 294, 297, 298, 301, 305, 306, 307, 312, 314, 315, 334, 335, 341, 344, 358, 643, 654, 671, 674], "redundant": [111, 341, 645, 649], "class_nam": [111, 123, 211, 257, 258, 260, 269, 270, 273, 274, 275, 278, 281, 282, 288, 290, 294, 297, 298, 301, 305, 306, 307, 312, 314, 315, 334, 335, 341, 344, 358, 643, 654, 671], "hilft": [111, 165, 210, 573], "verzeichnisnam": [111, 123, 508], "_pv_1_3_0": 111, "weicht": 112, "szenenobjekt": [112, 124], "szenenverzeichnis": [112, 124], "szenenkonfigurationsdatei": 112, "zielit": [112, 124], "annimmt": [112, 525, 574], "annehm": [112, 215, 338, 530, 532, 566, 682], "ziel": [112, 116, 124, 223, 226, 263, 380, 434, 457, 516, 575, 576, 671], "otherit": [112, 573], "logicnam": [112, 241], "szenenaktion": [112, 124], "anstell": [112, 120, 124, 256, 262, 289, 302, 323, 326, 354, 434, 533, 545, 550, 573, 577, 585], "ungeordnet": 112, "geordnet": [112, 329], "untergeordnet": [112, 314, 330, 331, 333, 441, 508, 536, 562], "eintritt": [112, 164, 326, 330, 332], "wildcard": [112, 133, 315, 331, 645], "zweifach": [112, 124], "listitem1": [112, 124], "listitem2": [112, 124], "schreibweis": [112, 123, 169, 511, 568, 569, 570, 592], "ansteuert": 112, "ausschnitt": [112, 116, 576, 622, 684, 690], "sonderfall": [112, 596], "dreieckschrank": 112, "schreibtischleucht": [112, 155, 304, 356, 357, 561], "126": [112, 649, 652], "ct": [112, 210, 211, 212, 213, 337, 419, 420], "345": 112, "ambient": 112, "ambiente_level": 112, "putz": 112, "59635": 112, "230": [112, 165, 187, 200, 638], "azimuth": [113, 142, 155, 304, 356, 357, 655], "elevation": [113, 142, 580, 599, 636, 638, 648, 669], "mond": [113, 569, 592], "geograph": [113, 325], "Deinen": 113, "weitewelt": 113, "0621869293091": 113, "4431106741905": 113, "fin": [113, 198, 247], "central": [113, 288], "high": [113, 133, 147, 165, 177, 183, 200, 211, 218, 221, 262, 269, 274, 288, 335, 341, 359, 365, 412, 527, 652, 688], "commend": [113, 655], "pip_command": [113, 646], "shpypi": [113, 641, 644, 645, 646, 647, 648, 650, 651, 652, 653, 654, 655], "shpypi_crontab": 113, "stem": [113, 648], "backup_name_st": 113, "myinstallation": 113, "altered": [113, 211], "abgekundigt": [113, 243, 262, 263], "undefined": [113, 136, 257], "statdard": 113, "undef_item_attr_loglevel_info": 113, "consum": [113, 250, 298, 362, 453, 530, 643], "cpuusag": [113, 646, 656], "threadinfo_export": 113, "supportded": 113, "gps": [113, 422, 652], "mobiltelefon": 113, "Deren": [114, 360], "entwicklerdokumentation": 114, "programmfehl": 115, "spur": 115, "nachhinein": 115, "untersucht": [115, 453], "desto": [115, 261, 333], "sachverhalt": 115, "vorgeb": 115, "aufgezeichnet": [115, 120, 232, 295, 446, 490], "21": [115, 155, 160, 162, 189, 192, 199, 203, 221, 230, 234, 245, 261, 262, 288, 289, 297, 300, 304, 306, 307, 328, 334, 356, 357, 401, 487, 492, 545, 548, 550, 577, 647, 657, 682], "56": [115, 360, 443, 682], "2c": [115, 612], "4e0938c2": 115, "deutet": 115, "hingeh": 115, "gedacht": [115, 119, 385, 545, 554, 612, 690], "auftauch": 115, "steiger": 115, "bedeut": [115, 123, 165, 187, 192, 200, 285, 306, 307, 351, 526, 561, 562, 574, 577], "weiterarbeit": 115, "dar": [115, 260, 262, 302, 567, 590, 591, 622], "absteig": [115, 339, 340], "programmabbruch": 115, "weiterlauf": 115, "moglicherweis": [115, 169, 192, 351], "weitergearbeitet": 115, "filehandl": [115, 655], "ablaufinformation": 115, "dbgmed": [115, 651, 653], "dbglow": [115, 651, 653], "notset": [115, 434], "verbos": [115, 169, 320, 635, 646, 653, 677], "informell": 115, "daraus": [115, 192, 232, 306, 307, 325, 683], "schief": 115, "umbenannt": [115, 219, 262, 371, 449, 641, 652, 653, 654, 656], "konfigurationseintrag": 115, "ausgabeformat": 115, "loggingeintrag": [115, 256], "behandlungsroutin": 115, "ausgabekanal": 115, "vorimplementiert": 115, "filtername1": 115, "filtername2": 115, "loggernam": 115, "versteckt": 115, "loggerfilt": 115, "filternam": 115, "loggermodul": 115, "timestamp": [115, 116, 133, 137, 138, 155, 186, 189, 223, 263, 288, 304, 305, 306, 307, 356, 357, 359, 498, 499, 516, 583, 585, 645, 648, 649, 652, 655], "NUR": 115, "logtief": 115, "ausgeb": 115, "instanziert": 115, "instanzier": 115, "dwd": [115, 665, 666, 670, 674], "fundig": 115, "hauptlog": 116, "anderseit": 116, "interessiert": 116, "hochsetz": 116, "anzuheb": 116, "wuhl": 116, "interessi": 116, "gehalt": [116, 263, 328, 370], "logmeld": 116, "rotier": [116, 163, 219, 220], "sieb": [116, 614, 619], "aufheb": [116, 331], "rotation": [116, 508, 655, 656], "enogw": 116, "18624": 116, "lenk": 116, "standardkonfiguration": [116, 593], "modulnam": 116, "woh": 116, "hinausgeh": 116, "wodurch": [116, 169, 325, 328, 330, 347, 519, 573, 594, 642], "voransteh": [116, 583], "jedenfall": [116, 191, 201, 238, 264, 267], "abzufang": 116, "meinfilt": 116, "tat": 116, "ee": [116, 281], "nginelogg": 116, "stateengine_fil": 116, "beistrich": 116, "gelistet": [116, 184, 215, 262, 268, 286, 325, 329, 347, 622], "stamm": 116, "beinhalt": [116, 165, 169, 262, 316, 325, 328, 329, 333, 573], "kriteri": [116, 396], "filterbeispiel": 116, "filtert": [116, 338, 532], "filterattribut": 116, "filter_nacht": 116, "s2": 116, "s0": [116, 170], "filtercod": 116, "filter_abend_mai": 116, "kalendermonat": 116, "abfang": [116, 642], "filter_eintrag_mitsonderzeich": 116, "tcp_client_192": 116, "9621": [116, 290, 488], "tcp_client": [116, 141, 646], "mitteil": [116, 232, 243, 263, 338, 380, 406, 512], "backslash": 116, "verbessert": [116, 219, 249, 351, 641, 642, 651, 671, 674], "nennt": 116, "16s": 116, "ausgibt": [116, 306, 307], "file_additional": 116, "bewirkt": [116, 272, 572, 573, 576], "logic_groupnam": [117, 592, 600], "aufgefuhrt": [117, 192, 241, 306, 307, 554, 555, 577, 592, 594, 597, 600], "zykluszeit": [117, 388, 419, 436, 470, 526, 592, 600], "angibt": [117, 165, 262, 568, 570, 575, 592, 600, 683], "zeitabstand": [117, 285, 511, 515, 520, 537, 592, 600], "paramt": [117, 162, 181, 249, 289, 412, 512, 533, 592, 600], "standardprioritat": [117, 592, 600], "auszusetz": [117, 592, 600], "ausfuhrungsstatus": [117, 592, 600], "user_paramet": [117, 592, 600], "ressourc": [118, 202], "funktionsumfang": [118, 212, 289, 354, 359], "webbrows": 119, "login_expiration": [119, 612], "itemtree_fullpath": [119, 612], "itemtree_searchstart": [119, 612], "websocket_host": [119, 612], "websocket_port": [119, 612], "log_chunksiz": [119, 612], "rest_dispatch_force_exception": [119, 612], "click_dropdown_head": [119, 612], "verlang": [119, 612], "gewartet": [119, 169, 328, 351, 401, 458, 493, 632], "falls": 119, "kurzform": [119, 337], "itemtre": [119, 643], "rest_dispatch_execut": [119, 612], "execption": [119, 612], "kopfeintrag": [119, 612], "dropdown": [119, 410, 612, 646], "menus": [119, 612], "webschnittstell": 120, "basisauthentifizier": 120, "anzubiet": 120, "geheim": [120, 121, 512], "1245a9633edf47b7091f37c4d294b5be5a9936c81c5359b16d1c4833729965663f1943ef240959c53803fedef7ac19bd59c66ad7e7092d7dbf155ce45884607d": [120, 180], "Kann": [120, 320, 323, 331, 382, 462, 475, 486, 508, 519], "sha": [120, 180, 391], "512": [120, 180, 379, 391, 500], "lauscht": [120, 391, 405, 440, 453, 514, 674], "serviceport": 120, "fehlerseit": 120, "tabellenreih": [120, 123], "scrolling": [120, 123, 646], "geled": 120, "registriert": [120, 187, 192, 228, 243, 244, 338, 363, 422, 532], "hort": [121, 690], "durchsatz": [121, 252], "eingeh": [121, 170, 210, 232, 241, 256, 382, 417, 457, 617, 622], "last_will": 121, "verbindungsaufbau": [121, 309, 400, 440, 441, 464, 467, 507, 622, 674], "nutzdat": [122, 155, 304, 496, 682, 690], "verschlusselt": [122, 219, 616, 688, 690], "wss": [122, 616, 617, 654, 690], "ODER": [122, 169, 325], "passphras": 122, "druck": [122, 164, 212, 213, 292, 337, 395, 526], "meinserv": 122, "fritz": [122, 171, 312, 313, 382, 383, 545, 550, 650, 651, 655, 669], "box": [122, 167, 168, 171, 198, 227, 312, 313, 382, 383, 406, 545, 550, 642, 669], "einstimm": 122, "openssl": [122, 161], "req": [122, 649, 688], "newkey": 122, "rsa": [122, 688], "2048": [122, 161, 688], "keyout": 122, "x509": [122, 688], "verschusselt": 122, "zusatzmodul": 123, "knx_1": 123, "namensgleich": [123, 671], "itemkonfiguration": [123, 262, 351], "einzutrag": 123, "avm_data_typ": [123, 339, 340, 566, 651, 655], "fritzbox_1": [123, 170], "fb6360": 123, "fritzbox_2": 123, "fb7490": 123, "wan": [123, 170, 382], "connection_status": [123, 170, 382], "wan_connection_status": [123, 170, 382], "konfiguation": 124, "64": [124, 161, 254, 255, 283, 434, 443, 494, 641], "angewahlt": 124, "aktor": [124, 162, 170, 200, 204, 289, 323, 326, 329, 383, 407, 412, 434], "modi": [124, 162, 289, 314, 375, 487], "szenenstatus": 124, "szenenstati": 124, "szenennumm": [124, 434, 641], "128": [124, 160, 198, 200, 247, 334, 434], "addi": 124, "abgespeichert": [124, 203], "initialwert": [124, 412, 508], "formeln": 124, "funktionssamml": [125, 638], "anhalt": [125, 488, 638], "_version": [125, 638], "_description": [125, 638], "galaxis": [125, 638], "zweiundvierz": [125, 638], "2d": [125, 638], "b81166c3": [125, 638], "4584": [125, 638], "uf": [125, 573, 635, 638], "voranzustell": [125, 638], "funtion": [125, 137, 638], "parsing": [126, 141, 179, 315, 365, 623, 645, 648, 649, 651, 652, 653], "add_struct_to_item_templat": 126, "struct_nam": [126, 134], "struct_dict": 126, "referenced": [126, 317, 368, 649], "items_templat": 126, "subtre": [126, 227, 304, 365, 646], "merged": [126, 312], "derived": [126, 643], "destination": [126, 146, 168, 227, 248, 253, 279, 288, 455, 478, 653, 666], "source_nam": 126, "dest_nam": 126, "ordereddict": [126, 135, 137, 149, 397], "noset": 126, "doct": 126, "all_rows": 126, "dog": [126, 338], "fail": [126, 130, 221, 294, 642, 645], "merge_structlist": 126, "l1": [126, 306, 307], "l2": [126, 306, 307], "nested_get": 126, "input_dict": 126, "nested_put": 126, "output_dict": 126, "nested": [126, 612], "addfilenam": 126, "parseitem": 126, "depending": [126, 127, 130, 195, 198, 202, 227, 245, 294, 301, 335, 355, 649], "apropriat": 126, "resulting": [126, 139, 141, 654, 655], "parse_basenam": 126, "basenam": [126, 140, 143, 144], "configtyp": 126, "preferenc": 126, "parse_conf": 126, "firstlevel": 126, "attribute3": 126, "secondlevel": 126, "thirdlevel": 126, "barfoo": 126, "foobar": 126, "anothersecondlevel": 126, "respectiv": [126, 199, 370, 643, 644, 645, 646, 649, 650, 651, 655, 691], "pair": [126, 133, 219, 356, 357, 397], "plus": [126, 141, 195, 196, 235, 293, 294, 347, 568, 652], "digit": [126, 186, 211, 227, 248, 278, 370, 476, 477], "underscor": [126, 312, 313], "parse_itemsdir": [126, 134], "itemsdir": 126, "item_conf": 126, "filetyp": 126, "fold": [126, 146, 195, 205, 208, 218, 251, 253, 315, 334, 352, 361, 643, 650, 651, 653, 655, 656, 670], "parse_yaml": 126, "stuct": [126, 693], "reading": [126, 137, 161, 193, 195, 202, 216, 280, 281, 288, 305, 623, 642, 645, 646, 653, 654, 655], "remove_comment": 126, "ydata": 126, "remove_digit": 126, "remove_invalid": 126, "char": [126, 278, 344], "remove_keys": 126, "func": [126, 155, 189, 203, 304, 326, 356, 357], "key_prefix": 126, "removal": [126, 646, 653], "startswith": [126, 562], "recursion": 126, "remove_keyword": 126, "remove_reserved": 126, "remove_special_listentri": 126, "replace_struct_instanc": 126, "instac": [126, 296], "sanitize_item": 126, "search_for_struct_in_item": 126, "recursively": 126, "merging": [126, 643, 646, 648, 650, 656], "expanded": [126, 195, 655], "set_attr_for_subtre": 126, "indent": [126, 203, 649], "strip_quot": [126, 152], "strip": [126, 141, 247, 423], "beggining": 126, "stripped": [126, 152], "creating": [127, 254, 255, 646, 653, 655, 688], "thus": [127, 141, 160, 193, 355, 512, 668], "inherit": 127, "family": [127, 141, 152, 164, 261], "flavour": 127, "proto": [127, 282, 646, 688], "filenumb": 127, "contained": 127, "_connection": 127, "_serv": 127, "epoll": 127, "kqueu": 127, "select": [127, 173, 205, 211, 221, 229, 248, 273, 296, 351, 361, 419, 420, 565, 591, 612, 646, 649], "register_connection": 127, "fileno": 127, "register_serv": 127, "unregister_connection": 127, "handle_connection": 127, "sock": [127, 649], "balanc": [127, 290, 488], "bop": 127, "bclos": 127, "discard_buff": 127, "found_balanc": 127, "found_terminator": [127, 655], "handle_clos": 127, "handle_connect": [127, 653], "wid": [128, 162, 170, 262, 382, 646], "check_sh_is_running": 129, "wheth": [129, 138, 205, 254], "daemoniz": 129, "stdin": 129, "stderr": [129, 646], "descriptor": [129, 141], "mapped": [129, 170, 263, 382], "waittim": 129, "pid0_warning": 129, "identified": [129, 186, 335], "identifying": 129, "killing": 129, "read_pidfil": 129, "remove_pidfil": 129, "write_pidfil": 129, "lock": [129, 130, 162, 170, 185, 186, 249, 257, 289, 324, 325, 328, 331, 333, 382, 383, 458, 545, 550, 646, 652, 655, 656, 670], "whil": [129, 170, 198, 199, 353, 646, 647, 655], "dbapi": 130, "formatting": [130, 296, 646], "abstraction": 130, "lay": [130, 211, 262, 462, 670], "api2": [130, 186, 396, 670], "specification": [130, 192, 230, 232, 352, 401, 545, 548, 623, 645, 655], "functionality": [130, 162, 198, 200, 239, 248, 253, 257, 344, 353, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 691], "establish": [130, 141], "fetchon": 130, "fetchall": 130, "reeturn": 130, "cursor": [130, 186, 248, 646, 653], "transaction": [130, 187], "selcted": 130, "rollback": [130, 187], "acquir": 130, "simultaneous": 130, "verify": [130, 141, 198, 217, 260, 649, 655], "reconnect": [130, 141, 641, 649, 651, 655, 656], "placehold": [130, 136, 315, 655], "qmark": [130, 186], "numeric": [130, 136, 152, 164, 186, 187, 227, 247, 248, 370, 650, 655], "pyformat": [130, 186], "transparently": 130, "executing": [130, 650, 652], "stmt": 130, "cur": 130, "selected": [130, 151, 186, 227, 281, 365, 651], "constructor": [130, 141, 147, 152], "aqcuired": 130, "omitted": [130, 152, 205, 356], "aqcuir": 130, "released": [130, 200, 227, 247, 330, 413, 431, 538, 646, 656, 670], "mentioned": [130, 312], "timeout": [130, 141, 150, 165, 191, 201, 216, 221, 227, 238, 258, 264, 267, 334, 338, 370, 378, 381, 517, 599, 612, 646, 650, 651, 653, 654, 655, 656], "providing": [130, 160, 288, 623], "two": [130, 132, 137, 138, 141, 143, 147, 148, 152, 160, 162, 198, 205, 211, 227, 231, 239, 248, 254, 257, 263, 278, 296, 301, 305, 308, 352, 356, 357, 365, 646, 648, 650, 651, 652, 655, 659, 660, 669], "rollout": [130, 187], "retry": [130, 195, 652, 655], "verifi": 130, "reconnet": 130, "established": [130, 141, 211, 646], "opened": [130, 257, 646], "betwe": [130, 133, 141, 147, 148, 160, 162, 183, 186, 193, 198, 211, 239, 278, 352, 655], "vorwieg": 131, "massein": [131, 261], "mps": 131, "mil": [131, 262], "mph": 131, "km": [131, 338, 344, 510], "kilomet": 131, "kmh": [131, 338, 649], "nm": 131, "nautical": 131, "kn": 131, "knot": [131, 262], "entfernungenn": 131, "meil": 131, "nautisch": 131, "fahr": [131, 162, 170, 219, 262, 328, 329, 367, 456, 573], "celsius": [131, 142, 150, 262, 281, 334, 349, 365, 573], "kn_to_kmh": 131, "kmh_to_kn": 131, "ms_to_kmh": 131, "kmh_to_m": 131, "mps_to_kmh": 131, "kmh_to_mps": 131, "mph_to_kmh": 131, "kmh_to_mph": 131, "ms_to_bft": 131, "kmh_to_bft": 131, "bft_to_text": 131, "miles_to_met": 131, "distanc": [131, 281, 344, 480], "umterchn": 131, "streck": 131, "nauticalmiles_to_met": 131, "meter_to_mil": 131, "meter_to_nauticalmil": 131, "f_to_c": 131, "c_to_f": 131, "degrees_to_direction_8": 131, "deg": [131, 229, 262], "gradzahl": 131, "teilt": 131, "sektor": 131, "kompass": 131, "degrees_to_direction_16": 131, "location_nam": 131, "lokationsnam": 131, "stadt": 131, "stadtteil": 131, "lokation": [131, 428], "openweathermap": [131, 229, 339, 340, 545, 558, 641, 646, 649, 650, 651, 652, 653, 655], "abgeruf": [131, 165, 178, 262, 306, 307, 338, 392, 394, 423, 462, 468, 485, 520, 545, 550, 567, 591, 632], "union": [131, 144], "location_address": 131, "ways": [132, 137, 143, 147, 148, 234, 335], "preferred": [132, 143, 160], "manily": [132, 137], "near": [132, 137], "consist": [132, 143, 152, 211, 227, 315, 356, 357], "items_instanc": [132, 133], "represented": [132, 133, 137], "maintained": [132, 133, 655, 670], "load_itemdefinition": [132, 133, 134], "management": [132, 143, 368, 449, 545, 550, 598, 655], "moved": [132, 134, 643, 646, 649, 653, 654, 655, 664], "typehandl": 133, "modifying": [133, 227], "yield": [133, 234, 235, 641], "storing": [133, 655], "changed_ag": 133, "correspond": [133, 312, 315], "instantiated": [133, 141], "resp": [133, 141], "minimiz": [133, 649, 650, 655], "collision": [133, 643, 656], "item_function": 133, "listhandl": 133, "prepend": [133, 563], "insert": [133, 186, 187, 254, 296, 352, 563], "pop": [133, 262, 365, 563], "mimic": 133, "del": [133, 563], "supply": [133, 258, 259, 298, 521, 643], "dicthandl": 133, "popit": [133, 563], "success": [133, 137, 141, 144, 227, 360, 655, 688], "find_attribut": 133, "strict": [133, 161, 688], "whol": [133, 221, 262, 365, 643, 649], "exact": [133, 183, 227], "ptyp": 133, "necessarily": 133, "update_ag": [133, 562, 671], "last_trigg": [133, 562, 567, 591, 650], "trigger_ag": [133, 562], "triggered": [133, 137, 168, 185, 205, 208, 243, 253, 257, 263, 294, 355, 356, 357, 368, 395, 413, 595, 643, 650, 652], "prev_chang": [133, 562, 567, 591, 667, 673], "prev_ag": [133, 562, 667], "had": [133, 218, 644, 646, 647, 649, 650, 652, 655, 656], "prev_updat": [133, 562, 567, 591, 671, 673], "prev_update_ag": [133, 562, 567, 591, 671], "existed": 133, "prev_trigg": [133, 562, 567, 591, 650], "prev_trigger_ag": [133, 562, 567, 591], "prev_valu": [133, 263, 355, 562, 567, 573, 576, 591, 667], "indication": [133, 368], "triggered_by": [133, 562], "get_absolutepath": 133, "relativepath": 133, "expand_relativepath": [133, 561], "begintag": 133, "endtag": [133, 351], "remain": [133, 137, 653], "signal": [133, 162, 165, 167, 200, 227, 278, 365, 412, 440, 545, 548, 644, 646], "get_stringwithabsolutepath": 133, "evalstr": 133, "get_class_from_fram": 133, "get_calling_item_from_fram": 133, "get_stack_info": 133, "hysteresis_stat": [133, 574], "hysteresis": [133, 655], "hysteresis_data": 133, "threshold": [133, 189, 247, 360, 453, 574, 577, 659], "add_logic_trigg": 133, "remove_logic_trigg": 133, "get_logic_trigg": 133, "add_method_trigg": [133, 137, 674], "remove_method_trigg": 133, "get_method_trigg": [133, 137], "get_item_trigg": 133, "get_hysteresis_item_trigg": 133, "compat": [133, 562], "till": [133, 288], "anymor": [133, 257, 301, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 656, 691], "backward": [133, 152, 247, 281, 291, 655], "compatibility": [133, 152, 175, 649, 651], "remove_tim": [133, 562], "fad": [133, 314, 562, 660], "step": [133, 155, 203, 211, 278, 304, 328, 329, 356, 357, 562, 646], "delta": [133, 217, 562], "return_parent": [133, 288, 562], "ancestor": 133, "doesn": [133, 162, 211, 234, 365, 649, 655], "optionally": [133, 160, 368, 646, 649], "timestamps": [133, 645], "get_children_path": 133, "jsonvar": 133, "memb": [133, 141, 144], "to_json": 133, "plugin_attribute_prefix": 134, "plugin_prefixes_tupl": 134, "add_struct_definition": 134, "from_dir": [134, 151], "return_struct_definition": 134, "env_dir": 134, "items_dir": 134, "etc_dir": [134, 656], "plugins_dir": 134, "get_toplevel_item": 134, "ordered": [134, 137, 149], "alphabetically": 134, "doing": [134, 161, 294, 652], "fading": 134, "add_plugin_attribut": 134, "attribute_nam": [134, 561], "add_plugin_attribute_prefix": 134, "prefix_nam": 134, "plugin_attribute_exist": 134, "get_plugin_attribute_typ": 134, "conversion": [135, 216, 598, 642, 645, 646, 649, 655, 669], "convert_yaml": 135, "formated": 135, "is_ruamelyaml_installed": 135, "parse_for_convert": 135, "conf_cod": 135, "yaml_sav": [135, 149], "datetimerotatingfilehandl": [136, 188, 263, 656], "patt": [136, 397], "rotating": [136, 655], "rollov": 136, "kept": [136, 688], "ones": [136, 148, 161], "deleted": [136, 137, 294, 646, 649, 667], "do_rollov": 136, "then": [136, 137, 138, 141, 142, 147, 162, 183, 195, 206, 208, 231, 234, 248, 258, 278, 281, 282, 294, 301, 312, 315, 612, 646, 649, 652, 688], "we": [136, 152, 173, 221, 234, 251, 288, 347], "suffix": [136, 262, 326, 332], "emit": 136, "catering": 136, "get_filenam": 136, "get_files_to_delet": 136, "rolling": 136, "next_rollover_tim": 136, "parsefilenam": 136, "maxl": [136, 243, 263, 585], "dequ": [136, 263], "assuming": [136, 155, 278, 304, 356, 357], "equal": [136, 147, 317], "sid": [136, 151, 155, 203, 235, 304, 352, 356, 357, 648, 655, 688], "export": [136, 278, 367, 645, 646, 652, 674, 688], "dbghigh_level": 136, "dbglow_level": 136, "dbgmed_level": 136, "notice_level": 136, "add_all_handlers_logg": 136, "logging_conf": 136, "add_log": 136, "add_logging_level": 136, "appearanc": [136, 643], "tocall": 136, "performed": [136, 227, 655], "typos": [136, 643, 646, 647, 648, 651, 653], "configure_logging": 136, "config_filenam": [136, 612], "get_all_handlernam": 136, "get_handler_by_nam": 136, "handlernam": 136, "get_shng_logging_level": 136, "od": [136, 210, 616, 646, 681], "loa": 136, "initmemlog": 136, "datastructur": [136, 234, 545, 550], "mem": [136, 248], "memlog": [136, 263, 545, 554, 585, 632, 643, 649, 655, 671], "log_m": 136, "shngmemloghandl": [136, 243, 263], "load_logging_conf": 136, "ignore_notfound": [136, 149], "shng_version": 136, "load_logging_config_for_edit": 136, "logging_level": 136, "return_log": 136, "root_handler_nam": 136, "save_logging_conf": 136, "lognam": [136, 243, 263, 585, 612], "loghandl": [136, 188, 243, 263], "trailing": 136, "newlin": 136, "print_exception": 136, "appended": [136, 147, 294], "naming": [136, 353, 641, 643, 651, 652, 654], "schem": [136, 229, 688], "rotated": 136, "dorollov": 136, "stamp": [136, 188, 262, 263, 294, 575, 585, 646, 655, 671], "howev": [136, 138, 160, 221, 652], "getfilestodelet": 136, "earli": [136, 227, 356, 357, 650], "glob": 136, "enable_logic": [137, 140], "coupl": [137, 653, 668], "userlogicconf": 137, "envlogicconf": 137, "og": [137, 162, 164, 294, 295, 338, 573, 682], "get_loaded_logics": 137, "rmov": 137, "get_logics_dir": 137, "dirctory": 137, "generat": [137, 161, 186, 226, 234, 296, 352, 598, 646, 665, 677], "is_logic_loaded": 137, "get_logic_info": 137, "visu_access": 137, "is_logic_enabled": 137, "disable_logic": 137, "toggle_logic": 137, "trigger_logic": 137, "is_userlogic": 137, "userlogic": 137, "systemlogic": 137, "load_logic": 137, "reloaded": 137, "unload_logic": 137, "unload": [137, 144], "get_logiccrontab": 137, "return_logictyp": 137, "return_defined_logics": 137, "withtyp": 137, "logictyp": 137, "return_loaded_logics": 137, "return_config_typ": 137, "manipulating": 137, "read_config_section": 137, "config_list": 137, "set_config_section_key": [137, 594], "cleared": 137, "imformation": 137, "configurationfil": 137, "filename_used_count": 137, "delete_logic": 137, "with_cod": 137, "complet": [137, 186, 199, 227, 305, 365, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 513, 514, 515, 518, 521, 526, 527, 537, 538, 644, 645, 646, 648, 653, 681], "referencing": [137, 643, 646], "successful": [137, 623], "groupnam": 137, "log_readonly_warning": 137, "prop": [137, 644, 645, 647, 652, 656], "lnam": 137, "assignement": [137, 645, 646, 653], "collection": [137, 632], "trigger_dict": [137, 589], "is_enabled": 137, "last_run": [137, 594, 671], "wasn": [137, 642, 650], "set_last_run": 137, "duplicatefilt": 138, "taking": [138, 655], "logrecord": 138, "levelno": 138, "immediately": [138, 179, 294, 337, 655], "generation": [138, 166, 212, 213, 230, 235, 306, 307, 352, 653, 656, 669], "hug": [138, 667], "captured": 138, "limited": [138, 361, 646], "interchanging": 138, "siz": [138, 211, 221, 253, 612, 646, 649, 650, 651, 653, 688], "measurement": [138, 200, 222, 223, 312], "everything": [138, 183, 243, 288, 655, 688], "addon_nam": 139, "addon_typ": 139, "get_global_plugin_paramet": 139, "get_plugin_function_defstring": 139, "with_typ": 139, "with_default": 139, "completion": 139, "get_string": 139, "get_mlstring": 139, "mlkey": 139, "multilanguag": 139, "trys": [139, 234], "get_bool": 139, "test_shngcompatibility": 139, "rang": [139, 148, 160, 186, 193, 195, 199, 200, 211, 227, 278, 290, 334, 370, 643, 655], "addon": [139, 251, 398], "test_pythoncompatibility": 139, "test_sdpcompatibility": 139, "sdp": [139, 622, 655, 656, 693], "test_version": 139, "code_version": 139, "get_parameterlist": 139, "get_itemdefinitionlist": 139, "get_parameter_typ": 139, "get_itemdefinition_typ": 139, "get_parameter_subtyp": 139, "get_itemdefinition_subtyp": 139, "get_parameter_listl": 139, "get_itemdefinition_listl": 139, "get_parameter_type_with_subtyp": 139, "get_itemdefinition_type_with_subtyp": 139, "get_parameter_defaultvalu": 139, "get_parameterdefinition": 139, "get_itemdefinition": 139, "check_paramet": 139, "indicating": [139, 655], "missing": [139, 173, 211, 218, 643, 645, 646, 647, 649, 651, 652, 653, 655], "check_itemattribut": 139, "defined_in_fil": 139, "moddul": 140, "configfil": [140, 143, 144, 145], "utiliti": 141, "mainly": 141, "meant": 141, "utility": 141, "related": [141, 234, 257, 646, 650, 654], "tcp_serv": [141, 646], "udp_serv": 141, "project": [141, 182, 214, 215, 247, 258, 309, 345, 359, 361, 368, 520, 646], "duplicat": [141, 645, 648, 655], "primarily": 141, "ip_port_to_socket": 141, "endpoint": [141, 161, 162, 219, 337, 375, 655], "family_to_string": 141, "af_inet": 141, "af_inet6": 141, "ping": [141, 150, 337, 368, 646, 654, 662, 664], "icmp": 141, "reachabl": [141, 211, 212, 213, 337, 419, 420, 645, 653, 655], "ping_port": 141, "80": [141, 161, 169, 193, 194, 198, 200, 207, 211, 229, 249, 260, 261, 294, 297, 330, 334, 406, 407, 418, 419, 648], "reach": [141, 211], "send_wol": [141, 363], "wak": [141, 363, 531, 545, 552], "lan": [141, 178, 212, 213, 284, 305, 363, 381, 387, 478, 531, 545, 550, 552, 646, 649, 688], "packet": [141, 305, 363, 655, 666, 667, 670], "broadcast": [141, 247, 298, 450], "directed": 141, "pur": [141, 169], "separator": [141, 203, 352, 667, 682, 686], "validate_inet_addr": [141, 650], "resolv": [141, 643, 648, 652, 655], "resolved": 141, "ip_address": [141, 170], "clean_uri": 141, "uri": [141, 202, 216, 227, 314, 349, 409, 423, 646], "uris": [141, 423, 644], "embedded": [141, 160], "tld": [141, 161, 423], "autoconnecting": 141, "reconnecting": 141, "unmonitor": 141, "baseurl": 141, "hide_login": 141, "simplify": [141, 643, 650, 652, 653, 655], "especially": [141, 186, 298, 623, 641, 650], "talk": [141, 290], "everywh": [141, 646], "myserv": 141, "httpdigestauth": 141, "post_json": 141, "launch": [141, 227], "answ": [141, 142, 195, 198, 199, 202, 227, 315, 356, 357, 368, 646, 648], "query": [141, 169, 170, 186, 217, 219, 253, 273, 312, 344, 381, 382, 655], "ignor": [141, 186, 195, 645, 646, 653], "ssl": [141, 160, 176, 198, 227, 359, 388, 423, 445, 643, 649, 688], "verification": [141, 198, 216, 217], "signed": [141, 622, 651], "httpbasicauth": 141, "decoded": [141, 248, 646], "whatev": [141, 325], "occured": [141, 149], "get_json": 141, "get_text": 141, "figur": [141, 278, 650], "binary": [141, 185, 191, 201, 238, 264, 267, 278, 305, 368], "prefixed": 141, "get_binary": 141, "downloading": 141, "objector": 141, "response_status": 141, "statuscod": 141, "response_head": 141, "response_cooki": 141, "response_object": 141, "advanced": [141, 292, 328, 368, 655], "ussag": 141, "repons": 141, "underlying": [141, 160, 190, 227, 653, 663], "autoreconnect": [141, 169, 191, 201, 238, 264, 267, 318, 319, 645, 650, 651], "autoconnect": [141, 191, 201, 238, 264, 267, 650], "connect_retri": [141, 191, 201, 233, 238, 264, 267, 319], "connect_cycl": [141, 191, 201, 233, 238, 264, 267, 319], "retry_cycl": [141, 233], "retry_abort": 141, "abort_callback": 141, "terminator": [141, 191, 201, 238, 264, 267, 646], "rate_limit": 141, "max_rate_connect": 141, "structured": 141, "locally": [141, 338], "follows": [141, 160, 205, 278, 315], "connected_callback": 141, "tcp_client_instanc": 141, "receiving_callback": 141, "disconnected_callback": 141, "data_received_callback": 141, "v4": [141, 152, 545, 558, 617, 674, 675], "v6": [141, 152, 617], "copi": 141, "insid": [141, 162, 211, 650], "connecting": [141, 218, 227, 248, 258, 305], "switch": [141, 162, 170, 171, 176, 177, 199, 200, 205, 206, 210, 227, 247, 258, 278, 293, 315, 318, 346, 363, 371, 375, 449, 477, 489, 511, 518, 545, 548, 550, 561, 566, 642, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 663, 682, 691], "encoded": [141, 219, 240, 305, 425, 641, 646], "split": [141, 152, 288, 487, 655, 669], "set_callback": 141, "data_received": 141, "disconnected": [141, 646], "whenev": [141, 227, 231, 257, 301], "dropped": [141, 221, 235, 236, 653, 655], "prevented": [141, 186, 645, 650, 651, 670], "us": [141, 211, 251, 346, 359, 365], "launching": 141, "connectionclient": 141, "incoming": [141, 227, 256, 296, 315, 339, 340, 359, 616], "normally": [141, 205, 211, 278, 334], "fd": [141, 334], "gett": [141, 355], "will_clos": 141, "bytearray": 141, "send_echo_off": 141, "iac": 141, "ask": 141, "echo": [141, 162, 163, 164, 192, 256, 278, 334, 374, 375, 376, 545, 558, 644], "send_echo_on": 141, "dispatch": [141, 161, 623, 641], "possibly": [141, 623], "expect": [141, 355, 655], "incoming_connection": 141, "mode_text": 141, "mode_text_lin": 141, "mode_binary": 141, "mode_fixed_length": 141, "actually": 141, "remote_ip": 141, "remote_port": 141, "observ": 142, "celestial": 142, "pyeph": 142, "computation": 142, "bodi": 142, "seen": [142, 298, 651], "surfac": [142, 162], "zero": [142, 195, 263, 315, 646], "degre": [142, 262, 281, 361, 365, 580, 599, 636, 638, 669], "sea": [142, 262], "horizon": 142, "epoch": [142, 184, 268, 306, 307], "j2000": 142, "temp": [142, 170, 183, 189, 200, 207, 221, 222, 229, 262, 265, 288, 289, 293, 333, 334, 337, 338, 352, 368, 371, 398, 487, 573, 667, 686], "pressur": [142, 229, 262], "1010": 142, "mbar": [142, 262], "get_observer_and_orb": 142, "uniquely": 142, "dated": [142, 218], "moon": [142, 650, 665], "ruining": 142, "doff": 142, "moff": 142, "noon": 142, "pos": [142, 162, 200, 250, 282, 293, 453, 665], "calculat": [142, 148, 202, 247, 305, 653, 664], "shift": [142, 294, 305, 306, 307], "calculation": [142, 148, 200, 305, 643, 649, 650, 651, 652, 653, 654, 655], "forth": 142, "radian": [142, 580, 669], "calculated": [142, 148, 195, 240, 247, 262, 305, 519, 649, 652], "cent": [142, 279, 352], "centerpoint": 142, "considered": [142, 148, 217], "transit": [142, 516], "limb": 142, "wrapp": [143, 145, 632], "get_logic_paramet": 144, "get_loaded_plugin": 144, "get_loaded_plugin_instanc": 144, "confignam": 144, "pyobject": 144, "refcnt": 144, "unload_plugin": 144, "get_pluginthread": 144, "get_nam": 145, "get_ident": 145, "identifi": [145, 152, 155, 160, 162, 170, 198, 202, 227, 260, 304, 305, 352, 356, 357, 382, 383, 566, 622, 623, 653, 686], "get_implementation": 145, "follow": [146, 160, 199, 288, 335, 353], "get_loaded_sc": 146, "get_scene_action_nam": 146, "scenenam": 146, "get_scene_action": 146, "reload_sc": 146, "learned": [146, 646, 655], "return_scene_value_action": 146, "set_worker_warn_count": [147, 653], "get_worker_count": 147, "get_idle_worker_count": 147, "get_worker_nam": 147, "representing": 147, "activity": [147, 162, 195, 254, 368, 413, 422, 623, 652], "overrid": [147, 273, 274, 288, 646], "subclass": 147, "invok": [147, 186, 643], "callabl": 147, "sequential": 147, "respectively": 147, "from_smartplugin": 147, "certain": [147, 294, 688], "mad": [147, 278, 288, 623, 647, 649, 653, 668], "distinguish": [147, 652], "check_call": [147, 651], "stack": [147, 595], "combined": [147, 161, 646], "return_next": 147, "having": [147, 151, 278, 297, 368, 643, 645, 646, 649, 655], "sign": [147, 655], "varied": 147, "public_holidays": 148, "shinfo": 148, "set_tz": 148, "tzon": 148, "set_tzinfo": 148, "tzfil": 148, "tzlocal": 148, "replacement": [148, 151, 247, 646, 648, 653, 655], "tznam": [148, 599, 634], "tznamed": 148, "daylight": [148, 212, 419, 420, 649], "saving": [148, 646, 649], "dst": 148, "timedelta": [148, 288, 562], "runtime_as_dict": 148, "resulttyp": [148, 599, 634], "elapsed": [148, 250, 453], "ih": [148, 599, 634], "dhms": [148, 599, 634], "ds": [148, 599, 634], "time_until": [148, 599, 634], "elaps": 148, "time_diff": [148, 599, 634], "dt1": [148, 599, 634], "dt2": [148, 599, 634], "seconds_to_displaystring": 148, "sec": [148, 210, 262, 269, 308, 309, 419, 420, 500, 646, 649, 650], "display": [148, 162, 169, 202, 206, 227, 312, 319, 356, 357, 381, 612, 643, 644, 645, 646, 647, 648, 649, 651, 654, 655, 656, 670, 681], "to_second": [148, 655], "time_str": 148, "suppressed": 148, "trailed": 148, "45s": 148, "2h": [148, 152, 262], "7200": [148, 283, 284], "2h5m45s": 148, "datetime_transform": [148, 599, 634], "various": [148, 200, 643, 644, 654, 655], "date_transform": [148, 599, 634], "beginning_of_week": [148, 599, 634, 645, 646], "calend": 148, "negativ": [148, 189, 325, 330, 381, 575, 599, 634, 636, 643, 645, 646], "positiv": [148, 330, 365, 532, 575, 599, 634], "monday": [148, 645], "beginning_of_month": [148, 599, 634], "beginning_of_year": [148, 599, 634], "tomorrow": [148, 217, 311, 599, 634], "yesterday": [148, 599, 634], "current_year": [148, 599, 634], "current_month": [148, 599, 634], "current_monthnam": [148, 599, 634, 653], "monthnam": 148, "current_day": [148, 599, 634], "length_of_year": [148, 599, 634], "length_of_month": [148, 599, 634], "weekday": [148, 184, 268, 325, 365, 569, 592, 599, 634], "sunday": 148, "calendar_week": [148, 599, 634], "calendar": [148, 216, 217, 218, 219, 282, 359, 644, 653], "weekday_nam": [148, 599, 634], "add_custom_holiday": [148, 599, 634], "cust_dat": [148, 599, 634], "holiday": [148, 170, 176, 521], "add_custom_holiday_rang": [148, 599, 634], "from_dat": [148, 599, 634], "to_dat": [148, 599, 634], "holiday_nam": [148, 599, 634], "is_week": [148, 599, 634], "weekend": 148, "east": [148, 502], "is_holiday": [148, 599, 634], "concidered": [148, 150], "is_public_holiday": [148, 599, 634], "as_list": [148, 599, 634], "comma": [148, 160, 186, 195, 196, 274, 301, 356, 357], "delimited": 148, "holiday_list": [148, 599, 634], "sould": 148, "rtpye": 148, "public_holiday_list": [148, 599, 634], "convert_linenumb": 149, "occ": 149, "editing_is_enabled": 149, "get_commentedseq": 149, "commented": [149, 169], "sequenc": [149, 183, 248, 669], "get_emptynod": 149, "get_key": 149, "get_parent": 149, "setindict": 149, "datadict": 149, "writebacktofil": 149, "itempath": 149, "itemattr": 149, "yaml_dump_roundtrip": 149, "roundtripdump": 149, "linespacing": 149, "yaml_load": 149, "yaml_load_fromstring": 149, "yaml_load_roundtrip": 149, "editing": [149, 278, 649], "roundtrip": 149, "yaml_save_roundtrip": 149, "yamlfil": 149, "filename_writ": 149, "create_bak": 149, "getnod": 149, "leaf": [149, 643], "getnodetyp": 149, "getvalu": [149, 210], "getvaluetyp": 149, "valuetyp": 149, "setleafvalu": 149, "setvalu": [149, 330], "abs2rel": 150, "ah": [150, 235], "humidity": [150, 162, 170, 200, 221, 229, 261, 262, 291, 293, 337, 371, 382, 479], "cm3": 150, "percent": [150, 165, 234, 258, 259, 293, 365, 370, 439, 532], "dewpoint": [150, 337, 664], "rf": [150, 277, 337, 511, 655], "dt2js": [150, 649, 667], "dt2ts": [150, 649, 667], "fetch_url": [150, 216, 665], "warn_no_connect": 150, "errorit": 150, "rel2ab": [150, 667], "becaus": [151, 211, 218, 221, 240, 278, 280, 288, 294, 595, 642, 643, 644, 645, 646, 649, 650, 651, 652, 654, 655, 691], "shortcut": 151, "rendering": 151, "initialize_translation": 151, "base_dir": [151, 288, 646], "fallback_language_ord": 151, "fallback": [151, 160, 513, 655], "langaug": 151, "komma": [151, 169, 333, 381, 599, 634], "seperated": [151, 274, 356, 357, 648, 653], "set_default_languag": 151, "set_fallback_language_ord": 151, "language_ord": 151, "load_translation": 151, "translation_typ": 151, "translation_id": 151, "reload_translation": [151, 653], "module_translation": 151, "additional_translation": 151, "contail": 152, "check_hashed_password": 152, "pwd_to_check": 152, "hashed_pwd": 152, "plaintext": 152, "rejected": [152, 227, 652], "create_hash": 152, "sha512": 152, "lowercas": [152, 315, 650, 654], "lett": [152, 278], "execute_subprocess": 152, "commandlin": [152, 225, 646, 648], "subprocess": [152, 278, 598, 651], "get_all_addresses_for_addressfamily": 152, "af": [152, 185, 395], "270745": 152, "nics": 152, "274644": 152, "get_all_local_ipv4_address": 152, "get_all_local_ipv6_address": 152, "get_local_ipv4_address": [152, 649], "suitabl": 152, "thie": 152, "deterministically": 152, "get_local_ipv6_address": 152, "get_typ": 152, "is_float": 152, "is_hash": 152, "is_hostnam": 152, "is_int": 152, "is_ip": 152, "is_ipv4": 152, "is_ipv6": 152, "is_knx_groupaddress": [152, 653], "groupaddress": [152, 646, 653], "goup": 152, "bit": [152, 239, 249, 306, 307, 308, 309, 310, 368, 434, 452, 453, 461, 494, 517, 597, 643, 688], "middl": 152, "subgroup": 152, "recognized": [152, 160], "is_mac": 152, "is_timefram": 152, "timefram": [152, 186, 189, 317, 655], "30m": [152, 326, 332], "string_to_list": [152, 675], "gest": [152, 189, 262, 337], "unchanged": 152, "strip_quotes_fromlist": 152, "qout": 152, "squar": 152, "strip_square_bracket": 152, "bracket": 152, "ignored": [152, 185, 186, 195, 227, 274, 290, 294, 368, 395, 646, 650], "allowed": [152, 211, 253, 297, 301, 512, 653, 655], "parsed": [152, 258, 312], "throws": [152, 652], "cant": 152, "to_timefram": 152, "check_list": [152, 681], "versl": 152, "classmethod": 152, "operator": [152, 169, 655], "condition": [152, 162, 186, 262, 329, 361, 365, 368, 573, 645, 646, 647, 649, 652, 655], "ver": [152, 155, 282, 304, 356, 357], "to_list": 152, "rid": [152, 652], "to_string": 152, "get_python_version": 152, "running_virtual": [152, 652], "platz": [153, 682], "5d": [154, 612], "carefull": [154, 612], "nor": [154, 185, 205, 359, 395, 612, 643, 644, 645, 646, 649, 650, 651, 691], "apis": [154, 162, 215, 227, 262, 594, 612, 653, 671], "einzel": [154, 226, 496, 612], "authentifiziert": [154, 241, 612], "authentication_needed": [154, 612], "confic": [154, 612], "sched": [154, 612], "serverinfo": [154, 612], "mod_admin": [154, 612], "anford": [155, 304], "cmd": [155, 156, 203, 248, 303, 304, 356, 357], "sendert": [155, 304], "kommata": [155, 304, 314], "hauswirtschaft": [155, 304, 356, 357], "deckenlicht": [155, 160, 294, 295, 304, 356, 357, 591, 683], "waschmaschin": [155, 304, 356, 357, 682], "ma": [155, 187, 281, 304, 356, 357], "trockn": [155, 244, 304, 356, 357], "antwortet": [155, 304, 338], "wertepaar": [155, 304, 380], "37": [155, 275, 304, 325, 356, 357, 365, 682], "pong": [155, 304, 356, 357], "mittelwert": [155, 184, 187, 189, 262, 268, 304, 323, 443, 526, 573], "48": [155, 226, 262, 273, 279, 283, 304, 356, 357, 381, 612], "verteil": [155, 304, 356, 357, 682], "zaehl": [155, 192, 304, 356, 357], "wirkleist": [155, 304, 356, 357], "avg": [155, 186, 187, 189, 262, 287, 304, 317, 356, 357, 506, 573, 632], "48h": [155, 304, 356, 357], "sum": [155, 186, 187, 235, 262, 304, 356, 357, 398, 506, 573, 632, 646, 671], "1460636598495": [155, 304, 356, 357], "1831": [155, 304, 356, 357], "97": [155, 304, 356, 357, 645], "1460637648422": [155, 304, 356, 357], "1458": [155, 304, 356, 357], "1460639298307": [155, 304, 356, 357], "757": [155, 304, 356, 357], "1460641098243": [155, 304, 356, 357], "577": [155, 304, 356, 357], "total": [155, 219, 234, 235, 284, 304, 305, 306, 307, 356, 357, 370, 521, 645, 652], "1460802051217": [155, 304, 356, 357], "61": [155, 160, 200, 254, 255, 304, 356, 357], "1460803884973": [155, 304, 356, 357], "637": [155, 304, 356, 357], "1460805521319": [155, 304, 356, 357], "744": [155, 304, 356, 357], "41": [155, 200, 210, 304, 356, 357, 381, 568, 570, 629], "1460807229532": [155, 304, 356, 357], "718": [155, 304, 356, 357], "1460808823757": [155, 304, 356, 357], "681": [155, 304, 356, 357], "1460809294663": [155, 304, 356, 357], "1728000": [155, 304, 356, 357], "16t21": [155, 304, 356, 357], "8227": [155, 304, 356, 357], "1460810141323": [155, 304, 356, 357], "711": [155, 219, 304, 356, 357], "1460811024119": [155, 304, 356, 357], "aboniert": [155, 304, 595], "websockethandl": [155, 304, 356, 357], "16t15": [155, 304, 356, 357], "53": [155, 304, 356, 357, 360, 599, 636, 682], "354815": [155, 304, 356, 357], "sonos": [155, 304, 356, 357, 545, 548, 642, 643, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 674], "sonos_bo": [155, 304, 356, 357], "sonos_uid": [155, 304, 314, 356, 357], "rincon_b8e93792d35401400": [155, 304, 356, 357], "myradio": [155, 304, 356, 357], "980100": [155, 304, 356, 357], "mondaufgang": [155, 262, 304, 356, 357, 580, 599, 636], "76": [155, 304, 356, 357], "monduntergang": [155, 262, 304, 356, 357, 580, 599, 636], "285": [155, 304, 356, 357], "mysunmoon": [155, 304, 356, 357], "678330": [155, 304, 356, 357], "182": [155, 304, 356, 357], "12900": [155, 304, 356, 357], "006478": [155, 304, 356, 357], "mlgw": [155, 304, 356, 357, 545, 548, 646], "ml": [155, 304, 310, 356, 357], "22804066": [155, 304, 356, 357], "869275": [155, 304, 356, 357], "14t21": [155, 304, 356, 357], "248227": [155, 304, 356, 357], "bver": [155, 304, 356, 357], "113": [155, 198], "hauptseit": [156, 250, 303], "gesamtsystem": 159, "benutzerdokumentation": 159, "selt": [159, 187, 514], "stetig": 159, "skill": [160, 163], "amazon": [160, 163, 164, 374, 375, 376, 395, 545, 548, 558, 617, 644, 670], "voic": [160, 162], "directiv": [160, 162, 163, 353], "turnon": [160, 162, 360], "dim": [160, 193, 199, 200, 211, 654], "light": [160, 162, 179, 180, 185, 193, 200, 212, 213, 229, 232, 245, 247, 248, 266, 282, 315, 352, 355, 360, 419, 420, 448, 451, 562, 565, 590, 591, 648, 650, 653, 655, 665, 686], "understanding": 160, "shipped": [160, 234], "aws_lambda": 160, "forwarding": [160, 368], "fiv": 160, "steps": [160, 211, 254, 278, 667], "developing": [160, 218], "seamlessly": 160, "eu": [160, 210], "environmental": [160, 655], "strongly": 160, "recommended": [160, 205, 245, 247, 335, 361, 645], "proxy": [160, 161, 162, 441, 652, 688], "enforc": 160, "nginx": [160, 652], "lightweight": [160, 161], "service_host": 160, "service_port": [160, 162, 617], "9000": [160, 161, 162, 231, 238, 248, 319, 374, 375, 433, 441, 451, 507, 617], "exactly": 160, "turnoff": [160, 162, 360], "settargettemperatur": [160, 349], "incrementtargettemperatur": 160, "decrementtargettemperatur": 160, "setpercentag": [160, 162], "incrementpercentag": 160, "decrementpercentag": 160, "spac": [160, 643, 648, 655], "separated": [160, 185, 231, 650, 653], "diningroomlamp": 160, "alexa_nam": [160, 162, 164, 360], "diningroom": [160, 185], "alexa_action": [160, 162, 164, 360], "friendly": [160, 371, 511], "reus": 160, "item_only_on": 160, "item_only_off": 160, "deduced": 160, "explicitly": [160, 654], "alexa_devic": [160, 162], "applianceid": 160, "demand": [160, 189, 298], "alexa_description": [160, 162, 164], "pompous": 160, "dining": [160, 222, 427], "west": [160, 162, 325, 328, 502], "wing": 160, "applianc": [160, 162, 177, 208, 416], "categori": [160, 162], "paragraph": 160, "alexa_typ": 160, "scene_trigg": [160, 162], "activity_trigg": [160, 162], "furthermor": [160, 342, 356, 357], "appear": [160, 211, 352, 655], "spec": 160, "basics": [160, 278], "friendlydescription": 160, "exceed": 160, "friendlynam": [160, 170, 384], "interact": [160, 646, 659], "goal": [160, 258], "natural": 160, "guidelin": 160, "similar": [160, 175, 334, 646], "offered": [160, 183, 231, 240, 301, 305, 312], "preposition": 160, "punctuation": 160, "cozy": 160, "alexa_alias": 160, "clutt": 160, "shouldn": 160, "assign": [160, 305, 352, 645], "assigned": [160, 227, 262, 288, 305, 655, 670], "chandeli": 160, "defining": [160, 227, 352, 653, 655], "alexa_item_turn_on": [160, 162], "alexa_item_turn_off": 160, "combin": 160, "limiting": 160, "specifying": [160, 186, 227, 670], "percentag": [160, 162, 186, 218, 317, 356, 357], "alexa_item_rang": [160, 162], "explicit": [160, 368, 655], "dimming": [160, 651], "generally": [160, 199, 202], "dealing": 160, "the_light": 160, "centrally": [160, 262], "though": [160, 643, 645, 646], "livingroom_lamps": 160, "livingroom": [160, 278, 369], "couch": 160, "lamps": [160, 211, 247, 294, 295, 342], "ew": 160, "gemuet": 160, "ew_scene_gemuet": 160, "gemut": 160, "ess": [160, 162, 682], "ew_scene_ess": 160, "ew_scene_tv": 160, "fernseh": [160, 641], "ew_light_couch": 160, "sofa": 160, "wohnzimm": [160, 162, 163, 166, 194, 285, 287, 314, 338, 339, 340, 562, 682, 683], "deckenlamp": 160, "couch_fen": 160, "ew_light_couch_fen": 160, "nord": [160, 189, 325, 338], "fensterlaib": 160, "couch_stehlamp": 160, "ew_light_couch_stehlamp": 160, "stehlamp": [160, 683], "stehleucht": 160, "couch_regal": 160, "ew_light_couch_regal": 160, "regal": 160, "ew_light_mitt": 160, "esstisch": [160, 162], "ew_light_esst": 160, "esszimm": [160, 338], "esstischlamp": 160, "esstisch_fen": 160, "ew_light_esstisch_fen": 160, "sud": [160, 325, 502], "71": [160, 249], "70": [160, 334, 569, 592, 622, 638, 642], "esstisch_stehlamp": 160, "ew_light_esstisch_stehlamp": 160, "kuech": [160, 162, 219, 250, 275, 276, 314], "ew_light_kuech": 160, "kuch": [160, 162, 163, 164, 250, 275, 316, 682, 683], "arbeitsplatt": 160, "ew_light_kueche_arbeitsplatt": 160, "ew_temp": 160, "fussbodenheiz": 160, "specifically": 160, "443": [161, 162, 688], "tedious": 161, "termination": [161, 649, 655], "letting": 161, "including": [161, 186, 195, 221, 227, 248, 251, 253, 273, 305, 644, 646, 648, 655], "integration": [161, 162, 173, 176, 186, 200, 219, 227, 255, 275, 282, 353, 386, 429, 443, 482, 506, 529, 545, 548, 550, 554, 558, 641, 643, 655, 670, 671], "letsencrypt": [161, 688], "widely": 161, "perfectly": 161, "saf": [161, 660], "footprint": [161, 663], "worker_process": 161, "worker_connection": 161, "768": [161, 219], "multi_accept": 161, "sendfil": [161, 688], "tcp_nopush": [161, 688], "tcp_nodelay": [161, 688], "keepalive_timeout": [161, 688], "65": [161, 162, 247, 254, 255, 443, 638, 688], "types_hash_max_siz": [161, 688], "server_tok": [161, 688], "server_names_hash_bucket_siz": 161, "server_name_in_redirect": 161, "mim": 161, "default_typ": [161, 688], "octet": 161, "ssl_protocol": 161, "tlsv1": [161, 162], "dropping": 161, "sslv3": 161, "poodl": 161, "ssl_prefer_server_ciph": [161, 688], "access_log": 161, "error_log": 161, "gzip": 161, "gzip_disabl": 161, "msie6": 161, "gzip_vary": 161, "gzip_proxied": 161, "gzip_comp_level": 161, "gzip_buff": 161, "8k": [161, 328], "gzip_http_version": 161, "gzip_typ": 161, "plain": [161, 646, 655, 688], "rss": [161, 646], "shizzl": 161, "ssl_certificat": [161, 688], "dyndn": [161, 688], "fullchain": [161, 688], "ssl_certificate_key": [161, 688], "privkey": [161, 688], "ssl_stapling": 161, "ssl_stapling_verify": 161, "known": [161, 183, 186, 305, 306, 307, 646, 653, 656, 688], "renewal": [161, 649], "default_serv": [161, 688], "requested": [161, 202, 356, 357, 643, 649], "301": [161, 643, 688], "request_uri": [161, 688], "auth_basic_user_fil": [161, 688], "htpasswd": [161, 688], "add_head": [161, 688], "31536000": [161, 688], "includesubdomain": [161, 688], "server_nam": [161, 688], "proxy_pass": [161, 688], "proxy_set_head": [161, 688], "remote_addr": [161, 688], "forwarded": [161, 688], "proxy_add_x_forwarded_for": [161, 688], "symlink": [161, 192, 193, 194], "doctyp": 161, "ul": [161, 170], "certbot": [161, 688], "eff": 161, "certonly": [161, 688], "webroot": [161, 688], "serverfault": 161, "768509": 161, "784940": 161, "alexa4payloadv3": 162, "gewohnt": [162, 243, 263, 326], "weiterverarbeit": [162, 192], "ledig": [162, 219, 220, 237, 244, 313, 330, 331, 332, 359], "holl": 162, "deaktiviertwerd": 162, "discov": [162, 292, 314, 651], "payloadv2": 162, "payloadv3": 162, "schreibung": 162, "schuma": [162, 219, 545, 554, 558], "wertander": [162, 325, 326, 332, 360, 562, 567, 568, 570, 575, 576, 577, 591], "ubegeb": 162, "pr": [162, 210, 646, 650, 651, 652, 653, 654], "332": 162, "bux": 162, "utteranc": 162, "292": 162, "lautet": [162, 219, 262, 597], "authentifizierungsdat": 162, "credential": [162, 219, 234, 254, 282, 436, 652], "umbenn": 162, "beta": [162, 227, 479], "fertiggestellt": 162, "kameras": [162, 163], "doorlockcontroll": 162, "reportlockstat": 162, "pdf": [162, 163, 170, 183, 195, 262, 281, 334], "testfunktion": [162, 163, 164], "upload": [162, 195, 227, 232, 368, 646, 653], "fehlerhaft": [162, 232, 260, 306, 307, 376, 382, 384, 385, 387, 389, 399, 400, 408, 411, 416, 420, 422, 424, 428, 434, 435, 437, 438, 441, 447, 449, 464, 465, 467, 475, 478, 480, 482, 483, 484, 485, 488, 489, 491, 501, 503, 505, 513, 514, 515, 518, 521, 526, 527, 532, 537, 538, 591, 652], "controll": [162, 218, 235, 240, 247, 258, 288, 290, 345, 346, 486, 487, 488, 518, 545, 550, 612, 652, 666], "mitkomm": 162, "aws": [162, 163], "alexa_v3_plugin": [162, 163], "Vielen": [162, 219], "alexa_icon": [162, 164], "watch": [162, 198, 288, 674], "netflix": 162, "pow": [162, 169, 170, 173, 176, 198, 200, 201, 205, 211, 229, 230, 234, 235, 236, 237, 258, 259, 265, 278, 291, 293, 300, 305, 306, 307, 319, 337, 341, 359, 369, 370, 378, 381, 382, 383, 406, 420, 465, 521, 535, 645, 646, 655], "hdmi1": 162, "camera": [162, 227, 248, 274], "video": [162, 198, 219, 227, 248], "photo": [162, 338], "mobil": [162, 170, 218, 359, 471, 662, 663, 665, 671], "contact_sensor": 162, "detect": [162, 195, 646, 653], "contact": [162, 170, 200, 251, 337, 368], "door": [162, 168, 200, 227, 257, 269, 274, 288, 293, 296, 592, 646], "doorbell": 162, "exterior_blind": 162, "covering": 162, "fan": 162, "game_consol": 162, "gam": [162, 169], "microsoft": [162, 205], "xbox": [162, 205], "nintendo": 162, "garage_door": 162, "garag": [162, 269, 296, 592], "modecontroll": 162, "interior_blind": 162, "laptop": [162, 599], "fixtur": 162, "microwav": 162, "oven": 162, "mobile_phon": 162, "phon": [162, 219, 227, 359, 642, 665], "motion_sensor": 162, "movement": [162, 200, 337, 573], "area": [162, 170, 262, 352, 367, 382, 533, 660, 686, 688], "music_syst": 162, "music": [162, 164, 248, 250, 314, 370, 453, 507, 545, 548, 617, 666], "network_hardwar": 162, "belong": [162, 288], "cooking": 162, "landlin": 162, "bedtim": 162, "thermostat": [162, 170], "screen": [162, 326, 645, 651, 671], "projector": [162, 230, 655], "security_panel": 162, "panel": [162, 183, 195, 196, 403, 646], "smartlock": [162, 257], "smartplug": 162, "plugged": 162, "electrical": 162, "outlet": 162, "plug": [162, 278, 292, 293, 649, 669], "variety": 162, "speak": [162, 164, 169, 227, 248, 275, 276, 314, 315, 504, 647, 648, 649, 651, 652, 653, 655], "streaming_devic": 162, "streaming": [162, 381], "appl": [162, 166, 184, 268, 378, 545, 550], "chromecast": 162, "roku": 162, "wired": 162, "tablet": [162, 646], "temperature_sensor": [162, 170, 200], "alon": [162, 165], "air": [162, 247, 262, 334, 509, 545, 550], "heat": [162, 183, 288, 341, 375, 651], "direct": [162, 169, 183, 205, 368, 646, 655], "television": 162, "wearabl": 162, "fitbit": 162, "samsung": [162, 301, 310, 495, 545, 550, 666], "gear": 162, "alexa_retrievabl": 162, "traffic": [162, 227, 248, 545, 558, 670], "flur": [162, 247, 294, 295, 682], "flur_obeschoss": 162, "spot": [162, 163, 164, 254, 255, 281], "licht_flur_og": 162, "107": [162, 187, 247, 312, 313], "adjustbrightness": 162, "setbrightness": 162, "trepp": 162, "p3_action": 162, "selbstregistrier": 162, "action_nam": [162, 330, 642], "directive_typ": 162, "response_typ": 162, "namespac": [162, 649, 652], "capabilti": 162, "theromcontroll": 162, "targettemperatur": [162, 244], "reportstat": 162, "solltemperatur": [162, 434, 622], "alexa_thermo_conf": 162, "cool": [162, 273], "eco": [162, 177, 265, 282, 283, 375, 465], "comfort": [162, 183, 265, 465, 487, 521, 545, 548], "economy": 162, "protection": [162, 652, 688], "theromstatconroll": 162, "schemas": [162, 170], "temperatursensor": [162, 170, 337, 483, 545, 548], "temperartursensor": 162, "thermostatconroll": 162, "reporttemperatur": 162, "erhoh": [162, 163, 169, 378, 682], "zweiundzwanz": 162, "setthermostatmod": 162, "heiz": [162, 289, 487, 622, 682], "cat_seperator": [162, 352, 496, 523, 686], "raumtemperatur": [162, 203, 207, 285, 289, 338, 526, 682], "thermo_kuech": 162, "sollbasis": 162, "mdt": [162, 339, 340], "glastron": 162, "parametrier": [162, 265], "plan": [162, 208], "actor_stat": 162, "ausgeschalt": 162, "105": [162, 164, 187, 198, 312, 313], "funfzig": 162, "licht_esst": 162, "energi": [162, 170, 192, 502], "achtzig": 162, "angesagt": [162, 189], "funktionsweis": [162, 262, 331, 347], "setpowerlevel": 162, "adjustpowerlevel": 162, "prozentwert": [162, 330], "eignet": [162, 329], "umsetz": [162, 170, 219, 237, 262, 382], "adjustpercentag": 162, "EIN": [162, 219], "zugefahr": 162, "AUS": [162, 219, 338], "aufgefahr": 162, "Zwar": 162, "rolllad": [162, 338], "rolladen_buero": 162, "mov": [162, 200, 318, 646, 649, 653, 655], "behob": [162, 249, 270, 271, 338], "unlock": [162, 257, 315], "tur": [162, 338, 380], "ruckmeldewert": [162, 169], "locked": [162, 257, 274, 331, 650], "ruckmeldng": 162, "unlocked": [162, 257], "haustur": 162, "sprachsteuer": [162, 316], "freigegeb": [162, 200, 688], "pin": [162, 204, 278, 297, 412, 476, 653], "vorgab": [162, 243, 329, 349, 412, 446, 463, 487, 592], "entsperr": [162, 324], "sperr": [162, 289, 324, 328, 329, 398, 487], "kanal": [162, 164, 167, 261, 379, 402, 417, 450, 491], "rucksetz": [162, 219], "aktorkanal": 162, "haustu": 162, "testzimm": [162, 164], "reportlockstatelexa_action": 162, "kanel": 162, "treppenlicht": 162, "selbststand": [162, 309], "cameracontroll": 162, "cameras": 162, "entwickelt": [162, 219, 223, 508, 560, 652, 653, 654, 655, 656], "einzubind": [162, 191, 201, 243, 264, 267, 333, 533, 536], "alexacamproxy4p3": 162, "doorcam": [162, 248], "hausturkamera": 162, "initializecamerastream": 162, "view0": [162, 338], "alexa_auth_cred": 162, "1920": 162, "1080": 162, "h264": 162, "audiocodecs": 162, "g711": 162, "alexa_stream_2": [162, 375], "aac": [162, 314], "alexa_stream_3": [162, 375], "alexatestcam": 162, "ddns": 162, "alexa_stream_x": 162, "untersutzt": [162, 693], "mpeg2": 162, "mjpeg": 162, "scene_komm": 162, "szene_komm": 162, "kuchenfen": 162, "reportcontactstat": 162, "kuechenfen": 162, "setcolor": 162, "alexa_color_value_typ": 162, "7138": 162, "6524": 162, "farbwechsel": 162, "beibehalt": [162, 325, 401, 446, 463, 490, 688], "r_wert": 162, "g_wert": 162, "b_wert": 162, "lampe_speich": 162, "dali_rgb_speich": 162, "farbwert_rgb": 162, "setrangevalu": 162, "adjustrangevalu": 162, "alexa_range_delta": 162, "einstellbar": [162, 347], "kelvin": [162, 170, 262, 337], "weissbereich": 162, "abdeck": [162, 306, 307], "weisswert": 162, "maximumwert": [162, 485], "setcolortemperatur": 162, "increasecolortemperatur": 162, "decreasecolortemperatur": 162, "warmweiss": 162, "kaltweiss": 162, "000": [162, 253, 337], "3000": [162, 192], "6500": [162, 269], "fahrend": 162, "angehalt": 162, "entfremded": 162, "stopbefehl": 162, "fastforward": 162, "rewind": [162, 198, 205, 248], "startov": 162, "zusammenfass": [162, 163, 328], "auswewahlt": [162, 163], "kommunikationsprotokoll": [162, 163, 552, 553], "endpunkt": [162, 163, 222, 460], "duch": [162, 163], "konnn": [162, 163], "interaktiv": [162, 163], "cut": [162, 163], "siebzig": 162, "zweckentfremdet": 162, "zuruckzusetz": [162, 283], "positionier": 162, "alexa_proactivelyreported": 162, "alexarc4shng": [162, 219, 545, 558, 644, 645, 646, 647, 654, 655], "sprachbefehl": [162, 316], "geschalt": [162, 338, 381], "raumabhang": 162, "pauschal": 162, "licht_pauschal": 162, "last_alexa": 162, "myalexa": 162, "get_last_alexa": 162, "triggeredit": [162, 219], "triggervalu": [162, 219, 589], "showkuech": 162, "spots_sued": 162, "spots_nord": 162, "verfugt": [163, 170, 179, 184, 187, 192, 200, 210, 212, 213, 220, 242, 243, 252, 255, 263, 265, 266, 268, 277, 289, 302, 311, 348, 357, 360, 366, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "beleucht": [163, 316, 682, 683], "kuchenlicht": 163, "farb": [163, 219, 220, 247, 263, 407, 419, 491], "hsv": [163, 170, 375, 382], "rosa": 163, "firetv": 163, "turkamera": 163, "kamera": [163, 338, 375], "fernzusteu": [164, 518, 545, 550], "tunein": [164, 314], "radio": [164, 200, 248, 290, 314, 318, 370, 381, 507, 536, 655], "text2speech": [164, 219, 376], "sitzung": 164, "base64": [164, 219, 376, 425], "gangig": 164, "webkonsol": 164, "exporti": [164, 187], "marki": 164, "textfeld": 164, "anzumeld": [164, 418], "login_update_cycl": 164, "zyklus": [164, 212, 299, 300, 313, 314, 377, 382, 389, 418, 437, 438, 452, 484, 494, 509, 533, 594], "nutzernam": [164, 218, 382, 383, 406, 518], "kodiert": [164, 376, 445], "b64encod": [164, 376], "gmail": [164, 241, 376, 672], "your_pwd": [164, 376], "cookiefil": 164, "item_2_enable_alexa_rc": 164, "alexa_credential": 164, "pwd": [164, 244, 375], "432000": [164, 376], "mfa_secret": 164, "mfa": [164, 376], "secret": [164, 168, 208, 215, 241, 244, 362, 376, 416, 422, 447], "scannt": 164, "alexa_cmd_01": 164, "befehlsnumm": 164, "fortlauf": 164, "comparison": [164, 646, 655], "echodevic": 164, "value_to_s": 164, "echodotkuech": 164, "starttuneinstation": 164, "s96141": 164, "geratenam": [164, 170, 371, 375], "guideid": 164, "stationsnam": 164, "fm": [164, 210], "station": [164, 169, 218, 227, 229, 260, 318, 336, 365, 370, 460, 545, 558, 646, 649, 655], "greif": [164, 328, 597], "tuneinstation": 164, "basier": [164, 189, 261, 262, 338, 383, 394, 431, 456, 468, 545, 550, 558, 599, 636, 641, 655, 671], "elementpfad": 164, "buro": [164, 591, 682], "alexa_cmd_02": 164, "hallo": [164, 256], "alexa_cmd_03": 164, "alexa_cmd_04": 164, "listeninformation": 164, "shopping": [164, 273, 376], "mylist": 164, "get_list": 164, "to_do": [164, 376], "completed": [164, 227, 645, 646, 653, 655], "control_clear": 164, "control_hom": 164, "fromtimestamp": [164, 184, 253, 262, 268], "updateddatetim": 164, "alexa_list": 164, "shopping_list": [164, 376], "jquery_shop": 164, "activelist": [164, 178, 262], "mvalu": [164, 243, 263, 575, 577], "nvalu": 164, "inserted": [164, 186, 353], "serialnumb": [164, 227, 300], "serialno": [164, 165], "familiy": 164, "devicetyp": [164, 210], "deviceownercustomerid": 164, "ownerid": 164, "kennzuzeichn": 164, "debugg": [164, 339, 340, 489, 508], "f12": 164, "netzwerkverkehr": 164, "beweg": [164, 200, 337, 421], "kenn": [164, 260, 460, 574], "herausfind": 164, "netzwerkbefehl": 164, "formulardat": 164, "customerid": 164, "deviceownercustomeridcustomerid": 164, "zugangsdat": [164, 219, 376, 425, 447], "echt": [164, 306, 307, 396], "selektiert": [164, 416, 419, 420, 479], "medium": [164, 183, 378], "sprachausgab": 164, "speech": [164, 314, 545, 558, 643, 646, 649], "synthesis": 164, "volumeadj": 164, "regelt": [164, 528], "lautstark": [164, 169, 192, 319, 367, 369, 370, 378, 381, 453, 475, 488, 507, 536], "medi": 164, "volumeset": 164, "testwert": 164, "einzubett": 164, "whispered": 164, "human": [164, 262], "believ": 164, "speechcon": 164, "say": [164, 288, 315, 653], "interjection": 164, "ach": 164, "lieb": 164, "alex": [164, 545, 550], "loetzimm": 164, "ingo": 164, "michael": [164, 182, 545, 550, 552], "openhab2": 164, "jonof": 164, "edomi": 164, "prim": 164, "produkt": [164, 179], "unternehm": [164, 224], "inhab": 164, "apcupsd": 165, "netserv": 165, "nis": 165, "laufzeitdat": 165, "apcaccess": [165, 377], "nisport": 165, "3551": [165, 377], "nisip": 165, "apc": [165, 377, 545, 550], "ups": [165, 259, 377, 545, 550, 649], "smartups": [165, 377, 545, 550], "statusabruf": 165, "statusnam": [165, 328, 377], "Dem": [165, 629], "050": 165, "1127": 165, "2017": [165, 182, 247, 274, 312, 313, 360, 413, 640], "59": [165, 187, 219, 325, 569, 592, 652], "0100": [165, 306, 307], "march": [165, 653], "2014": [165, 273, 341], "upsnam": 165, "ups_id": 165, "cabl": [165, 278], "ethernet": [165, 290, 649, 653, 655], "pcnet": 165, "upsmod": 165, "starttim": [165, 284, 422, 650, 652], "1400": 165, "linev": 165, "227": [165, 187], "volt": [165, 219, 337, 436], "loadpct": 165, "bcharg": 165, "timeleft": 165, "mbattchg": 165, "mintimel": 165, "maxtim": 165, "maxlinev": 165, "minlinev": 165, "226": 165, "outputv": 165, "dwak": 165, "dshutd": 165, "dlowbatt": 165, "lotran": 165, "hitran": 165, "253": 165, "retpct": 165, "itemp": 165, "alarmdel": 165, "battery": [165, 170, 229, 235, 245, 254, 255, 258, 259, 284, 291, 293, 359, 367, 371, 448, 458, 479, 533], "battv": 165, "linefreq": 165, "hz": [165, 235], "lastxf": 165, "voltag": [165, 170, 200, 234, 235, 258, 261, 281, 293, 337, 382, 383, 480, 646], "notch": 165, "spik": 165, "numxf": 165, "tonbatt": 165, "cumonbatt": 165, "xoffbatt": 165, "selft": 165, "stesti": 165, "336": 165, "statflag": 165, "0x05000008": 165, "reg1": 165, "0x00": [165, 200], "reg2": 165, "reg3": 165, "mandat": 165, "gs0034003173": 165, "battdat": 165, "06": [165, 234, 273, 294, 295, 328, 360, 363, 436, 545, 550, 569, 585, 592], "nomoutv": 165, "nombattv": 165, "extbatt": 165, "firmwar": [165, 170, 177, 207, 212, 218, 219, 227, 234, 235, 245, 248, 283, 312, 313, 448, 503, 511, 533, 537, 545, 548, 550, 645, 646, 650, 652, 653], "162": [165, 210], "typumwandl": 165, "abgeschnitt": 165, "235": 165, "serverroom": 165, "onbatt": 165, "simply": [165, 352, 355, 629], "revisionsstand": 165, "usv": [165, 259, 459], "eeprom": [165, 261], "direktiv": 165, "erstellungsdatum": 165, "kabel": 165, "upscabl": 165, "netzspann": 165, "geschatzt": 165, "prozentsatz": 165, "lastkapazitat": 165, "prozentual": [165, 207], "ladung": [165, 420], "batteri": [165, 170, 219, 257, 389, 420, 479, 481, 545, 550, 655], "restlaufzeit": [165, 207], "batterielad": 165, "fallt": [165, 599, 634], "batterylevel": [165, 244], "fahrt": [165, 328, 481], "herunt": [165, 187, 328, 628], "verbleib": [165, 170, 325, 331], "unterschreitet": [165, 189, 574, 577], "akkulaufzeit": 165, "uberschreitet": [165, 574], "zuruckgemeldet": 165, "spannung": [165, 170, 178, 192, 200, 207, 219, 229, 261, 306, 307, 337, 436, 461], "empfindlichkeitsgrad": 165, "schwankung": 165, "wartet": [165, 233, 505], "stromversorg": 165, "stromausfall": [165, 260], "wiederherstellt": 165, "ausschaltbefehl": 165, "einhalt": 165, "ausschaltet": 165, "unterschreit": [165, 328, 574, 577], "erzwingt": 165, "notabschalt": 165, "umschaltet": 165, "geliefert": [165, 192, 232, 293, 331, 337, 462, 530, 599, 634], "verzogerungszeit": [165, 326, 332], "batteriespann": [165, 337], "netzfrequenz": 165, "hertz": 165, "xonbatt": 165, "kumulativ": 165, "selbstt": 165, "bt": [165, 281, 297, 480], "unzureich": 165, "batteriekapazitat": 165, "fehlgeschlag": [165, 381, 641, 674], "uberlast": 165, "statusflagg": 165, "dipsw": 165, "dip": 165, "usvs": 165, "fehlerregist": 165, "hergestellt": [165, 212, 213, 289, 314, 363], "seriennumm": [165, 192, 299, 306, 307, 419, 420, 493, 537], "battdatum": 165, "ausgetauscht": [165, 622], "ausgangsspann": 165, "nominv": 165, "eingangsspann": 165, "nennspann": 165, "nompow": 165, "feuchtig": [165, 170, 261, 337, 461, 599], "gemess": [165, 289, 337, 632], "ambtemp": 165, "umgebungstemperatur": 165, "badbatt": 165, "defekt": [165, 414, 460], "akkus": [165, 219], "revisionsnumm": 165, "apcmodel": 165, "modellidentifikationscod": 165, "tvs": [166, 248, 266, 466, 495, 545, 550, 552], "pyatv": [166, 655], "pierr": 166, "st\u00e5hl": 166, "login_id": 166, "00000000": [166, 192, 200], "0580": 166, "3568": 166, "6c73": 166, "86bd9b834320": 166, "scan_timeout": 166, "einschaltzustand": 166, "playing": [166, 275, 318], "gespielt": [166, 314, 319, 453], "artist": [166, 250, 314, 370, 453, 674], "album": [166, 250, 318, 319, 370, 378, 453, 507, 674], "abspielmodus": [166, 314], "fernbedienungsfunktion": 166, "rol": [166, 253, 288, 294, 314], "collapsibl": [166, 253, 294, 314], "mini": [166, 253, 294, 314, 669], "collapsed": [166, 253, 294, 314], "h3": [166, 253, 294], "atv": [166, 378], "media_type_text": 166, "play_state_text": 166, "stateswitch": [166, 288, 294, 646, 682, 683], "rc_top_menu": [166, 378], "jquery_hom": 166, "rc_menu": [166, 378], "control_return": 166, "rc_up": [166, 378], "control_arrow_up": 166, "shuffl": [166, 314, 378, 643, 646], "audio_shuffl": 166, "audio_repeat": 166, "audio_repeat_song": 166, "icon0": [166, 294, 682], "icon1": [166, 288, 682], "rc_left": [166, 378], "control_arrow_left": 166, "rc_select": [166, 378], "control_ok": 166, "rc_right": [166, 378], "control_arrow_right": 166, "rc_down": [166, 378], "control_arrow_down": 166, "colspan": [166, 294], "genr": [166, 169, 319, 378], "slid": [166, 195], "position_percent": 166, "horizontal": [166, 227, 288], "controlgroup": [166, 288], "rc_previous": [166, 378], "audio_rew": 166, "rc_play": [166, 378], "audio_play": [166, 294], "rc_paus": [166, 378], "audio_paus": 166, "rc_next": [166, 378], "audio_ff": 166, "artwork_url": 166, "var1": [166, 347], "gekoppelt": [166, 554, 555], "abspielposition": [166, 378], "kunstl": [166, 378, 381, 453], "versteht": 167, "ola": 167, "radig": 167, "heranzuzieh": [167, 228], "artnet1": 167, "artnet_univers": 167, "artnet_net": 167, "artnet_subnet": 167, "6454": [167, 379], "update_cycl": [167, 192, 207, 235, 236, 297, 334], "kell": [167, 211], "lightbar": 167, "artnet_address": 167, "green": [167, 198, 200, 247, 248, 282], "blue": [167, 198, 200, 247, 248], "universum": 167, "dmx_chan": 167, "dmx_valu": 167, "dmx_value_list": 167, "33": [167, 292, 293, 638], "44": [167, 169, 221, 301, 381], "geschickt": [167, 168, 181, 256, 316, 338, 339, 340, 381, 393, 522, 652, 653, 655, 656], "aquivalent": [167, 263, 454, 463, 576], "itempfad": [167, 333, 398, 574, 575], "itemtyp": [167, 200, 255, 263, 347], "itemaktualisier": 167, "itemander": [167, 188, 243, 263], "telefonanlag": [168, 380, 545, 550], "vorausgesetzt": 168, "manag": [168, 688], "ami": 168, "funktionell": 168, "cdr": 168, "orginat": 168, "telefon": [168, 170, 382], "anruf": [168, 170, 380, 382], "sip": [168, 227, 380, 429, 545, 550], "geratebenenn": 168, "device22": 168, "databank": 168, "logic1": [168, 232], "ast_userevent": 168, "logic2": [168, 232], "_x": [168, 330], "userevent": 168, "jedesmal": [168, 508], "offic": [168, 180, 360, 599], "ast": 168, "extention": 168, "dnd": [168, 367], "mbc": 168, "wertetupel": 168, "old_messag": 168, "new_messag": 168, "rs232": [169, 183, 191, 201, 248, 264, 267, 281, 381, 403, 545, 550], "vielzahl": [169, 170, 189, 191, 267, 373, 381], "pione": [169, 381, 545, 550, 655, 671], "denon": [169, 264, 381, 545, 550, 655, 671], "epson": [169, 381, 545, 550, 655], "projektor": [169, 201, 230, 381, 432, 545, 550], "2010": [169, 368, 381], "oppo": [169, 381, 545, 550, 655], "uhd": [169, 264, 381, 464, 545, 550, 655], "sc": [169, 195, 196, 210, 267, 467], "lx86": 169, "pioneer_on": 169, "tcp_ip": 169, "tcp_port": 169, "tcp_timeout": 169, "rs232_port": 169, "ttyusb1": [169, 439], "rs232_baudrat": 169, "9600": [169, 192, 267, 337, 341, 381, 400, 408, 464, 467, 514], "rs232_timeout": 169, "ignorerespons": 169, "rgc": [169, 381], "rgd": [169, 381], "gbh": [169, 381], "ghh": [169, 381], "vta": [169, 381], "aua": [169, 381], "aub": [169, 381], "forcebuff": 169, "geh01020": [169, 381], "geh04022": [169, 381], "geh05024": [169, 381], "inputignoredisplay": 169, "dependson_it": [169, 646], "dependson_valu": 169, "errorrespons": 169, "e02": [169, 381], "e04": [169, 381], "e06": [169, 381], "resetonerror": 169, "depend0_power0": 169, "depend0_volume0": 169, "sendretri": 169, "resendwait": 169, "reconnectretri": 169, "reconnectcycl": 169, "secondstokeep": 169, "responsebuff": 169, "update_exclud": 169, "zonennumm": 169, "zon": [169, 173, 217, 275, 290, 314, 370, 381, 488, 504, 536, 644, 671], "avdevice_zone0": 169, "abzuspeich": 169, "codesatz": 169, "wiedergabemodus": 169, "attributw": 169, "statusupdat": [169, 381], "herzuschalt": 169, "spk1": 169, "spk2": 169, "avdevice_zone1": 169, "speakera": 169, "avdevice_zone1_speak": 169, "speakerb": 169, "abhangt": [169, 325], "momentan": [169, 306, 307, 313], "statusabfrag": [169, 282, 381, 674], "dependency": [169, 649, 652, 655], "vergleichsoperator": [169, 398], "disktyp": 169, "sof": [169, 196, 314, 322, 325, 328, 351, 371, 400, 441, 464, 467, 569, 592], "textfil": [169, 196, 490], "tonencoding": 169, "tracknumm": 169, "audiotyp": 169, "pcm": 169, "tracknam": 169, "disctpy": 169, "dvd": [169, 248], "audio": [169, 198, 227, 248, 250, 290, 314, 453, 488, 504, 545, 550, 617, 655, 665, 682], "cdda": 169, "disc": 169, "disctyp": 169, "avdevice_dep": 169, "audiolanguag": 169, "track": [169, 173, 250, 276, 294, 295, 314, 360, 370, 453, 490], "audiotrack": 169, "lev": 169, "schaltbar": [169, 277, 381], "steckdos": [169, 170, 277, 278, 292, 328, 381, 382, 383, 545, 550], "avdevice_init": 169, "avdevice_zone1_init": 169, "zone1": [169, 191, 264, 267], "mut": [169, 173, 198, 205, 231, 248, 250, 266, 276, 290, 301, 369, 370, 433, 453, 466, 488, 504, 535, 642, 653, 674], "zone2": [169, 191, 264, 267], "avdevice_zone2": 169, "avdevice_zone2_init": 169, "vsx": [169, 267, 467], "923": [169, 267, 467], "auszukommenti": 169, "menunavigation": [169, 381], "displayanzeig": 169, "song": [169, 173, 250, 314, 319, 453, 674], "lust": 169, "laun": 169, "functiontyp": 169, "lautstarkewert": 169, "schrittweis": [169, 314], "verring": [169, 378], "decreas": [169, 247], "gelass": [169, 289, 411, 520, 568, 570, 629], "pf": [169, 671], "verstark": [169, 191, 267, 381], "po": 169, "dazwisch": [169, 331, 347], "sendend": [169, 200, 272, 331, 337, 338, 381, 425, 434, 471, 504, 527], "vl": 169, "005vl": 169, "auszules": [169, 200, 244, 351, 384, 392, 434, 448, 492, 518, 536, 545, 550, 641], "ankommt": [169, 314], "readwrit": 169, "lesewert": 169, "wohingeg": 169, "schreibwert": 169, "zuverlass": [169, 287, 333, 642], "invertrespons": 169, "ganzlich": [169, 262], "unlog": 169, "dummheit": 169, "entgegengewirkt": 169, "minvalu": 169, "minimumwert": [169, 485], "limiti": [169, 528], "bass": [169, 290, 381, 488, 504], "versehent": 169, "limitiert": 169, "maxvalu": 169, "responsetyp": 169, "mischung": [169, 373], "antworttyp": 169, "pluginstart": [169, 347, 412, 507], "anlehn": 169, "translationfil": 169, "einex": 169, "pwr": 169, "volum": [169, 173, 205, 233, 248, 250, 262, 266, 276, 290, 369, 370, 381, 384, 453, 466, 488, 504, 507, 533, 535, 674], "vu": [169, 198], "vol": [169, 231, 433, 453], "185": 169, "spk": 169, "apo": 169, "ap": [169, 292, 642], "apf": 169, "pioneer_input": 169, "sr": 169, "pioneer_sr": 169, "playingmod": 169, "lm": 169, "pioneer_lm": 169, "noidea": 169, "cursorssteuer": 169, "neulad": 169, "speaker_selection": 169, "individual_volum": 169, "sound_setting": 169, "kompression": 169, "video_setting": 169, "aspect": 169, "ratio": 169, "monitorout": 169, "zone3": [169, 191, 264, 267], "denon_volum": 169, "textdatei": [169, 403, 490], "kommawert": [169, 191, 264, 267], "505": 169, "versark": 169, "hormodi": 169, "nutzerfreund": 169, "beheb": [169, 262], "phono": 169, "fn01": 169, "unbekannt": [169, 187, 200, 232, 241, 261, 262, 293, 351, 365, 371, 407, 545, 547, 548, 550, 552, 554, 558], "fragezeich": [169, 507], "buchstab": [169, 476, 477], "udp203": 169, "qat": 169, "aud": [169, 423], "qtk": 169, "uat": 169, "folglich": [169, 563], "hintereinand": [169, 381], "schragstrich": [169, 229, 431], "nochmal": [169, 187, 329, 331, 381, 396, 400, 441, 464, 467], "gesamtlang": 169, "erfahr": [169, 212, 213, 562, 567, 572, 591], "zugeordn": 169, "histori": [169, 187], "verbose1": 169, "verbose2": 169, "unklar": [169, 328], "unbestimmt": 169, "zweifelsfall": 169, "timerfunktion": 169, "fileadmin": 170, "user_upload": 170, "x_contactscpd": 170, "hostsscpd": 170, "wanipconnscpd": 170, "x_voipscpd": 170, "934835": 170, "telefonereignis": 170, "callmonitor": [170, 382, 641, 649, 653, 655], "isdn": 170, "96": [170, 219, 262, 382, 434], "v7": 170, "kennwort": [170, 382, 383, 456], "updatezykl": 170, "fritzdevic": [170, 382, 383, 655], "auslast": [170, 310], "nichterreichbar": 170, "updatezyklus": [170, 262], "beobachtet": [170, 642], "datapoint": [170, 646], "serial_numb": [170, 297, 382, 504], "serialnumm": 170, "software_version": [170, 297, 382, 504], "hardware_version": [170, 382, 504], "manufactur": [170, 183, 192, 235, 305, 337, 382, 383, 649], "product_class": [170, 382], "produktklass": 170, "manufacturer_oui": [170, 382], "oui": 170, "model_nam": [170, 382], "modellnam": 170, "modellbeschreib": 170, "device_log": [170, 382], "security_port": [170, 382], "myfritz_status": [170, 382], "myfritz": 170, "call_direction": [170, 382], "richtung": [170, 200, 262, 328, 361], "call_event": [170, 382], "monitor_trigg": [170, 382], "monitortrigg": 170, "is_call_incoming": [170, 339, 340, 382], "last_caller_incoming": [170, 339, 340, 382], "last_call_date_incoming": [170, 382], "call_event_incoming": [170, 339, 340, 382], "last_number_incoming": [170, 382], "last_called_number_incoming": [170, 382], "angeruf": [170, 382], "is_call_outgoing": [170, 382], "ausgeh": [170, 189, 454, 561], "last_caller_outgoing": [170, 382], "last_call_date_outgoing": [170, 382], "call_event_outgoing": [170, 382], "last_number_outgoing": [170, 382], "last_called_number_outgoing": [170, 382], "telefonnumm": [170, 382], "call_duration_incoming": [170, 382], "call_duration_outgoing": [170, 382], "tam": [170, 339, 340, 382, 646], "tam_nam": [170, 382], "tam_new_message_numb": [170, 339, 340, 382], "tam_old_message_numb": [170, 382], "tam_total_message_numb": [170, 382], "gesamtanzahl": [170, 641], "verbindungsstatus": 170, "wan_connection_error": [170, 382], "verbindungsfehl": 170, "wan_is_connected": [170, 382], "wan_uptim": [170, 382], "verbindungszeit": 170, "wan_ip": [170, 382], "wan_upstream": [170, 382], "upstream": [170, 688], "datenmeng": 170, "wan_downstream": [170, 382], "downstream": 170, "wan_total_packets_sent": [170, 382], "insgesamt": 170, "wan_total_packets_received": [170, 382], "wan_current_packets_sent": [170, 382, 670], "wan_current_packets_received": [170, 382, 670], "wan_total_bytes_sent": [170, 382], "wan_total_bytes_received": [170, 382], "wan_current_bytes_sent": [170, 382, 670], "bitrat": [170, 250, 453], "wan_current_bytes_received": [170, 382, 670], "wan_link": [170, 382], "wlanconf": [170, 382], "wlan": [170, 247, 265, 362, 382, 479, 545, 550, 669], "wlanconfig_ssid": [170, 382], "ssid": [170, 292], "wlan_guest_time_remaining": [170, 382], "gast": [170, 382, 682], "wlan_associat": [170, 382], "wps_activ": [170, 382], "wps": 170, "wps_status": [170, 382], "wps_mod": [170, 382], "wlan_total_associat": [170, 382], "hosts_count": [170, 382], "hosts_info": [170, 382], "mesh_topology": [170, 382], "topologi": [170, 382], "mesh": [170, 346, 382], "number_of_host": [170, 382], "network_devic": [170, 382], "hosts_url": [170, 382], "mesh_url": [170, 382], "device_ip": [170, 382, 518], "device_connection_typ": [170, 382], "verbindungstyp": [170, 400, 408, 467], "device_hostnam": [170, 382], "host_info": [170, 382], "number_of_deflection": [170, 382], "rufumleit": [170, 382], "deflections_detail": [170, 382], "deflection_detail": [170, 382], "avm_deflection_index": 170, "deflection_enabl": [170, 382], "deflection_typ": [170, 382], "deflection_numb": [170, 382], "umgeleitet": [170, 417, 688], "deflection_to_numb": [170, 382], "zielrufnumm": 170, "umleit": 170, "deflection_mod": [170, 382], "deflection_outgoing": [170, 382], "outgoing": [170, 199, 227], "deflection_phonebook_id": [170, 382], "phonebook_id": 170, "frompb": 170, "aha_devic": [170, 382, 651], "switch_stat": [170, 382, 383], "hkr_devic": [170, 382, 645], "hkr": [170, 171, 641, 645, 646], "set_temperatur": [170, 382, 383], "target_temperatur": [170, 382, 383], "current_temperatur": [170, 382], "set_temperature_reduced": [170, 382], "temperature_reduced": [170, 382], "set_temperature_comfort": [170, 382], "temperature_comfort": [170, 382], "firmware_version": [170, 382, 383], "fw_version": [170, 382], "device_id": [170, 205, 228, 273, 382, 472], "product_nam": [170, 382], "produktnam": 170, "device_nam": [170, 228, 382, 518], "tx_busy": [170, 382], "device_function": [170, 382], "set_target_temperatur": [170, 382], "reduziert": [170, 249, 396, 484, 495, 622, 635], "komfort": [170, 289, 434, 487], "temperature_offset": [170, 382], "set_window_op": [170, 382], "window_op": [170, 382, 383], "windowopenactiveendtim": [170, 382], "set_hkr_boost": [170, 382], "hkr_boost": [170, 382], "boost_activ": [170, 382], "boostactiveendtim": [170, 382], "summer_activ": [170, 382, 383], "somm": [170, 189], "holiday_activ": [170, 382, 383], "battery_low": [170, 382, 383], "battery_level": [170, 382, 383, 420], "tastensperr": 170, "device_lock": [170, 382, 383], "errorcod": [170, 382], "fehlercod": 170, "set_simpleonoff": [170, 382], "simpleonoff": [170, 382], "set_level": [170, 382], "niveau": [170, 260, 622], "set_levelpercentag": [170, 382], "levelpercentag": [170, 382], "set_hu": [170, 382], "wertebereich": [170, 200, 314, 569, 592], "359": 170, "set_saturation": [170, 382], "saturation": [170, 337, 382, 655], "set_colortemperatur": [170, 382], "2700k": 170, "6500k": 170, "colortemperatur": [170, 382], "unmapped_hu": [170, 382], "unmapped_saturation": [170, 382], "farbwert": [170, 219, 337], "color_mod": [170, 382], "farbmodus": [170, 337], "huesaturation": 170, "supported_color_mod": [170, 382], "fullcolorsupport": [170, 382], "setunmappedcolor": 170, "colordefault": 170, "schaltzustand": 170, "switch_mod": [170, 382], "zeitschalt": 170, "switch_toggl": [170, 382], "umschalt": [170, 338, 378], "energy": [170, 179, 200, 234, 235, 259, 291, 293, 298, 311, 337, 382, 383, 438, 493, 545, 550, 643, 646, 655, 670], "inbetriebnahm": [170, 284, 498, 499], "wh": [170, 234, 235, 236, 306, 307, 311, 502, 655], "fd440": 170, "alert_stat": [170, 382, 383], "alarmzustand": 170, "blind_mod": [170, 382], "endpositionsset": [170, 382], "endlag": [170, 337], "rollo": [170, 337], "statistics_temp": [170, 382], "wertestatist": 170, "statistics_hum": [170, 382], "statistics_voltag": [170, 382], "statistics_pow": [170, 382], "statistics_energy": [170, 382], "anrufbeantwort": [170, 339, 340, 382], "deflection": [170, 650, 653], "verbimd": 170, "netzwerkgerat": [170, 310], "210": 170, "440": [170, 337, 650], "comet": [170, 383, 545, 550, 649, 650], "aha_general": 170, "homeautomation": [170, 651], "aha_thermostat": 170, "aha_temperature_sensor": 170, "aha_humidity_sensor": 170, "feuchtigkeitssensor": 170, "humidity_sensor": 170, "aha_alert": 170, "alarmfunktion": 170, "aha_switch": 170, "aha_powermet": 170, "strommess": 170, "powermet": [170, 235, 649, 652], "aha_level": 170, "dimmfunktion": 170, "hohenverstell": 170, "dimmable_devic": 170, "aha_blind": 170, "blind": [170, 200, 210], "aha_on_off": 170, "on_off_devic": 170, "aha_button": 170, "aha_color": 170, "color_devic": 170, "rufumleitung_1": 170, "rufumleitung_2": 170, "connected_devic": 170, "mobile_1": 170, "avm_mac": [170, 646], "mobile_2": 170, "hkr_og_bad": 170, "avm_ain": [170, 171, 653], "xxxxx": [170, 219], "xxxxxxx": [170, 219, 338], "socket_3d_druck": 170, "zuschreib": 170, "gib": [170, 382], "phone_nam": 170, "fritzbox_7490": 170, "anyauth": 170, "49443": [170, 382], "upnp": [170, 649], "x_voip": 170, "charset": 170, "soapaction": 170, "urn": [170, 229], "dslforum": 170, "x_avm": 170, "de_dialgetconf": 170, "envelop": 170, "encodingstyl": 170, "xmlsoap": 170, "soap": 170, "xmlns": 170, "anruflist": [170, 382], "callednumb": [170, 382], "numbertyp": [170, 382], "durchsucht": [170, 316, 382, 678], "telefonbuch": [170, 382], "lua": [170, 382, 648], "mq_log": [170, 382], "interface_typ": 170, "is_activ": 170, "lease_time_remaining": 170, "zusammenfuhrt": [170, 677], "device_list": 170, "hosts_300": 170, "wlan_repeater_300": 170, "hosts_1750": 170, "wlan_repeater_1750": 170, "host_300": 170, "host_1750": 170, "device_string": 170, "deutlich": [170, 212, 219, 260, 321, 325, 326, 330, 381, 586, 589, 674], "ipaddress": [170, 211, 382], "macaddress": [170, 382], "interfacetyp": 170, "updateavailabl": 170, "updatesuccessful": 170, "infourl": 170, "macaddresslist": 170, "requestclient": 170, "vpn": [170, 221, 355, 688], "wanaccess": 170, "disallow": [170, 355], "ismeshabl": 170, "friendlynameiswriteabl": 170, "filter_dict": 170, "vorliegt": [170, 203, 262, 339, 340], "identifier_list": 170, "fb1": 170, "result_numb": 170, "mustermann": 170, "result_string": 170, "geschaft": 170, "fax_work": 170, "fax": 170, "h2": 170, "type_numb": 170, "tel": [170, 337], "weight": [170, 253, 362, 530], "general_item": 170, "number_search_result": 170, "prasenzerkenn": [170, 382], "getspecifichostentry": 170, "newmacaddress": 170, "telefoni": 170, "wahlhilf": 170, "0891234567": 170, "wakeonlan": [170, 382], "dect500": 170, "dives": 170, "gemeinsam": [170, 189, 224, 324, 328, 329, 332, 381], "whit": [170, 179, 200, 247, 259, 337, 371, 649, 655], "tabellar": 170, "anrufmonitor": 170, "listung": 170, "augrund": 170, "yam": [170, 189], "masterinformation": [170, 189], "skipt": 170, "item_attributes_mast": [170, 189, 655], "dect": [171, 382, 383, 545, 550, 645, 649, 650, 651, 669], "aha": [171, 382, 641, 648, 650, 651, 653, 655], "bilbliothek": 171, "pyfritzhom": 171, "handlich": 171, "installtion": 171, "hthiery": 171, "fritzhom": [171, 655], "avm_smarthome_data": 171, "hkr_bathroom_og": 171, "00000": [171, 278, 476, 477], "0000000": 171, "leerstell": 171, "hkr_bathroom_ug": 171, "temperatur_sensor": 171, "geratetyp": [171, 244, 351, 522], "alert": [171, 211, 212, 213, 218, 219, 243, 254, 255, 261, 262, 315, 359, 394, 419, 420, 456, 468, 646, 648, 649, 655], "7490": 171, "7530": [171, 650], "heizkorperthermostat": [171, 383, 545, 550], "alarmgerat": 171, "codierungskonzept": 172, "ineinandergreif": 172, "herzustell": [172, 212, 213], "blockly_compressed": 172, "blocks_compressed": 172, "python_compressed": 172, "demos": 172, "kernstuck": 172, "improved": [173, 176, 179, 247, 643, 646, 649, 650, 651, 652, 653, 655, 669], "integrat": [173, 186, 187, 227, 398, 641, 655], "infrastructur": 173, "artwork": [173, 378, 507], "limitation": [173, 176, 234, 257], "official": [173, 227, 257, 334, 667], "8090": [173, 256, 386], "cycle_tim": [173, 176, 288], "queried": [173, 186, 355, 370], "bose_soundtouch": [173, 545, 548, 643, 649], "bosesoundtouch": 173, "libsoundtouch": 173, "bos": [174, 184, 268, 386, 545, 548, 643], "soundtouch": [174, 386, 545, 548, 643], "fredlcor": 175, "boil": [175, 202, 521, 646, 656], "heating": [175, 176, 177, 240, 345, 350, 521, 622, 646, 652, 666], "elco": [175, 646], "brotj": [175, 646], "accessibl": [175, 356, 357], "revised": [175, 643, 646, 649, 655], "writing": [175, 202, 623, 642, 648, 652, 653], "bsblan_ip": 175, "komfortsollwert_hk1": 175, "bsb_lan": 175, "710": 175, "descr": 175, "vorlauftemperatur_hk1": 175, "8743": 175, "trinkwassertemperatur": 175, "8830": 175, "vorlauftemperatur_hk2": 175, "8773": 175, "heizkreispumpe_hk2_status": 175, "8760": 175, "status_brenn": 175, "8009": 175, "kesseltemperatur": [175, 351], "8310": 175, "kesselruecklauftemperatur": 175, "8314": 175, "wasserdruck": 175, "8327": 175, "status_trinkwass": 175, "8003": 175, "status_kessel": 175, "8005": 175, "logamatic": [176, 388, 545, 550], "km200": [176, 388, 545, 550], "disclaim": 176, "still": [176, 186, 280, 642, 643, 644, 645, 646, 649, 650, 651, 652, 655, 691], "presenc": [176, 212, 294, 368, 419, 420, 534, 545, 552, 573, 646], "detected": [176, 211, 227, 646], "circuit": [176, 177, 521], "modification": [176, 649, 650, 653, 655], "ocs": 176, "wohngebaeud": 176, "632270": 176, "km50": 176, "km300": 176, "tested": [176, 182, 186, 190, 198, 227, 231, 235, 239, 247, 269, 281, 294, 297, 301, 305, 314, 334, 341, 643, 646, 650, 655], "introduced": [176, 298, 643, 646, 648, 649, 651, 654, 655, 656], "eas": [176, 183, 646, 655], "beforehand": 176, "printed": 176, "easycontrol": [176, 207], "andreashahn": [176, 388], "fetched": [176, 655], "meaning": [176, 186, 305], "90ad52660ce1234551234579d89e25b70b5331ce0e82c5fd1254a317574ec807": 176, "heating_syst": 176, "heating_circuit_01": 176, "hot_water_circuit_01": 176, "hot": [176, 177], "wat": [176, 177, 200, 261, 262, 650, 651], "km_id": [176, 177], "iobrok": 176, "circuit1": 177, "solar": [177, 234, 235, 236, 258, 279, 298, 311, 436, 502, 545, 550, 646, 652], "didn": [177, 643, 650, 652], "brand": [177, 247, 335, 510, 545, 548, 550, 554], "systemtyp": 177, "minoutdoortemp": 177, "healthstatus": 177, "holidaymod": 177, "actualsupplytemperatur": 177, "powersetpoint": 177, "actualpow": 177, "chpumpmodulation": 177, "numberofstart": 177, "gasairpressur": 177, "systempressur": 177, "flamecurrent": 177, "chimneysweep": 177, "workingtim": 177, "nominalburnerload": 177, "hs1": 177, "hm1": 177, "hm2": 177, "hm3": 177, "hm4": 177, "hm5": 177, "outdoor_t1": 177, "supply_t1_setpoint": 177, "supply_t1": 177, "hotwater_t2": 177, "chimney": 177, "totalsyst": 177, "secondburn": 177, "centralheating": 177, "energyreservoir": 177, "reservoiralert": 177, "nominalfuelconsumption": 177, "fuelconsmptcorrfactor": 177, "actualmodulation": 177, "fuel": 177, "density": 177, "caloricvalu": 177, "startstop": 177, "assignedto": 177, "hcmod": 177, "dhwmod": 177, "uuid": [177, 358, 510], "userpassword": 177, "versionfirmwar": 177, "versionhardwar": 177, "boschshpassword": 177, "portalpassword": 177, "knxpassword": 177, "haipassword": 177, "instpassword": 177, "instaccess": 177, "instwriteaccess": 177, "actualchpow": 177, "actualdhwpow": 177, "burnermodulationsetpoint": 177, "burnerpowersetpoint": 177, "flamestatus": 177, "returntemperatur": 177, "supplytemperaturesetpoint": 177, "appliancesupplytemperatur": 177, "nominalchpow": 177, "nominaldhwpow": 177, "hc1": 177, "currentroomsetpoint": 177, "operationmod": 177, "temperatureroomsetpoint": 177, "manualroomsetpoint": 177, "temporaryroomsetpoint": 177, "roomtemperatur": 177, "activeswitchprogram": 177, "timetonextsetpoint": 177, "nextsetpoint": 177, "switchprogram": 177, "temperaturelevel": 177, "pumpmodulation": 177, "suwithreshold": 177, "designtemp": 177, "roomtempoffset": 177, "heatcurvemax": 177, "controltyp": 177, "roominfluenc": 177, "suwiswitchmod": 177, "currentopmodeinfo": 177, "comfort2": 177, "dhw1": 177, "currentsetpoint": 177, "actualtemp": 177, "waterflow": 177, "charg": [177, 218, 219, 235, 254, 255, 258, 259, 281, 293, 365, 479, 480, 481], "chargeduration": 177, "tdmod": 177, "tdsetpoint": 177, "cpstartph": 177, "singlechargesetpoint": 177, "byd": [178, 389, 545, 550, 655], "energiespeich": 178, "be_connect_plus": 178, "turm": 178, "batteriesystem": 178, "hvs": 178, "hvm": 178, "lvs": 178, "byd_struct": 178, "bsp": [178, 389, 398], "grunddat": [178, 265, 283], "diagnosedat": [178, 389], "diag_cycl": 178, "enable_connection": 178, "log_data": 178, "logdat": 178, "bmu_log": 178, "log_html": 178, "tower1_log": 178, "log_jsonlist": 178, "tageweis": 178, "byd_log": 178, "log_ag": 178, "temperaturwert": [178, 189, 262], "bitmap": 178, "bydvtx": 178, "heatmap": [178, 389], "bydvbtx": 178, "balkendiagramm": 178, "bydttx": 178, "imgpath": 178, "dhcp": [178, 211, 384], "matplotlib": 178, "3kwh": 178, "diagnos": [178, 622], "occhio": 179, "bluetooth": [179, 245, 371, 448, 480, 492, 671], "ble": 179, "verbaut": [179, 479], "lektur": [179, 311, 685], "mobilgerat": [179, 228], "tablett": 179, "hardwaregateway": 179, "enzusetz": 179, "beantragt": 179, "sento": 179, "dunkl": 179, "vertikal": 179, "readinglight": 179, "casambi_id": [179, 652], "backendstatus": 179, "casambi_rx_key": 179, "backend_online_stat": [179, 390], "casambi_tx_key": 179, "vertical": [179, 227, 390], "tunabl": [179, 649], "spotlight": 179, "tunablewhit": 179, "cct": [179, 390, 649], "resent": 179, "unjustified": [179, 649], "restrict": [180, 652], "entered": [180, 227, 315, 368, 612, 646], "very_secure_password": 180, "obtained": [180, 311, 365, 646], "commandgroup": 180, "belonging": 180, "commandgroups": 180, "manipulation": [181, 306, 307, 656], "akitviert": 181, "gebund": [181, 222, 522], "lausch": 181, "gupp": 181, "listet": [181, 187, 244], "dumpt": 181, "ausfuhrungszeit": 181, "triggert": [181, 314, 569, 592], "smaerthomeng": 181, "namenauf": 181, "ingestellt": 181, "dostmann": [182, 392, 545, 550], "tfa": [182, 392, 545, 550], "airco2ntrol": [182, 392, 545, 550], "1165010": 182, "supportthread": 182, "bcr": [182, 260], "adapted": [182, 195, 298, 645, 646, 649, 656], "heinemann": 182, "MIT": 182, "heinemml": 182, "hidraw0": [182, 392], "time_sleep": 182, "co2": [182, 207, 392, 414, 545, 550], "designed": [183, 227, 234, 623], "zehnd": [183, 393, 545, 550], "recovery": [183, 656], "primarly": 183, "solution": [183, 655], "protokollbeschreibung_comfoair": 183, "wernig": 183, "g90": 183, "380": [183, 646], "supposedly": 183, "paul": 183, "luftung": [183, 196, 403], "investigated": 183, "matsab": 183, "protokoll_ca500_avignon": 183, "acknowledg": 183, "commandset": 183, "rs485": [183, 306, 307], "cc": [183, 185, 210], "big": [183, 249, 270, 271, 452, 642], "troubl": [183, 278], "corrupt": 183, "worst": 183, "dependenci": [183, 231, 240, 312, 648, 655], "kwltyp": 183, "comfoair350": [183, 393], "comfoair500": [183, 393], "5555": 183, "serialport": [183, 191, 192, 193, 194, 200, 201, 264, 267, 305, 306, 307, 334, 351], "ttyusb0": [183, 191, 195, 196, 201, 206, 264, 267, 305, 306, 307, 334, 341, 351, 400, 408, 414, 464, 467, 497, 509, 514, 517, 538], "complemented": 183, "pre": [183, 185, 253, 305, 344, 355, 688], "writeventilationlevel": 183, "readventilationlevel": 183, "timespan": [183, 189, 227], "issued": [183, 199, 356, 357], "ventilator": 183, "rpm": [183, 207], "readsupplyairrpm": 183, "readextractairrpm": 183, "triggering": [183, 257, 288], "waited": 183, "readcurrentventilationlevel": 183, "extractair": 183, "readextractairpercentag": 183, "supplyair": 183, "readsupplyairpercentag": 183, "writefilterreset": 183, "writecomforttemperatur": 183, "readcomforttemperatur": 183, "freshair": 183, "readfreshairtemperatur": 183, "readsupplyairtemperatur": 183, "readextractairtemperatur": 183, "exhaustair": 183, "readexhaustairtemperatur": 183, "preheat": 183, "readpreheatingtemperatur": 183, "groundheat": 183, "readgroundheattemperatur": 183, "bypass": [183, 207, 270, 271, 334], "readbypasspercentag": 183, "readpreheatingstatus": 183, "operatinghour": 183, "away": [183, 288], "readoperatinghoursaway": 183, "readoperatinghourslow": 183, "readoperatinghoursmedium": 183, "readoperatinghourshigh": 183, "antifreez": 183, "readoperatinghoursantifreez": 183, "readoperatinghourspreheating": 183, "readoperatinghoursbypass": 183, "readoperatinghoursfilt": 183, "heatpreparationratio": 183, "wetterdat": [184, 219, 262, 268, 366, 394, 462, 468, 532, 545, 558], "marz": [184, 268, 526, 538, 585, 656, 657], "gekauft": [184, 268], "funktionert": 184, "wetter_darksky": [184, 268], "darky": 184, "time_epoch": [184, 268], "konvertier": [184, 191, 192, 264, 267, 268, 434, 522, 679], "umformatiert": [184, 268], "sonnenauf": [184, 268, 347], "untergang": [184, 268, 347], "originalantwort": [184, 268], "aufgedroselt": [184, 268], "daily": [184, 189, 235, 262, 268, 334, 347, 510, 643, 646], "day0": [184, 268], "day1": [184, 268], "hour0": [184, 268], "hour1": [184, 268], "abrufbar": [184, 207, 268, 688], "bewahr": [184, 268], "stundlich": [184, 189, 262, 268, 502], "day2": [184, 268], "erforsch": [184, 268], "stundenweis": [184, 268], "vorhersag": [184, 262, 268, 311, 361, 365, 502], "precipprobability_mean": [184, 268], "precipintensity_mean": [184, 268], "temperature_mean": [184, 268], "durchschnitt": [184, 189, 262, 268], "reg": [184, 218, 219, 262, 268, 326, 332, 338, 462], "temperaturvorhersag": [184, 268], "einzelwert": [184, 260, 268], "herangezog": [184, 262, 268, 322, 325, 326, 330, 332, 347, 441, 508, 618, 629, 671], "regenwahrschein": [184, 268], "heutig": [184, 189, 262, 268, 295], "wetter_ham": [184, 268, 365], "ham": [184, 268], "wetter_bos": [184, 268], "darksky_": 184, "rohdat": [184, 230, 268, 366], "cannot": [185, 218, 227, 254, 257, 645, 646, 648, 649, 654], "parental": 185, "policy": [185, 221, 222], "setcap": 185, "cap_net_raw": 185, "eip": 185, "re": [185, 205, 210, 240, 257, 325, 623, 645, 646, 647, 652, 653, 654, 655, 670, 674], "chos": [185, 193, 668], "dashbutton_valu": 185, "pressed": [185, 200, 211, 227, 281], "flipped": 185, "press": [185, 211, 248, 282, 283, 395, 655], "dashbutton_reset": 185, "neith": [185, 205, 359, 395, 643, 644, 645, 646, 649, 650, 651, 691], "dining_room": 185, "66": [185, 247, 254, 255, 638], "kitch": [185, 221, 248, 261, 315], "1021844": 186, "bundled": 186, "thier": 186, "incremented": 186, "microsecond": 186, "val_str": [186, 187, 222, 223], "val_num": [186, 187, 189, 222, 223, 398], "val_bool": [186, 187], "importing": [186, 638], "db_us": 186, "db_password": 186, "inital_valu": [186, 285], "sometim": [186, 334], "populat": 186, "reflect": [186, 211, 645, 646, 651, 653, 655], "retrieving": [186, 234], "rewritt": [186, 666], "matt": [186, 294], "behavior": [186, 294, 330, 649, 654], "monotonously": 186, "increasing": [186, 652], "rarely": 186, "rewrit": [186, 646, 652, 655], "averag": [186, 262, 317, 356, 357, 573], "countall": [186, 187, 203, 641], "great": [186, 317, 356, 357, 365, 566, 655], "summarized": 186, "discret": 186, "span": [186, 288], "1d": [186, 203, 287, 317, 645], "2w": [186, 287, 317], "1w": [186, 187, 287, 317, 645], "historical": 186, "aggregation": [186, 671], "finaliz": 186, "fetching": [186, 361, 655], "apply": [186, 227], "diff": [186, 187, 227, 646, 655, 671], "differenc": [186, 297], "locking": [186, 257, 351, 646, 651, 652, 655, 674], "restricted": [186, 688], "criteria": 186, "csv": [186, 188, 222, 223, 397, 585, 652, 653, 674], "12345": [186, 256], "newly": [186, 211, 643, 646, 651], "field": [186, 202, 222, 223, 428, 645, 646], "currenlty": 186, "bewar": 186, "peps": 187, "0249": [187, 368], "gebundeled": 187, "implementierungsmodul": 187, "KEIN": [187, 583], "systemdat": [187, 693], "produzi": 187, "standarmass": 187, "database_write_on_shutdown": [187, 652], "unterdruckt": [187, 232, 496, 641], "monoton": 187, "steigend": [187, 508], "zahlerstand": [187, 189, 655], "storend": 187, "database_": 187, "lup": 187, "kalend": [187, 217, 220, 423, 545, 558, 642], "gekehrt": 187, "item_nam": [187, 222, 223], "time_dat": 187, "changed_dat": 187, "kochfeldg": 187, "1606258889619": 187, "17998": 187, "217": [187, 334], "1606258947266": 187, "619000": 187, "266000": 187, "1606258907617": 187, "17993": 187, "216": [187, 334], "617000": 187, "1606258925610": 187, "5996": 187, "610000": 187, "1606258931606": 187, "18006": 187, "1606259007370": 187, "606000": 187, "370000": 187, "1606258949612": 187, "5993": [187, 341], "612000": 187, "1606258955605": 187, "30001": [187, 417], "605000": 187, "1606258985606": 187, "53991": 187, "1606259067523": 187, "523000": 187, "1606259039597": 187, "24006": 187, "597000": 187, "1606259063603": 187, "11984": 187, "1606259127224": 187, "603000": 187, "224000": 187, "abbild": 187, "begin": [187, 262, 281], "database_version": 187, "bigint": 187, "1518289184830": 187, "1518289184835": 187, "varchar": 187, "1518289184840": 187, "log_item_id_tim": 187, "1518289184845": 187, "log_item_id_changed": 187, "1518289184849": 187, "1518289184854": 187, "1669554322161": 187, "1669554363596": 187, "1669557938064": 187, "101": [187, 312, 313, 334], "527": 187, "1669557938992": 187, "1669557928298": 187, "1669557939008": 187, "1669557928356": 187, "1669557939032": 187, "1669557906685": 187, "1446": 187, "1669557939063": 187, "1669557906694": 187, "1447": 187, "1669557939071": 187, "verklein": 187, "inkrementiert": 187, "zeitstempel": [187, 188, 224, 263, 306, 307, 396, 446, 463, 527, 562, 567, 575, 591, 599, 635, 641], "mikrosekund": 187, "zeichenkett": [187, 192, 306, 307, 360, 401, 434, 514, 528, 532, 579], "wahrheitswert": [187, 579], "letz": [187, 200, 563], "begrenz": [187, 232, 314, 569, 592], "database_maxag": [187, 279, 650, 652, 655], "begrenzt": [187, 224, 263, 314, 329, 484], "zeitspann": [187, 262, 506, 568, 577], "datenbankwert": 187, "t_start": 187, "t_end": 187, "diskret": 187, "integral": [187, 288], "differentiat": [187, 655], "differential": 187, "differenz": [187, 189, 260, 332, 487, 599, 636, 671], "vorher": [187, 189, 212, 213, 265, 289, 314, 321, 325, 326, 330, 331, 378, 508, 512, 536, 594, 671], "monotoni": 187, "minimalwert": [187, 189, 287, 338, 374, 377, 379, 382, 390, 391, 396, 400, 401, 405, 407, 409, 410, 413, 417, 418, 419, 420, 426, 427, 428, 429, 431, 434, 440, 441, 442, 444, 445, 451, 452, 457, 459, 461, 464, 467, 469, 470, 471, 476, 477, 478, 480, 483, 487, 499, 502, 504, 507, 508, 509, 510, 511, 513, 518, 519, 520, 522, 524, 537, 573], "maximalwert": [187, 189, 262, 287, 338, 379, 382, 391, 407, 410, 413, 417, 426, 427, 428, 429, 434, 440, 442, 444, 445, 451, 452, 457, 459, 461, 470, 471, 476, 477, 487, 502, 504, 508, 509, 511, 518, 519, 520, 522, 537, 573], "prozentzahl": 187, "summ": [187, 189, 262, 341, 436, 453, 573], "rohwert": [187, 310], "zuruckzugeb": 187, "aufzuintegri": 187, "heut": [187, 189, 262, 311, 337, 338, 347, 361, 436, 502], "365d": 187, "auslag": 188, "itemdat": 188, "protokollmust": 188, "itemattribut": [188, 189, 196, 441, 641], "abbildbar": [188, 347], "benenn": [188, 263, 332, 585], "log_multi": 188, "log_csv": 188, "log_txt": 188, "enforce_chang": [188, 577, 645, 648], "log_text": [188, 243, 577, 655], "filepattern": [188, 641], "yearly": [188, 189, 235, 656], "logpattern": [188, 641], "zieldateinam": 188, "dateimust": 188, "dateierweiter": [188, 585], "standardvorgab": 188, "standardpfad": 188, "gefahr": [189, 200], "tageswechsel": 189, "wochenwechsel": 189, "monatswechsel": 189, "jahreswechsel": 189, "databaseaddon": [189, 398], "kindeskind": 189, "kindeskinderkind": 189, "db_addon_database_it": 189, "heute_min": 189, "gestern_max": 189, "heute_minus1_max": 189, "tagesmitteltemperatur_g": 189, "heute_minus1_avg": 189, "abgebund": 189, "startup_run_delay": 189, "startvorgang": 189, "beeinfluss": [189, 450], "db_addon_startup": [189, 655], "liegend": [189, 329, 561, 599, 634, 682], "eintreff": [189, 219, 256, 595], "reduktion": 189, "belast": [189, 396], "gecached": [189, 289], "use_oldest_entry": 189, "abfragezeitraum": [189, 398], "auszubl": 189, "ignore_0": 189, "pfadnam": [189, 223, 398, 528], "datenbankauswert": [189, 398], "db_addon_ignore_valu": 189, "logginginformation": 189, "unterbroch": [189, 440, 507, 508], "systembelast": 189, "cnf": 189, "mysqld": 189, "connect_timeout": 189, "net_read_timeout": 189, "wait_timeout": 189, "28800": 189, "interactive_timeout": 189, "berechnungszyklus": 189, "verbrauch_heut": [189, 398], "onchang": [189, 655], "verbrauch_tag": [189, 398], "verbrauch_woch": [189, 398], "verbrauch_monat": [189, 398], "verbrauch_jahr": [189, 398], "verbrauch_last_24h": [189, 398], "verbrauch_last_7d": [189, 398], "verbrauch_heute_minus1": [189, 398], "gestrig": [189, 262], "verbrauch_heute_minus2": [189, 398], "vorg": [189, 262], "verbrauch_heute_minus3": [189, 398], "verbrauch_heute_minus4": [189, 398], "verbrauch_heute_minus5": [189, 398], "verbrauch_heute_minus6": [189, 398], "verbrauch_heute_minus7": [189, 398], "verbrauch_heute_minus8": [189, 398], "verbrauch_tag_minus1": [189, 398], "verbrauch_tag_minus2": [189, 398], "verbrauch_tag_minus3": [189, 398], "verbrauch_tag_minus4": [189, 398], "verbrauch_tag_minus5": [189, 398], "verbrauch_tag_minus6": [189, 398], "verbrauch_tag_minus7": [189, 398], "verbrauch_tag_minus8": [189, 398], "verbrauch_woche_minus1": [189, 398], "vorwoch": 189, "weekly": [189, 510, 656], "verbrauch_woche_minus2": [189, 398], "verbrauch_woche_minus3": [189, 398], "verbrauch_woche_minus4": [189, 398], "verbrauch_monat_minus1": [189, 398], "vormonat": 189, "monthly": [189, 235, 510, 656], "verbrauch_monat_minus2": [189, 398], "verbrauch_monat_minus3": [189, 398], "verbrauch_monat_minus4": [189, 398], "verbrauch_monat_minus12": [189, 398], "verbrauch_jahr_minus1": [189, 398], "vorjahr": 189, "verbrauch_jahr_minus2": [189, 398], "verbrauch_rolling_12m_heute_minus1": [189, 398], "verbrauch_rolling_12m_tag_minus1": [189, 398], "verbrauch_rolling_12m_woche_minus1": [189, 398], "verbrauch_rolling_12m_monat_minus1": [189, 398], "verbrauch_rolling_12m_jahr_minus1": [189, 398], "verbrauch_jahreszeitraum_minus1": [189, 398], "verbrauch_jahreszeitraum_minus2": [189, 398], "verbrauch_jahreszeitraum_minus3": [189, 398], "zaehlerstand_heute_minus1": [189, 398], "zaehlerstand_heute_minus2": [189, 398], "zaehlerstand_heute_minus3": [189, 398], "vorvorletzt": 189, "zaehlerstand_tag_minus1": [189, 398], "zaehlerstand_tag_minus2": [189, 398], "zaehlerstand_tag_minus3": [189, 398], "zaehlerstand_woche_minus1": [189, 398], "zaehlerstand_woche_minus2": [189, 398], "zaehlerstand_woche_minus3": [189, 398], "zaehlerstand_monat_minus1": [189, 398], "zaehlerstand_monat_minus2": [189, 398], "zaehlerstand_monat_minus3": [189, 398], "zaehlerstand_jahr_minus1": [189, 398], "zaehlerstand_jahr_minus2": [189, 398], "zaehlerstand_jahr_minus3": [189, 398], "minmax_last_24h_min": [189, 398], "minmax_last_24h_max": [189, 398], "minmax_last_24h_avg": [189, 398], "minmax_last_7d_min": [189, 398], "minmax_last_7d_max": [189, 398], "minmax_last_7d_avg": [189, 398], "minmax_heute_min": [189, 398], "tagesbeginn": 189, "minmax_heute_max": [189, 398], "minmax_heute_avg": [189, 398], "durschnittswert": 189, "minmax_heute_minus1_min": [189, 398], "minmax_heute_minus1_max": [189, 398], "minmax_heute_minus1_avg": [189, 398], "durchschnittswert": [189, 287], "minmax_heute_minus2_min": [189, 398], "minmax_heute_minus2_max": [189, 398], "minmax_heute_minus2_avg": [189, 398], "minmax_heute_minus3_min": [189, 398], "minmax_heute_minus3_max": [189, 398], "minmax_heute_minus3_avg": [189, 398], "minmax_tag_min": [189, 398], "minmax_tag_max": [189, 398], "minmax_tag_avg": [189, 398], "minmax_tag_minus1_min": [189, 398], "minmax_tag_minus1_max": [189, 398], "minmax_tag_minus1_avg": [189, 398], "minmax_tag_minus2_min": [189, 398], "minmax_tag_minus2_max": [189, 398], "minmax_tag_minus2_avg": [189, 398], "minmax_tag_minus3_min": [189, 398], "minmax_tag_minus3_max": [189, 398], "minmax_tag_minus3_avg": [189, 398], "minmax_woche_min": [189, 398], "wochenbeginn": 189, "minmax_woche_max": [189, 398], "minmax_woche_minus1_min": [189, 398], "minmax_woche_minus1_max": [189, 398], "minmax_woche_minus1_avg": [189, 398], "minmax_woche_minus2_min": [189, 398], "minmax_woche_minus2_max": [189, 398], "minmax_woche_minus2_avg": [189, 398], "minmax_monat_min": [189, 398], "monatsbeginn": 189, "minmax_monat_max": [189, 398], "minmax_monat_minus1_min": [189, 398], "minmax_monat_minus1_max": [189, 398], "minmax_monat_minus1_avg": [189, 398], "minmax_monat_minus2_min": [189, 398], "minmax_monat_minus2_max": [189, 398], "minmax_monat_minus2_avg": [189, 398], "minmax_jahr_min": [189, 398], "jahresbeginn": 189, "minmax_jahr_max": [189, 398], "minmax_jahr_minus1_min": [189, 398], "minmax_jahr_minus1_max": [189, 398], "minmax_jahr_minus1_avg": [189, 398], "tagesmitteltemperatur_heut": [189, 398], "tagesmitteltemperatur_heute_minus1": [189, 398], "tagesmitteltemperatur_heute_minus2": [189, 398], "tagesmitteltemperatur_heute_minus3": [189, 398], "tagesmitteltemperatur_tag": [189, 398], "tagesmitteltemperatur_tag_minus1": [189, 398], "tagesmitteltemperatur_tag_minus2": [189, 398], "tagesmitteltemperatur_tag_minus3": [189, 398], "serie_minmax_monat_min_15m": [189, 398], "gleitend": 189, "serie_minmax_monat_max_15m": [189, 398], "serie_minmax_monat_avg_15m": [189, 398], "serie_minmax_woche_min_30w": [189, 398], "wochent": [189, 262], "serie_minmax_woche_max_30w": [189, 398], "serie_minmax_woche_avg_30w": [189, 398], "serie_minmax_tag_min_30d": [189, 398], "serie_minmax_tag_max_30d": [189, 398], "serie_minmax_tag_avg_30d": [189, 398], "serie_verbrauch_tag_30d": [189, 398], "serie_verbrauch_woche_30w": [189, 398], "serie_verbrauch_monat_18m": [189, 398], "serie_zaehlerstand_tag_30d": [189, 398], "tages": 189, "serie_zaehlerstand_woche_30w": [189, 398], "wochen": [189, 599, 634], "serie_zaehlerstand_monat_18m": [189, 398], "monats": 189, "serie_waermesumme_monat_24m": [189, 398], "serie_kaeltesumme_monat_24m": [189, 398], "serie_tagesmittelwert_0d": [189, 398], "tagesmittelwert": [189, 260], "serie_tagesmittelwert_stunde_0d": [189, 398], "stundenmittelwert": 189, "serie_tagesmittelwert_stunde_30_0d": [189, 398], "serie_tagesmittelwert_tag_stunde_30d": [189, 398], "general_oldest_valu": [189, 398], "general_oldest_log": [189, 398], "kaeltesumm": [189, 398, 656], "db_addon_param": 189, "waermesumm": [189, 398], "gruenlandtempsumm": [189, 398], "temperaturschwellenwert": 189, "schwellentemperatur": 189, "wuestentag": [189, 398], "wustentag": 189, "heisse_tag": [189, 398], "tropennaecht": [189, 398], "tropennacht": 189, "sommertag": [189, 398], "heiztag": [189, 398], "vegetationstag": [189, 398], "vegatationstag": 189, "frosttag": [189, 398], "eistag": [189, 398], "db_requ": [189, 398], "group2": 189, "verbrauchswert": 189, "db_version": 189, "suspend": [189, 233, 324, 325, 326, 328, 330, 332, 333, 378, 400, 408, 435, 441, 464, 467, 623, 645, 647, 649, 652, 655], "aktivitat": [189, 196, 215, 421, 422, 572], "recalc_all": [189, 398], "neuberechnungslauf": 189, "clean_cache_valu": [189, 398], "wasserzaehl": 189, "verbrauch_1": 189, "verbrauch_2": 189, "zaehlerstand_1": 189, "wasserzahlerstand": 189, "verbrauchsauswert": 189, "aussentemp": [189, 351], "nordseit": 189, "minmax_1": 189, "minmax_2": 189, "minmax_tag_minus1": 189, "db_addon_params_dict": 189, "eingerahmt": 189, "dicht": 189, "minmax_test_min_g": 189, "minmax_min_g": 189, "minmax_last_21": 189, "verbrauch_g": 189, "zaehlerstand_g": 189, "berechnungslauf": 189, "pausi": [189, 314, 329, 399, 519], "wiederaufnahm": 189, "vieler": [189, 219, 586, 671], "leseanfrag": 189, "grunland": 189, "loep": 189, "vegetationsbeginn": 189, "termin": 189, "dungungsmassnahm": 189, "aufsummier": 189, "januar": [189, 325, 526, 599, 634, 640, 657], "februar": [189, 526, 657], "75": 189, "gewichtet": 189, "dungung": 189, "jahreszahl": 189, "begriff": [189, 316, 632], "wgt": 189, "uberbegriff": 189, "lufttemperatur": 189, "schwellenwert": 189, "subtrahiert": 189, "fragestell": [189, 232], "pflanzenart": 189, "tagestemperatur": [189, 262], "maximaltemperatur": 189, "gekappt": 189, "zeitseri": [189, 223, 428], "aussag": [189, 339, 340], "pflanzenreif": 189, "hart": 189, "wint": 189, "folgejahr": 189, "ecovacs": [190, 399, 645], "seri": [190, 192, 203, 223, 282, 283, 284, 301, 347, 369, 427, 428, 481, 545, 550, 554, 643, 645, 646, 647, 649, 651, 652, 653, 656], "vaccum": [190, 645], "robot": [190, 280, 282, 367, 399, 456, 533, 643, 645, 646, 649, 653, 688], "recorded": [190, 227, 294], "obviously": 190, "deebotozmo": [190, 648], "supposed": 190, "deebot_ozmo": [190, 545, 550, 645, 648], "component": [190, 251, 262], "maps": [190, 215, 273, 282, 344, 421, 516, 545, 558, 652], "avr": [191, 267, 400], "x6300h": [191, 267, 400], "x4300h": [191, 400], "x3300w": [191, 400], "x2300w": [191, 400], "x1300w": [191, 400], "111": [191, 238, 264, 267, 334], "conn_typ": [191, 201, 238, 264, 267], "serial_async": [191, 201, 264, 267, 400, 408, 467], "command_class": [191, 201, 238, 264, 267], "sdpcommandparsestr": [191, 201, 238, 264, 267, 408, 622], "itembaum": [191, 201, 238, 264, 267], "angeschrieb": [191, 201, 264, 267], "aufzunehm": [191, 201, 207, 264, 267], "rucksprach": [191, 201, 264, 267], "einfliess": [191, 201, 264, 267], "commandy": [191, 264, 267], "abgedeckt": [191, 238, 264, 267, 328], "lautstarkeangab": [191, 264, 267], "ausles": [192, 200, 255, 345, 349, 351, 396, 424, 425, 448, 479, 484, 493, 497, 498, 499, 503, 517, 545, 548, 550, 558, 642, 674], "smartmet": [192, 306, 307, 401, 434, 498, 499, 511, 545, 548, 641, 643, 649, 653], "beherrsch": 192, "iec": [192, 254, 255, 401, 545, 548], "62056": [192, 401, 545, 548], "ir": [192, 237, 305, 306, 307, 351, 440, 545, 548, 671, 688], "lesekopf": [192, 306, 307, 337, 351, 522], "volkszaehl": [192, 545, 550, 645], "pyserial": [192, 306, 307, 334, 341, 351, 381, 653], "ausfuhrt": [192, 595], "berecht": [192, 302, 338], "udev": [192, 193, 194, 200, 261], "product": [192, 193, 194, 455], "subsyst": [192, 261], "tty": [192, 195, 196, 206, 306, 307], "idvendor": [192, 261], "10c4": 192, "idproduct": [192, 261], "ea60": 192, "0092c9fe": 192, "0666": 192, "dialout": [192, 200, 306, 307], "dlms0": 192, "rul": [192, 193, 194, 261, 315, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 508, 649, 655], "udevadm": 192, "landis": [192, 306, 307], "gyr": [192, 306, 307], "zmd120": 192, "e350": 192, "zmd310ct": 192, "elst": 192, "1440": 192, "pafal": 192, "12ec3g": 192, "itron": 192, "ace3000": 192, "sml": [192, 306, 307, 337, 498, 499, 511, 545, 548, 550, 645, 649, 653, 655], "e220": [192, 306, 307], "easymet": [192, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "q3ba1022": 192, "q3ma3120": 192, "emh": [192, 651], "ed300l": [192, 305, 306, 307, 651], "hag": [192, 305, 306, 307, 641], "363w5": 192, "ehz363wa": 192, "holley": [192, 643], "dtz541": [192, 643], "fehlerbehaftet": 192, "iskra": 192, "mt681": 192, "abstand": [192, 207, 347, 398, 401, 424, 425, 447, 449, 480, 483, 486, 498, 499, 501, 585], "variabel": [192, 575], "zahlerauswert": 192, "zahlerabfrag": 192, "abfragedau": 192, "systemauslast": [192, 580], "abfragezykl": [192, 461, 475], "update_crontab": 192, "anstoss": [192, 255, 562, 567, 591], "bedienungsanleit": [192, 200], "auskunft": [192, 685], "q3d": 192, "checksumm": [192, 306, 307, 498, 499], "aufforder": 192, "baud": 192, "aufgelist": [192, 617], "ableit": [192, 373], "get_manufacturer_id": 192, "exceldatei": 192, "openpyxl": 192, "excel": 192, "srv": 192, "export_flagid": 192, "ids": [192, 200, 202, 213, 254, 255, 257, 324, 330, 336, 338, 341, 409, 434, 460, 643, 645, 646, 647, 648, 651, 655, 674], "ausgabeinformation": 192, "anzureich": 192, "wertgrupp": 192, "datenelement": 192, "wertegrupp": 192, "ebenso": [192, 196, 263], "vorschrift": 192, "interpreti": 192, "belegt": [192, 289, 400, 408, 435, 441, 464, 467, 517, 566, 595], "wertezusammensetz": 192, "abstrakt": 192, "strom": [192, 292, 337, 436], "gas": [192, 521, 641, 669], "warm": [192, 330], "wasserbezog": 192, "elektrizitat": 192, "kanalnumm": 192, "messung": [192, 222, 224, 306, 307, 461, 632], "datenkonzentrator": 192, "registrierungsein": 192, "physisch": [192, 331, 548, 549], "informationsquell": 192, "hang": [192, 227, 381], "vermess": 192, "tarifabwickl": 192, "datenspeicherungsmethod": 192, "codefeld": 192, "zutreff": [192, 573], "algorithm": [192, 306, 307], "bedarfsmeng": 192, "tarif": [192, 306, 307], "messergebnis": 192, "klassifizier": [192, 556, 557, 671], "abrechnungszeitraum": 192, "vorstell": [192, 370], "zmd": 192, "310": 192, "industriell": 192, "50871031": 192, "155420": 192, "170214": 192, "0000": [192, 297, 306, 307, 492], "170201": 192, "0451": 192, "kw": [192, 298, 351, 502], "0060": [192, 368], "1702090945": 192, "74": [192, 638], "1701121445": 192, "1612081030": 192, "1611291230": 192, "00051206": 192, "kwh": [192, 234, 305, 306, 307, 337, 341, 436], "00049555": 192, "00045862": 192, "72044837": 192, "paf": 192, "000783": 192, "000045": 192, "000000000000": 192, "g11": 192, "offensicht": [192, 262], "dlms_obis_cod": [192, 648], "zaehler_unit": 192, "stromzaehl": 192, "dlms_obis_readout": 192, "ables": [192, 200], "z6": [192, 401], "d6": [192, 255, 401], "datum_aktueller_abrechnungsmonat": 192, "monatszaehl": 192, "billing": 192, "energie_ein": 192, "liefer": 192, "my_it": [192, 561], "value_oder_unit": 192, "wertetyps": 192, "hhmmss": [192, 401], "z4": [192, 401], "hhmm": [192, 401], "yymmdd": [192, 401], "zst10": [192, 401], "yymmddhhmm": [192, 401], "zst12": [192, 401], "yymmddhhmmss": [192, 401], "fliesskommazahl": [192, 232, 261, 401, 434], "wertetyp": 192, "impliziert": [192, 313, 434], "dlms_": 192, "nanodmx": [193, 194, 402, 545, 548], "dmxking": [193, 194, 402, 545, 548], "enttec": [193, 194, 402], "usbtty": [193, 194], "subsystem": [193, 194], "kernel": [193, 194], "ttyacm": [193, 194], "consult": [193, 365], "living_room": [193, 194, 232, 247, 590], "dimlight": [193, 194], "dimlight_reading": [193, 194], "living": [193, 248, 269, 272, 355, 496, 524, 562, 590], "dimlightreading": [193, 194], "kompatibl": [194, 230, 268, 370, 406, 545, 550, 669], "treib": [194, 396, 496, 524, 621, 622, 690, 693], "erleicht": [194, 223], "wohnzimmerlicht": [194, 590], "leselicht": 194, "modbusadapt": [195, 196], "damaged": [195, 649], "damag": 195, "improv": [195, 644, 646, 648, 649, 650, 652, 653, 654, 655, 656, 665], "ending": [195, 565, 591, 646], "pcb": [195, 210, 235, 646], "minor": [195, 644, 646, 649, 650, 651, 652, 653, 654, 655, 656], "aerosilent": [195, 196], "exos": [195, 196], "duw": 195, "division": 195, "x2": 195, "hp": 195, "6667_00_ti_modbus_parameter_v4": 195, "01_de": 195, "fixed": [195, 216, 251, 365, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 663], "bianco": [195, 196], "business": [195, 196], "centro": [195, 196], "micro": [195, 196], "primus": [195, 196], "stratos": [195, 196], "topo": [195, 196], "aerosmart": [195, 196], "mono": [195, 196], "xls": [195, 196], "termosmart": [195, 196], "x\u00b2": [195, 196], "drexelundweiss": [195, 545, 550, 641, 646, 655], "lu_id": [195, 196], "wp_id": [195, 196], "140": [195, 196, 292, 403], "retrylimit": [195, 196], "modbus": [195, 196, 207, 300, 334, 345, 437, 438, 452, 470, 494, 509, 517, 545, 548, 550, 643, 649, 653, 670], "6666_00_ti_modbus_parameter_d": 195, "wp": [195, 196], "attempt": [195, 655, 663, 665], "regarding": [195, 211, 655], "divisor": [195, 196], "betriebsart": [195, 196, 207, 338, 351, 443, 522, 622], "5002": [195, 196], "far": [195, 198, 247, 280, 652, 669, 670], "drexel": [196, 403, 545, 550], "warmepump": [196, 403, 443, 514, 526, 545, 550, 642, 647], "vorsicht": [196, 203, 292, 396], "beschadigt": [196, 591], "garanti": 196, "schad": 196, "pluginkonfiguration": [196, 237, 327, 330, 362, 423, 457, 507], "panel_id": 196, "debugmodus": 196, "duw_lu_regist": 196, "duw_wp_regist": 196, "duw_panel_regist": 196, "wandpanel": 196, "schreibversuch": 196, "registerspann": 196, "vaillant": 197, "wolf": [197, 405, 545, 550], "kromschroed": [197, 405, 545, 550], "ebus_geraet": 197, "hk_pumpe_perc": 197, "110": [197, 328, 334], "ebus_cmd": 197, "cir2": [197, 405], "heat_pump_curr": [197, 405], "ebus_typ": 197, "pwm": 197, "heizkreizpump": 197, "ernergie_summ": 197, "yield_sum": [197, 405], "energieertrag": [197, 311], "speicherlad": 197, "hw_load": [197, 405], "ww": [197, 622], "satellit": 198, "openwebif": [198, 406, 545, 550, 669], "943871": 198, "vusolo2": [198, 406], "vusolo4k": 198, "vti": 198, "dreambox": [198, 406], "8000": 198, "7020hd": 198, "81": [198, 229, 261, 638], "fast_cycl": 198, "rating": 198, "consequenc": 198, "accessibility": 198, "reduced": [198, 288, 334, 521, 643, 645, 646, 648, 649, 650, 652, 655], "carefully": 198, "worked": [198, 218], "typically": [198, 227, 260, 262], "timeperiod": [198, 239], "enigma2devic": 198, "disc_model": 198, "enigma2_data_typ": [198, 566], "e2hdd": 198, "e2model": 198, "enigma2_pag": [198, 566], "deviceinfo": 198, "disc_capacity": 198, "e2capacity": 198, "disc_free_spac": 198, "e2fre": 198, "e2ip": 198, "e2dhcp": 198, "e2mac": 198, "e2gateway": 198, "e2netmask": 198, "e2enigmaversion": 198, "e2imageversion": 198, "e2webifversion": 198, "e2apid": 198, "e2vpid": 198, "e2instandby": 198, "e2videowidth": 198, "e2videoheight": 198, "eventtitl": 198, "current_eventtitl": 198, "complex": 198, "behind": [198, 273], "eventdescription": 198, "current_eventdescription": 198, "eventdescriptionextended": 198, "current_eventdescriptionextended": 198, "currentvolum": 198, "current_volum": 198, "e2servicenam": 198, "subservic": 198, "servicereferenc": 198, "e2servicereferenc": 198, "servicestream": 198, "_enigma2_devic": 198, "get_host": [198, 655], "get_port": [198, 616], "m3u": 198, "corn": 198, "mjpgimag": 198, "grab": 198, "720": 198, "daserste_hd": 198, "sref": 198, "283d": 198, "3fb": 198, "c00000": 198, "zdf_hd": 198, "2b66": 198, "3f3": 198, "drei_sat": 198, "2b8e": 198, "3f2": 198, "phoenix": 198, "285b": 198, "401": [198, 227], "283e": 198, "kika": [198, 301], "2b98": 198, "2855": 198, "einsplus": 198, "2889": 198, "40f": 198, "zdfneo": 198, "2b7a": 198, "servustv": 198, "1332": 198, "3ef": 198, "dream": 198, "reichholf": 198, "remotecontrol": 198, "enigma2_remote_command_id": [198, 646], "388": 198, "398": 198, "399": 198, "yellow": [198, 218, 248], "119": [198, 240, 443], "207": [198, 334], "ff": 198, "159": [198, 443], "116": [198, 312, 313], "352": [198, 227], "exit": [198, 199, 231, 248, 278, 433, 649, 677, 688], "174": 198, "392": 198, "393": 198, "epg": [198, 231, 433], "358": 198, "139": 198, "subtitl": 198, "370": 198, "108": [198, 312, 313], "106": [198, 312, 313], "volup": 198, "115": 198, "voldown": 198, "114": 198, "407": 198, "412": 198, "key_0": [198, 301], "key_1": [198, 301], "key_2": [198, 301], "key_3": [198, 301], "key_4": [198, 301], "key_5": [198, 301], "key_6": [198, 301], "key_7": [198, 301], "key_8": [198, 301], "key_9": [198, 301], "e2audiotrackdescription": [198, 406], "e2audiotrackid": [198, 406], "e2audiotrackpid": [198, 406], "e2audiotrackactiv": [198, 406], "stay": [198, 294, 329, 332, 574], "testnachricht": [198, 406], "deepstandby": [198, 406], "wakeup": [198, 406], "answered": [198, 227], "ref_level": [199, 200], "switched": [199, 205, 247, 278, 644, 646, 648, 649, 652, 655, 668], "learning": [199, 218], "subscribed": [199, 356, 357], "tought": 199, "procedur": [199, 218], "actor": [199, 200, 646], "manual": [199, 200, 219, 254, 255, 290, 341, 368, 645, 649, 655], "detailed": [199, 206, 278, 298, 645], "interactiv": [199, 211, 635, 641, 643, 649, 652, 663, 667], "send_learn_protocol": 199, "id_offset": 199, "vary": [199, 370], "actuator": [199, 200, 288], "eltako": [199, 200, 646, 671], "fsr61": [199, 200], "fsva": [199, 200, 407], "230v": [199, 200, 210, 407], "fsud": [199, 200, 407], "fhk61ssr": 199, "eep": [199, 200, 407, 650, 653], "a5": 199, "frgbw71l": [199, 200], "3f": 199, "7f": [199, 297], "radiator": [199, 649], "valv": 199, "shutt": [199, 200, 646], "fsb61np": [199, 200], "fsb14": [199, 200], "fsb61": [199, 200], "fsb71": [199, 200, 646], "respect": [199, 650], "strg": 199, "applied": [199, 227], "enocean_tx_id_offset": [199, 200], "uni": 199, "bidirectional": [199, 235], "d4": [199, 255], "prior": [199, 308, 649], "activation": [199, 227, 655], "enabling": 199, "achieved": [199, 355], "start_ute_learnmod": 199, "funksensor": 200, "gira": 200, "peha": [200, 671], "transceiv": [200, 646], "fam4pi": 200, "868": 200, "funk": 200, "zugriffsrecht": [200, 338, 496], "gpasswd": 200, "stellglied": 200, "angelert": 200, "anlernvorgang": 200, "statusinformation": [200, 306, 307, 310, 351, 367, 384, 390, 466, 521, 536], "rfc2217": [200, 407, 655], "ser2net": 200, "ts4telnet": 200, "connector": 200, "serialdev": 200, "57600n81": 200, "hardwareadapt": 200, "tx_id": 200, "transmitt": [200, 278, 440], "achtstell": [200, 362], "hexadezimalwert": 200, "sendebefehl": [200, 511], "absetz": [200, 491], "aktuator": 200, "chip": [200, 461, 646], "knowledg": [200, 641, 668], "enoceansystemspecification": 200, "3aissu": 200, "3awhat_is_a_base_id": 200, "Wege": [200, 495], "baseid": [200, 646, 649], "rect": [200, 247], "ligg": 200, "0xyyyyzzzz": 200, "enocean_rx_id": [200, 221], "enocean_rx_eep": [200, 221], "hexadezimal": 200, "aufkleb": 200, "enoc": 200, "datenblatt": 200, "verrat": 200, "batteriestatus": 200, "schaltstatus": 200, "zuzuordn": 200, "enocean_rx_key": [200, 221], "nachrichtentyp": 200, "hor": [200, 328], "transmitting": 200, "encoean": 200, "standardisiert": [200, 622], "allianc": 200, "a5_02_01": 200, "a5_02_0b": 200, "40\u00e2": 200, "overall": [200, 211, 218], "6\u00e2": 200, "resolution": [200, 227], "a5_02_10": 200, "a5_02_1b": 200, "80\u00e2": 200, "3\u00e2": 200, "a5_02_20": 200, "2\u00e2": 200, "20\u00e2": 200, "a5_02_30": 200, "62": [200, 254, 255, 260, 279], "10\u00e2": 200, "a5_04_02": 200, "a5_07_03": 200, "occupancy": 200, "nodon": [200, 407], "pir": 200, "0x": [200, 511], "a5_08_01": 200, "a5_11_04": 200, "a5_12_01": 200, "a5_0g_03": 200, "reaching": 200, "his": [200, 214, 215, 275, 294, 353], "a5_30_01": [200, 650], "fsm60b": [200, 407], "leak": [200, 261, 642, 646, 650], "a5_30_03": [200, 650], "d2_01_07": 200, "electronic": 200, "d2_01_12": 200, "channel": [200, 205, 247, 248, 266, 290, 296, 358, 453, 466, 660, 663, 664], "wall": [200, 281, 480], "d5_00_01": 200, "ftk": 200, "ftkb": 200, "f6_02_01": 200, "rock": 200, "f6_02_02": 200, "f6_02_03": [200, 407], "ft55": 200, "f6_10_00": [200, 653], "mechanical": 200, "tilted": 200, "f6_0g_03": 200, "endposition": 200, "motor": [200, 257], "detalliert": 200, "tast": [200, 292, 314, 324, 328, 329, 331, 337, 339, 340, 378, 440, 495, 511, 513, 545, 554], "a0": 200, "rauf": 200, "bi": 200, "f6_10_0": 200, "turstatus": 200, "a5_02_05": 200, "aussentemperatur": [200, 207, 338, 351, 526, 622], "bri": [200, 211, 212, 213, 247, 419, 420], "a5_06_01": 200, "ill": 200, "lux": [200, 261, 291, 293, 325, 328], "svc": 200, "hum": [200, 221, 337, 371, 398, 667], "eng": [200, 554, 555], "powerstatus": 200, "di_0": 200, "a5_3f_7f": 200, "dimmewert": 200, "di_1": 200, "di_2": 200, "di_3": 200, "wasseralarm": 200, "a5_38_08_01": 200, "a5_38_08_02": 200, "a5_38_08_03": 200, "sendemodus": 200, "ute": 200, "anlernmodus": [200, 417], "schaltflach": 200, "anler": 200, "angelernt": [200, 210], "gebracht": [200, 643, 644, 645, 646, 678, 691], "transmit": [200, 337], "tx": [200, 210, 218, 654], "aktortyp": [200, 328], "lerntelegram": 200, "anlern": [200, 210, 674], "anlerntelegram": 200, "quitti": 200, "enocean_it": 200, "outside_temperatur": 200, "0180924d": 200, "01234567": [200, 221], "ft55switch": 200, "012345aa": 200, "bo": 200, "brightness_sensor": 200, "brightness_sensor_east": 200, "remark": [200, 205, 229, 247, 248, 262, 263, 277, 301, 325, 328, 339, 340, 577], "fah60": [200, 671], "01a51de6": 200, "dimmer1": [200, 566], "fdg14": 200, "00112233": 200, "enocean_tx_eep": 200, "dim_speed": 200, "block_dim_valu": 200, "actor1": 200, "ffaabbcc": 200, "actor1b": 200, "fsr61np": 200, "fsr61g": 200, "fsr61ln": 200, "flc61np": 200, "ligth": 200, "1a794d3": [200, 407], "block_switch": 200, "actor_d2": 200, "vld": 200, "ffdb7381": 200, "pulsewith": 200, "actord2_01_12": 200, "050a2ff4": 200, "stat_a": 200, "enocean_channel": 200, "awning": 200, "1a869c3": 200, "enocean_rtim": 200, "0029894a": 200, "short_800ms_directly_to_knx": 200, "enocean_rocker_action": 200, "enocean_rocker_sequenc": 200, "long_800ms_directly_to_knx": 200, "rocker_double_800ms_to_knx_send_1": 200, "occupancy_sensor": 200, "power_status": [200, 420], "sunblind": 200, "tgt_position": 200, "act_position": 200, "fahrzeit": 200, "rtim": 200, "ansteuerbefehl": 200, "0x01": 200, "0x02": 200, "rollad": [200, 338, 674], "rgbdimm": 200, "07_3f_7f": 200, "water_sensor": 200, "theoret": [201, 331, 561], "tw": [201, 210, 408, 650], "179": 202, "8080": [202, 215, 257, 276, 409, 537], "setpath": 202, "setnam": [202, 528], "usally": 202, "presaved": 202, "organis": 202, "unified": [202, 670], "repli": 202, "112": [202, 283, 334], "10021": 202, "12162": 202, "strvalu": [202, 409], "decplac": [202, 409], "scalefactor": [202, 409], "advtextoffset": [202, 409], "262": 202, "calc": [202, 409], "reply": [202, 234, 623, 661], "scale_factor": 202, "adv_text_offset": 202, "changeabl": 202, "touch": [202, 403, 651, 688], "eta_pu_uri": 202, "discription": 202, "requesting": [202, 645, 646], "eta_pu_typ": 202, "eta_pu_error": 202, "eta_unit": 202, "emission_temperatur": 202, "warmwat": 202, "10111": 202, "12129": 202, "extra_loading_button": 202, "12134": 202, "seien": 203, "bewusst": [203, 326, 332, 576], "sicherheitsrisiko": 203, "biest": 203, "kontrolli": [203, 432, 453, 535, 545, 550, 561, 641], "pfadangab": [203, 229, 410, 561, 630], "listbox": [203, 410, 653], "doppelklick": 203, "eingabebox": 203, "ergebniskast": 203, "ruckfrag": [203, 260], "ide": 203, "debugmeld": 203, "myconvert": 203, "isinstanc": 203, "__str__": [203, 650], "mund": 203, "arbeitszimmerog": 203, "09": [203, 270, 271, 273, 306, 307, 338, 360, 569, 592, 682], "205668": 203, "1573317598203": 203, "864000": 203, "1573231198203": 203, "1573232535421": 203, "datenbankattribut": 203, "myfill": 203, "allitem": 203, "hasattr": [203, 596], "continu": [203, 248, 274, 282, 283, 668], "mycount": 203, "rpi": [204, 277, 285, 309, 412, 483, 484], "reedkontakt": [204, 412], "initialisierungszeit": 204, "IN": 204, "sleekxmpp": [205, 413, 646], "smarthomng": 205, "get_conf": 205, "located": [205, 315], "harmony_hub_ip": 205, "shield": [205, 262], "24569980": 205, "12345678": 205, "filmsz": 205, "12345123": 205, "50pfl7956k": 205, "31913922": 205, "poweron": [205, 244], "powertoggl": 205, "numericbasic": 205, "volumedown": 205, "volumeup": 205, "pac": [205, 312, 313], "201": 205, "31914808": 205, "channelprev": 205, "channeldown": 205, "channelup": [205, 290], "navigationbasic": 205, "directiondown": 205, "directionleft": 205, "directionright": 205, "transportbasic": 205, "31907101": 205, "harmony_ip": 205, "78": [205, 314, 338, 638], "harmony_port": 205, "5222": [205, 368, 413, 534], "sleekxmpp_debug": 205, "vou": 205, "harmony_command_0": 205, "activity_id": 205, "harmony_command_1": 205, "togeth": [205, 294, 312, 315, 352, 353, 413, 644], "vic": [205, 413, 623], "versa": [205, 413, 623], "2s": 205, "yourself": [205, 281], "heavily": [205, 370], "command1": 205, "command2": 205, "command3": 205, "mix": [205, 365], "activity1": 205, "42282391": 205, "indicat": [205, 305], "highly": 205, "twic": [205, 227], "delays": [205, 342], "harmony_command": 205, "chain": 205, "everytim": 205, "blow": 205, "harmony_it": 205, "current_activity_id": 205, "current_activity_nam": [205, 413], "simultaneously": 205, "influenc": 205, "inputbd": 205, "powered": [205, 282, 283, 654], "bluray": 205, "instantly": [205, 623], "rtl": 205, "inputsat": 205, "cbl": 205, "movi": 205, "committed": [205, 668], "badil": [206, 545, 550], "helios_logics": 206, "ttyama0": [206, 407], "ex": 206, "fanspeed_uzsu_logic": 206, "fanspeed": [206, 265, 367, 465, 533, 622], "fanspeed_uzsu": 206, "booster_logic": 206, "booster_mod": 206, "troubleshooting": [206, 673], "show_widget": 206, "ec300pro": 206, "wohnraumluft": 206, "use_uzsu": 206, "enjoy": 206, "luftungsanlag": [207, 415], "firma": [207, 223, 265, 377, 545, 550], "helios": [207, 227, 415, 545, 550, 642, 643, 645, 646, 653, 655, 670], "ausgestattet": [207, 363, 511, 545, 548], "pymodbus3": 207, "helios_ip": 207, "luftungsgerat": [207, 415], "gefullt": 207, "zulufttemperatur": 207, "incoming_temp": [207, 415], "schreibbar": 207, "outside_temp": [207, 415], "aussenluft": [207, 414], "exhaust_temp": [207, 415], "abluft": 207, "inside_temp": [207, 415], "fortluft": 207, "zuluft": [207, 443], "pre_heating_temp": [207, 415], "vhz": 207, "kanalful": 207, "t5": 207, "post_heating_temp": [207, 415], "nhz": 207, "kanalfuhl": 207, "t6": 207, "post_heating_reflux_temp": [207, 415], "rucklauffuhl": 207, "warmwass": [207, 308, 309, 338, 443, 526, 622], "t7": 207, "error_count": [207, 415], "warning_count": [207, 415], "warnungenint": 207, "info_count": [207, 415], "fan_in_rpm": [207, 415], "fan_out_rpm": [207, 415], "internal_humidity": [207, 415], "luftfeuchtigkeitsfuhl": 207, "sensor1_humidity": [207, 415], "fuhl": 207, "ftf": 207, "feucht": 207, "sensor2_humidity": [207, 415], "sensor3_humidity": [207, 415], "sensor4_humidity": [207, 415], "sensor5_humidity": [207, 415], "sensor6_humidity": [207, 415], "sensor7_humidity": [207, 415], "sensor8_humidity": [207, 415], "sensor1_temperatur": [207, 415], "sensor2_temperatur": [207, 415], "sensor3_temperatur": [207, 415], "sensor4_temperatur": [207, 415], "sensor5_temperatur": [207, 415], "sensor6_temperatur": [207, 415], "sensor7_temperatur": [207, 415], "sensor8_temperatur": [207, 415], "sensor1_co2": [207, 415], "sensor2_co2": [207, 415], "sensor3_co2": [207, 415], "sensor4_co2": [207, 415], "sensor5_co2": [207, 415], "sensor6_co2": [207, 415], "sensor7_co2": [207, 415], "sensor8_co2": [207, 415], "sensor1_voc": [207, 415], "voc": [207, 461], "sensor2_voc": [207, 415], "sensor3_voc": [207, 415], "sensor4_voc": [207, 415], "sensor5_voc": [207, 415], "sensor6_voc": [207, 415], "sensor7_voc": [207, 415], "sensor8_voc": [207, 415], "filter_remaining": [207, 415], "boost_remaining": [207, 415], "partybetrieb": 207, "restzeit": 207, "sleep_remaining": [207, 415], "ruhebetrieb": 207, "fan_level_percent": [207, 415], "lufterstuf": 207, "bypass_op": [207, 415], "humidity_control_status": [207, 415], "humidity_control_target": [207, 415], "sollwert": [207, 289, 328, 330, 351], "co2_control_status": [207, 415], "co2_control_target": [207, 415], "voc_control_status": [207, 415], "voc_control_target": [207, 415], "comfort_temperatur": [207, 383, 415], "behaglichkeitstemperatur": 207, "fan_in_voltage_level1": [207, 415], "fan_out_voltage_level1": [207, 415], "fan_in_voltage_level2": [207, 415], "fan_out_voltage_level2": [207, 415], "fan_in_voltage_level3": [207, 415], "fan_out_voltage_level3": [207, 415], "fan_in_voltage_level4": [207, 415], "fan_out_voltage_level4": [207, 415], "manual_mod": [207, 415, 645], "handbetrieb": 207, "filter_chang": [207, 415], "filterwechselbool": 207, "filter_changeinterval": [207, 415], "wechselintervall": 207, "bypass_roomtemperatur": [207, 415], "bypass_minoutsidetemp": [207, 415], "fan_level": [207, 415], "fan_in_level": [207, 415], "fan_out_level": [207, 415], "180": [207, 325, 349, 351, 502, 504, 655], "boost_level": [207, 415], "boost_on": [207, 415], "abbrech": 207, "sleep_duration": [207, 415], "sleep_level": [207, 415], "sleep_on": [207, 415], "preheating_status": [207, 415], "vorheiz": 207, "dokument": [207, 232], "auffindbar": 207, "varlist": 207, "retreiv": [208, 648], "bsh": [208, 416, 545, 558, 649], "siem": [208, 239, 308, 309, 416, 500, 545, 550, 558, 642, 647, 649], "obtain": [208, 254], "working": [208, 218, 227, 234, 257, 288, 334, 642, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 654, 655, 691], "davidmstraub": 208, "thank": [208, 221, 275, 294, 315, 643, 646, 665], "pointing": 208, "oauth2": [208, 254, 255, 266, 349, 362, 416, 521, 530, 545, 558, 641, 646, 649], "acquired": 208, "offlin": [208, 216, 217, 247, 254, 314, 321, 362, 368, 527, 642, 652], "expir": [208, 688], "home_connect": 208, "client_id": [208, 293, 362], "client_secret": 208, "testing": [208, 243, 273, 646, 651, 654], "oauth": [208, 266, 368, 456, 674], "retrieval": [208, 234, 245, 335, 346, 368, 643, 649, 653], "pyhton": 209, "pyhomematic": [209, 210, 647, 674], "ccu2": [209, 210, 417, 545, 548, 674], "explained": [209, 288, 315], "hierin": 210, "fehlemed": 210, "hmgeneric": 210, "duty_cycl": 210, "0007d7099d0552": 210, "fault": 210, "verschwind": [210, 339, 340], "statuswechsel": [210, 219], "homematic_": 210, "ermangel": 210, "hm": 210, "lc": [210, 681], "bl1": 210, "bl1pbu": 210, "pb": 210, "ja1pbu": 210, "zel": 210, "stg": 210, "fep": 210, "263": 210, "146": 210, "147": [210, 247, 282], "blx": 210, "hmip": 210, "broll": 210, "ipkeyblind": 210, "bbl": 210, "ipkeyblindtilt": 210, "dim1l": 210, "cv": 210, "dim1t": 210, "dr": 210, "dim1pwm": 210, "dim1tpbu": 210, "dim2l": 210, "dim2t": 210, "hss": 210, "dx": 210, "dis": [210, 632], "ou": 210, "cf": 210, "cm": 210, "cfm": 210, "sw1": 210, "dn": 210, "r1": 210, "r3": 210, "r4": 210, "r5": 210, "om54": 210, "ba": [210, 294], "atmega168": 210, "sw1pbu": 210, "sw2": 210, "sw2pbu": 210, "sw4": 210, "wm": 210, "131": 210, "fzs": 210, "swx": 210, "rev": [210, 400, 408, 435, 441, 464, 467, 642], "ritt": 210, "ES": 210, "pmsw1": 210, "switchpowermet": 210, "pmswx": 210, "hmw": 210, "sw7": 210, "ioswitch": 210, "sw14": 210, "hmwioswitch": 210, "keyblind": 210, "keydimm": 210, "ipswitch": 210, "psm": 210, "ipswitchpowermet": 210, "fsm": 210, "bsm": 210, "bdt": 210, "ipkeydimm": 210, "keymatic": 210, "sen": 210, "rd": 210, "rain": [210, 218, 262, 462], "st6": 210, "ecologic": 210, "sir": 210, "rfsir": 210, "shuttercontact": 210, "sco": 210, "ffk": 210, "bc": 210, "maxshuttercontact": 210, "sci": [210, 281], "ipshuttercontact": 210, "swdo": 210, "srh": 210, "rotaryhandlesensor": 210, "rhs": 210, "fdk": 210, "wds": 210, "watersensor": 210, "powermetergas": 210, "gongsensor": 210, "smok": 210, "smokev2": 210, "swsd": 210, "ipsmok": 210, "mdir": 210, "wm55": 210, "remotemotion": 210, "motion": [210, 227], "motionv2": 210, "smi": 210, "motionip": 210, "smo": 210, "spi": 210, "presenceip": 210, "luxsensor": 210, "ep": 210, "impulsesensor": 210, "ash550i": 210, "areathermostat": 210, "ash550": 210, "wds10": 210, "wds20": 210, "wds40": 210, "157": 210, "158": 210, "wds100": 210, "c6": 210, "weathersensor": 210, "ks550": 210, "ks888": 210, "ks550tech": 210, "ks550lc": 210, "swo": 210, "ipweathersensor": 210, "ws550": 210, "weatherstation": [210, 365], "ws888": 210, "ws550tech": 210, "ws550lcb": 210, "ws550lcw": 210, "wdc7000": 210, "tis": 210, "tiltsensor": 210, "scd": 210, "co2sensor": 210, "160": [210, 227], "wds30": 210, "ot2": 210, "temperaturediffsensor": 210, "temperaturesensor": 210, "s550ia": 210, "wa": 210, "fillinglevel": 210, "wiredsensor": 210, "valvedriv": 210, "fsa": 210, "tiltip": 210, "stho": 210, "ipareathermostat": 210, "vg": 210, "thermostatgroup": 210, "tc": [210, 293], "thermostatwall": 210, "thermostatwall2": 210, "fwt": 210, "trx": 210, "cyg": 210, "maxthermostat": 210, "cyn": 210, "maxwallthermostat": 210, "etrv": 210, "ipthermostat": 210, "sthd": 210, "ipthermostatwall": 210, "sth": 210, "wth": 210, "bwth": 210, "rcv": 210, "remotevirtual": 210, "rc": [210, 278, 477], "pbu": 210, "sec3": 210, "sec4": 210, "p1": 210, "sb": 210, "remotepress": 210, "pbi": 210, "brc": 210, "atent": 210, "wt": 210, "hs": [210, 419, 577], "fst": 210, "up4": 210, "145": 210, "135": [210, 301, 495], "led16": 210, "4dis": 210, "wrc2": 210, "wrc6": 210, "swi": 210, "fss": 210, "up3": 210, "144": [210, 227], "rc8": 210, "developng": 211, "mworion": [211, 545, 548], "typical": [211, 247, 358], "38f625a739562a8bd261ab9c7f5e62c8": 211, "hexadecimal": [211, 227], "authorized": 211, "authoriz": [211, 244, 296], "notification": [211, 219, 269, 274, 296, 368, 469, 471, 545, 550], "polling": [211, 498, 655], "attached": [211, 274], "lgroup": 211, "garamut": 211, "bulb": [211, 247, 651], "livingcolor": 211, "bloom": 211, "aura": 211, "iris": 211, "specs": 211, "meethu": 211, "besid": [211, 290], "153": 211, "lselect": [211, 419, 420], "colorloop": [211, 419, 420], "col_r": 211, "col_g": 211, "col_b": 211, "xy": [211, 212, 213, 419, 420], "colordisc": 211, "modelid": [211, 212, 213, 337, 419, 420], "swversion": [211, 212, 213, 227, 419, 420], "bridge_nam": 211, "swupdat": 211, "whitelist": 211, "apiversion": 211, "bridge_swversion": 211, "linkbutton": 211, "netmask": 211, "portalservic": 211, "portalconnection": 211, "portalstat": 211, "localtim": 211, "zigbeechannel": 211, "hy": 211, "scheduled": [211, 227, 294, 652, 655], "interpolation": [211, 643, 652, 655], "dimmed": [211, 247], "avoided": [211, 294], "nevertheless": 211, "equally": 211, "interpolat": 211, "transition": 211, "making": [211, 653], "searched": [211, 318, 365], "modeltyp": 211, "lampnam": 211, "drops": 211, "neuentwickl": [212, 223, 271, 289], "retired": [212, 213, 689, 693], "authorisier": 212, "webinferfac": 212, "verfahr": [212, 213, 260, 266, 331, 349, 521, 678], "anwendungsschlussel": [212, 213, 419, 420], "light_ww": [212, 213], "warmwhit": [212, 213, 648], "light_xy": [212, 213], "light_extended": [212, 213], "light_ww_extended": [212, 213], "light_xy_extended": [212, 213], "steuernd": [212, 213, 265, 621, 626], "hue2_id": 212, "test_leucht": [212, 213], "wirkung": [212, 213, 256], "hue2_resourc": 212, "hue2_function": [212, 653], "light_nam": [212, 213], "colormod": [212, 213, 337, 419], "light_typ": [212, 213], "resouc": [212, 419, 420], "nachgeseh": [212, 213], "bri_inc": [212, 213, 419, 420], "activate_sc": [212, 213, 419, 420], "modify_sc": [212, 213, 419, 420, 653], "lightlevel": [212, 419, 420], "pullrequ": 212, "590": 212, "leuchten_nam": [212, 213], "brigd": [212, 213], "funft": [212, 213], "secht": 212, "apps": [212, 213, 296, 315], "signify": [213, 419, 420, 545, 548, 649], "irgendwann": 213, "rund": [213, 376], "2915002c": 213, "6c8f": 213, "4d9b": 213, "9134": 213, "6b1a8ded4be3": 213, "konzentration": 213, "farbsyst": [213, 375], "untersutz": 213, "deconz": [213, 648, 651, 653], "default_transitiontim": 213, "hue3_id": 213, "d299371e": 213, "098d": 213, "4836": 213, "9669": 213, "d8ad3b5043c0": 213, "hue3_resourc": 213, "hue3_function": 213, "hue3_transition_tim": 213, "device_pow": [213, 420], "beospiel": 213, "hue3_": 213, "siebt": 213, "husqvarna": [214, 215, 280, 421, 422, 545, 550, 645, 649, 651], "automow": [214, 215, 421, 422, 479, 545, 550, 649, 651], "amc": 214, "smartphon": [214, 228, 315, 316, 671], "am315x": [214, 215], "userid": [214, 612], "mysecret": [214, 215], "christoph": 214, "carr\u00e9": 214, "crisz": 214, "chrisz": 214, "pyhusmow": 214, "david": 214, "karlsson": 214, "dinmammas": 214, "homebridg": [214, 262], "robonect": [214, 545, 550, 645, 646, 649, 651, 656], "jak": 214, "forr": 214, "rannmann": 214, "nextdom": 214, "benutzerkonto": 215, "husqvarnagroup": 215, "aioautomow": [215, 652, 654], "verwund": 215, "apikey": [215, 228, 272, 335, 344, 361], "mykey": [215, 563], "apisecret": [215, 652], "husky_stat": 215, "20description": 215, "20and": 215, "20error": 215, "20cod": 215, "going_hom": 215, "unterweg": 215, "ladestation": [215, 219, 367, 399], "gehandhabt": 215, "mah": [215, 220], "fuer": [215, 344, 389, 390, 407, 456, 466, 478, 517, 545, 548, 550, 671], "testzweck": [215, 229], "gpspoint": [215, 422, 652], "mapskey": 215, "zoomlevel": 215, "pathcolor": 215, "mow": [215, 218, 219, 220, 479, 649, 652], "4addsf665dsf53fdg5dgdasfg43sdf51": 215, "3afd02": 215, "Ihn": 215, "park": [215, 652], "pet": 215, "protzn": 215, "thomas55555": 215, "handle_login": 216, "robust": 216, "break": [216, 253, 278], "kalenderdatei": [217, 423], "ics": [217, 545, 558], "calendarit": 217, "ical_calendar": 217, "test_downloaded": 217, "calendarfil": 217, "cal": [217, 423], "folloging": 217, "extract": [217, 288, 641], "summary": [217, 344, 521, 655], "cal_class": 217, "testword": 217, "tommorrow": 217, "trough": [218, 281, 301, 365], "bosch": [218, 220, 424, 425, 545, 550, 558, 642], "lawn": [218, 262], "gsm": [218, 219], "800": [218, 219], "1200": [218, 219, 328], "mowing": [218, 219], "moving": 218, "considering": [218, 655], "frequency": [218, 235, 365, 622, 652], "gard": [218, 219, 262, 424, 425], "visualization": [218, 294, 352, 355, 356, 357, 650], "mowed": [218, 219], "accurat": 218, "docked": [218, 219], "planned": [218, 253], "occurred": [218, 653, 655], "forecast": [218, 262, 311, 365, 394, 468, 502, 652, 665, 666, 670], "four": [218, 257, 361], "exp": 218, "sunshin": 218, "daytim": 218, "grauonlin": 218, "alexwww": 218, "loos": 218, "authenticat": [218, 219], "avoid": [218, 222, 231, 298, 645, 646, 649, 650, 653, 655, 656], "feel": [218, 251], "chao": 218, "restclient": 218, "966612": 218, "zazaz": 218, "blob": 218, "myindego": 218, "30second": 218, "annoyed": 218, "img_pfad": [218, 219], "mapfil": 218, "car": [218, 227, 253, 260, 335, 344, 681], "parent_it": [218, 219, 288], "relating": 218, "dropin": [218, 219, 220, 253, 314, 653, 687], "affecting": 218, "1144945": 218, "bcrzlich": 218, "hinzugef": 218, "bcgte": 218, "statecod": 218, "state_str": 218, "stateerror": 218, "config_chang": 218, "indego_add_key": 218, "mow_trig": 218, "statelevel": 218, "mowedpercent": 218, "mapsvgcachedat": 218, "mapupdateavailabl": 218, "moweddat": 218, "xpos": [218, 219], "ypos": [218, 219], "svg_xpos": [218, 219], "svg_ypos": [218, 219], "mowmod": [218, 219], "next_tim": 218, "runtimetotaloperationmin": 218, "runtimetotalchargemin": 218, "runtimesessionoperationmin": 218, "runtimesessionchargemin": 218, "indego_smart": 218, "frequenz": 218, "indego_frequency": 218, "indego_command": 218, "returntodock": [218, 219, 425], "alm_sn": [218, 219], "alm_nam": [218, 219], "service_count": [218, 219], "needs_servic": [218, 219], "alm_mod": [218, 219], "baretoolnumb": [218, 219], "alm_firmware_version": [218, 219], "alert_messag": 218, "alert_id": [218, 219], "alert_id_s": 218, "alert_flag": 218, "alert_headlin": 218, "alert_dat": 218, "int_0": 218, "wwsymbol_mg2008": 218, "tt": [218, 219, 657], "wwtext": 218, "rrr": 218, "prrr": 218, "intervallength": 218, "spell": 218, "wolk": 218, "gewitt": 218, "int_1": 218, "int_2": 218, "int_3": 218, "int_4": 218, "int_5": 218, "int_6": 218, "int_7": 218, "int_8": 218, "int_9": 218, "int_10": 218, "int_11": 218, "int_12": 218, "int_13": 218, "int_14": 218, "int_15": 218, "int_16": 218, "int_17": 218, "int_18": 218, "int_19": 218, "day_0": 218, "tn": 218, "day_1": 218, "day_2": 218, "day_3": 218, "day_4": 218, "gartenkart": [219, 220], "engineering": [219, 247], "marcov": [219, 545, 550], "ersteinricht": 219, "toll": 219, "entwicklungsphas": 219, "unzahl": 219, "geduld": [219, 222, 223], "bmx": [219, 545, 548, 550, 554], "psilo": [219, 545, 550, 558], "erlaubnis": 219, "grafik": 219, "arbeit": [219, 622, 629, 643], "odvarko": 219, "jscolor": 219, "opensourc": 219, "gplv3": 219, "endpoit": 219, "sonnenstund": 219, "entf": 219, "messerzahl": 219, "code64": 219, "wintermodus": 219, "stillgelegt": 219, "mahkalenderverwalt": 219, "smartmow": 219, "vektor": [219, 220], "mahspurdarstell": 219, "indegoconnect": 219, "maherposition": 219, "netz": 219, "updatefunktion": [219, 381], "sensorempfind": 219, "popup": [219, 220], "chart": [219, 645], "maheffizienz": [219, 220], "ladezeit": [219, 220], "maherfarb": 219, "kartenkart": [219, 220], "wahlbar": [219, 362, 531], "1300": 219, "erlautert": [219, 224, 287, 313, 324, 331, 332, 577, 587, 597, 622], "ladezustand": 219, "abfall": 219, "langzeitbeobacht": 219, "unterstellt": 219, "akkuladestand": 219, "netznutz": 219, "gemaht": 219, "mowtrack": 219, "path_2_weather_pics": 219, "pics": [219, 425], "indego_credential": 219, "abruf": [219, 249, 262, 362, 411, 490, 519, 520, 545, 558, 641], "erststart": 219, "abgeschalt": 219, "verzeichn": 219, "raumseit": [219, 220, 496, 523], "deinnam": 219, "raumnavigation": [219, 682], "colour": 219, "originalkart": 219, "map_2_show": 219, "aufhubsch": 219, "breitengrad": [219, 502, 510, 599, 636], "vorgeschlag": 219, "gardenmap": 219, "999999": 219, "state_trigger_": 219, "alarm_trigger_": 219, "kommunikationsanfrag": 219, "trigger_state_trigger_1": 219, "trigger_alarm_trigger_1": 219, "wechsel": [219, 220, 562, 572, 641], "indego2alexa": 219, "state_trigger_1": 219, "state_trigger_2": 219, "getan": 219, "state_trigger_3": 219, "state_trigger_4": 219, "alarm_trigger_1": 219, "wartung": [219, 262, 644, 645, 651, 652, 653, 654, 656], "alarm_trigger_2": 219, "mess": [219, 306, 307], "alarm_trigger_3": 219, "alarm_trigger_4": 219, "send_cmd": 219, "wetterstation": [219, 323, 325, 326, 328, 330, 338, 339, 340, 532], "schick": [219, 228, 641], "verlass": [219, 325, 326, 327, 328, 329, 330, 331, 332, 508, 588, 629], "indego_rc": 219, "vgl": [219, 412], "konfig": [219, 249, 452], "eingezeichnet": 219, "hinzugelad": 219, "wahlt": [219, 338, 480], "circl": 219, "svg_8": 219, "cy": 219, "792": 219, "cx": 219, "fill": [219, 652, 655], "fff601": 219, "strok": 219, "888888": 219, "gelb": [219, 263], "textarea": 219, "legacy": [219, 368, 646, 655], "gardening": 219, "extrahi": 219, "mahertyps": 219, "authorization": [219, 296, 646], "bear": 219, "_bear": 219, "agent": [219, 297, 688], "connect_4": 219, "12253": 219, "zugriffspunkt": 219, "alm": 219, "automaticupdat": 219, "supp": 219, "alm_serial": 219, "user_id": [219, 362, 655], "00647": 219, "01043": 219, "159551": 219, "3600ha2300": 219, "xxxxxxxxxx": [219, 298], "accessori": 219, "operatingdata": 219, "predictiv": 219, "lastcutting": 219, "nextcutting": 219, "accessory_cod": 219, "autolock": 219, "exclusion_days": 219, "slot": [219, 339, 340], "sthr": 219, "enmin": 219, "enhr": 219, "stmin": 219, "ttd": 219, "schedule_days": 219, "34352": 219, "193907": 219, "89": [219, 230], "mapsvgcache_t": 219, "1573585675296": 219, "64513": 219, "map_update_availabl": 219, "resource_id": 219, "470": 219, "optinapp": 219, "display_nam": 219, "xxxxxxxxx": 219, "xxxxxxxx": 219, "optin": 219, "country_cod": 219, "mowertyp": 219, "facebook": 219, "requestposition": 219, "process_id": 219, "dateandtim": 219, "reinitializ": 219, "resetpassword": 219, "indego": [220, 425, 545, 550, 558, 642, 645, 653], "rasenmah": [220, 479], "wetterinformation": [220, 262, 532], "akku": [220, 299], "encodi": 220, "eingeloggt": 220, "tsdb": [221, 426, 545, 554], "graphing": 221, "grafana": [221, 426, 545, 554], "chronograf": [221, 426, 545, 554], "sgtseppel": 221, "latency": 221, "blocked": [221, 257], "rthill": [221, 269, 545, 550, 554, 558], "8089": [221, 222, 426, 427], "retention": [221, 222], "batching": 221, "metrics": [221, 337], "poor": 221, "buff": 221, "batch": 221, "flush": 221, "buffered": 221, "pending": 221, "1s": 221, "hit": 221, "write_protocol": 221, "influx_host": 221, "influx_port": 221, "influx_keyword": 221, "influx": [221, 225], "relevanc": 221, "gf": [221, 269, 288, 360], "1234567": 221, "a5_04_01": 221, "peopl": [221, 668], "pushed": [221, 646], "webui": 221, "1451897887326109961": 221, "92": 221, "1451897887305586638": 221, "800000000000004": 221, "geschutzt": [222, 232, 338, 688], "udp_port": [222, 645], "value_field": [222, 223], "write_http": 222, "http_port": [222, 645], "8086": [222, 223, 225, 427, 428], "some_it": 222, "ersatz": [222, 223, 302, 585], "einschliess": [222, 262, 396], "dining_temp": 222, "influxdb_nam": 222, "influxdb_tag": 222, "protokollier": [222, 287, 396, 508], "zeitseriendatenbank": 222, "fork": [222, 284, 668], "influxdata": [222, 223, 224, 225, 427, 428, 545, 554, 651, 653, 670], "namensgeb": 222, "zuruckzugreif": [222, 333, 688], "messungsnam": 222, "mitprotokolliert": 222, "zuruckgreif": 222, "uberfluss": [222, 674], "kodi": [222, 269, 545, 550, 642, 645, 646, 648, 649, 655], "kodier": 222, "messnam": 222, "concept": 222, "schema_and_data_layout": 222, "piec": 222, "influxdb2": [222, 225, 226, 256, 545, 554, 651, 652, 653, 655], "influxdb1": [222, 223], "adaptiert": [222, 223, 688], "pandas": [222, 223], "influxdb_client": [222, 223], "zugriffsparamet": [222, 223], "cvs": [222, 223], "gefragt": [222, 223], "influxdbclient": [222, 223], "write_api": [222, 223], "synchronous": [222, 223], "pd": [222, 223], "bucket": [222, 223], "str_value_field": [222, 223], "str_valu": [222, 223, 428], "csvfil": [222, 223], "smarthomeng_dump": [222, 223], "write_option": [222, 223], "df": [222, 223], "read_csv": [222, 223], "reset_index": [222, 223], "num_rows": [222, 223], "last_progress_percent": [222, 223], "iterrows": [222, 223], "progress_percent": [222, 223], "1000000": [222, 223, 279], "datenbankmanagementsyst": 223, "dbms": 223, "zeitreih": [223, 224, 226, 260, 287], "engl": 223, "vertrieb": 223, "aufsetzt": 223, "fungi": 223, "migration": [223, 646, 655, 667, 670], "_measurement": 223, "influxdb2_nam": 223, "_tim": [223, 655], "synchonisation": 223, "speichernd": 223, "zusatzdat": 223, "betracht": [223, 321], "spezialisiert": 224, "relational": 224, "mariadb": [224, 287], "redis": 224, "effizienz": 224, "komplexitat": [224, 329], "merkmal": 224, "spezialisier": 224, "Sehr": 224, "arbeitsbereich": 224, "dashboard": [224, 362, 692], "speicherort": [224, 432], "aufbewahrungsfrist": 224, "datenpunkt": [224, 229, 232, 262, 306, 307, 351, 371, 388, 434, 485, 522, 525, 579], "gehort": [224, 293, 434, 451, 505, 622], "feldwert": 224, "feldschlussel": 224, "_field": 224, "installationsdokumentation": 225, "tar": [225, 309, 628, 677], "gz": [225, 309, 677, 688], "xvzf": 225, "aufbewahrungsdau": [226, 389], "72": [226, 262, 638], "zuordn": [226, 241, 263, 566], "endlos": [226, 328], "aufgehob": 226, "speicherziel": 226, "aufbewahrt": [226, 263, 381], "autorisi": 226, "anchliess": 226, "clipboard": [226, 228, 273], "eigerichtet": 226, "distributor": 227, "keil": 227, "telecom": 227, "verso": 227, "helio": 227, "enhanced": [227, 649, 652, 653, 655], "licenc": 227, "shop": [227, 305], "privileg": 227, "system_info": 227, "system_status": 227, "system_restart": 227, "firmware_upload": 227, "firmware_apply": 227, "config_get": 227, "config_upload": 227, "factory_reset": 227, "switch_caps": 227, "switch_status": 227, "switch_control": 227, "io_caps": 227, "io_status": 227, "io_control": 227, "phone_status": 227, "call_status": 227, "call_dial": 227, "call_answ": 227, "call_hangup": 227, "camera_caps": 227, "camera_snapshot": 227, "display_caps": 227, "display_upload_imag": 227, "log_caps": 227, "log_subscrib": 227, "log_unsubscrib": 227, "log_pull": 227, "audio_t": 227, "email_s": 227, "pcap": 227, "pcap_restart": 227, "pcap_stop": 227, "edit": [227, 278, 334], "intercom_2n": [227, 545, 550, 655], "intercom_ip": 227, "auth_typ": 227, "my_us": 227, "my_pass": 227, "dig": [227, 429, 688], "despit": 227, "fact": [227, 364], "consistent": 227, "wondering": 227, "unauthorized": 227, "2n_intercom": 227, "integrated": [227, 294, 341, 646], "renewing": [227, 655], "devicestat": 227, "event_2n": 227, "device_stat": 227, "signalled": 227, "ever": [227, 288], "event_data_2n": 227, "audioloopt": 227, "callstatechanged": 227, "cardentered": 227, "tapping": 227, "rfid": 227, "card": [227, 641], "equipped": [227, 280, 645, 650], "codeentered": 227, "keypad": 227, "dooropentoolong": 227, "excessively": 227, "opening": [227, 356, 357], "closing": [227, 647, 652], "digital": [227, 278, 412], "inputchanged": 227, "keypressed": 227, "pressing": [227, 301], "dial": 227, "keyreleased": 227, "releasing": 227, "loginblocked": 227, "temporary": [227, 649, 653, 655], "motiondetected": 227, "detection": [227, 261, 649, 655, 656], "noisedetected": 227, "increased": [227, 263, 647, 652], "nois": [227, 642], "microphon": [227, 315], "outputchanged": 227, "registrationstatechanged": 227, "registration": [227, 274, 368, 655], "switchstatechanged": 227, "tamperswitchactivated": 227, "tamp": 227, "unauthorizeddoorop": 227, "unauthorised": 227, "userauthenticated": 227, "subsequent": [227, 294, 647, 653], "command_2n": 227, "vario": 227, "1240": 227, "1138": 227, "hwversion": 227, "535v1": 227, "buildtyp": 227, "devicenam": 227, "documented": [227, 240, 248, 298, 355, 643, 645, 670], "explanatory": 227, "audio_test_result": 227, "accomplished": 227, "carried": 227, "loudspeak": 227, "detector": 227, "key_cod": 227, "dialling": 227, "validity": [227, 646, 649, 670], "direction": [227, 262, 278, 344, 361, 455, 516, 545, 558, 670], "arrival": 227, "departur": [227, 253], "passag": 227, "wiegand": 227, "modular": [227, 622], "uid": [227, 504], "phonebook": 227, "caps": 227, "inactiv": [227, 294, 323, 508], "switchstat": 227, "callstat": 227, "ringing": 227, "terminated": 227, "busy": [227, 254, 255], "noansw": 227, "norespons": 227, "completed_elsewh": 227, "peer": 227, "hangup": [227, 664], "sipaccount": 227, "unregistering": 227, "unregistration": 227, "cov": [227, 507], "deactivation": 227, "dooropentoo": 227, "repeated": 227, "repeatedly": 227, "regardless": 227, "1860": 227, "0035": 227, "systemtim": 227, "1418225091": 227, "190524": 227, "helps": [227, 649], "confirm": [227, 651], "fw": 227, "firmware_fil": 227, "downgrad": 227, "confirmation": [227, 342], "commmand_2n": 227, "config_fil": [227, 315], "uploaded": 227, "factoryreset": 227, "factory": 227, "monostabl": 227, "switchonduration": 227, "controlled": [227, 240, 247, 278], "relay1": 227, "relay2": 227, "sipnumb": 227, "5046": 227, "registertim": 227, "1418034578": 227, "telephon": 227, "seem": [227, 240, 646, 651, 655], "your_numb": 227, "rejection": 227, "signalling": 227, "jpeg": 227, "downloaded": [227, 646, 649, 650], "jpegresolution": 227, "176": 227, "320": 227, "272": 227, "288": 227, "640": 227, "480": 227, "snapshot_fil": 227, "1970": [227, 306, 307, 516], "displays": [227, 339, 340, 513, 545, 554, 654], "gif_fil": 227, "gif": 227, "display_delete_imag": 227, "subset": 227, "intecom": 227, "built": 227, "authetication": 227, "smtp": [227, 445, 545, 558, 665], "correctly": [227, 312, 318, 645, 646, 649, 650, 652, 653, 655], "delivery": [227, 305, 368], "subject": 227, "picture_count": 227, "enclosed": [227, 398], "pcap_fil": 227, "saved": [227, 247, 655], "recording": [227, 294, 649], "deviceid": [228, 244, 447], "api_key": 228, "smallicon": 228, "sound": [228, 248, 504, 653, 655], "callnumb": 228, "smsnumb": 228, "smstext": 228, "mmsfil": 228, "wallpap": 228, "lockwallpap": 228, "interruptionfilt": 228, "mediavolum": 228, "ringvolum": 228, "alarmvolum": 228, "0123456789": 228, "hello": [228, 243, 296, 338, 368, 534, 683], "world": [228, 243, 338, 368, 534, 683], "sms": 228, "zielgerat": 228, "01234567892": 228, "benachricht": [228, 272, 369, 419, 420, 527, 641], "abfrageanweis": 229, "jq": [229, 431, 545, 558, 641], "london": 229, "appid": 229, "b6907d289e10d714a6e88b30761fae22": 229, "dateiquell": 229, "jsonreadlon": 229, "jsonreadcair": 229, "2172797": 229, "cairn": 229, "coord": [229, 262], "drizzl": 229, "intensity": 229, "09d": 229, "280": 229, "1012": 229, "temp_min": [229, 262], "279": 229, "temp_max": [229, 262], "281": 229, "visibility": [229, 240, 262], "10000": [229, 361, 476], "1485789600": 229, "5091": 229, "0103": 229, "gb": 229, "1485762037": 229, "1485794875": 229, "2643743": 229, "jsonread_filt": 229, "instanznam": [229, 262, 309], "itembefull": 229, "kompliziert": [229, 326], "entwickeln": 229, "lohnt": 229, "tutorial": 229, "eindruck": [229, 685], "myreserv": 229, "bmsdata": 229, "shtml": 229, "receivebl": 229, "solarwatt": 229, "fdata": 229, "ipv": 229, "vbat": 229, "vpv": 229, "418": 229, "pgrid": 229, "ibat": 229, "91": [229, 396], "sdata": 229, "acs": 229, "u_l2": 229, "239": [229, 298], "soc": [229, 235], "ladestrom": 229, "ladeleist": 229, "mathemat": [229, 347, 573], "swem": 229, "kiwigrid": 229, "wizard": 229, "datenpaket": [229, 232, 256, 531], "4500": 229, "tagvalu": 229, "poweracout": 229, "2419": 229, "tagnam": 229, "ausgangsleist": 229, "arrays": 229, "ubereinstimmt": [229, 241, 326], "blockstil": 229, "grid": [229, 235, 645, 646], "devicemodel": 229, "deviceclass": 229, "myreservepowermet": 229, "powerout": 229, "powerin": 229, "abfragesyntax": 229, "jvc": [230, 432, 545, 550, 674], "ila": [230, 432, 545, 550, 674], "jvcprojectortool": [230, 432, 545, 550], "gammatabell": 230, "eingangssignal": 230, "roh": [230, 392, 434], "gamma": [230, 260, 432, 460, 545, 558], "projektorengeneration": 230, "x3": 230, "x7": 230, "x9": 230, "x5900": 230, "x7900": 230, "x9900": 230, "sicherlich": 230, "gammaconf_dir": 230, "57": [230, 443], "0a": [230, 337], "2189015057310a": 230, "objektivspeich": 230, "objektivmask": 230, "mem219": 230, "4e": 230, "4d": 230, "4c": [230, 337, 355], "21890149534d41300a": 230, "gammaslot": 230, "gammadat": [230, 432], "custom1": 230, "custom2": 230, "custom3": 230, "hex": [230, 254, 255, 305, 306, 307, 310, 351, 407, 434, 456, 478, 497, 501, 522, 651, 655], "hdrmid": 230, "gammatabl": 230, "jvc_gamma_hdr_middynamic": 230, "hdrhigh": 230, "jvc_gamma_hdr_highdynamic": 230, "projektorseri": 230, "rs": [230, 402, 545, 548, 688], "232": [230, 247, 402, 434, 545, 548], "befehlslist": 230, "betriebsbefehl": 230, "variiert": 230, "pw": 230, "datenwert": [230, 427], "149": 231, "nonstandard": [231, 240, 301], "identify": [231, 261, 305, 653], "kahtreinid": 231, "possibiliti": [231, 281, 301, 670], "consid": [231, 301, 653], "tvr": [231, 433], "fav": [231, 433], "opt": [231, 433], "fback": [231, 433], "fforward": [231, 433], "rec": [231, 294, 433], "busmonitor_fil": 232, "bbbbb20000": 232, "knx_poll": [232, 670], "paketquell": 232, "zeitfunktion": 232, "data_ga": [232, 434], "03_07_02_datapoint": 232, "v02": 232, "zugelass": 232, "nan": [232, 517], "statistikfunktion": [232, 434], "leseanforder": [232, 434, 442], "abfragt": [232, 262], "schreibanforder": 232, "beantwortet": [232, 406], "absetzt": 232, "schlagt": [232, 255], "absend": [232, 241, 256], "empfangeradress": 232, "dateninformation": 232, "merkt": 232, "taucht": 232, "leseflag": 232, "projektdatei": [232, 434], "exportdatei": 232, "ets5": 232, "knxproj": [232, 434, 646, 649], "ets4": 232, "esf": 232, "opc": [232, 646], "vorbelegt": [232, 272, 292], "suchmog": 232, "einh": 233, "old_control": 233, "old_info": 233, "kodi_it": [233, 646], "kodi_command": 233, "kodi_read": 233, "kodi_writ": 233, "suspend_it": [233, 326, 655], "aufzubau": [233, 354, 440, 507], "retry_susp": [233, 655], "resum": [233, 249, 254, 255, 284, 400, 422, 435, 441, 464, 467, 482, 623, 655], "piko": [234, 235, 436, 545, 550], "board": [234, 278, 412], "1109697": 234, "wechselricht": [234, 249, 299, 300, 436, 437, 492, 494, 545, 550], "kommunikationsboard": 234, "comminication": 234, "firmwareversion": 234, "electric": [234, 235, 236, 436, 545, 550], "produkte_servic": 234, "wechselrichter_neue_generation": 234, "ship": 234, "wechselrichter_bewaehrte_generation": 234, "kostal_pv": 234, "pvserv": [234, 436], "pvwr": [234, 436], "plant": [234, 245, 262, 670], "establishing": 234, "datasructur": 234, "requred": 234, "phas": [234, 235, 284, 436, 643, 646, 650, 652, 665], "dc": [234, 235, 363, 436], "dc2": [234, 235], "dc3": [234, 235], "ac2": 234, "ac3": 234, "operation_status": [234, 436], "dcpow": [234, 436], "dc1_v": [234, 436], "dc3_v": [234, 436], "dc1_a": [234, 436], "dc3_a": [234, 436], "amp": [234, 337, 436], "dc1_w": [234, 436], "dc3_w": [234, 436], "actot_w": [234, 436], "actot_cos": [234, 436], "cos": [234, 235, 436], "\u03c6": [234, 235, 436], "actot_limitation": [234, 436], "ac1_v": [234, 436], "ac3_v": [234, 436], "ac1_a": [234, 436], "ac3_a": [234, 436], "ac1_w": [234, 436], "ac3_w": [234, 436], "yield_day_kwh": [234, 436], "yield_tot_kwh": [234, 436], "operationtime_h": [234, 436], "yield_today": 234, "divid": 234, "dctot_w": 234, "dc2_v": [234, 436], "dc2_a": [234, 436], "dc2_w": [234, 436], "phi": 234, "ac2_v": [234, 436], "ac2_a": [234, 436], "ac2_w": [234, 436], "pymodbus": [235, 236, 270, 271, 299, 300, 517, 653, 655], "plenticor": 235, "iq": [235, 688], "kostalmodbus": [235, 545, 550, 645, 653], "inverter_ip": 235, "modbus_port": [235, 236], "1502": 235, "kostal_item_templat": [235, 236], "dailyyield": 235, "kostal_322": 235, "totaldcpow": 235, "kostal_100": 235, "dec": [235, 236, 341, 569, 592, 643], "kostal_06": 235, "articl": [235, 344, 643, 646, 649], "kostal_14": 235, "kostal_30": 235, "u16": [235, 494], "kostal_32": 235, "kostal_34": 235, "kostal_36": 235, "kostal_38": 235, "maincontroll": [235, 612], "mc": 235, "kostal_46": 235, "ioc": 235, "kostal_54": 235, "kostal_56": 235, "state2": 235, "kostal_98": 235, "kostal_104": 235, "manager3": 235, "u32": [235, 236, 299, 300, 494], "kostal_106": 235, "consumption": [235, 305, 337, 521], "kostal_108": 235, "kostal_110": 235, "kostal_112": 235, "kostal_114": 235, "kostal_116": 235, "kostal_118": 235, "kostal_120": 235, "isolation": [235, 653], "resistanc": 235, "ohm": 235, "kostal_122": 235, "evu": 235, "kostal_124": 235, "kostal_144": 235, "worktim": 235, "kostal_150": 235, "kostal_152": 235, "kostal_154": 235, "kostal_156": 235, "kostal_158": 235, "kostal_160": 235, "kostal_162": 235, "kostal_164": 235, "kostal_166": 235, "kostal_168": 235, "kostal_170": 235, "kostal_172": 235, "kostal_174": 235, "reactiv": [235, 236], "kostal_178": 235, "apparent": [235, 236], "kostal_190": 235, "kostal_194": 235, "kostal_200": 235, "discharg": 235, "kostal_202": 235, "pssb": 235, "fus": 235, "state5": 235, "kostal_208": 235, "kostal_210": 235, "act": [235, 627, 630], "kostal_214": 235, "kostal_216": 235, "kostal_218": 235, "kostal_220": 235, "kostal_222": 235, "kostal_224": 235, "kostal_226": 235, "kostal_228": 235, "kostal_230": 235, "kostal_232": 235, "kostal_234": 235, "kostal_236": 235, "kostal_238": 235, "kostal_240": 235, "kostal_242": 235, "kostal_244": 235, "kostal_246": 235, "kostal_248": 235, "kostal_250": 235, "kostal_252": 235, "kostal_254": 235, "kostal_256": 235, "kostal_258": 235, "dc1": 235, "kostal_260": 235, "kostal_266": 235, "kostal_268": 235, "kostal_270": 235, "kostal_276": 235, "kostal_278": 235, "kostal_280": 235, "kostal_286": 235, "kostal_320": 235, "kostal_324": 235, "kostal_326": 235, "kostal_384": 235, "kostal_420": 235, "kostal_428": 235, "subnetmask": 235, "kostal_436": 235, "kostal_446": 235, "dns1": 235, "kostal_454": 235, "dns2": 235, "kostal_512": 235, "capacity": [235, 281, 480], "kostal_514": 235, "kostal_515": 235, "kostal_517": 235, "kostal_525": 235, "kostal_529": 235, "kostal_531": 235, "kostal_535": 235, "kostal_559": 235, "kostal_575": 235, "s16": [235, 494], "kostal_577": 235, "kostal_582": 235, "kostal_586": 235, "kostal_588": 235, "type6": 235, "kostal_768": 235, "productnam": [235, 383], "kostal_800": 235, "kostal_1056": 235, "kostal_1058": 235, "pv1": [235, 279], "kostal_1060": 235, "pv2": [235, 279], "kostal_1062": 235, "pv3": [235, 279], "kostal_1064": 235, "kostal_1066": 235, "ksemmodbus": [236, 545, 550, 643, 653, 656], "ksem_ip": 236, "502": [236, 249, 299, 300, 470, 494, 517, 651], "ksem_beszug": 236, "ksem": [236, 653], "ksem_0": 236, "ksem_einspeis": 236, "ksem_2": 236, "ksem_4": 236, "ksem_6": 236, "ksem_16": 236, "ksem_18": 236, "ksem_24": 236, "factor": [236, 262, 305, 306, 307], "ksem_512": 236, "u64": [236, 494], "ksem_516": 236, "ksem_520": 236, "varh": 236, "ksem_524": 236, "ksem_544": 236, "vah": 236, "ksem_548": 236, "infrared": 237, "fernbedien": [237, 440], "programmbefehl": 237, "infrarot": 237, "hifisyst": 237, "lirc_host": 237, "lirc_port": 237, "6610": 237, "remote_dvdlivingroom": 237, "dvdlivingroom_pow": 237, "lirc_remot": 237, "philipsdvd": 237, "lirc_key": 237, "logitech": [238, 319, 441, 507, 545, 550, 655, 670], "mediaserv": [238, 441, 545, 550, 655], "recursive_custom": 238, "message_timeout": 238, "message_retri": 238, "9090": [238, 319, 435, 441, 507], "web_port": [238, 319], "net_tcp_client": [238, 400, 408, 467], "selten": 238, "durft": 238, "abspielgerat": 238, "sqb_custom1": 238, "squeezebox": [238, 545, 548, 642, 643, 645, 646, 649, 655, 667, 670, 674], "sdp_squeezebox": 238, "squeezebox_player1": 238, "squeezebox_player2": 238, "plc": [239, 308, 309, 500, 545, 550, 642], "libnodav": 239, "s7": 239, "plcs": 239, "sourceforg": [239, 309, 440], "snap7": [239, 308], "36372": 239, "0ba7": [239, 308, 309, 442, 500], "0ba8": [239, 308, 309, 442, 500], "io_wait": 239, "logo2": [239, 308, 309], "i1": [239, 249, 298, 309, 461], "i2": [239, 298, 308, 309, 461], "i24": [239, 308, 309], "q1": [239, 308, 309], "q2": [239, 308, 309, 651], "q3": [239, 308, 309, 643], "q16": [239, 308, 309], "oba8": [239, 308, 309], "q20": [239, 308, 309], "m1": [239, 249, 308, 309], "m2": [239, 308, 309, 338], "m3": [239, 309], "m27": [239, 308, 309], "m64": [239, 308, 309], "ai1": [239, 249, 308, 309], "ai2": [239, 308, 309], "ai3": [239, 308, 309], "ai8": [239, 308, 309], "aq": [239, 308, 309], "aq1": [239, 308, 309], "aq2": [239, 308, 309], "aq8": [239, 308, 309], "AM": [239, 308, 309], "am1": [239, 249, 308, 309], "am2": [239, 308, 309], "am3": [239, 308, 309], "am16": [239, 308, 309], "am64": [239, 308, 309], "ni1": [239, 308, 309], "ni2": [239, 308, 309], "ni64": [239, 308, 309], "nai": [239, 308, 309], "nai1": [239, 308, 309], "nai2": [239, 308, 309], "nai32": [239, 308, 309], "nq": [239, 308, 309], "nq1": [239, 308, 309], "nq2": [239, 308, 309], "nq64": [239, 308, 309], "naq": [239, 308, 309], "naq1": [239, 308, 309], "naq2": [239, 308, 309], "naq16": [239, 308, 309], "vm0": [239, 249, 308, 309], "vm1": [239, 308, 309], "vm3": [239, 308, 309], "vm850": [239, 308, 309], "vmx": [239, 308, 309], "vmw": [239, 308, 309], "vmw0": [239, 308, 309], "vm2": [239, 308, 309], "vmw4": [239, 308, 309], "vm849": [239, 308, 309], "myroom": [239, 314], "status_i1": 239, "lightm1": 239, "m4": 239, "temp_measur": 239, "temp_set": [239, 289, 487], "vm4": 239, "8888": [240, 256, 405, 443, 457], "luxtronic": [240, 443, 545, 550, 666], "ouput": 240, "knwon": 240, "java": 240, "applet": 240, "realy": 240, "151": [240, 443], "152": [240, 443], "divided": [240, 670], "ten": 240, "writeabl": [240, 334], "temp_outsid": [240, 261, 265], "state_numeric": 240, "imap": [241, 444, 545, 558, 646, 649, 665], "absenderadress": [241, 445], "myaccount": 241, "sicherheitsgrund": [241, 382, 383, 406, 688], "herausfilt": 241, "my_trusted_mail": 241, "archivi": 241, "infrastruktur": 241, "mailserv": 241, "posteingang": 241, "sauna": 241, "mailbox": [241, 665], "loggingvariant": 243, "arbeitsspeich": [243, 422], "absatz": [243, 260, 573], "memorylog": [243, 263], "memory_info": [243, 263], "logiknam": [243, 263, 326, 332, 593], "sourceit": [243, 263], "log_rul": [243, 263, 577, 655], "itemvalu": [243, 256, 263, 655], "protokollmeld": 243, "speicherintern": 243, "protokolleintrag": 243, "memlog_messag": 243, "speicherprotokoll": 243, "threading": [243, 642, 646], "current_thread": 243, "my_memlog": 243, "my_personal_memlog": 243, "log_id": 243, "resultiert": [243, 263], "miel": [244, 447, 545, 548, 654], "gestutz": 244, "trennung": 244, "abreisst": 244, "gefrierschrank": 244, "programphas": 244, "programtyp": 244, "remainingtim": 244, "signalinfo": 244, "signalfailur": 244, "signaldoor": 244, "dryingstep": 244, "elapsedtim": 244, "ecofeedback": 244, "processaction": 244, "start_superfreezing": 244, "stop_superfreezing": 244, "start_supercooling": 244, "stop_supercooling": 244, "smartgrid": 244, "smartstart": 244, "mielegerat": 244, "registri": [244, 336, 339, 340, 362], "freischalt": 244, "merk": [244, 500], "swagg": 244, "erteil": 244, "aufgefordert": 244, "miele_cycl": 244, "miele_client_id": 244, "miele_client_secret": 244, "miele_client_country": 244, "miele_us": 244, "miele_pwd": 244, "fuhrend": [244, 573], "mieledevic": 244, "freez": 244, "miele_deviceid": 244, "xxxxxxxxxxx": 244, "dryer": 244, "yyyyyyyyyyy": 244, "herausles": 244, "verknupft": [244, 262, 286, 314, 325, 331, 333, 349, 508, 569, 570, 577, 592], "einblick": 244, "temperatureinstell": 244, "kuhlschrank": 244, "bluepy": [245, 448, 643], "pygatt": [245, 448], "1027133": 245, "xiaomi": [245, 359, 448, 533, 545, 550, 641, 643, 670, 674], "mi": [245, 448, 545, 550, 643, 645, 670], "flow": [245, 334], "bt_library": 245, "bt_addr": [245, 297], "c4": 245, "7c": 245, "f3": 245, "2b": [245, 285], "hcitool": [245, 297, 448, 492], "lescan": [245, 448], "gatttool": [245, 448], "moistur": [245, 448], "conductivity": [245, 448], "sensor_offic": 245, "littl": [247, 249, 270, 271, 452, 652], "although": 247, "populated": 247, "bett": [247, 248, 643, 645, 646, 649, 653, 670], "ghz": 247, "wifi": [247, 281, 282, 284, 292, 646, 649], "reported": 247, "esp8266": 247, "hub": [247, 363, 413, 545, 550], "sidoh": 247, "esp8266_milight_hub": 247, "hackaday": 247, "5888": 247, "sold": 247, "easybulb": 247, "limitlessled": 247, "recently": [247, 646, 653], "posted": 247, "formerly": [247, 655], "excluded": [247, 646], "archvi": 247, "bkrajancic": 247, "devapi": 247, "8899": [247, 450], "impact": 247, "lum": 247, "calibrating": [247, 257], "wheel": [247, 629, 630, 655], "005": 247, "clockwis": 247, "recalculated": 247, "dpt5": 247, "complianc": [247, 368], "ring": [247, 253, 339, 340, 513], "luminanz": 247, "disco": [247, 450], "mylight": 247, "wohn": [247, 277, 347, 428, 682, 683], "discospeedup": 247, "discospeeddown": 247, "knx_sent": 247, "coupled": [247, 653], "selection": [247, 248, 646, 655], "construction": [247, 315], "autogeneration": [247, 353], "ecan": 247, "produc": [248, 356, 357], "originat": 248, "beo4": 248, "pict": 248, "snd": 248, "mlns": 248, "cinema": 248, "beosyst": 248, "corrected": [248, 643, 645, 646, 647, 648, 649, 651, 652, 653, 654, 655, 656], "tcpip": 248, "24a": 248, "beolink": [248, 545, 548, 651, 653, 655], "log_mlgwtelegram": 248, "looking": [248, 260], "tries": [248, 648, 655], "fie": 248, "quiet": [248, 635], "alternatively": [248, 260, 670], "preconfigured": 248, "conjunction": 248, "dtv2": 248, "aux_a": 248, "dtv": 248, "pc": [248, 688], "cd2": 248, "step_up": 248, "step_dw": 248, "cinema_on": 248, "cinema_off": 248, "cursor_up": 248, "cursor_down": 248, "cursor_left": 248, "cursor_right": 248, "mln": [248, 451], "readability": [248, 653, 670], "occurrenc": 248, "originated": 248, "illustrat": 248, "someroom": [248, 285, 347], "bv10": [248, 451], "beovision": 248, "digit_1": 248, "living_light0": 248, "living_lightup": 248, "living_control0": 248, "modbustcp": [249, 649], "solaredg": 249, "logomb": 249, "multiinstanz": [249, 308, 309], "se6000": 249, "mydevic": 249, "modbusobjecttyp": 249, "inputregist": [249, 452], "holdingregist": [249, 452], "modbusaddress": 249, "modbusdatatyp": 249, "int16": [249, 452], "uint16": [249, 452], "modbusbyteord": 249, "endian": [249, 452], "modbuswordord": 249, "modbusdirection": 249, "read_writ": [249, 452], "modbusunit": 249, "slaveunit": [249, 650], "modbusfactor": 249, "528": 249, "coil": [249, 452], "8256": 249, "discreteinput": [249, 452], "geraetenam": 249, "40030": 249, "string16": [249, 452], "40052": 249, "float32": [249, 452], "verbindungsproblem": [249, 270, 271, 381], "verbindungstop": 249, "supend": 249, "steuerbar": [249, 338], "verbesser": [249, 270, 271, 309, 642, 643, 644, 645, 646, 674, 691], "wordord": [249, 270, 271], "mindestversion": 249, "di": 249, "halt": [249, 285, 331, 483, 590, 643, 644, 645, 646, 691], "caeruleusaqua": [249, 545, 548], "bmxp": [249, 545, 548, 550, 552, 554, 558], "typestr": [249, 652], "bitstr": 249, "objecttyp": 249, "_regtoread": [249, 650], "detailiert": 250, "badezimm": [250, 275], "mpd_bad": 250, "6601": 250, "mpd_kuech": 250, "6602": 250, "anlegt": [250, 693], "musik": [250, 275, 453, 617], "mpd_status": 250, "mpd_command": 250, "setvol": [250, 453], "playpaus": [250, 453], "playlist": [250, 276, 318, 319, 453, 507, 643, 671], "playlistlength": [250, 453], "songid": [250, 453], "nextsongid": [250, 453], "xfad": [250, 453], "crossfad": [250, 453], "mixrampdb": [250, 453], "mixrampdelay": [250, 453], "updating_db": [250, 453], "mpd_songinfo": 250, "mpd_statistic": 250, "db_playtim": [250, 453], "db_updat": [250, 453], "playtim": [250, 453], "playid": [250, 453], "seek": [250, 453, 504], "seekid": [250, 453], "seekcur": [250, 453], "rawcommand": 250, "mpd_rawcommand": 250, "radio1": 250, "mpd_url": 250, "streamurlofradio1": 250, "radio2": 250, "streamurlofradio2": 250, "plradio1": 250, "mpd_localplaylist": 250, "plradio2": 250, "playlist1": 250, "playlist2": 250, "updatedatabas": 250, "mpd_databas": 250, "rescandatabas": 250, "rescan": [250, 319, 453, 646, 674], "extensiv": [251, 646], "deliv": [251, 353, 643], "interested": 251, "mqtt_": 252, "pymvgliv": 253, "mvv": 253, "muench": 253, "1108867": 253, "travel_info": [253, 344], "mvg_station": 253, "mvgwatch": 253, "wikimedia": 253, "bcnchen_u": 253, "bahn": 253, "uselang": 253, "category": [253, 352, 368, 496, 523, 671, 682, 686], "line_numbers_of_munich_s": 253, "mygliv": 253, "muenchen_": 253, "s8": 253, "u3": [253, 298], "inputted": 253, "mvg_info": 253, "html_string": 253, "linesymbolurl": [253, 455], "sv_dyndns_url": 253, "mvgliv": 253, "dir_info": 253, "line_string": 253, "10px": 253, "15px": 253, "bold": [253, 296], "25px": 253, "calculated_delay": 253, "fff": 253, "120px": 253, "frankfurt": 253, "hauptbahnhof": 253, "karlsplatz": 253, "stachus": 253, "marienplatz": 253, "neatorobotics": 254, "cleaning": [254, 255, 367, 643, 648, 649, 652, 655], "sendtobas": 254, "findm": 254, "techniqu": 254, "account_email": [254, 255], "your_neato_account_email": [254, 255], "account_pass": [254, 255], "your_neato_account_password": [254, 255], "robot_vendor": [254, 255], "mykobold": [254, 456, 646], "hex_ascii_tok": [254, 255], "request_oauth2_cod": [254, 255], "reception": 254, "request_oauth2_tok": [254, 255], "neato_attribut": [254, 255], "stateaction": [254, 255], "state_action": [254, 255, 456], "isdocked": [254, 255], "is_docked": [254, 255, 456], "isscheduleenabled": 254, "is_schedule_enabled": [254, 255, 456], "ischarging": 254, "is_charging": [254, 255, 456], "chargepercentag": [254, 255], "charge_percentag": [254, 255, 456, 646], "gotobaseavailabl": 254, "command_gotobaseavailabl": [254, 255, 456], "robotnam": [254, 255, 282], "robotstat": [254, 255], "robotstateaction": [254, 255], "docking": [254, 255], "robotdockingstatus": [254, 255], "robotbatterystat": [254, 255], "paused": [254, 255], "hous": [254, 255, 352, 368, 592, 686], "suspended": [254, 255, 623], "copying": [254, 255, 647, 651], "recovering": [254, 255], "exploring": [254, 255], "persistent": [254, 255, 266, 278, 349, 368, 589, 622, 632, 652, 671], "acquiring": [254, 255], "uploading": [254, 255], "exploration": [254, 255], "robotbutton_start": [254, 255], "midi": [254, 255, 284], "robotbutton_stop": [254, 255], "robotbutton_paus": [254, 255], "robotbutton_resum": [254, 255], "robotbutton_find": [254, 255], "vorwerk": [255, 456, 545, 550, 643, 646, 649], "saugrobot": [255, 367, 533, 545, 550], "en_us": 255, "reconfigur": 255, "botvac": 255, "d3": 255, "d5": 255, "d7": 255, "vr300": 255, "emailadress": [255, 390], "nutzerkontos": 255, "mykobol": 255, "kompfortabel": 255, "angefragt": [255, 501, 510], "emaildress": 255, "hexadezimalformat": 255, "lesend": [255, 314, 391, 443, 452, 470, 489, 511, 537, 563, 567, 591], "clean_room": [255, 456, 649], "roboterstatus": 255, "einnehm": 255, "roboterzustand": 255, "dezimal": [255, 502], "authentifizierungsverfahr": [255, 266], "alarmmeld": 255, "raumid": 255, "boundardyid": 255, "einzelraumrein": 255, "mapid": [255, 655], "extrahiert": [255, 628], "horend": 256, "portangab": 256, "1024": [256, 498, 499, 504, 646, 688], "1025": 256, "verbindungenanfrag": 256, "einzuschrank": 256, "http_acl": 256, "atribut": [256, 646], "ubersteuert": [256, 682], "verbindungskombination": 256, "herkoemm": 256, "7777": [256, 457], "7778": 256, "datenpaketinhalt": 256, "teststring": 256, "nc": [256, 282], "benutzerdatenstring": 256, "paketformat": 256, "logic_nam": 256, "uw": 256, "sag": 256, "welt": 256, "verlor": [256, 381, 519, 594, 596, 642], "9999": [256, 365], "integrating": [257, 335], "facilitating": 257, "paired": 257, "bridge_ip": 257, "bridge_port": 257, "bridge_api_tok": 257, "q1w2e3": 257, "authentification": [257, 612], "configuring": [257, 352], "figured": 257, "declar": [257, 325, 326], "unlatch": 257, "uncalibrated": 257, "unlocking": 257, "unlatched": 257, "unlatching": 257, "254": [257, 298, 389, 419, 420], "hold": [257, 282, 283, 315, 378], "soon": 257, "mynukilock": 257, "mylockstat": 257, "123456789": 257, "mylockbattery": 257, "mylockaction": 257, "primary": 258, "uninterruptibl": [258, 259], "suppli": 258, "transf": [258, 368, 655], "upsc": 258, "your_ups_nam": 258, "networkupstool": [258, 459, 545, 550], "upsd": 258, "3493": [258, 459], "ups_it": 258, "nut_var": [258, 259], "variable_name_from_upsc": 258, "ol": [258, 259], "OB": [258, 259, 261, 461], "lb": [258, 259], "lowbattery": 258, "on_battery": [258, 259], "low_battery": [258, 259, 566], "diskstation": [258, 259], "distribut": 258, "engery": 258, "authenticated": [258, 259], "unterbrechungsfrei": 259, "stromversorgun": 259, "anwendungsbeispiel": 259, "deamon": [259, 405, 545, 550], "charging": [259, 367, 646], "chrg": 259, "vertrauenswurd": [259, 512], "ips": [259, 504, 524], "ortsdosisleist": [260, 460, 545, 558], "odl": [260, 460, 545, 558, 649], "\u00b5sv": [260, 460, 545, 558], "measuring": 260, "bfs": [260, 460, 545, 558, 649], "novel": 260, "datenschnittstell": [260, 460, 649], "datenschnittstelle_nod": [260, 460, 649], "imis": [260, 460, 545, 558], "geoportal": [260, 460, 545, 558], "sitepolicy": [260, 460, 545, 558], "986480": 260, "strahlungsdat": 260, "selecting": 260, "86949": 260, "windach": 260, "messstell": [260, 460], "091811461": 260, "international": [260, 460], "dez1419": 260, "copyrighted": 260, "bundesamt": [260, 460, 545, 558], "strahlenschutz": [260, 460, 545, 558], "willy": 260, "brandt": 260, "strass": 260, "38226": 260, "salzgitt": [260, 460], "deutschland": [260, 262, 460, 545, 558], "context": [260, 315, 643, 645], "downloadbereich": 260, "downloadbereich_nod": 260, "urheb": 260, "messnetz": 260, "vorsorg": 260, "urheberrechtsgesetz": 260, "urhg": 260, "hingewies": 260, "verbot": 260, "urheberbezeichn": 260, "allein": [260, 561], "beruh": 260, "anerkenn": 260, "urheberschaft": 260, "nichteinhalt": 260, "urheberrecht": 260, "durchsetz": 260, "massnahm": [260, 688], "ergreif": 260, "erkennt": 260, "nutzungsbeding": [260, 460, 545, 558], "internetangebot": 260, "technisch": [260, 319], "vorankund": 260, "angesicht": 260, "sensibilitat": 260, "themas": 260, "bittet": 260, "darum": 260, "sachlich": 260, "fachlich": 260, "erklar": [260, 323], "wissenschaft": [260, 262], "hintergrundwiss": 260, "originalitat": 260, "verifiziert": [260, 423], "betriebsbereit": [260, 289], "unplausibl": 260, "messwert": [260, 306, 307, 313, 460, 530], "luck": [260, 295], "qualitatssicherungsmess": 260, "radioaktiv": [260, 670], "befestigt": 260, "storung": 260, "benachbart": 260, "industrieanlag": 260, "peak": [260, 502, 655], "amplitud": 260, "bewirk": 260, "menupunkt": 260, "messwertinterpretation": 260, "langfrist": 260, "wartungsarbeit": 260, "sondentausch": 260, "sprung": [260, 314], "erdarbeit": 260, "umgebungsbeding": 260, "verursacht": 260, "messnetzpfleg": 260, "verleg": 260, "sondenstandort": 260, "abrupt": 260, "wessling": 260, "odl_station": 260, "091881441": 260, "odl_data_typ": 260, "radiation_terrestrial": 260, "value_terrestrial": [260, 460], "radiation_cosmic": 260, "dez1453": 260, "value_cosmic": [260, 460], "plz": [260, 460], "site_status": [260, 460], "site_status_text": [260, 460], "kid": [260, 460], "height_above_sea": [260, 460], "start_measur": [260, 460], "end_measur": [260, 460], "validated": [260, 460], "nuclid": [260, 460], "010620461": 260, "meddewad": 260, "radiaton": 260, "station_data": 260, "eindraht": 261, "einzelad": 261, "parasitar": [261, 461], "adern": 261, "zusatzspann": 261, "5v": [261, 278], "temperaturmess": 261, "feuchtigkeitsmes": 261, "akkuuberwach": 261, "kostengunst": 261, "ds2490": 261, "devtyp": 261, "usb_devic": 261, "04fa": 261, "2490": 261, "0660": 261, "flash": [261, 282, 652], "Sicher": 261, "busmast": [261, 461], "ds18b20": [261, 285, 337, 483, 545, 548, 643], "elabnet": 261, "bms": 261, "ths": 261, "lichtsensor": 261, "ams": 261, "ds2406": 261, "fach": 261, "ds2438": 261, "10v": 261, "datanab": 261, "d2pc": 261, "zweistell": 261, "orientiert": 261, "fc": [261, 363], "xxxxxxxxxxxx": 261, "8deaaa030000": 261, "busteilnehm": 261, "ow_alias": 261, "bathroom": 261, "gibtm": 261, "datenumwandl": 261, "alterbnativ": 261, "t9": [261, 461], "t10": [261, 461], "t11": [261, 461], "t12": [261, 461], "abfragezeit": [261, 461], "lichtintensitat": 261, "ix": 261, "ia": [261, 461, 646], "ox": 261, "oa": [261, 461], "vdd": [261, 461], "sensorversorg": 261, "ibutton": [261, 461], "bm": [261, 461], "2406": 261, "ibutton_hook": [261, 663], "onewiresampl": 261, "bm_ibutton": 261, "detektiert": [261, 314, 484], "geleert": [261, 330, 359], "sabotagealarm": 261, "ibutton_id": 261, "take_pictur": 261, "75172d000000": 261, "ib_gu": 261, "787d58130000": 261, "lux_outsid": 261, "lightintensity": 261, "8dd76b010000": 261, "humidity_outsid": 261, "input_water_leak": 261, "c6cc07000000": 261, "output_led1": 261, "led1": 261, "voltage_sensor": 261, "a9d76b010000": 261, "gerateklass": 261, "gecacht": [261, 460], "uvi": 262, "onecall": [262, 462], "airpollution": [262, 650], "kostenfrei": [262, 366], "datenabruf": 262, "altitud": [262, 321, 325, 599, 636], "hohenangab": 262, "meeresniveau": 262, "eto": 262, "klickt": [262, 289, 597, 638, 674], "zoom": [262, 652, 655], "prazis": 262, "softfail_precipitation": 262, "softfail_wind_gust": 262, "niederschlag": [262, 361, 365], "snow": 262, "windbo": [262, 462], "wind_gust": 262, "wind_speed": [262, 462], "kartenelement": 262, "owm_coord_x": 262, "owm_coord_y": 262, "owm_coord_z": 262, "match_string": 262, "grnd_level": 262, "sea_level": 262, "luftdruck": [262, 338, 365], "uvi_valu": 262, "datenfeld": 262, "bevorzugt": 262, "metrisch": 262, "hpa": [262, 338], "identifizi": [262, 512, 632], "kompletter_onecall_json": 262, "owm_raw_fil": 262, "past24h": 262, "gesamtmeng": 262, "morgig": 262, "vorhergesagt": [262, 311], "3h": [262, 288, 645], "uv": [262, 365], "textuell": [262, 674], "feels_lik": 262, "gefuhlt": [262, 338], "meereshoh": 262, "rh": [262, 337], "dew_point": 262, "taupunkt": [262, 337, 365, 599], "bewolk": 262, "regenmeng": 262, "schneemeng": 262, "niederschlagswahrschein": 262, "propability": 262, "precipitation": [262, 365], "sichtweit": [262, 365], "wind_deg": 262, "wetterbeding": 262, "gruppennam": 262, "extrem": [262, 653], "wetterbeschreib": 262, "nachttemperatur": 262, "moonris": [262, 360, 569, 580, 592, 599, 636], "moonset": [262, 360, 569, 580, 592, 599, 636], "morn": 262, "morgentemperatur": 262, "eve": 262, "abendtemperatur": 262, "realtiv": 262, "vorhersagedat": [262, 532], "kombini": 262, "durchnitt": 262, "pollution": [262, 653], "aqi": 262, "airqualityindex": 262, "no2": 262, "o3": [262, 461], "ozonwert": 262, "so2": 262, "pm2_5": 262, "partikel": 262, "5\u00b5m": 262, "pm10": 262, "10\u00b5m": 262, "nh3": 262, "_new": 262, "bereitet": 262, "clouds_new": [262, 462], "precipitation_new": [262, 462], "pressure_new": 262, "wind_new": 262, "temp_new": 262, "ortsdat": 262, "abfragezeitpunkt": 262, "gust": 262, "wetterkondition": 262, "adressiert": [262, 576], "listenelement": 262, "aggregiert": 262, "addiert": [262, 323], "zeitraum": [262, 418, 461, 475, 671], "zusammengesetzt": 262, "inkl": [262, 338, 347, 641, 674], "next6d": 262, "vorschau": 262, "next48h": 262, "past4d": 262, "ruckschau": 262, "past96h": 262, "minimalrw": 262, "next24h": 262, "next12h": 262, "12h": 262, "tageseintrag": 262, "rain_overview": 262, "as_of": 262, "owm_matchstring": 262, "rain_past_12h": 262, "past12h": 262, "rain_next_12h": 262, "visual_id": 262, "tagesangab": 262, "ubermorg": [262, 599, 634], "aggregierungsfunktion": 262, "sonneneinstrahl": 262, "rechnung": 262, "verlust": 262, "bod": 262, "relation": [262, 650], "bewasserungsbedarf": 262, "mtry": 262, "irrigation": 262, "edis": 262, "ifas": 262, "ufl": 262, "edu": 262, "pdffil": 262, "ae": 262, "ae45900": 262, "fao": 262, "x0490e": 262, "x0490e00": 262, "htm": [262, 688], "formel": [262, 573, 577], "sonnenstrahl": 262, "freien": 262, "anzuseh": 262, "nichtsdestotrotz": [262, 314], "sicht": 262, "behord": 262, "wetterdien": [262, 532, 545, 558, 665, 674], "landessprach": 262, "zugefugt": [262, 270, 271], "placebo": 262, "wurzel": 262, "entlang": 262, "schreibfehl": 262, "regnet": [262, 326], "schneit": 262, "schneien": 262, "zusatzinformation": [262, 285, 371], "owm_match_prefix": 262, "forecast_daily1_no_prefix": 262, "adressing": [262, 643, 654], "tomorrows": 262, "forecast_daily1_with_prefix": 262, "compiled": [262, 278, 309], "temp_night": 262, "inheriting": 262, "currently_plus_1h": 262, "forecast_hourly": 262, "currently_plus_2h": 262, "currently_plus_3h": 262, "currently_plus_4h": 262, "currently_plus_5h": 262, "currently_plus_6h": 262, "currently_plus_7h": 262, "currently_plus_8h": 262, "currently_plus_9h": 262, "currently_plus_10h": 262, "currently_plus_11h": 262, "currently_plus_12h": 262, "currently_plus_13h": 262, "currently_plus_14h": 262, "currently_plus_15h": 262, "currently_plus_16h": 262, "currently_plus_17h": 262, "currently_plus_18h": 262, "currently_plus_19h": 262, "currently_plus_20h": 262, "currently_plus_21h": 262, "currently_plus_22h": 262, "currently_plus_23h": 262, "currently_plus_24h": 262, "currently_plus_25h": 262, "currently_plus_26h": 262, "currently_plus_27h": 262, "currently_plus_28h": 262, "_openweathermap": 262, "currently_plus_29h": 262, "currently_plus_30h": 262, "currently_plus_31h": 262, "currently_plus_32h": 262, "forecast_daily": 262, "today_plus_1d": 262, "today_plus_2d": 262, "today_plus_3d": 262, "today_plus_4d": 262, "today_plus_5d": 262, "today_plus_6d": 262, "today_plus_7d": 262, "historics": 262, "historical_daily": 262, "today_minus_1d": 262, "today_minus_2d": 262, "today_minus_3d": 262, "today_minus_4d": 262, "today_minus_5d": 262, "currently_minus_1h": 262, "forecasted": [262, 655], "astimezon": 262, "metric": [262, 462], "imperial": [262, 462], "perception": 262, "atmospheric": 262, "varying": 262, "droplet": 262, "condens": 262, "dew": [262, 599], "unitsdefault": 262, "cloudiness": 262, "metr": 262, "meteorological": 262, "weather_id": 262, "weather_main": 262, "weather_description": 262, "weather_icon": [262, 479], "bedarfsgerecht": 262, "bewassert": 262, "wasserbedarf": 262, "bewasserungsventil": 262, "abgab": 262, "tageswassermeng": 262, "abzuschalt": 262, "logischerweis": 262, "gut_feeling_for_irrigation": 262, "ranging": 262, "irrigation_valve1": 262, "evaporation": 262, "exposure_factor": 262, "lightly": 262, "shady": 262, "greenhous": 262, "half": 262, "covered": 262, "roof": [262, 645], "flowrate_l_per_min": 262, "area_in_sqm": 262, "crop_coefficient": 262, "crop": 262, "plant_density": 262, "planted": 262, "apart": 262, "gut_feeling": 262, "schedule_second": 262, "todays_water_demand_in_l": 262, "remaining_tim": 262, "exposur": 262, "shading": 262, "reflection": 262, "droughty": 262, "areas": 262, "past_12h": 262, "next_12h": 262, "bush": 262, "drain": 262, "transported": 262, "irrigated": 262, "effectivity": 262, "coefficient": 262, "dens": 262, "tweak": [262, 318, 645, 646, 651], "feeling": 262, "yard": 262, "valve_1": 262, "irrigation_weekly": 262, "bewassungsventil": 262, "automt": 262, "irrigation_valve2": 262, "weeks_water_demand_in_l": 262, "day_past3": 262, "day_past2": 262, "day_past1": 262, "day_past0": 262, "day_next1": 262, "day_next2": 262, "day_next0": 262, "past_4d": 262, "next_3d": 262, "next3d": 262, "valve_2": 262, "backyard": 262, "dazustell": 262, "conditions_as_of": 262, "zeitversatz": 262, "mez": 262, "mesz": 262, "abfragewert": 262, "standardwidget": 263, "intstamp": [263, 585, 655], "logrotation": [263, 585], "data_fil": [263, 294], "_at_": 263, "lowlimit": [263, 577, 655], "highlimit": [263, 577, 655], "exclud": [263, 655, 677], "exclude_valu": [263, 575], "mylogname1": 263, "logtofil": 263, "filepatt": 263, "mylogname2": 263, "yearly_log": 263, "auswirk": [263, 265, 289, 566, 573], "schreibvorgang": [263, 351, 393, 522], "systemlogg": 263, "olog": 263, "olog_rul": 263, "olog_txt": 263, "olog_level": 263, "text1": 263, "text2": 263, "grossschreib": 263, "loggend": [263, 583], "untensteh": 263, "kompatibilitatsgrund": [263, 323], "lowlim": [263, 655], "highlim": [263, 655], "pnam": [263, 575, 577, 655], "aktuel": 263, "ssssss": 263, "grenzwert": [263, 328, 347, 575], "logtext": [263, 593, 641, 648], "bar1": 263, "bar2": 263, "bar3": 263, "t1": 263, "t2": 263, "doesnotexist": 263, "bar4": 263, "decreased": 263, "bar5": 263, "datalog": [263, 463, 545, 554, 585, 641, 646, 655, 671], "logleveleintrag": 263, "some_logic": 263, "level_keyword": 263, "farbmarkier": 263, "autoblind": [263, 338, 545, 554, 641], "inspiriert": 263, "sourcecod": [263, 645, 671], "klimaanlag": [265, 465, 545, 548], "panasonic": [265, 465, 545, 548], "etherea": 265, "gestell": 265, "pcomfortcloud": 265, "releast": [265, 354], "aktuelll": 265, "anmeldeverfahr": [265, 456], "unterververzeichnis": 265, "air_condition": 265, "anlag": [265, 414, 630], "pcc_index": 265, "numerier": 265, "temp_insid": 265, "swing_hor": 265, "swing_vert": 265, "hal": [265, 566], "identifizier": [266, 349, 351, 632], "kopplung": [266, 349], "kopplungsprozess": 266, "anmeldedat": 266, "philips_tv_rx_key": 266, "philips_tv_tx_key": 266, "ambilightstat": 266, "ambilight_stat": [266, 466], "powerstate_info": 266, "powerstateinfo": [266, 466], "power_off": [266, 281], "ambilight": [266, 655], "ambiant": 266, "ambilight_hu": [266, 466], "lx87": [267, 467], "lx77": [267, 467], "lx57": [267, 467], "1223": [267, 467], "1123": [267, 467], "baudrat": [267, 334, 341, 381, 517, 650], "bytesiz": [267, 334], "parity": [267, 334], "stopbit": [267, 334], "8102": [267, 467], "pirateweath": [268, 468, 545, 558, 655], "pirat": [268, 468], "abzuruf": [268, 313, 434, 536], "wetter_piratewthr": 268, "piratewthr_": 268, "rasplex": [269, 469, 545, 550], "openelec": 269, "xbmc": [269, 646, 666, 671], "frodo": 269, "displaytim": 269, "6000": [269, 469, 622], "plex_host": 269, "plex_port": 269, "3005": [269, 298, 469], "informational": [269, 296], "dong": [269, 296], "nfront": 269, "ap310": [270, 271, 470, 545, 550], "interfall": 270, "bytord": [270, 271], "korrrigiert": [270, 271], "versionspruf": [270, 271], "curentunitmod": [270, 271], "manualbypass": [270, 271], "currentunitmod": [270, 271], "awaymod": [270, 271], "repariert": [270, 271], "pluggit_convert": [270, 271], "sodass": [270, 271, 333, 412, 594], "vernunft": [270, 271], "wochenprogramm": [270, 271], "prowl_event": 272, "prowl_text": 272, "typ2": 272, "prowl_valu": 272, "typ3": 272, "prowl_swap": 272, "wertbezog": 272, "mitgeb": 272, "abweicht": [272, 679], "intrusion": [272, 663], "yourvisu": 272, "tumbl": 272, "qwerqw": 272, "instruction": [273, 335, 650], "magic": [273, 363], "migrated": [273, 644, 646, 649], "convention": [273, 353, 651, 652, 656], "dependecy": 273, "globally": [273, 274, 645, 653], "defaul": [273, 274], "desired": [273, 296, 623], "myself": 273, "moth": 273, "x28d7ajfx13": 273, "teddy": 273, "eifel": 273, "tow": 273, "eiffelturm": 273, "85837": 273, "294481": 273, "17z": 273, "3m1": 273, "4b1": 273, "4m2": 273, "1s0x47e66e2964e34e2d": 273, "0x8ddca9ee380ef7e0": 273, "milk": 273, "egg": 273, "salt": 273, "iden": 273, "ios": 274, "attach": 274, "emergency": 274, "retried": 274, "ton": [274, 282, 283, 381, 527], "choic": [274, 645], "supplementary": 274, "attachment": 274, "e6653": 274, "tfeldmann": 275, "prototyp": [275, 474, 545, 548], "teufel": [275, 276, 474, 475, 545, 548], "compontent": 275, "mp3": [275, 314], "bremenvi": 275, "akacast": 275, "akamaistream": 275, "234437": 275, "gnl": 275, "horzon": 275, "raumfeld": [276, 475, 545, 548, 645, 649, 655], "raumserv": [276, 475, 545, 548], "multiraum": 276, "chrid": 276, "rf_hostip": 276, "rf_hostport": 276, "rf_power_state_kuech": 276, "rf_renderer_nam": 276, "rf_attr": [276, 649], "power_stat": [276, 475], "rf_scop": 276, "rf_volume_kuech": 276, "set_volum": [276, 475], "unmut": 276, "togglemut": 276, "rf_set_mute_kuech": 276, "set_mut": [276, 475], "zone_kuech": 276, "rf_play_state_kuech": 276, "play_stat": [276, 475], "tracknum": 276, "rf_load_playlist_kuech": 276, "load_playlist": [276, 475], "rf_load_track_kuech": 276, "load_track": [276, 475], "mediainfo": 276, "rf_mediainfo_kuech": 276, "get_mediainfo": [276, 475, 649], "spiel": [276, 314, 331, 504, 688], "auseinandergehalt": 276, "speaker1": 276, "rfpower_stat": 276, "speaker2": 276, "rf_power_stat": 276, "rf_zone_nam": 276, "rf_room_nam": 276, "rf_scoop": 276, "rf_volume_level": 276, "volume_level": 276, "zone_bad_kuech": 276, "rf_media_uri": 276, "loaduri": 276, "rf_media_playlist": 276, "loadplaylist": 276, "hanrdwar": 277, "433": [277, 278, 476, 477, 545, 548, 653], "mhz": [277, 278, 476, 477, 545, 548, 653], "brennenstuhl": [277, 278, 476, 477, 545, 548, 648, 653], "rcs": [277, 278, 476, 477, 545, 548, 648, 653], "rcs1000": 277, "rcs1000n_gpio": 277, "rcs1000n_sendduration": 277, "schaltsteckdose1": 277, "funkstedos": 277, "rcs_systemcod": 277, "11010": 277, "rcs_buttoncod": 277, "433mhz": 278, "setups": [278, 331, 649], "vcc": 278, "gnd": 278, "ground": 278, "atad": 278, "recomm": 278, "ant": 278, "drogon": 278, "raspiprojekt": 278, "showall": 278, "r10r": 278, "slightly": [278, 646, 655], "cpp": 278, "wiringpisetup": 278, "wiringpisetupsys": 278, "our": [278, 288], "systemcod": [278, 476], "argv": 278, "unitcod": 278, "atoi": 278, "printf": [278, 367, 586], "myswitch": 278, "enabletransmit": 278, "switchon": 278, "switchoff": 278, "schaltung": [278, 347, 519], "funksteckdos": [278, 476, 477, 545, 548], "granted": 278, "11111": [278, 476, 477], "proceeding": 278, "exportgpio17": 278, "gpio17": 278, "666": 278, "executabl": 278, "rcswitch_dir": 278, "rcswitch_sendduration": 278, "rcswitch_host": [278, 643], "rcswitch_us": 278, "rcswitch_password": 278, "intended": 278, "shooting": 278, "switching": [278, 301, 342, 646], "reliabl": 278, "gap": 278, "serval": 278, "gernerating": 278, "jam": 278, "rc_devic": 278, "rc_cod": 278, "basement": 278, "rcpowerplug": 278, "misconfiguration": 278, "discussion": 278, "39094": 278, "howto": [278, 325], "datenlogg": 279, "frischwasserwarmetausch": 279, "cosmo": 279, "solarregel": 279, "resol_sourc": 279, "0x7821": 279, "resol_destination": 279, "0x0010": 279, "resol_command": 279, "0x0100": 279, "temperature_soll": 279, "resol_offset": 279, "resol_bitus": 279, "resol_factor": 279, "temperatur_2": 279, "waermemeng": 279, "256": [279, 500], "256000": 279, "256000000": 279, "0x7721": 279, "sensordefektmask": 279, "temperatur_1": 279, "kollektor": 279, "resol_issigned": [279, 651], "daniel": [279, 667], "wippermann": 279, "bitmask": 279, "rsc": 279, "install_dir": 279, "servicecent": 279, "vbus": [279, 478, 545, 550], "resol_2": 279, "0xaa": 279, "0x10": 279, "0x20": 279, "0x30": 279, "0x1047": 279, "renamed": [280, 341, 643, 644, 645, 646, 648, 649, 650, 651, 652, 653, 655, 656, 691], "remotestart_1": [280, 656], "rstart_path": [280, 656], "collission": 280, "gardena": [280, 645], "flymo": [280, 645], "mcculloch": [280, 645], "robotic": [280, 645], "lawnmow": [280, 645], "hx": [280, 479, 545, 550, 645], "robo": 281, "bluez": [281, 297], "operating": [281, 521, 598], "socket_typ": 281, "socket_addr": 281, "socket_port": 281, "doocumentation": 281, "roombas": 281, "robotiklubi": 281, "_media": 281, "kursused": 281, "roomba_sumo": 281, "failid": 281, "hacking_roomba": 281, "diy": 281, "buy": 281, "ft41": 281, "blueroom": 281, "fussel": 281, "tronic": 281, "77": [281, 314], "wich": 281, "roomba_cmd": 281, "driving": [281, 344, 516], "forward": 281, "100mm": 281, "spin_left": 281, "spin_right": 281, "roomba_get": 281, "think": 281, "explaining": 281, "roomba_raw": 281, "test_sc": 281, "spin": 281, "137": 281, "button_clean": 281, "buttons_clean": [281, 480], "angl": [281, 480, 655], "buttons_max": [281, 480], "buttons_spot": [281, 480], "buttons_pow": [281, 480], "remote_opcod": [281, 480], "dirt_detect_right": [281, 480], "dirt_detect_left": [281, 480], "motor_overcurrent_side_brush": [281, 480], "motor_overcurrent_vacuum": [281, 480], "motor_overcurrent_main_brush": [281, 480], "motor_overcurrent_drive_left": [281, 480], "virtual_wall": [281, 480], "cliff_right": [281, 480], "cliff_front_right": [281, 480], "cliff_front_left": [281, 480], "cliff_left": [281, 480], "bumps_wheeldrops_bump_right": [281, 480], "bumps_wheeldrops_bump_left": [281, 480], "bumps_wheeldrops_wheeldrop_right": [281, 480], "bumps_wheeldrops_wheeldrop_left": [281, 480], "bumps_wheeldrops_wheeldrop_cast": 281, "irobot": [282, 283, 284, 480, 481, 482, 545, 550], "roomba": [282, 283, 481, 482, 545, 550, 643, 655], "980": 282, "nickwaterton": [282, 284], "roomba980": [282, 284], "verzeichniss": 282, "herrunterlad": 282, "rooomba_980": 282, "getpassword": [282, 481, 482], "robii": 282, "plays": [282, 294], "sku": [282, 283], "r980040": 282, "123456789013456": 282, "f0": 282, "8c": 282, "b5": 282, "cap": 282, "carpetboost": 282, "pp": 282, "langota": 282, "binfulldetect": 282, "ota": [282, 283], "multipass": 282, "edg": 282, "svcconf": [282, 283], "abcd": 282, "efggdban": 282, "staubsaug": [282, 283, 367, 456, 480, 481, 482, 533, 545, 550], "roombapassword": [282, 283], "status_batteri": [282, 284, 482], "status_bin_full": 282, "status_cleanmissionstatus_phas": 282, "status_cleanmissionstatus_error": 282, "roomba_uzsu": 282, "urlaub": 282, "uzsu_start": 282, "uzsu_stop": 282, "uzsu_dock": 282, "pschmitt": [283, 284], "roombapy": [283, 284, 655], "31f4072471914530": 283, "e7": 283, "DA": 283, "b2": 283, "robot_nam": 283, "harry": [283, 284], "e619240": 283, "capabiliti": [283, 368, 655], "31xxxxxxxxxxxxxx": 283, "bildschirm": [283, 527, 632], "hear": 283, "wi": [283, 292, 359], "fi": [283, 292, 359], "flashing": 283, "1yyyyyyyyyyyyyyyyyyyyyyyyyy": 283, "baut": 283, "eingeleitet": 283, "Ich": [283, 370], "yyy": 283, "zzz": 283, "staubsaugrobot": 284, "m6": 284, "mop": 284, "paho": [284, 656], "orjson": 284, "pacifica15": [284, 545, 550], "e6": 284, "roombapysh": [284, 545, 550, 655], "isconnected": 284, "clienterror": 284, "client_error": [284, 482], "missionerror": 284, "error_cod": [284, 482], "missionerrormessag": 284, "error_messag": [284, 482], "mission_stat": [284, 482], "evac": [284, 482], "locat": [284, 482], "battery_cycl": 284, "bat_ccount": [284, 482], "Bin": 284, "bin_present": [284, 482], "bin_full": [284, 482], "dock_known": [284, 482], "missionstatus": 284, "missionstatus_cycl": [284, 482], "missionstatus_phas": [284, 482], "missionstatus_error": [284, 482], "missionstatus_starttim": [284, 482], "expiretim": 284, "missionstatus_expiretim": [284, 482], "initiator": 284, "missionstatus_initiator": [284, 482], "missionstatus_runtim": [284, 482], "cliff": 284, "run_ncliff": [284, 482], "panics": 284, "run_npanics": [284, 482], "scrub": 284, "run_nscrub": [284, 482], "run_tim": [284, 482], "mission": 284, "mission_total": [284, 482], "mission_ok": [284, 482], "err": [284, 649], "mission_err": [284, 482], "lastcommand": 284, "lastcommand_command": [284, 482], "lastcommand_tim": [284, 482], "lastcommand_initiator": [284, 482], "scene_robo_vac_clean": 284, "text_question_mark": 284, "scene_robo_vac_cleaner_charging": 284, "scene_robo_vac_cleaner_activ": 284, "scene_robo_vac_cleaner_paused": 284, "scene_robo_vac_cleaner_dock": 284, "scene_robo_vac_cleaner_attention": 284, "766": 284, "f00": [284, 294], "ff0": 284, "0f0": 284, "3b": [285, 310], "verkabel": 285, "leitungsanschluss": 285, "activating": [285, 629], "pullup": [285, 412, 645], "dtoverlay": 285, "w1": [285, 483, 585], "gpiopin": 285, "therm": 285, "kompf": 285, "pionewiremini": 285, "konfigruation": 285, "dirnam": 285, "rpi1wire_id": 285, "sensoradress": [285, 461, 483], "yyyyyyyyyyyy": [285, 461, 483], "rpi1wire_sys": 285, "triggerit": 285, "someit": [285, 347], "somelist": 285, "somecount": 285, "someupdat": 285, "mytemperatur": 285, "rpi_temp1": 285, "0215018970ff": 285, "sensor_list": 285, "sensor_count": 285, "pluginparamet": 286, "weitverbreitet": 287, "aufzuzeichn": [287, 295, 490], "weiterzugeb": 287, "librrd": [287, 667], "libpython3": 287, "werkzeug": 287, "datenprotokollier": 287, "grafiktool": 287, "stattgefund": [287, 330], "anderungszeit": [287, 326, 332, 396], "analysefunktionalitat": 287, "datenbankfunktion": [287, 674], "datenaufbereit": 287, "zeitintervall": [287, 396, 434, 443, 504], "endzeitpunkt": [287, 347, 460], "verschieb": [287, 450, 569, 592], "intervallein": 287, "rrd_min": 287, "rrd_max": 287, "rrd_typ": 287, "durchschnittstemperatur": [287, 573], "regulator": [288, 646], "default_kp": 288, "proportional": 288, "gain": [288, 355, 453], "default_ki": 288, "defaultboosttim": 288, "defaultonexpiredtim": 288, "lot": [288, 298, 643, 653, 670], "custumiz": 288, "measured": 288, "floor": 288, "setpoint": [288, 643], "mulipl": 288, "imagin": 288, "predefinied": 288, "finding": [288, 646, 655], "enough": [288, 294], "reduction": 288, "importent": 288, "survic": 288, "achiev": [288, 294], "contin": 288, "52734a030000": 288, "frontdoor": 288, "room1": 288, "52432a030000": 288, "triggerd": [288, 650], "src_it": 288, "src_item_nam": 288, "extracted": [288, 649], "src_item_part": 288, "isnumeric": 288, "edt": 288, "sv_img": [288, 566, 682, 683], "sani_heating": [288, 682], "sv_overview": 288, "sv_heading_left": 288, "bz1": 288, "boost_all_3h": 288, "sani_heating_temp": 288, "bz2": 288, "boost_all_5h": 288, "5h": 288, "sv_heading_cent": 288, "nz1": 288, "default_all_0h": 288, "sv_heading_right": 288, "dz1": 288, "drop_all_3h": 288, "dz2": 288, "drop_all_5h": 288, "0d": [288, 329], "0m": 288, "elso": 288, "abgestimmt": 289, "rtr2_id": 289, "test_rtr": 289, "dusch": 289, "hierdurch": 289, "ist_temp": [289, 338], "stellwert": [289, 487, 653], "5001": [289, 434], "soll_temp": [289, 338], "frost": [289, 487, 652], "vielmehr": 289, "Wegen": 289, "heizenergi": 289, "spar": [289, 329], "griff": 289, "rtr2_function": 289, "comfort_mod": [289, 487], "standby_mod": [289, 487], "night_mod": [289, 487, 504], "frost_mod": [289, 487], "hvac_mod": 289, "heating_status": [289, 487], "lock_status": [289, 487], "temp_actual": [289, 487], "control_output": [289, 487], "setting_temp_comfort": [289, 487], "setting_temp_standby": [289, 487], "setting_temp_night": [289, 487], "setting_night_reduction": [289, 487], "setting_standby_reduction": [289, 487], "setting_fixed_reduction": [289, 487], "setting_temp_frost": [289, 487], "heizt": [289, 682], "rtr_setting": 289, "rtr2_controller_setting": [289, 653], "erledigt": 289, "rtr2_setting": 289, "temperaturreduktion": [289, 487], "fixed_reduction": 289, "weglass": [289, 589], "bedien": [289, 294, 328, 622], "greift": [289, 314], "schrittgross": 289, "verstell": 289, "visu_heiz": 289, "raumtemperaturregl": 289, "kurv": 289, "beschrift": 289, "ist_estrich": 289, "estrich": 289, "rtrs": [289, 653], "rio": [290, 665], "trebl": [290, 488, 504], "turnonvolum": [290, 488], "currentsourc": [290, 488], "loudness": [290, 488, 504], "partymod": [290, 488, 504], "donotdisturb": [290, 488], "disturb": 290, "keyreleas": 290, "aditional": 290, "dg": 290, "bedroom": 290, "gen1": [291, 293, 489], "mpatibility": 291, "relays": [291, 293, 337], "tilt": [291, 293], "vibration": [291, 293, 527], "illumination": [291, 293], "flood": [291, 293], "temperature_f": [291, 293], "vebund": [291, 337], "accesspoint": 292, "versetz": 292, "steck": [292, 331], "versetzt": [292, 406], "xxxxxx": 292, "hauptmenu": 292, "connectivity": [292, 420, 623, 649], "rekonfiguration": 292, "shelly": [293, 545, 548, 643, 645, 648, 649, 655, 656, 693], "shelly1": [293, 489], "pm": [293, 489], "shelly2": [293, 489], "shelly4pro": [293, 489], "shelly_id": 293, "shelly_typ": 293, "shelly_attr": 293, "experimentell": 293, "gen3": 293, "mini1g3": 293, "2pm": 293, "button1": 293, "window2": 293, "durchgeh": [293, 490], "batteriebetrieb": 293, "schlaf": [293, 682], "leg": [293, 323], "devicess": 293, "shelly_group": 293, "ubermitteln": 293, "vorgegang": [293, 306, 307], "besitzt": 293, "test_it": [293, 638], "shelly_list_attr": 293, "zusatzinfo": 293, "schweig": 293, "shellyplus": 293, "list_attr": 293, "80646fe38450": 293, "apow": 293, "energy_by_minut": 293, "temp_f": 293, "485519db1e1d": 293, "act_reason": 293, "input_event": [293, 489], "bezeichn": [293, 306, 307, 407, 496, 523], "unterschid": 293, "vereinheitlich": 293, "shellyplusht": 293, "80646fcbb6c8": 293, "beobacht": [293, 328], "unbehandelt": 293, "snsn": 293, "0013a": 293, "plusht": 293, "devicepow": 293, "handle_gen2_device_status": 293, "ds1": 293, "gepostet": [293, 491], "attribt": 293, "shellyplug_s": 293, "shellyht": [293, 489], "shellyflood": [293, 489], "shellyplusplug_s": 293, "shally_id": 293, "plug1": 293, "Mein": 293, "040bd0": 293, "energieverbrauch": [293, 337], "simulating": 294, "constantly": [294, 652], "upon": [294, 352, 649], "someon": [294, 368], "sim": [294, 295, 360], "tracked": 294, "supportet": 294, "adminstrativ": 294, "tank": [294, 295, 338, 490], "grow": 294, "15th": 294, "advanc": 294, "gaps": 294, "changing": [294, 341, 355, 646, 648, 653, 655], "stamps": 294, "anwesenheitssimulation": 294, "lamp_sim": 294, "0b0": 294, "a4a4a4": 294, "fa3": 294, "bf00ff": 294, "rowspan": 294, "p_tank1": 294, "cylind": 294, "0c0": 294, "audio_stop": 294, "audio_rec": 294, "h1": 294, "time_clock": 294, "p_sim01": 294, "zf": 294, "lamp_gre": 294, "p_sim02": 294, "lamp_off": 294, "p_sim03": 294, "p_sim04": 294, "p_sim05": 294, "p_sim_t": 294, "p_sim06": 294, "p_sim07": 294, "p_sim08": 294, "lamp_orang": 294, "p_sim09": 294, "lamp_red": 294, "p_sim10": 294, "lamp_purpl": 294, "p_simbtn04": 294, "p_simbtn05": 294, "p_simbtn06": 294, "p_simstat": 294, "tue": [294, 295, 569, 592], "tobias": [294, 295], "nextday": [294, 295, 642], "depenging": [294, 295], "aufnahm": [295, 545, 554], "aktionsreihenfolg": [295, 545, 554], "eventfil": 295, "stopp": [295, 328], "visualier": 295, "betragt": [295, 322, 328, 351], "uhrzeitmass": 295, "eventprotokoll": 295, "stoppt": [295, 314, 416, 453, 479, 481], "aufzeichnungsdatei": 295, "abgespielt": [295, 314, 453, 504, 527], "zuend": 295, "VOR": 295, "springt": [295, 453], "schaubild": 295, "statusander": 295, "diagram": 295, "slackinstanc": 296, "ghi": 296, "posting": 296, "workspac": [296, 491], "your_team": 296, "webhook": 296, "slackinstance_1": 296, "workspaceyourteam": 296, "slackinstance_2": 296, "workspaceanotherteam": 296, "jkl": 296, "mno": 296, "pqr": 296, "another_team": 296, "a0f7xduaz": 296, "front": [296, 305], "otherchannel": 296, "differentchannel": 296, "underlin": 296, "emojis": 296, "multilin": [296, 643], "visit": [296, 312, 352, 353, 355, 356, 357], "sufficient": 296, "plugn": 296, "gobject": 297, "dbus": 297, "scanning": 297, "sma001d": 297, "213000xxxx": 297, "sn213000xxxx": 297, "hci0": 297, "requestpincod": 297, "3070": 297, "dev_bt_addr_underscor": 297, "trusted": 297, "sunnyboy": [297, 492, 545, 550], "5000tl": [297, 492, 545, 550], "sunny": [297, 299, 300, 492, 545, 550], "tripow": [297, 492, 545, 550], "8000tl": [297, 492, 545, 550], "12000tl": [297, 492, 545, 550], "58": 297, "allowed_timedelta": 297, "accessing": [297, 643], "plugin_activ": [297, 492], "feeding_power_in_w": 297, "ac_p_total": [297, 492], "daily_yield_in_wh": 297, "e_day": [297, 492], "total_yield_in_wh": 297, "e_total": [297, 492], "inv_serial": [297, 492], "mac_address": [297, 504], "inv_address": [297, 492], "last_update_of_data": 297, "dc_power_string1_in_w": 297, "dc_string1_p": [297, 492], "dc_power_string2_in_w": 297, "dc_string2_p": [297, 492], "dc_voltage_string1_in_v": 297, "dc_string1_u": [297, 492], "dc_voltage_string2_in_v": 297, "dc_string2_u": [297, 492], "dc_current_string1_in_a": 297, "dc_string1_i": [297, 492], "dc_current_string2_in_a": 297, "dc_string2_i": [297, 492], "operating_time_in_s": 297, "operating_tim": [297, 492], "feeding_time_in_s": 297, "feeding_tim": [297, 492], "grid_frequency_in_hz": 297, "grid_frequency": [297, 492], "inverter_status": 297, "relais_status": 297, "grid_relay": [297, 492], "sw_version": [297, 492], "agreement": 298, "florian": 298, "weng": 298, "datenschuft": [298, 545, 550], "1030610": 298, "sma_": [298, 545, 550, 643, 646], "datagram": 298, "eb": 298, "page_id": 298, "smaem": 298, "speedwire_version": 298, "speedwir": [298, 300, 494, 545, 550, 649], "sma_em_data_typ": 298, "psupply": 298, "supply_unit": 298, "psupplyunit": 298, "pconsum": 298, "consume_unit": 298, "pconsumeunit": 298, "supply_count": 298, "psupplycount": 298, "supply_counter_unit": 298, "psupplycounterunit": 298, "consume_count": 298, "pconsumecount": 298, "consume_counter_unit": 298, "pconsumecounterunit": 298, "cosphi": [298, 493, 674], "cosphi_unit": 298, "cosphiunit": 298, "consume_activ": 298, "supply_activ": 298, "ssupply": 298, "ssupply_unit": 298, "ssupplyunit": 298, "ssupply_count": 298, "ssupplycount": 298, "ssupply_counter_unit": 298, "ssupplycounterunit": 298, "sconsum": 298, "sconsume_unit": 298, "sconsumeunit": 298, "sconsume_count": 298, "sconsumecount": 298, "sconsume_counter_unit": 298, "sconsumecounterunit": 298, "qsupply": 298, "qsupply_unit": 298, "qsupplyunit": 298, "qsupply_count": 298, "qsupplycount": 298, "qsupply_counter_unit": 298, "qsupplycounterunit": 298, "qconsum": 298, "qconsume_unit": 298, "qconsumeunit": 298, "qconsume_count": 298, "qconsumecount": 298, "qconsume_counter_unit": 298, "qconsumecounterunit": 298, "p1supply": 298, "p1supply_unit": 298, "p1supplyunit": 298, "p1supply_count": 298, "p1supplycount": 298, "p1supply_counter_unit": 298, "p1supplycounterunit": 298, "p1consum": 298, "p1consume_unit": 298, "p1consumeunit": 298, "p1consume_count": 298, "p1consumecount": 298, "p1consume_counter_unit": 298, "p1consumecounterunit": 298, "s1supply": 298, "s1supply_unit": 298, "s1supplyunit": 298, "s1supply_count": 298, "s1supplycount": 298, "s1supply_counter_unit": 298, "s1supplycounterunit": 298, "s1consum": 298, "s1consume_unit": 298, "s1consumeunit": 298, "s1consume_count": 298, "s1consumecount": 298, "s1consume_counter_unit": 298, "s1consumecounterunit": 298, "q1supply": 298, "q1supply_unit": 298, "q1supplyunit": 298, "q1supply_count": 298, "q1supplycount": 298, "q1supply_counter_unit": 298, "q1supplycounterunit": 298, "q1consum": 298, "q1consume_unit": 298, "q1consumeunit": 298, "q1consume_count": 298, "q1consumecount": 298, "q1consume_counter_unit": 298, "q1consumecounterunit": 298, "i1_unit": 298, "i1unit": 298, "u1": 298, "u1_unit": 298, "u1unit": 298, "cosphi1": [298, 493, 674], "cosphi1_unit": 298, "cosphi1unit": 298, "p2supply": 298, "p2supply_unit": 298, "p2supplyunit": 298, "p2supply_count": 298, "p2supplycount": 298, "p2supply_counter_unit": 298, "p2supplycounterunit": 298, "p2consum": 298, "p2consume_unit": 298, "p2consumeunit": 298, "p2consume_count": 298, "p2consumecount": 298, "p2consume_counter_unit": 298, "p2consumecounterunit": 298, "s2supply": 298, "s2supply_unit": 298, "s2supplyunit": 298, "s2supply_count": 298, "s2supplycount": 298, "s2supply_counter_unit": 298, "s2supplycounterunit": 298, "s2consum": 298, "s2consume_unit": 298, "s2consumeunit": 298, "s2consume_count": 298, "s2consumecount": 298, "s2consume_counter_unit": 298, "s2consumecounterunit": 298, "q2supply": 298, "q2supply_unit": 298, "q2supplyunit": 298, "q2supply_count": 298, "q2supplycount": 298, "q2supply_counter_unit": 298, "q2supplycounterunit": 298, "q2consum": 298, "q2consume_unit": 298, "q2consumeunit": 298, "q2consume_count": 298, "q2consumecount": 298, "q2consume_counter_unit": 298, "q2consumecounterunit": 298, "i2_unit": 298, "i2unit": 298, "u2": 298, "u2_unit": 298, "u2unit": 298, "cosphi2": [298, 493, 674], "cosphi2_unit": 298, "cosphi2unit": 298, "p3supply": 298, "p3supply_unit": 298, "p3supplyunit": 298, "p3supply_count": 298, "p3supplycount": 298, "p3supply_counter_unit": 298, "p3supplycounterunit": 298, "p3consum": 298, "p3consume_unit": 298, "p3consumeunit": 298, "p3consume_count": 298, "p3consumecount": 298, "p3consume_counter_unit": 298, "p3consumecounterunit": 298, "s3supply": 298, "s3supply_unit": 298, "s3supplyunit": 298, "s3supply_count": 298, "s3supplycount": 298, "s3supply_counter_unit": 298, "s3supplycounterunit": 298, "s3consum": 298, "s3consume_unit": 298, "s3consumeunit": 298, "s3consume_count": 298, "s3consumecount": 298, "s3consume_counter_unit": 298, "s3consumecounterunit": 298, "q3supply": 298, "q3supply_unit": 298, "q3supplyunit": 298, "q3supply_count": 298, "q3supplycount": 298, "q3supply_counter_unit": 298, "q3supplycounterunit": 298, "q3consum": 298, "q3consume_unit": 298, "q3consumeunit": 298, "q3consume_count": 298, "q3consumecount": 298, "q3consume_counter_unit": 298, "q3consumecounterunit": 298, "i3_unit": 298, "i3unit": 298, "u3_unit": 298, "u3unit": 298, "cosphi3": [298, 493, 674], "cosphi3_unit": 298, "cosphi3unit": 298, "uninstall": 299, "plugin_yaml": 299, "smamodbus1": 299, "sma_mb": [299, 545, 550, 649, 653, 656], "si44": [299, 300], "reinschreib": [299, 300], "ladestand": [299, 456], "smamb_regist": [299, 300], "30005": 299, "30845": 299, "island": 299, "sma": [300, 493, 494, 545, 550, 646, 649, 655, 667, 670, 671, 674], "feldbus": [300, 494, 545, 550], "modbusprotokol": 300, "standardeinstell": [300, 314, 496, 595, 690], "herstellerseit": 300, "boy": 300, "sb3000tl": 300, "smamodbus": 300, "30057": 300, "smamb_datatyp": 300, "30201": 300, "30225": 300, "relais": [300, 334, 337, 489, 511, 646], "30217": 300, "ac_energy_total": 300, "30529": 300, "ac_energy_day": 300, "30535": 300, "time_work": 300, "30541": 300, "30775": 300, "s32": [300, 494], "smarttvs": 301, "25545": 301, "55000": [301, 495], "tv_version": 301, "classic": [301, 495, 641, 643, 644, 645, 649, 681, 691], "smarttv1": 301, "samsung_m_seri": [301, 495], "8001": [301, 495], "reduc": [301, 663], "instance_nam": [301, 669], "smarttv_id": 301, "separeted": 301, "key_mut": 301, "kikatv": 301, "key_ent": 301, "tv2": 301, "smarttv2": 301, "key_menu": 301, "key_up": 301, "key_down": 301, "key_left": 301, "key_right": 301, "key_volup": 301, "key_voldown": 301, "key_chdown": 301, "key_chup": 301, "key_prech": 301, "key_gre": 301, "key_yellow": 301, "key_cyan": 301, "key_adddel": 301, "key_sourc": 301, "key_info": 301, "key_pip_onoff": 301, "key_pip_swap": 301, "key_plus100": 301, "key_caption": 301, "key_pmod": 301, "key_ttx_mix": 301, "key_tv": 301, "key_picture_siz": 301, "key_ad": 301, "key_pip_siz": 301, "key_magic_channel": 301, "key_pip_scan": 301, "key_pip_chup": 301, "key_pip_chdown": 301, "key_device_connect": 301, "key_help": 301, "key_antena": 301, "key_convergenc": 301, "key_11": 301, "key_12": 301, "key_auto_program": 301, "key_factory": 301, "key_3speed": 301, "key_rsurf": 301, "key_aspect": 301, "key_topmenu": 301, "key_gam": 301, "key_quick_replay": 301, "key_still_pictur": 301, "key_dtv": 301, "key_favch": 301, "key_rewind": 301, "key_stop": 301, "key_play": 301, "key_ff": 301, "key_rec": 301, "key_paus": 301, "key_tool": 301, "key_instant_replay": 301, "key_link": 301, "key_ff_": 301, "key_guid": 301, "key_rewind_": 301, "key_angl": 301, "key_reserved1": 301, "key_zoom1": 301, "key_program": 301, "key_bookmark": 301, "key_disc_menu": 301, "key_print": 301, "key_return": 301, "key_sub_titl": 301, "key_clear": 301, "key_vchip": 301, "key_repeat": 301, "key_door": 301, "key_op": 301, "key_wheel_left": 301, "key_pow": 301, "key_sleep": 301, "key_dma": 301, "key_turbo": 301, "key_fm_radio": 301, "key_dvr_menu": 301, "key_mt": 301, "key_pcmod": 301, "key_ttx_subfac": 301, "key_ch_list": 301, "key_red": 301, "key_dni": 301, "key_sr": 301, "key_convert_audio_mainsub": 301, "key_mdc": 301, "key_seffect": 301, "key_dvr": 301, "key_dtv_signal": 301, "key_liv": 301, "key_perpect_focus": 301, "key_hom": 301, "key_esaving": 301, "key_wheel_right": 301, "key_content": 301, "key_vcr_mod": 301, "key_catv_mod": 301, "key_dss_mod": 301, "key_tv_mod": 301, "key_dvd_mod": 301, "key_stb_mod": 301, "key_caller_id": 301, "key_scal": 301, "key_zoom_mov": 301, "key_clock_display": 301, "key_av1": 301, "key_svideo1": 301, "key_component1": 301, "key_setup_clock_tim": 301, "key_component2": 301, "key_magic_bright": 301, "key_dvi": 301, "key_hdmi": 301, "key_w_link": 301, "key_dtv_link": 301, "key_app_list": 301, "key_back_mhp": 301, "key_alt_mhp": 301, "key_dns": 301, "key_rss": 301, "key_entertainment": 301, "key_id_input": 301, "key_id_setup": 301, "key_anynet": 301, "key_poweroff": 301, "key_poweron": 301, "key_anyview": 301, "key_m": 301, "key_mor": 301, "key_pannel_pow": 301, "key_pannel_chup": 301, "key_pannel_chdown": 301, "key_pannel_volup": 301, "key_pannel_voldow": 301, "key_pannel_ent": 301, "key_pannel_menu": 301, "key_pannel_sourc": 301, "key_av2": 301, "key_av3": 301, "key_svideo2": 301, "key_svideo3": 301, "key_zoom2": 301, "key_panorama": 301, "key_4_3": 301, "key_16_9": 301, "key_dynamic": 301, "key_standard": 301, "key_movie1": 301, "key_custom": 301, "key_auto_arc_reset": 301, "key_auto_arc_lna_on": 301, "key_auto_arc_lna_off": 301, "key_auto_arc_anynet_mode_ok": 301, "key_auto_arc_anynet_auto_start": 301, "key_auto_format": 301, "key_dnet": 301, "key_hdmi1": 301, "key_auto_arc_caption_on": 301, "key_auto_arc_caption_off": 301, "key_auto_arc_pip_doubl": 301, "key_auto_arc_pip_larg": 301, "key_auto_arc_pip_small": 301, "key_auto_arc_pip_wid": 301, "key_auto_arc_pip_left_top": 301, "key_auto_arc_pip_right_top": 301, "key_auto_arc_pip_left_bottom": 301, "key_auto_arc_pip_right_bottom": 301, "key_auto_arc_pip_ch_chang": 301, "key_auto_arc_autocolor_success": 301, "key_auto_arc_autocolor_fail": 301, "key_auto_arc_c_force_aging": 301, "key_auto_arc_usbjack_inspect": 301, "key_auto_arc_jack_ident": 301, "key_nine_seperat": 301, "key_zoom_in": 301, "key_zoom_out": 301, "key_mic": 301, "key_hdmi2": 301, "key_hdmi3": 301, "key_auto_arc_caption_kor": 301, "key_auto_arc_caption_eng": 301, "key_auto_arc_pip_source_chang": 301, "key_hdmi4": 301, "key_auto_arc_antenna_air": 301, "key_auto_arc_antenna_cabl": 301, "key_auto_arc_antenna_satellit": 301, "key_ext1": 301, "key_ext2": 301, "key_ext3": 301, "key_ext4": 301, "key_ext5": 301, "key_ext6": 301, "key_ext7": 301, "key_ext8": 301, "key_ext9": 301, "key_ext10": 301, "key_ext11": 301, "key_ext12": 301, "key_ext13": 301, "key_ext14": 301, "key_ext15": 301, "key_ext16": 301, "key_ext17": 301, "key_ext18": 301, "key_ext19": 301, "key_ext20": 301, "key_ext21": 301, "key_ext22": 301, "key_ext23": 301, "key_ext24": 301, "key_ext25": 301, "key_ext26": 301, "key_ext27": 301, "key_ext28": 301, "key_ext29": 301, "key_ext30": 301, "key_ext31": 301, "key_ext32": 301, "key_ext33": 301, "key_ext34": 301, "key_ext35": 301, "key_ext36": 301, "key_ext37": 301, "key_ext38": 301, "key_ext39": 301, "key_ext40": 301, "key_ext41": 301, "bindeglied": 302, "austauscht": 302, "generi": [302, 338, 354, 496, 507, 523, 682, 688, 689, 693], "nutzdatenprotoll": [302, 689], "zusammenspiel": [302, 573], "cleint": 302, "genri": 302, "az_licht": [304, 356, 357], "informmation": 304, "querydef": [304, 356, 357], "amgegeb": 304, "gz_licht": [304, 356, 357], "optical": [305, 653], "casis": 305, "ehz363z5": [305, 306, 307], "ehz363w5": [305, 306, 307], "ehm": [305, 306, 307], "ehz": [305, 306, 307, 641], "gw8": [305, 306, 307], "e2a": [305, 306, 307], "al1": [305, 306, 307], "few": 305, "consisting": 305, "sml_publicop": 305, "sml_getlist": 305, "consumed": 305, "obis": [305, 306, 307, 401, 497, 498, 499, 545, 548, 643, 649], "differently": 305, "knows": [305, 355, 512], "artikeldetail": 305, "metering": [305, 641], "129": [305, 306, 307, 434, 641], "199": [305, 306, 307], "serverid": [305, 306, 307], "tariff": 305, "assigning": [305, 644], "explicitely": 305, "unset": [305, 407], "objnam": [305, 306, 307, 497, 498, 499], "valtim": [305, 306, 307, 497, 498, 499], "signatur": [305, 306, 307, 497, 498, 499], "protect": 305, "valuereal": [305, 306, 307, 497, 498, 499], "unitnam": [305, 306, 307, 497, 498, 499], "kennzahl": [306, 307], "pycrc": [306, 307], "dlms": [306, 307, 545, 548, 641, 645, 648, 649, 650, 653, 655, 667, 671, 675], "crc": [306, 307, 498, 499, 643, 651, 652], "smlx": [306, 545, 548, 643, 649, 651, 652, 653, 655], "poly": [306, 307], "0x1021": [306, 307], "reflect_in": [306, 307], "xor_in": [306, 307], "0xffff": [306, 307], "reflect_out": [306, 307], "swap_crc_byt": [306, 307], "date_offset": [306, 307], "8210754": [306, 307], "integerzahl": [306, 307], "1839364": [306, 307], "560445": [306, 307], "56044": [306, 307], "fri": [306, 307, 569, 592], "oct": [306, 307], "1571384075": [306, 307], "1563173321": [306, 307], "nutzlos": [306, 307], "sml_obis": [306, 307], "einspeis": [306, 307], "anstatt": [306, 307, 323, 326, 641], "sml_prop": [306, 307], "statuswert": [306, 307, 375], "skalierungsfaktor": [306, 307, 478], "actualtim": [306, 307, 498, 499, 643], "dekodiert": [306, 307, 443], "statrun": [306, 307, 498, 499], "stillstand": [306, 307], "statfraudmagnet": [306, 307, 498, 499], "magnet": [306, 307], "statfraudcov": [306, 307, 498, 499], "statenergytotal": [306, 307, 498, 499], "energiefluss": [306, 307], "statenergyl1": [306, 307, 498, 499], "statenergyl2": [306, 307, 498, 499], "statenergyl3": [306, 307, 498, 499], "l3": [306, 307], "statrotaryfield": [306, 307, 498, 499], "drehfeld": [306, 307], "statbackstop": [306, 307, 498, 499], "backstop": [306, 307], "statcalfault": [306, 307, 498, 499], "kalibrationsfehl": [306, 307], "statvoltagel1": [306, 307, 498, 499], "statvoltagel2": [306, 307, 498, 499], "statvoltagel3": [306, 307, 498, 499], "iefert": [306, 307], "prufsummenbild": [306, 307], "holleydtz541": [306, 307], "buffersiz": [306, 307], "1500": [306, 307, 325, 652], "0x0000": [306, 307], "xor_out": [306, 307], "1563173307": [306, 307], "readthedocs": [308, 309], "tsap_serv": [308, 309], "0x200": [308, 309], "tsap_client": [308, 309], "0x100": [308, 309], "heizraum": [308, 309], "ist_temperatur": [308, 309], "logoheizraum": [308, 309], "soll_temperatur": [308, 309], "durchflusswaecht": [308, 309], "zirkulation_pump": [308, 309], "testlogo": [308, 309], "logot": [308, 309], "kompaktsteuer": 309, "plungin": 309, "beutzt": 309, "zxvf": 309, "arm_v7_linux": 309, "mk": 309, "arm_v7": 309, "libsnap7": 309, "logo1": 309, "logo_read": 309, "logo_writ": 309, "kosmet": 309, "hinzugefuegt": 309, "puresnmp": [310, 654], "anbeitet": 310, "gestestet": 310, "qnap": 310, "ts": [310, 434, 646], "2070": 310, "community": [310, 501, 651, 652, 654, 655, 656], "snmp_community": 310, "nas1": 310, "verknupf": [310, 325, 339, 340], "oid": [310, 501], "textstring": [310, 622], "bitstring": 310, "postion": 310, "adressenformat": 310, "cpu_temp": 310, "24681": 310, "cpu_usag": 310, "gebot": [310, 351], "befehlssatz": [310, 351], "solaretrag": 311, "solarforecast_attribut": 311, "energy_today": [311, 502], "date_today": [311, 502], "energy_tomorrow": [311, 502], "date_tomorrow": [311, 502], "niko": [312, 313, 665, 666, 667], "bernd": [312, 313, 355, 356, 357], "Meiners": [312, 313, 355, 356, 357], "klab": [312, 313], "christian": [312, 313], "michel": [312, 313], "fw2x": [312, 313], "photonensamml": [312, 313], "solarlog_datenformat": [312, 313], "sit": [312, 313, 334, 518, 612, 649, 688], "pdc": [312, 313], "_invert": 312, "_string": 312, "clarify": 312, "kwp": [312, 313], "anlagenkwp": [312, 313], "sollyearkwp": [312, 313], "inverter1": [312, 313], "isonlin": [312, 313], "inverter1_pac": [312, 313], "pac_0": [312, 313], "out_0": [312, 313], "string1": [312, 313], "string1_pdc": [312, 313], "pdc_0_0": [312, 313], "string1_udc": [312, 313], "udc_0_0": [312, 313], "string2": [312, 313], "string2_pdc": [312, 313], "pdc_0_1": [312, 313], "string2_udc": [312, 313], "udc_0_1": [312, 313], "w_gesamt_zaehl": [312, 313], "w_gesamt": [312, 313], "spannung_ac": [312, 313], "spannung_dc1": [312, 313], "wh_heut": [312, 313], "wh_gest": [312, 313], "wh_monat": [312, 313], "wh_jahr": [312, 313], "wh_gesamt": [312, 313], "109": [312, 313], "wp_generatorleist": [312, 313], "impli": 312, "confgured": 312, "protokolliergerat": 313, "zuruckgeb": 313, "umgebaut": 313, "geparst": [313, 401], "aufbereit": 313, "analysiert": [313, 316, 423], "variablennam": [313, 596], "sekundenstring": 313, "xmltodict": [314, 647], "tinytag": 314, "gtts": [314, 648], "basisframework": 314, "soco": [314, 642, 643, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655], "ifaddr": [314, 648], "appdir": [314, 652], "lxml": [314, 647, 652, 654, 655], "softwareversion": 314, "search_uid": 314, "aussgab": 314, "rincon_000f448c3392a01411": 314, "rincon_c7e91735d19711411": 314, "kinderzimm": [314, 339, 340], "rincon_xxxxxxxxxxxxxx": 314, "detektion": 314, "speaker_ips": 314, "performancegrund": 314, "strapaziert": 314, "discover_cycl": [314, 646], "basslautstark": 314, "group_command": 314, "koordinator": 314, "cross": 314, "indexposition": 314, "spiellang": 314, "x_dlna_seektim": 314, "x_dlna_seektracknr": 314, "abspielmodi": 314, "Einer": 314, "playbar": 314, "bestat": [314, 688], "household": 314, "kommendos": 314, "angewandt": 314, "start_aft": [314, 504], "sonos_attrib": 314, "clear_queu": [314, 504], "ladend": 314, "start_track": [314, 504], "lautstarkeabsenk": 314, "abgesenkt": 314, "erzwung": [314, 326, 332, 572], "play5": 314, "lautlos": 314, "nachtmodus": 314, "ungetestet": 314, "fort": 314, "repeat_all": 314, "shuffle_norepeat": 314, "shuffle_repeat_on": 314, "repeat_on": 314, "audiodateinam": 314, "tts": [314, 642], "local_webservice_path": 314, "audiodatei": 314, "local_webservice_path_snippet": 314, "mp4": 314, "ogg": 314, "wav": [314, 538, 545, 548], "snippet_volum": [314, 504], "laustark": [314, 453], "gewechselt": [314, 325], "snippet_fade_in": [314, 504], "tts_languag": [314, 504], "spracheinstell": 314, "tts_volum": [314, 504], "ansag": [314, 367, 504], "tts_fade_in": [314, 504], "potentiell": 314, "radiostation": [314, 381], "suchbegriff": 314, "treff": 314, "sharelink": [314, 653], "spotify": [314, 653], "premium": 314, "86399": 314, "echtzeit": 314, "touchbedien": 314, "audioeingang": 314, "albumtitel": 314, "albumcov": 314, "wiedergegeb": [314, 672], "hoheneinstell": 314, "entkoppelt": 314, "entkoppl": 314, "lautstarkepegel": 314, "max_volum": [314, 504], "betrifft": 314, "volume_dpt3": 314, "favorit": [314, 536], "favoritenlist": 314, "radiofavoritenlist": 314, "wdr2": 314, "namederplaylist": 314, "angerat": 314, "mysonosplay": 314, "do_something": 314, "vol_dpt3": [314, 504], "sonos_dpt3_step": 314, "sonos_dpt3_tim": 314, "dpt3_help": [314, 504], "sonos_s": [314, 646], "laustarkeinkrement": 314, "inkrement": [314, 504], "rincon_000e58cxxxxxxxxx": 314, "sonos_recv": [314, 646], "mysonos": 314, "verwendbar": [314, 338], "widget_sonos": 314, "sonos_kuech": 314, "autovoic": [315, 316], "analys": 315, "speech_pars": 315, "2788": [315, 505], "default_access": 315, "customized": 315, "dicterror": 315, "varpars": 315, "analyz": [315, 362], "searchstring": 315, "varxyz": 315, "word1": 315, "varwxy": 315, "appli": 315, "numbering": [315, 645], "varlight": 315, "varroom": 315, "varswitch": 315, "replaced": [315, 646, 649, 651, 654, 655], "wish": 315, "searchstring1": 315, "varexampl": 315, "return_valu": 315, "searchstring2": 315, "searchstring3": 315, "profil": [315, 368, 407, 494], "avcommsencod": 315, "avcomm": 315, "finally": [315, 668], "httpd": 315, "knxfriend": 315, "wrot": [315, 645], "automagic": 315, "dinglisch": 315, "taskerm": 315, "joaomgcd": 315, "gridvision": 315, "ppam": 315, "androidautomagic": 315, "spracherkenn": 316, "gegenzug": 316, "sprachdat": 316, "wortkombination": 316, "beilieg": 316, "betat": [316, 324, 329, 331, 495], "mikrofon": 316, "tritt": [316, 576, 632], "zutrifft": 316, "dumpfil": 317, "smarthomedb": 317, "orphaned": [317, 653], "playerid": [318, 319, 507], "umlaut": 318, "player_id": 318, "komfortabel": 319, "squeezebox_wohn": 319, "squeezebox_playerid": 319, "yy": [319, 411, 520, 599, 634], "statistikabfrag": [319, 453], "alb": [319, 453], "alarmplaylist": 319, "abspiel": [319, 378, 453, 490, 504, 545, 554, 642], "skip": 319, "spul": 319, "abspiellist": 319, "abspeich": 319, "squeezeboxserv": 319, "regelwerk": [320, 324, 325, 326, 328, 329, 330, 331, 332, 333], "ubersichtsinformation": 320, "logverzeichnis": 320, "startverzoger": [320, 508], "suspendzeit": [320, 328, 329, 331, 508], "se_it": [320, 325, 326, 328, 329, 649, 655], "bedingungsset": [320, 325, 326, 333, 642], "detailansicht": 320, "lupensymbol": 320, "eingenomm": [320, 321, 325, 326, 328, 329, 330, 331, 332, 333, 508], "sicherheitsrelevant": [321, 330], "hochfahr": [321, 328, 381], "windalarm": 321, "sperrfunktionalitat": 321, "jalousieaktor": [321, 328, 331], "blogeintrag": 321, "zustandsautomat": [321, 324, 328, 329, 508, 545, 554], "einstiegsbeding": [321, 328], "standardzustand": [321, 328], "eingangsbeding": 321, "bedingungsgrupp": [321, 324, 326, 328, 330, 333, 508, 642], "tageszeit": 321, "azimut": [321, 325, 580, 599, 636, 638, 669], "zufallszahl": [321, 325, 330], "zustandsermittl": [321, 325, 328, 331, 508], "optimiert": [321, 671], "cachefil": 321, "umbenennt": 321, "visuell": [321, 343, 508, 671], "farbkodier": 321, "hoherrang": 321, "hakch": 321, "farbkodiert": [321, 347], "schwarz": 321, "warnsignal": 321, "se_plugin": [322, 323, 328, 329], "raffstore1": [322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332], "se_log_level": [322, 323], "notfound": 322, "stateengine_licht_fil": 322, "stateengine_licht": 322, "stateengine_all_fil": 322, "unabhanging": 322, "standardloglevel": 322, "se_stateord": [323, 324, 333, 655], "aussenhell": 323, "se_item_": [323, 325, 326, 329, 332], "bedingungsnam": [323, 325, 326, 329], "aktionsnam": [323, 326, 329, 330, 332], "se_status_": [323, 325, 326], "se_eval_": [323, 325, 326, 329], "se_status_eval_": 323, "se_eval_height": [323, 329], "get_relative_it": [323, 329, 330, 642], "kapiteln": [323, 328], "se_item_height": [323, 326, 332], "hoeh": [323, 326, 328, 329, 332], "se_item_brightness": [323, 325, 328, 330], "ubersteigt": 323, "on_enter_or_stay": [323, 326, 327, 328, 330, 331], "se_action_height": [323, 326], "enter_toodark": 323, "se_max_brightness": [323, 328, 330], "jalousiehoh": 323, "se_status_height": 323, "ruckmeldestatus": 323, "se_mindelta_height": [323, 332], "helligkeitswert": [323, 325], "geteilt": [323, 622], "helligkeit_sued": [323, 325], "helligkeit_ost": 323, "se_eval_brightness": 323, "get_relative_itemvalu": [323, 325, 326, 328, 330, 332], "zustand_ein": [323, 325, 330], "sued": [323, 325, 328, 330, 589], "verand": [324, 328, 573, 576], "aussetz": [324, 329], "suspendfunktion": 324, "ausstatt": [324, 424, 425, 545, 550, 558], "abgedunkelt": 324, "se_us": [324, 326, 328, 329, 331, 333, 648, 649, 655], "state_releas": [324, 328, 329, 331], "neuevaluier": [324, 326, 332], "state_lock": [324, 328, 329, 331], "zustandsevaluier": [324, 325, 328, 330, 508], "sperrit": [324, 331], "state_susp": [324, 328, 329, 331, 333], "bestuckt": 324, "zustandsvorlag": [324, 329], "daemmer": [325, 326, 332], "se_status_brightness": 325, "se_min_brightness": 325, "se_": [325, 332], "bedingungsitem": 325, "vergleichsit": 325, "zustandsnam": [325, 508], "499": 325, "ost": [325, 328, 330, 638], "zustand_zwei": [325, 330], "betrag": 325, "se_eval": [325, 326, 328, 329, 330, 332, 642, 655], "helligkeit_": [325, 326], "get_variabl": [325, 330], "state_nam": [325, 326, 328, 330, 332, 338, 646, 655], "bedinungsgrupp": 325, "enter_zuhell": 325, "irgendwelch": 325, "angegegeb": [325, 326, 332], "helligkeitsschwellwert": [325, 326], "fullmatch": [325, 645], "se_template_t": [325, 326], "max_bright": [325, 330], "se_item_specialit": [325, 326], "meinit": [325, 326], "state_on": [325, 326], "enter_testlast": 325, "se_value_laststat": [325, 328, 330, 331], "laststat": [325, 642, 652], "conditionnam": 325, "enter_testoth": 325, "se_value_specialit": 325, "declared": [325, 654], "herhalt": 325, "se_eval_berechn": 325, "se_value_berechn": 325, "eingetroff": 325, "nachfuehr": [325, 326, 328], "laststate_id": 325, "se_minage_": 325, "novalu": 325, "se_maxage_": 325, "meinwert": [325, 563], "einzweitesit": 325, "einzweitesi": 325, "se_min_": 325, "se_max_": 325, "se_value_": 325, "wert1": 325, "wert2": 325, "wertn": 325, "negi": 325, "se_negate_": 325, "negiert": 325, "se_updatedby_": 325, "se_updatedbynegate_": 325, "se_changedby_": 325, "se_changedbynegate_": 325, "se_triggeredby_": 325, "se_triggeredbynegate_": 325, "mindestalt": 325, "se_agemin_": 325, "hochstalt": 325, "se_agemax_": 325, "altersbeding": 325, "se_agenegate_": 325, "uhreit": 325, "se_value_tim": 325, "se_min_tim": [325, 328], "se_max_tim": [325, 328], "zeitformat": 325, "hochkommas": [325, 326], "montag": [325, 328, 351, 479, 585, 599, 634], "donnerstag": [325, 479], "samstag": [325, 328, 479], "sonntag": [325, 328, 479, 569, 585, 592, 599, 634], "sun_azimut": 325, "horizontalwinkel": [325, 580], "kompassricht": 325, "sonnenposition": [325, 328], "beispielwert": 325, "270": [325, 328], "sun_altitud": 325, "vertikalwinkel": 325, "vertikalwikel": 325, "winkel": [325, 434], "aquatorial": 325, "se_laststate_item_id": [325, 328], "condition_ag": 325, "se_lastconditionset_item_id": 325, "zufall": [325, 332], "passi": [325, 328, 329, 688], "se_max_random": 325, "zustandsitem": 325, "enter_stay": [325, 330, 331], "uberspr": [325, 331, 573], "lastconditionset_id": 325, "lastconditionset": [325, 652], "primar": [325, 326, 641], "zustandsbestimm": 325, "previousconditionset_id": 325, "vorhergeh": [325, 453, 573, 682], "bedinungsset": 325, "enter_manuell": [325, 330, 331], "se_value_previousconditionset_nam": 325, "hochstwahrschein": [325, 330], "previousstat": 325, "se_value_previousstat": 325, "normalfall": [325, 508, 585, 592], "zustandsabfolg": 325, "enter_ab": [325, 326], "state_id": [325, 326, 328, 330, 331, 646, 655], "se_negate_previousstat": 325, "previousstate_conditionset_id": 325, "sperrzustand": 325, "se_value_previousstate_conditionset_nam": 325, "trigger_it": [325, 326, 589], "trigger_call": 325, "trigger_sourc": 325, "trigger_d": 325, "abgepruft": [325, 328], "original_it": 325, "original_call": 325, "original_sourc": 325, "zustandsermitt": 325, "original_": 325, "zuruckverfolgt": [325, 331], "kett": [325, 331, 561], "aktionsangab": 326, "se_action_": [326, 330], "herangehensweis": [326, 362], "se_mindelta_": [326, 332], "mindelta": [326, 332], "lamellenwert": 326, "lamell": [326, 328, 329, 330, 332, 508, 638], "bruchteil": 326, "gesondert": [326, 622], "se_repeat_action": [326, 646], "raffstor": [326, 331, 332], "lamellendreh": 326, "sonnenausricht": 326, "mindestander": 326, "se_item_lamella": [326, 329, 332], "se_status_lamella": [326, 332], "statusitem": [326, 332, 370, 453], "se_mindelta_lamella": [326, 332], "se_action_lamella": 326, "sun_tracking": [326, 328, 330, 332, 508, 649], "se_action_logic1": 326, "aufzahlungszeich": 326, "untereinand": [326, 332], "detailparamet": 326, "conditionset": [326, 330, 645, 649, 652], "gesezt": [326, 332], "listenit": [326, 332], "logikausfuhr": [326, 332], "byattr": [326, 332], "herausgesucht": [326, 332], "dummy1": 326, "dummy2": [326, 332], "rum": [326, 332], "sondervorgang": [326, 332], "manuell_it": 326, "retrigg": [326, 642, 655], "gleichart": [326, 332], "abzubrech": [326, 332], "ungewunscht": [326, 332, 373, 641], "instanteval": [326, 332], "get_relative_itemid": [326, 330, 332], "erwunscht": [326, 332, 682], "dezidiert": [326, 585], "einzelfall": [326, 332, 337], "aufsteig": 326, "enter_": [326, 330], "_test": 326, "itemx": 326, "angefuhrt": [326, 330, 332], "hochkomma": [326, 376], "conditionset_to_check": 326, "osten_s1": 326, "pack": 326, "zielfuhr": 326, "se_action_hoeh": [326, 328], "_reg": 326, "se_action_hoehe_reg": 326, "enter_reg": 326, "enter_normal": [326, 330], "previousconditionset": 326, "previousstate_conditionset": 326, "next_conditionset": 326, "leave_action": [326, 330], "minagedelta": [326, 332], "uberdauert": [326, 332, 596], "wertdeklaration": 326, "on_ent": [326, 327, 330, 332], "se_action_specialit": 326, "state1": 327, "on_stay": [327, 332], "zuvor": [327, 328, 330, 331], "on_leav": [327, 330, 331, 332], "instant_leaveaction": [327, 330, 655], "statusevaluier": [327, 330, 508], "se_instant_leaveaction": [327, 330], "zeitweis": [328, 329], "sonnenschutz": 328, "nachfuhr": 328, "nachh": [328, 688], "mindesthell": 328, "herauss": 328, "verdeckt": 328, "50000": 328, "demozweck": 328, "gt43k": 328, "klux": 328, "43000": 328, "gt35k": 328, "35000": 328, "gt25k": 328, "25000": 328, "gt20k": 328, "20000": [328, 396], "automatisi": 328, "simpel": 328, "stateengine_default_raffstor": [328, 329], "importi": [328, 598, 688], "uberschritt": [328, 370, 532], "mindestdauer_hell": 328, "se_item_temperatur": [328, 329], "25klux": 328, "se_item_brightnessgt25k": 328, "43klux": 328, "se_item_brightnessgt43k": 328, "behanghoh": 328, "se_item_hoeh": 328, "se_mindelta_hoeh": 328, "lamellenwinkel": 328, "se_item_lamell": 328, "se_mindelta_lamell": 328, "se_item_himmelsricht": 328, "gebaudeseit": 328, "nachfuehren_ost": 328, "behang": 328, "ausricht": [328, 508], "se_action_lamell": 328, "se_value_brightnessgt43k": 328, "se_agemin_brightnessgt43k": 328, "sonnenhoh": 328, "se_min_sun_altitud": 328, "se_min_sun_azimut": 328, "se_max_sun_azimut": 328, "drauss": 328, "se_min_temperatur": [328, 329], "gen": 328, "gerichtet": 328, "se_value_himmelsricht": 328, "hysteres": [328, 577, 693], "enter_hysteres": 328, "se_value_brightnessgt25k": 328, "temperaturschwank": 328, "abfahr": 328, "ausstieg": 328, "enter_delay": 328, "se_agemax_brightnessgt25k": 328, "nachfuehren_sued": 328, "vorgabezustand": [328, 329, 508], "addressier": 328, "sonnenwinkel": 328, "220": 328, "340": 328, "se_negate_tim": 328, "hochst": 328, "sowieso": 328, "aufab": [328, 329], "erled": 328, "vorhin": [328, 330], "manual_exclud": [328, 642, 655], "se_manual_exclud": [328, 329, 331], "se_startup_delay": 328, "statusermittl": 328, "zustandseintrag": 328, "bedingungslos": 328, "veranschaulicht": 328, "helllig": 328, "diesmal": 328, "untertag": 328, "min_altitud": 328, "max_azimut": 328, "god": 328, "sonnenstandzustand": 328, "trotz": [328, 401], "helligkeitsverringer": 328, "15000": 328, "unwahr": 328, "unterschritt": 328, "suspend_tim": [328, 330, 331], "suspendduration": [328, 329, 331], "abgelauf": [328, 330, 331, 453, 486, 573, 574], "raffstore2": 328, "niemal": 328, "wiederaufruf": 328, "gewertet": [328, 331], "se_laststate_item_nam": [328, 333], "se_item_anwes": 328, "35klux": 328, "se_item_brightnessgt35k": 328, "20lux": 328, "se_item_brightnessgt20k": 328, "vorgabeeinstell": 328, "enter_anwes": 328, "se_value_anwes": 328, "se_value_brightnessgt35k": 328, "se_agemin_brightnessgt35k": 328, "enter_anwesend_hysteres": 328, "20klux": 328, "se_value_brightnessgt20k": 328, "enter_anwesend_delay": 328, "se_agemax_brightnessgt20k": 328, "enter_schlafenszeit_woch": 328, "se_min_weekday": 328, "se_max_weekday": 328, "enter_schlafenszeit_wochen": 328, "se_value_weekday": 328, "setzend": [328, 332, 563, 570], "zustandsvorgab": 328, "lichtmodus": 328, "einnimmt": 328, "dieselb": 328, "vornimmt": [328, 685], "aktionsvorlag": 328, "licht_rules_action": 328, "se_action_sollwert": 328, "se_action_prio": 328, "zuruckgegriff": 328, "licht_settings_dimmbar": 328, "licht_settings_schaltbar": 328, "licht_settings_activ": 328, "lichtkurv": [328, 347, 519], "heimkino": 328, "licht_condition_lichtkurv": 328, "se_item_lichtkurve_activ": 328, "se_value_lichtmodus": 328, "se_value_lichtkurve_activ": 328, "licht_condition_heimkino": 328, "se_item_heimkino_activ": 328, "se_value_heimkino_activ": 328, "sa": [328, 347, 593, 599, 634], "licht_settings_bwm": 328, "licht_settings_dimmbar_dual": 328, "licht_rules_heimkino": 328, "licht_rules_lichtkurv": 328, "settings_edited": 328, "additional_state1": 329, "kumuliert": 329, "instant": [329, 653], "leaveaction": 329, "codeblock": 329, "tatig": 329, "automatich": [329, 653], "baumstruktur": 329, "vorubergeh": [329, 488], "automatisier": 329, "pausier": 329, "angesiedelt": [329, 333], "duration_format": [329, 646], "minutenangab": 329, "0h": 329, "5i": 329, "suspend_start": [329, 646], "unix_timestamp": [329, 646], "countdown": [329, 508, 646], "suspend_activ": [329, 623], "suspendmodus": [329, 333], "suspendvariant": [329, 331], "additionalus": 329, "letztlich": [329, 339, 340, 573], "anzulei": 329, "praktisch": [329, 347], "zusammenzufass": 329, "itemangab": 329, "angegb": [329, 376], "geschachtelt": 329, "zirkelbezug": 329, "tief": [329, 333], "define_us": 329, "mittag": [329, 361], "se_item_hell": 329, "se_min_hell": 329, "se_max_hell": 329, "4000": 329, "se_set_height": [329, 332], "se_set_lamella": [329, 332], "se_max_temperatur": 329, "5900": 329, "enter_additional": 329, "negat": 329, "perform": 329, "lamella": [329, 332, 649], "sestructmain": 329, "12000": 329, "itemdeklaration": 329, "standarditem": 329, "garantiert": 329, "se_set_": [330, 332], "se_run_": [330, 332], "sonnenstandsabhang": [330, 347], "lamellenausricht": [330, 508], "neigung": [330, 622], "auszugleich": 330, "lamella_offset": 330, "auswirkt": 330, "dreh": [330, 508], "vorrang": [330, 537, 575, 689], "lamellenart": [330, 508], "lamella_open_valu": 330, "grosst": [330, 359], "get_random_int": 330, "varnam": 330, "subitem_id": 330, "get_attribute_valu": 330, "some_special_attribut": 330, "suspend_text": 330, "insert_suspend_tim": 330, "suspend_item_id": 330, "vorzuseh": 330, "get_relative_itemproperty": [330, 642], "relevanz": 330, "last_change_ag": [330, 567, 591], "se_suspend_tim": [330, 331], "regelit": 330, "suspend_remaining": 330, "suspendzustand": [330, 331, 333], "regelwerkit": 330, "schafft": 330, "licht1": 330, "irgendeinit": 330, "kalt": [330, 526], "sollwert_warm": 330, "sollwert_kalt": 330, "wasauchimm": 330, "se_item_sollwert_warm": 330, "se_item_sollwert_kalt": 330, "se_item_wasauchimm": 330, "se_template_setvalu": 330, "zustand1": 330, "se_action_sollwert_warm": 330, "se_action_sollwert_kalt": 330, "se_action_wasauchimm": 330, "_or_stay": 330, "abgeg": 330, "settingit": 330, "evalui": [330, 573], "conditionset_id": [330, 642], "conditionset_nam": 330, "windzustand": 330, "enter_after_x": 330, "enter_stayafter_x": 330, "se_item_wind": 330, "sicherheit": 330, "se_action_y": 330, "se_value_wind": 330, "stateengine_eval": [330, 642], "se_value_lastconditionset_nam": 330, "eintret": [330, 508], "gewes": 330, "state_conditionset_id": 330, "state_conditionset_nam": 330, "zustandswechsel": [330, 642], "can_be_released_by": 330, "berein": 330, "se_released_by": [330, 333, 648, 655], "was_released_by": 330, "can_releas": 330, "schnee": [330, 331, 462], "will_releas": 330, "scharf": 330, "has_released": 330, "jen": [330, 333], "getrost": 331, "priorisiert": [331, 423, 513], "jalousie1": 331, "se_item_lock": 331, "se_value_lock": 331, "aussetzenzustand": 331, "stateenging": 331, "einzustell": [331, 475, 682], "vorzeit": 331, "kapseln": 331, "se_manual_logit": [331, 647], "schlicht": 331, "se_manual_invert": 331, "taster1": 331, "taster2": 331, "inverti": [331, 412], "se_manual_includ": 331, "festgestellt": [331, 484], "gegenstell": 331, "sonderaktion": 331, "se_special_susp": 331, "zurucksetz": [331, 381], "se_set_susp": 331, "se_value_trigger_sourc": 331, "se_agemax_manuell": 331, "se_value_susp": 331, "vorrn": 331, "manuellbetrieb": 331, "zugeh": 331, "betatigt": [331, 333], "burgerpatty": 331, "se_releasedby": [331, 333], "suspenddau": 331, "state_suspend_dynamic": [331, 647], "duration1": 331, "duration2": 331, "dauerangab": 331, "suspendstatus": 331, "beschattung_se_state_ab": 331, "beschattung_se_state_nacht": 331, "beschattung_se_state_schne": 331, "beschattung_se_state_standard": 331, "se_set_suspendvariant": 331, "einzelvariant": 332, "se_force_": 332, "zielwert": [332, 515], "se_trigger_": 332, "meinelog": 332, "se_byattr_": 332, "mein_eigenes_attribut": 332, "se_add_": 332, "se_remove_": 332, "se_mod": 332, "se_special_": 332, "minimumabweich": 332, "se_minagedelta_": 332, "se_delay_": 332, "se_repeat_": 332, "se_order_": 332, "se_order_aktion1": 332, "se_order_aktion2": 332, "se_order_aktion3": 332, "se_order_aktion4": 332, "se_instanteval": 332, "se_instanteval_": 332, "se_trigger_logic1": 332, "se_delay_logic1": 332, "zustandskonfiguration": 333, "zustandsit": 333, "stateengine_default": 333, "zustandserweiter": 333, "structnam": 333, "ermogicht": 333, "irgendein": [333, 381], "zustandseinstell": 333, "hierarchiefolg": 333, "neuordn": 333, "listenangab": 333, "pluginversion": 333, "released_by": [333, 648], "uberarbeitet": 333, "nachzustand": 333, "se_nam": 333, "eine_funktion": 333, "helligkeitsbeding": 333, "debuggingzweck": 333, "se_list": 333, "se_detail": 333, "residential": [334, 509, 545, 550], "vr400": 334, "vr700": 334, "vr700dk": 334, "vr400de": 334, "vtc300": 334, "vtc700": 334, "vtr150k": 334, "vtr200b": 334, "vsr300": 334, "vsr500": 334, "vsr150": 334, "vtr300": 334, "vtr500": 334, "vsr300de": 334, "vtc200": 334, "minimalmodbus": 334, "easy_setup": 334, "ttyvusb0": 334, "serialposix": 334, "605": 334, "_update_dtr_stat": 334, "fcntl": 334, "ioctl": 334, "tiocmbis": 334, "tiocm_dtr_str": 334, "ioerror": 334, "_serialport": 334, "rtscts": 334, "dsrdtr": 334, "vtr": 334, "harm": 334, "risk": 334, "globalasset": 334, "40903": 334, "slave_address": 334, "30sec": 334, "mod_writ": 334, "lueftergeschwind": 334, "langsam": [334, 381], "systemair_regaddr": 334, "luefterdrehzahl_zuluft": 334, "umdreh": 334, "luefterdrehzahl_abluft": 334, "frostschutzlevel": 334, "frotschutzlevel": 334, "206": 334, "sollwerttemperatur_heizregist": 334, "sollwerttemperatur": 334, "heizregist": 334, "temperaturlevel1_heizregist": 334, "temperaturlevel5_heizregist": 334, "temperaturlevel2_heizregist": 334, "isttemperatur_heizregist": 334, "temperatursensor_1": 334, "214": [334, 638], "temperatursensor_2": 334, "215": [334, 580], "temperatursensor_3": 334, "temperatursensor_4": 334, "temperatursensor_5": 334, "218": 334, "wochenprogramm_aktiv": 334, "coil_regaddr": 334, "6401": 334, "filter_wechselzeitraum": 334, "601": [334, 651], "filter_verbrauchte_zeit": 334, "602": 334, "defroster_status": 334, "defrosting": 334, "ongoing": 334, "651": 334, "alarm_filt": 334, "systemair_coiladdr": 334, "12801": 334, "alarm_lueft": 334, "12802": 334, "alarm_rotor": 334, "12804": 334, "alarm_frost": 334, "12805": 334, "alarm_pcu": 334, "12806": 334, "alarm_temperatursensor": 334, "12807": 334, "alarm_notfallthermostat": 334, "12808": 334, "alarm_lueftungsklapp": 334, "12809": 334, "alarm_relais_aktiv": 334, "12817": 334, "codec": 334, "xcf": 334, "ordinal": 334, "handle_local_echo": 334, "938924": 335, "benzinpreis": [335, 510, 545, 558], "creativecommon": [335, 336, 510, 545, 558], "techinfo": [335, 510, 545, 558], "statically": 335, "get_petrol_station_pric": 335, "responsibl": 335, "telling": 335, "storag": [335, 368, 655], "personal": [335, 344, 368], "petrol_station": 335, "isop": [335, 510], "demobavariapetrol": 335, "tankerkoenig_id": 335, "a07b7f50": 335, "6e6f": 335, "4e6": 335, "9bce": 335, "17d79bf0778c": 335, "diesel": [335, 510], "around": [335, 648], "coordinat": [335, 344], "radius": 335, "_lat": [335, 344], "_long": 335, "geocoordinat": 335, "_lon": [335, 344], "housenumb": [335, 510], "street": [335, 510], "lng": [335, 510, 652], "postcod": [335, 510], "get_petrol_station_detail": 335, "e5": [335, 510], "e10": [335, 510], "tankerkon": [336, 510, 545, 558, 674], "tankstell": [336, 510], "preis": [336, 510, 586], "offnungszeit": 336, "am2301": 337, "sht3x": [337, 653], "adc": 337, "esps": 337, "esp32": [337, 653], "rgbw": [337, 434, 649], "h801": 337, "sonoff": 337, "tasmota_topic": 337, "tasmota_attr": 337, "delock_switch2": 337, "zigbeebridg": 337, "tasmota_zb_devic": 337, "tasmota_zb_group": 337, "tasmota_zb_attr": [337, 653], "sonoff_zb1": 337, "snzb02_01": [337, 371], "tasmota_sml_devic": 337, "tasmota_sml_attr": 337, "smartmeter_1": 337, "tasmota_sml2mqtt": 337, "mt631": 337, "volt_p1": 337, "total_in": 337, "sensornam": 337, "27t17": 337, "0001": 337, "sensor53": 337, "77070100010800ff": 337, "gesamtverbrauch": 337, "77070100100700ff": 337, "power_curr": 337, "sendezykus": 337, "decimal": [337, 647, 648], "teleperiod": 337, "power_total": 337, "power_yesterday": 337, "power_today": 337, "rf_recv": 337, "sendemog": 337, "rf_send": 337, "rfsync": 337, "12220": 337, "rflow": 337, "rfhigh": 337, "1210": 337, "rfcod": 337, "f06104": 337, "rf_key_send": 337, "rf_key_recv": 337, "rf_key": 337, "zb_permit_join": 337, "pairing": 337, "zb_forget": 337, "zb_ping": 337, "gesamtenergieverbrauch": 337, "analog_temp": 337, "analogeingang": 337, "analog_temp1": 337, "analogeingang1": 337, "analog_a0": 337, "analog_rang": 337, "esp32_temp": 337, "zb": [337, 381], "gerate_id": 337, "360": [337, 434], "sattig": [337, 419], "farbtemperatur": 337, "mired": 337, "ct_k": 337, "6700": 337, "batterypercentag": 337, "batteriefull": 337, "batterylastseenepoch": 337, "batteriemeld": 337, "lastse": 337, "lastseenepoch": 337, "linkquality": [337, 371], "verbindungsqualitat": 337, "ieeeaddr": 337, "ieee": 337, "zonestatus": 337, "zonenstatus": 337, "colortempstepup": 337, "colortempstepdown": 337, "dimmerstepup": 337, "dimmerstepdown": 337, "dimmermov": 337, "aqaravibrationmod": 337, "aqaravibration505": 337, "batteryvoltag": 337, "shutterclos": 337, "shutterop": 337, "huemov": 337, "farbbeweg": 337, "0300": [337, 368], "0006": 337, "0008": 337, "zigbeedevic": [337, 655], "jeweilg": 337, "bot": [338, 512, 653], "botfath": 338, "newbot": 338, "mybot": 338, "chatpartn": 338, "adminif": 338, "los": [338, 370], "tuerklingel": 338, "turklingel": 338, "entprellt": 338, "klingelt": 338, "testnum": [338, 359], "testbool": [338, 359], "3234123342": 338, "versand": [338, 674], "tastaturmenu": 338, "kommandonam": 338, "wind_kmh": 338, "rtr_ist": 338, "textnachricht": 338, "partn": [338, 530], "john": 338, "ergab": 338, "umgeschltet": 338, "sicherheitsabfrag": 338, "20sekund": 338, "beregnungzone1": 338, "beregnungz1": 338, "beregnungzone2": 338, "beregnungz2": 338, "ventil": [338, 622], "gartentor": 338, "dachfen": 338, "chat_id": [338, 674], "autorisiert": 338, "path_or_url": 338, "caption": [338, 596], "local_prepar": 338, "webcam": 338, "entlastet": 338, "nutzungsmog": 338, "telegram_plugin": 338, "cdn": 338, "pixabay": 338, "3735336_960_720": 338, "my_webcam_url": 338, "vorbereit": [338, 674], "prepared": [338, 651], "local_fil": 338, "bool2str": 338, "typus": 338, "message_us": 338, "message_chat_id": 338, "message_text": [338, 339, 340], "custom_keyboard_ubersicht": 338, "verkehr": 338, "resize_keyboard": 338, "one_time_keyboard": 338, "yyyyyyy": 338, "ebene2": 338, "custom_keyboard_wett": 338, "custom_keyboard_schalt": 338, "nisch": 338, "wz": [338, 451], "ez": [338, 451], "custom_keyboard_heiz": 338, "hk_2": 338, "bewohnt": 338, "unbewohnt": 338, "AN": 338, "custom_keyboard_verkehr": 338, "arbeitsweg": 338, "heimweg": 338, "custom_keyboard_rollad": 338, "parse_mod": 338, "reply_markup": 338, "raumtemp": 338, "froggit": 338, "feelslikec": 338, "hum_ist": 338, "hourlyrainmm": 338, "m\u00b2": [338, 367], "dailyrainmm": 338, "diel": 338, "2f": [338, 586], "windgustkmh_max10m": 338, "spitz": 338, "maxdailygust": 338, "bislang": 338, "temperatur_soll": 338, "temperatur_ist": 338, "pump": [338, 341, 521, 622], "speicherladepumpe_knx": 338, "a1": 338, "heizkreis_a1m1": [338, 351, 522], "betriebsart_str": 338, "heizkreis_m2": 338, "hk_pumpe_knx": 338, "anwesend_eg_og": 338, "ug": 338, "vorsatz_n": 338, "nischenbeleucht": 338, "tv_wand_nisch": 338, "verkehrsinfo": 338, "calculate_way_work": 338, "travel_summary": [338, 344], "calculate_way_hom": 338, "kellertur": 338, "fenster_tuer_kontakt": 338, "kellertu": 338, "garagentur": 338, "seitentuer_garag": 338, "garagentor": 338, "garagentor_link": 338, "garagentor_recht": 338, "beschattungsautomat": [338, 589], "fahrautomat": 338, "umbau": 338, "v20": [338, 646], "begruss": 338, "verabschiedungsnachricht": 338, "beitrag": 338, "senk": [339, 340, 513], "anzeigegerat": [339, 340], "nachrichtenring": [339, 340, 513], "verankert": [339, 340], "textwert": [339, 340], "standardring": [339, 340], "erzwungenermass": [339, 340], "verdeck": [339, 340, 513], "zuruckgesetzt": [339, 340, 381], "hardwareunabhang": [339, 340], "verschluckt": [339, 340], "instantiier": [339, 340], "auslosbar": [339, 340], "instantiiert": [339, 340], "versteh": [339, 340], "EINE": [339, 340], "innentemperatur": [339, 340], "wichtiger_als_fen": [339, 340], "anruft": [339, 340], "anruflog": [339, 340], "text_display_": 339, "konstruktion": [339, 340], "booleanwert": [339, 340], "informationsgehalt": [339, 340], "nachrichtentext": [339, 340, 445], "angereichert": [339, 340], "glastast": [339, 340], "rtr": [339, 340, 487, 513, 545, 554, 643, 645, 646, 652, 670, 687], "text_display_default_messag": [339, 340], "text_display_sink_for_ring": [339, 340], "text_display_sink_rings_with_prio": [339, 340], "schlafzimm": [339, 340, 641], "temperatur_im_schlafzimm": [339, 340], "anzeige_string": [339, 340], "schlazi": [339, 340], "1f": [339, 340, 344], "display_is_relevant": [339, 340], "irgendein_fenster_im_schlafzimmer_off": [339, 340], "text_display_target_ring": [339, 340], "text_display_content_source_it": [339, 340], "fenster_zur_strass": [339, 340], "fenster_zum_gart": [339, 340], "luft_temperatur": [339, 340], "herkommt": [339, 340], "message_string": [339, 340], "og_bad": [339, 340], "eg_bad": [339, 340], "new_message_present": [339, 340], "message_number_new": [339, 340], "ab_pruefen_text": [339, 340], "bau": [339, 340, 373, 586], "nachr": [339, 340], "last_call": [339, 340], "nachvollzieh": [339, 340], "daruberhinaus": [339, 340], "verbesserungsfah": [339, 340], "stiebel": [341, 514, 545, 550, 642], "eltron": [341, 514, 545, 550, 642], "tecalor": [341, 514, 545, 550, 642], "heatpumps": 341, "lwz": [341, 642], "30x": [341, 642], "40x": [341, 642], "wiring": 341, "robert": [341, 545, 548, 550, 666, 667], "penz": 341, "sol": 341, "7278": 341, "303i": 341, "fhem": 341, "13132": 341, "heatpump": 341, "303": 341, "304": 341, "403": [341, 688], "serial_port": 341, "115200": [341, 514], "poll_period": 341, "min_update_period": 341, "max_update_period": 341, "43200": [341, 514], "bps": [341, 514], "57600": [341, 514], "frequently": 341, "infrequent": 341, "pxx": 341, "literalinclud": 341, "linenos": 341, "overhauled": 341, "beta1": 341, "iconcooling": 341, "iconservic": 341, "p32hystdhw": 341, "p34boosterdhwtempact": 341, "p35pasteurisationinterval": 341, "p35pasteurisationtemp": 341, "p76roomthermcorrection": 341, "p77outthermfiltertim": 341, "p89dhweco": 341, "p99dhwmaxflowtemp": 341, "p99startunschedvent": 341, "pclockday": 341, "pclockmonth": 341, "pclockyear": 341, "pclockhour": 341, "pclockminut": 341, "p99coolingrtday": 341, "p01": 341, "p03": 341, "p99coolingrtnight": 341, "alpha6": 341, "aug": 341, "p99coolingswitch": 341, "inputventspeed": 341, "outputventspeed": 341, "inputairflow": 341, "outputairflow": 341, "alpha5": 341, "alpha4": 341, "alpha3": 341, "alpha2": 341, "alpha1": 341, "blinking": 342, "pattern": [342, 641], "sos": 342, "understand": 342, "guidanc": 342, "ausschaltverzoger": [343, 515, 545, 554, 649], "blinkmust": 343, "ruckmeldungsfunktion": 343, "some_lamp": 343, "timmy_blink_target": 343, "timmy_blink_loops": 343, "blinker_2": 343, "timmy_blink_cycl": 343, "timmy_blink_patt": 343, "sun_protect_needed": 343, "defined_limit": 343, "timmy_delay_target_it": 343, "post_hysteresis": 343, "timmy_delay_off_delay_second": 343, "1800": [343, 460, 622, 649], "timmy_delay_on_delay_second": 343, "1048446": 344, "2500": 344, "intro": [344, 516, 545, 558], "hl": [344, 516, 545, 558], "staualarm": 344, "geozon": 344, "egigeozon": [344, 688], "travel_tim": 344, "in_traffic": 344, "travel_distanc": 344, "html_instruction": 344, "html_warning": 344, "start_address": 344, "start_location": 344, "end_address": 344, "end_location": 344, "0f": 344, "duration_in_traffic": 344, "start_location_lat": 344, "start_location_lon": 344, "end_location_lat": 344, "end_location_lon": 344, "samson": [345, 517, 545, 550, 642, 653], "trovis": [345, 517, 545, 550, 642, 646, 653], "557x": [345, 517, 545, 550, 642, 653], "automationssystem": 345, "heizungsregl": [345, 517, 545, 550, 642], "5571": 345, "5573": 345, "5576": 345, "5578": 345, "5579": 345, "automation": 345, "cooling": 345, "synology": [346, 649], "uap": 346, "longrang": 346, "60w": 346, "unifi_us": 346, "ubnt": 346, "unifi_password": 346, "unifi_controller_url": 346, "8443": [346, 518], "poll_cycle_tim": 346, "unifi_switch_port_profile_on": 346, "unifi_switch_port_profile_off": 346, "interpolationsfunktion": [347, 519], "errechn": [347, 519], "schaltzeit": [347, 351, 519], "tagesverlauf": [347, 519], "remove_duplicat": 347, "popups": [347, 646], "uzsuicon": 347, "uzsu1": 347, "varuzsua": 347, "var2": 347, "schaltend": [347, 489, 511, 519], "expert": 347, "serienmodus": 347, "sonnenbasiert": 347, "wiederkehr": 347, "startzeitpunkt": [347, 460], "tagesgrenz": 347, "kontinui": 347, "abnehm": [347, 599, 636], "linear": [347, 519], "cubic": [347, 519], "interpoliert": [347, 519], "initag": 347, "versaumt": [347, 519], "initizialized": 347, "itemfunktion": 347, "uzsus": 347, "inaktiv": [347, 508], "N\u00e4chster": [347, 378], "geplant": [347, 519, 638, 641], "n\u00e4chster": [347, 536], "N\u00e4chstes": 347, "last_valu": [347, 567, 573, 576, 591], "interpolationstyp": [347, 519], "rrul": [347, 656], "freq": 347, "suncalculated": 347, "tu": [347, 646], "su": 347, "kumm": 347, "dtstart": 347, "startwert": [347, 412, 577], "algorithmus": 347, "minutely": 347, "wiederholungsregeln": 347, "feriendat": 348, "pluggin": 348, "bedat": 348, "anmeldeprozess": 349, "accesstok": [349, 688], "authlib": 349, "vitod": 349, "vitocal": 349, "200s": 349, "kopfzeil": 349, "onlinestatus": [349, 521], "clientid": [349, 688], "geratemodell": 349, "heizgerat": 349, "oautch2": 349, "authentifizierungsvorgang": 349, "geratelist": 349, "featurelist": 349, "featurenam": 349, "vicare_rx_key": 349, "vicare_tx_key": 349, "vicare_path": 349, "vicare_tx_path": 349, "optolink": 351, "nachbaut": 351, "openv": 351, "p300": [351, 522, 622], "gwg": 351, "entwicklungsarbeit": 351, "heizungstyps": 351, "refaktorisiert": 351, "behandl": [351, 563], "geratekonfiguration": 351, "v200ko1b": 351, "v200ho1c": 351, "v200kw2": 351, "v200wo1c": 351, "befehlsadress": 351, "heating_typ": 351, "ttyusb_optolink": 351, "verknufp": 351, "heizungsparamet": 351, "raumtemperatur_soll_normalbetrieb_a1m1": 351, "lesevorgang": [351, 401], "betriebsmodus": [351, 479], "wassertemperatur": 351, "betriebsart_a1m1": 351, "raumtemperatur_soll": 351, "wassertemperatur_soll": 351, "tagestim": 351, "heizungstyp": 351, "heizen_ba_it": 351, "ba_list": 351, "auswahllist": [351, 400, 408, 435, 441, 464, 467], "viessmann_updat": 351, "aussentemp_gedaempft": 351, "aussentemperatur_tp": 351, "kessel": 351, "kesseltemperatur_ist": 351, "kesseltemperatur_soll": 351, "kesselsolltemperatur_soll": 351, "kesselsolltemperatur": 351, "abgastemperatur": 351, "betriebsart_aktuell": 351, "aktuelle_betriebsart_a1m1": 351, "sparbetrieb": 351, "sparbetrieb_a1m1": 351, "timer_a1m1_mo": 351, "timer_a1m1_di": 351, "ferienprogramm": 351, "ferienprogramm_a1m1": 351, "starttag": 351, "ferien_abreisetag_a1m1": 351, "ferien_ruckreisetag_a1m1": 351, "stosst": [351, 522], "vierstell": [351, 522], "heizungsgerat": 351, "beschad": 351, "00f8": 351, "tabellenzeil": 351, "_custom": 351, "datenlang": 351, "identizifi": 351, "geratedatei": [351, 538], "dateimodus": 351, "gmx": [352, 353, 355, 356, 357], "2012": [352, 353, 355, 356, 357, 368, 639], "marcus": [352, 353, 355, 356, 357, 667], "mx": [352, 353, 355, 356, 357], "visa": 352, "subdirectory": 352, "startement": 352, "sv_": [352, 566, 686], "beneath": 352, "seperator": [352, 496, 523, 686], "cat_overview": [352, 686], "room_lit": [352, 496, 523], "vervollstand": [352, 635], "encapsulated": [352, 646], "collapsabl": [352, 686], "aligned": 352, "heading": [352, 682, 686], "sv_heading_": 352, "tpldir": 352, "menu_divid": [352, 686], "sleeping": [352, 355, 643, 686], "scene_sleeping": [352, 686], "sleep_temp_id": [352, 686], "giving": [352, 655, 686], "distinct": [352, 686], "easily": [352, 686], "generating": [353, 646, 688], "widget_": [353, 687], "followed": [353, 356, 357], "widget_hu": [353, 646], "control_group": 353, "isfil": 353, "sh_widget": [353, 687], "invasiv": [353, 687], "forked": [353, 655, 656], "_sh_widget": 353, "root_mast": [353, 687], "framework": [355, 381, 647, 649, 650, 651, 652, 653, 655, 663, 665], "extending": [355, 655], "encryption": [355, 368], "turned": [355, 356, 357], "accessed": 355, "philosophy": 355, "sett": 355, "aka": 355, "io_smarthom": [355, 356, 357, 496, 524, 670, 690], "instruct": [355, 356, 357], "instructed": [355, 356, 357], "apartement": [355, 496, 524], "unless": [356, 357], "ommitted": 357, "s0count": 358, "b5706f60": 358, "e26c": 358, "11e1": 358, "8992": 358, "cff551322819": 358, "2c67c500": 358, "8cbc": 358, "11e3": 358, "8a46": 358, "0d477fb1562c": 358, "versend": [359, 445, 512, 527, 545, 558, 595, 671, 674], "standardbrows": 359, "mibrows": 359, "firefox": 359, "zugestellt": 359, "mozilla": [359, 688], "fenix": 359, "19152": 359, "pywebpush": 359, "vapid": 359, "grouplist": 359, "varpath": [359, 654], "sendpushnotification": 359, "requireinteraction": 359, "badg": [359, 655], "silent": 359, "vibrat": 359, "ttl": [359, 655], "604800": 359, "highpriority": 359, "returnval": 359, "testboolupdat": 359, "testnumchang": 359, "rfc": 359, "rfc8030": 359, "serviceworkerregistration": 359, "shownotification": 359, "push_api": 359, "scenario": 359, "advertisement": 359, "publickey": [359, 527], "fromclient": [359, 527], "buttontext": 359, "comunication": 359, "abonnent": 359, "http_modul_services_port": 360, "1896": 360, "412548": 360, "bound": [360, 645, 663], "simulation": [360, 545, 554, 642, 646, 649, 652, 656, 669, 671, 674], "310862": 360, "previous_ag": 360, "previous_valu": 360, "u00fcro": 360, "previous_chang": 360, "911165": 360, "lightchecklogic": 360, "webservices_data": [360, 641], "angeht": 360, "dageg": 360, "postman": 360, "itemlist": 360, "itemgrupp": 360, "systemitem": 360, "effektiv": 360, "illustri": 360, "a_crontab": 360, "onebool": 360, "113731": 360, "985496": 360, "361957": 360, "333481": 360, "webservices_set": 360, "itemset": [360, 528, 641], "zeichenkettendarstell": 360, "hochkommata": 360, "item_pfad": 360, "ganzzahlwert": 360, "smarthomeng_ip": 360, "http_modul_port": 360, "additional_fil": 361, "frueh": 361, "spaet": 361, "uebermorg": 361, "filled": [361, 646], "cyclic": [361, 649, 655, 656], "900s": 361, "city": [361, 365], "appropriately": 361, "citycod": 361, "d0": 361, "d1": 361, "relativedelta": 361, "d2": [361, 671], "typeerror": 361, "attributeerror": 361, "exc_info": 361, "condensation": 361, "probability": 361, "withing": [362, 530, 641, 646, 649, 655], "ehemal": [362, 545, 554, 641], "nokia": [362, 416, 530, 545, 558, 641, 646, 671, 674], "health": [362, 416, 479, 530, 545, 558, 671, 674], "waag": 362, "weboberflach": [362, 479], "access_tok": [362, 530, 641], "token_expiry": [362, 530, 641], "token_typ": [362, 530, 641], "refresh_tok": [362, 530, 641], "verfall": 362, "consumer_secret": 362, "korpermassindex": 362, "korpergross": 362, "namlich": 362, "withings_typ": [362, 641, 646], "bmi": [362, 530, 646, 674], "bmi_text": [362, 530], "fat_ratio": [362, 530], "fat_free_mass": [362, 530], "fat_mass_weight": [362, 530], "heart_rat": [362, 530], "1995": 363, "amd": 363, "zusammenarbeit": 363, "hewlett": 363, "packard": 363, "netzwerkkart": 363, "vorab": [363, 409, 685], "uberhaupt": [363, 369], "weiterleitet": 363, "anderenfall": [363, 595], "aufweck": [363, 378, 531], "aufweist": 363, "wakeonlan_it": 363, "wol_mac": 363, "aa": 363, "wol_ip": [363, 649], "knopfdruck": 363, "aufzuweck": [363, 531], "1059124": 364, "ibm": 364, "pressure_tr": 365, "trend": 365, "minimalistic": [365, 648], "wug_xmlstring": 365, "pricing": 365, "mind": [365, 682], "collect": 365, "weather_somewh": 365, "xxxxyyyyxxxxyyyy": 365, "hamburg": 365, "forcast": 365, "french": [365, 645], "san_francisco": 365, "60290": 365, "zipcod": 365, "australia": 365, "sydney": 365, "122": 365, "kjfk": 365, "pws": 365, "kcasanfr70": 365, "autoip": 365, "geo_ip": 365, "136": 365, "138": 365, "waeth": 365, "unnecessary": 365, "intersect": 365, "maxed": 365, "wug_": 365, "commonly": 365, "uesd": 365, "filtered": 365, "nev": [365, 650, 668], "current_observation": 365, "display_location": 365, "ort_wetterstation": 365, "observation_location": 365, "lokale_zeit": 365, "local_time_rfc822": 365, "beobachtungszeitpunkt": 365, "observation_time_rfc822": 365, "beobachtungszeitpunkt_datetim": 365, "observation_epoch": 365, "wetter_icon": 365, "temp_c": 365, "temperatur_gefuehlt": 365, "feelslike_c": 365, "rel_luftfeucht": 365, "relative_humidity": 365, "dewpoint_c": 365, "pressure_mb": 365, "luftdruck_tr": 365, "visibility_km": 365, "niederschlag_1std": 365, "precip_1hr_metric": 365, "niederschlag_heut": 365, "precip_today_metric": 365, "wind_dir": 365, "windrichtung_grad": 365, "wind_degre": 365, "wind_kph": 365, "windboe": 365, "wind_gust_kph": 365, "simpleforecast": 365, "forecastday": 365, "temperatur_min": 365, "temperatur_max": 365, "niederschlag_ganzertag_mm": 365, "qpf_allday": 365, "niederschlag_tag_mm": 365, "qpf_day": 365, "niederschlag_nacht_mm": 365, "qpf_night": 365, "verhaeltnis": 365, "maxwindspeed": 365, "maxwind": 365, "kph": 365, "maxwinddir": 365, "maxwinddegre": 365, "avgwindspeed": 365, "avewind": 365, "avgwinddir": 365, "avgwinddegre": 365, "vorhersage1": 365, "vorhersage2": 365, "vorhersage3": 365, "wunderground_": 366, "miio": [367, 533, 649], "offenbart": 367, "xxd": 367, "mirobo_ip": 367, "mirobo_tok": 367, "euertok": 367, "mirobo": 367, "cleaned": [367, 645, 646, 648, 652, 653], "in_cleaning": 367, "spotrein": 367, "luftergeschwind": 367, "gereinigt": 367, "reinigungszeit": 367, "slixmpp": [368, 646], "recevied": 368, "otr": 368, "omemo": 368, "groupchat": [368, 534], "xmpploghandl": 368, "xmpp_plugin": 368, "xmpp_receiv": 368, "conferenc": 368, "xmpp_receiver_typ": 368, "operationlog": [368, 545, 554, 585, 641, 646, 648, 655], "jid": 368, "skend": [368, 534, 545, 552], "somexmppserv": 368, "use_ipv6": [368, 641], "xep_0199": 368, "muc": 368, "xep_0045": 368, "jabb": 368, "0004": 368, "0009": 368, "rpc": [368, 622, 646], "0012": 368, "0013": 368, "0016": 368, "privacy": 368, "0020": 368, "negotiation": 368, "0027": 368, "openpgp": 368, "0030": 368, "0033": 368, "stanza": 368, "addressing": [368, 670], "0045": 368, "0047": 368, "band": 368, "bytestream": 368, "0048": 368, "bookmark": 368, "0049": 368, "0050": 368, "hoc": 368, "0054": 368, "vcard": 368, "0059": 368, "0065": 368, "socks5": 368, "0066": 368, "0070": 368, "verifying": 368, "0071": 368, "xhtml": 368, "IM": 368, "0077": 368, "0078": 368, "sasl": 368, "0079": 368, "0080": 368, "0082": 368, "0084": 368, "avatar": 368, "0085": 368, "0086": 368, "0091": 368, "delayed": [368, 646, 655], "0092": 368, "0095": 368, "initiation": 368, "0096": 368, "0106": [368, 622], "escaping": 368, "0107": 368, "mood": 368, "0108": 368, "0115": 368, "entity": 368, "0118": 368, "0122": 368, "validation": 368, "0128": 368, "0131": 368, "0133": 368, "0138": 368, "compression": 368, "0152": 368, "reachability": 368, "0153": 368, "0163": 368, "eventing": 368, "0172": 368, "nicknam": 368, "0184": 368, "receipt": 368, "0186": 368, "invisibl": [368, 652], "0191": 368, "0196": 368, "gaming": 368, "0198": 368, "0199": 368, "0202": 368, "0203": 368, "0221": 368, "0222": 368, "0223": 368, "0224": 368, "0231": 368, "0235": 368, "0242": 368, "2009": 368, "invitation": 368, "0256": 368, "0257": 368, "0258": 368, "label": 368, "0270": 368, "suit": 368, "0279": 368, "0280": 368, "carbon": 368, "0297": 368, "cryptographic": 368, "0302": 368, "0308": 368, "correction": [368, 645, 651, 655], "0313": 368, "0319": 368, "interaction": 368, "0323": 368, "0325": 368, "0332": 368, "0333": 368, "0334": 368, "0335": 368, "0352": 368, "0363": 368, "0380": 368, "0394": 368, "mto": 368, "whom": 368, "haxhimolla": [368, 534, 545, 552], "msgsend": 368, "mtyp": 368, "athom": 368, "rx": [369, 370, 535, 545, 550], "stumm": 369, "s600": 369, "v475": 369, "eingangskanal": 369, "stummschalt": [369, 536], "ync": 369, "datenaustausch": 369, "ereignisbenachricht": 369, "ssdp": 369, "subnetz": [369, 384, 531], "hauptzon": 369, "v4xx": 369, "v5xx": 369, "v6xx": 369, "v7xx": 369, "sxxx": 369, "rxs": 369, "602d": 369, "musiccast": [369, 370, 536, 545, 550, 643], "yamahaxyc": [369, 655], "yamaha_host": 369, "186": 369, "yamaha_cmd": 369, "kollidi": 369, "yamaha": [370, 536, 545, 550, 643, 646, 648, 655, 670], "streaminglautsprech": 370, "eingangswahl": 370, "schamlos": 370, "raoul": 370, "thill": 370, "geklaut": 370, "yxc": 370, "v483": 370, "isx": 370, "18d": 370, "wx": 370, "010": 370, "austausch": 370, "abonniert": [370, 454, 595], "statusmeld": [370, 422], "versorgt": 370, "yamahayxc_cmd": 370, "gerateitem": 370, "sorry": 370, "abonnement": [370, 595], "netusb": [370, 536], "testhardwar": 370, "weckerfunktion": 370, "arch": 370, "pacman": 370, "fedora": 370, "dnf": 370, "wx010": 370, "yamahayxc_host": 370, "211": 370, "yamahayxc_zon": 370, "playback": 370, "dependent": 370, "net_radio": 370, "supplied": 370, "hosted": 370, "albumart": 370, "total_tim": 370, "play_pos": 370, "play_tim": 370, "totaltim": 370, "arbitrary": [370, 651], "discretion": 370, "passthru": 370, "alarm_on": 370, "beep": 370, "solo": 370, "alarm_beep": 370, "alarm_tim": 370, "setpow": 370, "1430": 370, "gelog": 370, "weck": [370, 536], "zigbe": [371, 511, 537, 545, 548, 650, 653], "ambianc": 371, "e27": 371, "800lm": 371, "e26": 371, "ikea": 371, "tradfri": 371, "led1924g9": 371, "led1949c5": 371, "angebund": 371, "ggfs": 371, "zigbee2mqtt_foo": 371, "z2m_foo": 371, "lampe1": 371, "light_white_ambient": 371, "z2m_topic": 371, "friendlyname1": 371, "light_rgb": 371, "friendlyname2": 371, "z2m_attr": 371, "level_2": 371, "permit_join": 371, "health_check": 371, "networkmap_raw": 371, "device_remov": 371, "device_configur": 371, "device_option": 371, "device_renam": 371, "device_configure_reporting": 371, "last_se": 371, "did": [372, 646, 655], "navigationsleist": [373, 496, 523], "repositori": [373, 641], "einklink": 373, "nachfolgelos": [374, 381, 383, 394, 397, 421, 426, 446, 463, 474, 497, 506, 523, 524, 532], "fussnot": [374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "anzusprech": [375, 384, 472, 500, 536, 537, 561], "kamerastream": 375, "standbild": 375, "stream1": 375, "stream2": 375, "stream3": 375, "indentifizi": 375, "wertbereich": 375, "streamdefinition": 375, "codecs": 375, "aufloes": 375, "moeglich": 375, "alexa_stream_1": 375, "raumthermostat": 375, "otp": 376, "ergebnistyp": [376, 378, 380, 382, 391, 394, 396, 398, 399, 406, 411, 416, 423, 425, 430, 433, 434, 445, 449, 455, 456, 460, 462, 468, 471, 472, 479, 484, 488, 491, 502, 504, 506, 510, 512, 516, 519, 520, 522, 530, 531], "textblock": 377, "einschaltstatus": 378, "playing_app_identifi": 378, "applikationsidentifikation": 378, "playing_app_nam": 378, "applikationsnam": 378, "playing_stat": 378, "abspielstatus": 378, "playing_state_text": 378, "playing_fingerprint": 378, "fingerprint": 378, "playing_genr": 378, "playing_artist": 378, "playing_album": 378, "playing_titl": 378, "playing_typ": 378, "medientyp": 378, "playing_type_text": 378, "playing_position": 378, "zeitposition": 378, "playing_total_tim": 378, "gesamtspielzeit": 378, "playing_position_percent": 378, "playing_repeat": 378, "wiederholmodus": 378, "playing_repeat_text": 378, "playing_shuffl": 378, "playing_shuffle_text": 378, "artwork_width": 378, "artwork_height": 378, "artwork_mimetyp": 378, "mimetyp": 378, "artork": 378, "artwork_base64": 378, "topmenu": 378, "rc_hom": 378, "rc_home_hold": 378, "rc_stop": 378, "rc_play_paus": 378, "hinunt": 378, "hinauf": 378, "rc_set_position": 378, "rc_set_repeat": 378, "rc_set_shuffl": 378, "rc_skip_backward": 378, "ruckwart": 378, "spring": 378, "rc_skip_forward": 378, "vorwart": 378, "rc_volume_down": 378, "rc_volume_up": 378, "rc_suspend": 378, "rc_wakeup": 378, "netwerk": [379, 545, 548], "univers": 379, "lichtsituation": 379, "vollstanding": 379, "wertemeng": 379, "kanalwert": 379, "startadress": 379, "startkanal": 379, "5038": 380, "geratekenn": 380, "tupel": 380, "smartdevic": [381, 545, 550, 655], "verbindungsaufbauversuch": 381, "dependson": 381, "poweritem": 381, "wohl": 381, "musiktitel": 381, "defaultwert": 381, "lcd": 381, "mitunt": 381, "scrollend": 381, "songtiteln": 381, "zeichnfolg": 381, "rn": 381, "pluginunterordn": 381, "resend": [381, 650], "sendeversuch": [381, 400, 441, 464, 467, 512], "attributangab": 381, "puff": 381, "ofmal": 381, "endgerat": [381, 642, 671], "zulasst": 381, "8002": 381, "itemupdat": 381, "vollzog": 381, "textkonfiguration": 381, "ausbess": 381, "zonenbezug": 381, "monitoringservic": [382, 674], "rufnumm": 382, "filterstring": 382, "12234": 382, "anschlussnumm": 382, "49000": 382, "tr064": [382, 653], "abfrageergebnis": [382, 398], "2x": 382, "blacklisted": [382, 653], "aktoridentifikationsnumm": 382, "datentyps": 382, "lesekommando": [382, 393, 522], "schreibkommando": [382, 393, 522], "ger\u00e3": 382, "4ghz": 382, "5ghz": 382, "geh\u00e3\u0192\u00e2": 382, "ren": 382, "nachgeschlag": 382, "identifikator": 382, "064": [382, 655], "friendynam": 382, "anteil": 382, "610": 382, "dect301": [383, 545, 550, 649], "updatelauf": [383, 394, 406, 460, 462, 468, 479, 503, 518], "identifikationsnumm": [383, 525], "has_switch": 383, "has_temperature_sensor": 383, "has_thermostat": 383, "has_alarm": 383, "eco_temperatur": 383, "set_switch_state_on": 383, "set_switch_state_off": 383, "set_switch_state_toggl": 383, "bang": [384, 451, 545, 548, 651], "olufs": [384, 451, 545, 548, 651], "netlink": [384, 545, 548, 651], "wg": [384, 641], "scannend": 384, "audiomod": 384, "videomod": 384, "muted": 384, "producttyp": 384, "sektionsnam": 385, "vorangstellt": 385, "blockly_": 385, "datenabfrag": [387, 443, 545, 550], "bsb": [387, 545, 550, 646, 649], "heizkesseln": [388, 545, 550], "60s": 389, "geraet": [390, 407, 452], "unterbleib": 391, "duchfuhr": 391, "messgerat": [392, 545, 550], "datenanfrag": 392, "netzwerverbind": 393, "kommand": 393, "lesekommandos": [393, 522], "registrier": [394, 462, 468, 472, 510], "alerts_string": [394, 468], "verbindungsparamet": 396, "maxag": [396, 645, 652, 653], "datenbestand": 396, "datenbanktabell": 396, "smartnomeng": 396, "unbegrenzt": 396, "aender": [396, 432], "fand": 396, "unterdrueckt": 396, "aufraum": 396, "ungenutzt": 396, "lowlevel": 396, "datenbankeintrag": [396, 641], "eingeschrank": 396, "endzeit": [396, 423, 479], "datenbankcursor": 396, "extenstion": 397, "datenauswert": [398, 545, 554], "beispieleintrag": 398, "optimier": [398, 632, 671], "wertefilt": 398, "datenbankabfrag": 398, "worterbuch": 398, "auswertefunktion": 398, "verbrauch_jahr_minus3": [398, 655], "wachstumsgradtag": [398, 656], "tagesmitteltemperatur": 398, "minmax": 398, "minmax_last": 398, "zaehlerstand": 398, "abfragefunktion": 398, "sum_max": 398, "sum_avg": 398, "sum_min_neg": 398, "diff_max": 398, "zeitinkrement": [398, 504], "gruppier": 398, "deebot": [399, 545, 550, 645], "ozmo": [399, 545, 550, 645], "920": [399, 545, 550], "950": [399, 545, 550], "960": [399, 545, 550], "kontinent": 399, "autodetect": 399, "lifespan": 399, "zuruckkehr": 399, "reinig": [399, 456, 481], "geputzt": 399, "lokalisi": 399, "fortfuhr": 399, "saugstark": 399, "quantitat": 399, "quanittat": 399, "neuverbind": [400, 408, 435, 441, 464, 467], "ubertragungsgeschwind": [400, 408, 464, 467], "ubertragungsmodus": [400, 408, 464, 467], "datenbit": [400, 408, 464, 467], "wart": [400, 441, 464, 467, 628], "netzwerkziel": [400, 408, 435, 441, 464, 467], "modellauswahl": [400, 408, 464, 467], "paritat": [400, 408, 464, 467], "verbindungsabbruch": [400, 408, 435, 441, 464, 467], "sekundentakt": [400, 441, 464, 467], "com1": [400, 408, 464, 467], "antwortbegrenz": [400, 408, 441, 464, 467], "gerateantwort": [400, 408, 435, 441, 464, 467, 501, 522], "fwd": [400, 408, 435, 441, 464, 467, 623], "rci": [400, 408, 435, 441, 464, 467], "lesebefehl": [400, 442], "schreibbefehl": [400, 442], "anderungsanforder": 401, "unteradress": 401, "abfragecod": 401, "quer": 401, "prufsumm": 401, "konvertierungsart": 401, "auslesepuff": 401, "development_only": 402, "touchpanel": 403, "vailant": [405, 545, 550], "ebusd": [405, 545, 550, 667], "geupdated": 406, "eingegang": 406, "anzeigedau": [406, 469], "ffff4680": 407, "blockiert": [407, 688], "verstellt": 407, "dimmgeschwind": 407, "geraetetyp": 407, "fud61npn": 407, "fld61": 407, "fud70s": 407, "fbh63tf": 407, "stp": 407, "secusignal": 407, "tasteraktion": 407, "tastersequenz": 407, "rolladenverstellzeit": 407, "a5_38_08": 407, "referenzwert": [407, 419], "sdpcommand": [408, 622], "eta": [409, 545, 550], "pellet": 409, "bedarfsfall": 410, "statist": [411, 545, 558, 622], "pulswert": [411, 545, 558], "garmin": [411, 545, 558, 643], "china": 411, "pul": 411, "prufend": [411, 520], "ddd": [411, 520], "posteinwurferkenn": 412, "basteln": 412, "gpios": 412, "distanzsensor": 412, "umweg": 412, "abgegriff": 412, "prellzeit": 412, "zuweisungsmethod": 412, "pinbeleg": 412, "bcm": 412, "pulldown": 412, "systemweit": 412, "ausgabewert": 412, "voreinstell": [412, 496, 524, 690], "septemb": [413, 526, 639, 646, 647, 648, 649, 650], "ec": [414, 545, 550], "x00": [414, 545, 550], "vallox": [414, 545, 550, 670], "fortluftsensor": 414, "zuluftsensor": 414, "aussenluftsensor": 414, "abluftsensor": 414, "frostwarn": 414, "smathomeng": 414, "frquenz": [416, 448, 492, 530, 532], "simulationsmodus": 416, "haid": 416, "homematicip": [417, 545, 548, 674], "homematric": 417, "30000": 417, "uberzugeh": [419, 420], "dpt3": [419, 504, 648, 651, 665], "helligkeitsverander": [419, 420], "farbton": [419, 450], "leuchtmittel": [419, 420], "lichteffekt": [419, 420], "tageslicht": [419, 420], "sunriseoffset": [419, 420], "sunsetoffset": [419, 420], "hue2_recourc": 419, "gebend": 419, "initial_press": 420, "short_releas": 420, "long_releas": 420, "hue3_recourc": 420, "mahrobot": [421, 422, 424, 425, 479, 545, 550, 558], "arbeitsdat": 421, "benutzkonto": 422, "gpsoint": 422, "parkpermanent": 422, "parktim": 422, "parknext": 422, "cuttingheight": 422, "headlight": 422, "errormessag": 422, "batterypercent": 422, "onlinefeed": 423, "onlinekal": 423, "sternch": 423, "aktualisierungsintervall": 423, "beduetet": 423, "arraywert": 423, "eventkategori": 423, "eventzusammenfass": 423, "notiz": 423, "startend": 423, "analysier": 423, "kalendereintrag": 423, "wievielt": [423, 599, 634], "kartendatei": [424, 425], "servicezugriff": [424, 425], "elt": [424, 425, 566], "reaagiert": [426, 427], "Diesem": [426, 427], "aufzeichnet": 427, "zugr": 428, "organisation": 428, "influxdb": [428, 545, 554, 644, 645, 651, 653, 655], "2n": [429, 545, 550, 670], "tursprechanlag": [429, 545, 550], "intercom": [429, 670], "joaoapps": [430, 545, 558], "pyjq": 431, "webprotokoll": 431, "dateiadapt": 431, "gammakurv": [432, 545, 550], "uebertrag": [432, 545, 550], "muess": 432, "aufgefuehrt": 432, "gammaspeich": 432, "bussystem": [434, 545, 548], "startverzeichnis": 434, "zwangssteuer": 434, "4002": 434, "8859_1": 434, "002": 434, "relativwert": 434, "5003": [434, 655], "003": 434, "5999": [434, 646], "spezial": [434, 632], "tebis": [434, 646], "32768": 434, "32767": [434, 517], "gleitkomma": 434, "671088": 434, "670760": 434, "4294967295": 434, "2147483648": 434, "2147483647": 434, "gleitkommazahl": 434, "16000": 434, "16001": 434, "17001": 434, "18001": 434, "hvac": [434, 487], "unlimitiert": 434, "229": [434, 641], "tripel": 434, "275": [434, 641], "quadrupel": 434, "nachtabsenk": [434, 487], "frostschutz": [434, 487], "winkhaus": [434, 651], "schliesssystem": 434, "pollintervall": 434, "ubermittl": 434, "objektwert": 434, "codier": 434, "datenpunkttyp": 434, "ereignisgesteuert": 434, "sendewiederhol": 435, "protokolleb": [435, 621], "moduln": [436, 545, 550], "limitier": 436, "betriebszeit": 436, "kostal": [437, 438, 545, 550, 643, 653, 655, 667, 670], "regenwass": [439, 545, 550], "fuellstandsanzeig": [439, 545, 550], "projet": [439, 545, 550, 651], "19200": [439, 517], "sek": [439, 622], "eigeles": 439, "outflag": 439, "lircd": [440, 545, 548, 671], "remotecod": 440, "befehel": 440, "simulier": 440, "irrecord": 440, "vererb": [441, 564], "coverarturl": 441, "coverart": 441, "wiedergabegerat": 441, "sps": [442, 545, 550], "kommunikationsport": 442, "heissgas": 443, "SOLL": 443, "betriebsstund": [443, 526], "verdicht": [443, 526, 622], "impuls": 443, "zusatzheiz": 443, "postfach": 444, "fal": 444, "993": 444, "trash": 444, "2525": 445, "465": 445, "587": 445, "testmail": 445, "mailtext": 445, "bordmittel": [446, 545, 554], "ersetzbar": [446, 545, 554], "zuordnungswert": [446, 463], "item_c": [446, 463], "item_d": [446, 463], "kommagetrennt": [446, 463], "landerkenn": 447, "flora": [448, 545, 550, 670], "pflanzensensor": [448, 545, 550], "routeros": [449, 545, 550, 655], "8729": 449, "poe": 449, "gerateanschluss": 449, "ether1": 449, "switchport": 449, "aktivierungsstatus": 449, "leuchtmitteln": [450, 545, 548], "hue_and_lum": 450, "schwell": 450, "sinkt": 450, "feinkalibration": 450, "farbkreis": 450, "weisspunkt": 450, "vermindert": 450, "masterlink": [451, 545, 548], "bv9": 451, "blactiv": 451, "befehlstyp": 451, "slav": [452, 509], "int32": 452, "uint32": 452, "stringnn": 452, "datenricht": 452, "multipliziert": 452, "2a": 453, "6600": [453, 617], "musikstuck": 453, "abzuspiel": [453, 671], "einzelwiedergab": 453, "pausenstatus": 453, "songpos": 453, "uberblend": 453, "uberbl": 453, "uberlapp": 453, "abgezog": 453, "replay_gain_mod": 453, "replay": 453, "musikdatenbank": 453, "spielend": 453, "datenbankupdat": 453, "lautsark": 453, "unsigned": 453, "mixramp": 453, "musikstucknumm": 453, "kbps": 453, "decod": [453, 643, 649, 651, 655], "apiel": 453, "samplerat": 453, "nextsong": 453, "reatin": 454, "abfahrt": [455, 545, 558], "munchn": [455, 545, 558], "verkehrsbetrieb": [455, 545, 558], "mvg": [455, 545, 558, 655], "verkehrverbind": 455, "productsymbol": 455, "linesymbol": 455, "linenam": 455, "productsymbolurl": 455, "haltestell": 455, "robotor": [456, 545, 550], "angedockt": 456, "reinigungsplan": 456, "laed": 456, "verfuegbar": [456, 517], "einzelraum": 456, "command_startavailabl": 456, "online_status": 456, "reinigunsplan": 456, "loescht": 456, "verfuebar": 456, "raeum": 456, "zimm": 456, "netzwerkanfrag": [457, 545, 552], "dediziert": 457, "zielsyst": 457, "kommunikaton": 458, "bridget": 458, "herausgefund": [458, 688], "doorstat": 458, "lesezyklus": 459, "messstellenkenn": 460, "messstation": 460, "postleitzahl": 460, "ortsnam": 460, "testbetrieb": 460, "messnetzknot": 460, "freiburg": 460, "munch": 460, "bonn": 460, "rendsburg": 460, "nn": 460, "messperiod": 460, "gesenkt": 461, "stromverbrauch": 461, "destabilisi": 461, "sensorauflist": 461, "heruntergezahlt": 461, "pei": 461, "busspann": 461, "regeneri": 461, "aufeinanderfolg": 461, "lesefehl": 461, "use_ow_alias": 461, "sensortyp": 461, "lichtstark": 461, "i0": 461, "i4": 461, "i5": 461, "i6": 461, "i7": 461, "o0": 461, "o1": 461, "o2": 461, "o4": 461, "o5": 461, "o6": 461, "o7": 461, "dezimalstell": [462, 519], "niederschlagswert": 462, "no_updat": 462, "log_info": 462, "beschreibened": 462, "caching": [463, 649], "namensformat": 463, "vorgehalt": 463, "temperatureinsid": 465, "temperatureoutsid": 465, "airswinghorizontal": 465, "airswingvertical": 465, "bindungsvorgang": 466, "geraetss": 466, "plax": 469, "biled": 469, "dialgo": 469, "wandelt": [470, 599, 634], "differenzi": 471, "expizit": 472, "nodered": [475, 545, 548], "kennzeichnet": [475, 508, 517, 561, 563, 566], "plpaylist": 475, "lautstarkeeinstell": 475, "buttoncod": 476, "01000": 476, "00100": 476, "00010": 476, "00001": 476, "zeigenm": 477, "dl2": 478, "7053": 478, "bitus": 478, "vorzeich": [478, 494], "behaftet": 478, "robonect_id": 479, "robonect_version": 479, "robonect_version_comment": 479, "robonect_version_compiled": 479, "hardware_serial": 479, "production_dat": 479, "msw_titl": 479, "msw_version": 479, "msw_compiled": 479, "wlan_at": 479, "wlan_sdk": 479, "remotestart_nam": 479, "remotestart_visibl": 479, "remotestart_path": 479, "remotestart_proportion": 479, "remotestart_distanc": 479, "status_text_translated": 479, "mode_text_translated": 479, "statistic": 479, "blades_quality": 479, "blades_hour": 479, "blades_days": 479, "error_dat": 479, "error_tim": 479, "error_unix": [479, 649], "rssi": 479, "climat": 479, "battery_id": 479, "battery_charg": 479, "battery_voltag": 479, "battery_current": 479, "battery_temperatur": 479, "battery_capacity_full": 479, "battery_capacity_remaining": 479, "motor_drive_left_pow": 479, "motor_drive_left_speed": 479, "motor_drive_left_current": 479, "motor_drive_right_pow": 479, "motor_drive_right_speed": 479, "motor_drive_right_current": 479, "motor_blade_speed": 479, "motor_blade_current": 479, "motor_blade_averag": 479, "weather_location_zip": 479, "weather_location_country": 479, "weather_rain": 479, "weather_temperatur": 479, "weather_humidity": 479, "weather_sunris": 479, "weather_sunset": 479, "weather_day": 479, "weather_condition_toorainy": 479, "weather_condition_toocold": 479, "weather_condition_toowarm": 479, "weather_condition_toodry": 479, "weather_condition_toowet": 479, "weather_condition_day": 479, "weather_condition_night": 479, "weather_dat": 479, "weather_tim": 479, "weather_unix": 479, "fernstart": 479, "remotestart_": 479, "eod": 479, "fernstartpunkt": 479, "mahauftrag": 479, "zeitdau": 479, "fernstartabstand": 479, "homebas": 481, "ladewert": 481, "auffangbehalt": 481, "fehlernumm": 481, "stock": 481, "statusobjekt": 482, "sensorlist": 483, "zielort": 483, "uptime_string": 484, "cpu_temperatur": 484, "taktrat": 484, "temperaturlimit": 484, "gedrosselt": 484, "unterspann": 484, "robin": [485, 545, 554, 665], "rrdtool": [485, 545, 554, 667], "datenquellennam": 485, "gaug": 485, "ventilschutz": [486, 487], "voreingestellt": 486, "integralfaktor": 486, "verstarkungsfaktor": 486, "ordnet": 486, "stellgross": 486, "mint": 486, "absenk": [486, 487], "gebauch": 487, "wasserheiz": 487, "fussbodenheitz": 487, "inital": 487, "setting_min_output": 487, "setting_max_output": 487, "fortsetz": [488, 519], "soundquell": 488, "ausgabeunterdruck": 488, "schliesst": 488, "shelly1pm": 489, "shellyswitch": 489, "shellyswitch25": 489, "shellydw2": 489, "simuli": 490, "niemand": 490, "zuhaus": 490, "bewerkstell": 490, "aufzeichn": 490, "datenfil": 490, "datenhalt": 490, "unterstuzt": 490, "messaging": [491, 534, 545, 552, 558], "zeitunterschied": 492, "systemzeit": 492, "pregard": [493, 674], "pregardcount": [493, 674], "psurplus": [493, 674], "psurpluscount": [493, 674], "sregard": [493, 674], "sregardcount": [493, 674], "ssurplus": [493, 674], "ssurpluscount": [493, 674], "qregard": [493, 674], "qregardcount": [493, 674], "qsurplus": [493, 674], "qsurpluscount": [493, 674], "p1regard": [493, 674], "p1regardcount": [493, 674], "p1surplus": [493, 674], "p1surpluscount": [493, 674], "s1regard": [493, 674], "s1regardcount": [493, 674], "s1surplus": [493, 674], "s1surpluscount": [493, 674], "q1regard": [493, 674], "q1regardcount": [493, 674], "q1surplus": [493, 674], "q1surpluscount": [493, 674], "thd1": [493, 674], "p2regard": [493, 674], "p2regardcount": [493, 674], "p2surplus": [493, 674], "p2surpluscount": [493, 674], "s2regard": [493, 674], "s2regardcount": [493, 674], "s2surplus": [493, 674], "s2surpluscount": [493, 674], "q2regard": [493, 674], "q2regardcount": [493, 674], "q2surplus": [493, 674], "q2surpluscount": [493, 674], "thd2": [493, 674], "p3regard": [493, 674], "p3regardcount": [493, 674], "p3surplus": [493, 674], "p3surpluscount": [493, 674], "s3regard": [493, 674], "s3regardcount": [493, 674], "s3surplus": [493, 674], "s3surpluscount": [493, 674], "q3regard": [493, 674], "q3regardcount": [493, 674], "q3surplus": [493, 674], "q3surpluscount": [493, 674], "thd3": [493, 674], "s64": 494, "str08": 494, "str12": 494, "str16": 494, "eingeht": [495, 545, 550], "standardport": 495, "nachgedacht": 495, "masterit": 496, "blk": [496, 523, 682, 684], "zentriert": [496, 523], "ausgerichtet": [496, 523, 686], "umschliess": 496, "meher": 496, "eigenschaftstyp": 497, "scalar": 497, "lesepuff": [498, 499], "nachrichtenlang": [498, 499], "polynom": [498, 499], "4129": [498, 499], "umkehr": [498, 499], "bitreihenfolg": [498, 499], "xor": [498, 499], "bytereihenfolg": [498, 499], "tausch": [498, 499], "dezimalzahl": 500, "161": 501, "solaretragsvorhersag": [502, 545, 558], "azimutwinkel": 502, "panelausricht": 502, "south": [502, 649], "deklinationswinkel": 502, "solaranlag": 502, "langengrad": [502, 510, 599, 636], "leistungcheck": 502, "watts_hourly": 502, "gefordert": [502, 526], "hostadress": [503, 525], "variablendefinition": 503, "netzwerkzugriff": 504, "23500": 504, "emfang": 504, "is_initialized": 504, "is_coordiantor": 504, "track_titl": 504, "track_artist": 504, "track_uri": 504, "track_album": 504, "track_album_art": 504, "play_mod": 504, "radio_show": 504, "radio_station": 504, "additional_zone_memb": 504, "is_coordinator": 504, "tts_local_mod": 504, "dialog_mod": 504, "buttons_enabled": 504, "cross_fad": 504, "coordinator": 504, "snooz": 504, "status_light": 504, "zone_group_memb": 504, "player_nam": 504, "household_id": 504, "streamtyp": 504, "current_track": 504, "number_of_track": 504, "current_transport_action": 504, "current_valid_play_mod": 504, "sonos_playlist": 504, "stream_content": 504, "current_track_duration": 504, "sonos_favorit": 504, "favorite_radio_station": 504, "play_tunein": [504, 652], "play_url": 504, "play_sharelink": [504, 653], "load_sonos_playlist": 504, "play_snippet": [504, 648, 649, 653], "play_tt": [504, 648, 655], "unjoin": 504, "volume_up": 504, "volume_down": 504, "playmod": 504, "get_playlist": 504, "set_playlist": 504, "switch_linein": 504, "switch_tv": 504, "play_favorite_titl": [504, 653], "play_favorite_numb": [504, 653], "play_favorite_radio_titl": [504, 653], "play_favorite_radio_numb": [504, 653], "play_sonos_radio": 504, "untermeng": [504, 630], "volumenlevel": 504, "tracklang": 504, "ansteig": 504, "textpaket": 505, "speechpars": 505, "verwaist": 506, "benennt": [506, 585], "squeezelit": 507, "9002": 507, "grand": 507, "aktualisierenn": 507, "wegfall": 507, "prefset": 507, "playernam": 507, "graphviz": 508, "pydotplus": 508, "sonnenstandsbezog": 508, "waagrecht": 508, "protokolldatei": 508, "smarthome_base_directory": 508, "standardlevel": 508, "protokollverzeichnis": 508, "uberaltert": 508, "loschfunktionalitat": 508, "vorgabezeit": 508, "unterbrech": 508, "86400": 508, "visualisierungszweck": 508, "zustandset": 508, "displayzweck": 508, "zustandsset": 508, "neuermittl": 508, "abzuweich": 508, "eingeordnet": 508, "standarddau": 508, "einbezug": 508, "enthehm": 509, "preisaktualisier": 510, "anzufrag": 510, "performanzgrund": 510, "umkreis": 510, "mittelpunkt": 510, "benzin": 510, "sortierreihenfolg": 510, "pric": [510, 669], "suchradius": 510, "telemetri": 511, "delete_retained_messag": 511, "key16": 511, "clust": [511, 653], "0x9cb9": 511, "gruppennachricht": 511, "messeng": [512, 545, 558], "endenachricht": 512, "auswahlbar": 512, "trust": 512, "unternomm": 512, "willkommensnachricht": 512, "lesezugriff": 512, "wertaktualisier": 512, "mitteilungstext": 512, "57483": 514, "comportstatus": 514, "logregist": 514, "logfullscan": 514, "geblinkt": 515, "endlosschleif": 515, "einschaltverzoger": [515, 574], "reisezeit": [516, 545, 558], "routinganweis": 516, "fahrtrout": 516, "geokoordinat": 516, "abfahrtszeit": 516, "travel": 516, "walking": 516, "bicycling": 516, "ausleseintervall": 517, "duchgefuhrt": 517, "rtu": [517, 653], "socat": 517, "mbusd": 517, "ttytrovis": 517, "pa6": 517, "stationsadress": 517, "nr": [517, 671], "247": 517, "buswert": 517, "umgerechnet": 517, "listentext": 517, "stufenweis": 517, "ap_": 518, "client_": 518, "device_": 518, "switch_": 518, "selektier": 518, "portprofil": 518, "client_present": 518, "client_ip": 518, "client_hostnam": 518, "client_present_at_ap": 518, "switch_port_enabled": 518, "switch_port_profil": 518, "ap_enabled": 518, "standardmaximalalt": 519, "nachzuhol": 519, "standardintervall": 519, "sonnenstandbezug": 519, "interpolationseinstell": 519, "zwischenberechn": 519, "splin": 519, "verlangsam": 519, "interpolationswert": 519, "abruft": 519, "aktualisierungszeitpunkt": 519, "fortzusetz": 519, "schulferi": [520, 545, 558], "21600": 520, "2592000": 520, "feri": [520, 646, 652], "developp": 521, "portal": [521, 649], "boilerserial": 521, "dhw": 521, "circulation": 521, "onetimecharg": 521, "dhwcylind": 521, "hotwaterstorag": 521, "commonsupply": 521, "sendekommandos": 521, "zeitbegrenz": 522, "einheitencod": 522, "protokollkonfiguration": 522, "unitset": 522, "gelauscht": 524, "crt": [524, 688], "volkszahl": [525, 545, 550], "entgegennimmt": 525, "substituiert": 525, "middlewar": 525, "ecotouch": [526, 545, 550, 651], "temp_auss": 526, "temp_aussen_1h": 526, "temp_aussen_24h": 526, "temp_quelle_ein": 526, "temp_quelle_aus": 526, "temp_verdampf": 526, "verdampf": 526, "temp_sauggas": 526, "sauggas": 526, "druck_verdampf": 526, "temp_soll": 526, "temp_ruecklauf": 526, "rucklauf": 526, "temp_vorlauf": 526, "vorlauf": [526, 622, 639], "temp_kondensation": 526, "kondensation": 526, "druck_kondensation": 526, "temp_speich": 526, "temp_raum": 526, "temp_raum_1h": 526, "temp_ww": 526, "temp_sk": 526, "pow_comp": 526, "kompressor": 526, "pow_therm": 526, "thermisch": 526, "pow_cool": 526, "cop_comp": 526, "cop": 526, "cop_cool": 526, "kuhlung": 526, "temp_hk": 526, "heizkreis": [526, 622], "temp_gefordert_hk": 526, "temp_gefordert_ww": 526, "temp_soll_ww": 526, "rpm_hk": 526, "drehzahl": 526, "heizkreispump": [526, 622], "rpm_sol": 526, "quellenpump": 526, "valve_exp": 526, "expansionsventil": 526, "offnung": 526, "jaz_wp": 526, "jahresarbeitszahl": 526, "oh1_verdicht": 526, "oh2_verdicht": 526, "oh1_heizstab": 526, "heizstab": 526, "oh2_heizstab": 526, "oh1_heizpump": 526, "oh2_heizpump": 526, "oh1_solepump": 526, "oh2_solepump": 526, "cop_jan": 526, "cop_feb": 526, "cop_mar": 526, "cop_apr": 526, "april": [526, 639, 640, 657], "cop_may": 526, "cop_jun": 526, "cop_jul": 526, "cop_aug": 526, "cop_sep": 526, "cop_oct": 526, "cop_nov": 526, "cop_dec": 526, "f121": 526, "webadress": 527, "20sek": 527, "ausgeblendet": 527, "voransicht": 527, "statusleist": 527, "nachrichteninhalt": 527, "vibrationsmust": 527, "nachrichteneingang": 527, "vibriert": 527, "300ms": 527, "100ms": 527, "400ms": 527, "zuzustell": 527, "urgency": 527, "steigt": 527, "ruckgabedat": 528, "metainformation": 528, "bundeln": 528, "projektnam": 529, "dashboard_oauth2": 530, "geheimnis": 530, "nomral": 530, "einloggt": 530, "nh_typ": [530, 646], "diastolic_blood_pressur": 530, "systolic_blood_pressur": 530, "body_temperatur": 530, "skin_temperatur": 530, "spo2": 530, "heart_puls": 530, "hydration": 530, "bone_mass": 530, "pulse_wave_velocity": 530, "aufgeweckt": 531, "trennzeich": 531, "ip4": [531, 649], "tagesmeng": 532, "gebuhrenfrei": 532, "franzos": 532, "herauszufilt": 532, "mactchstring": 532, "valetudo": [533, 545, 550], "bespiel": [533, 545, 550], "befolg": 533, "localsecret": 533, "gchq": 533, "cyberchef": 533, "recip": 533, "to_hex": 533, "saug": 533, "standart": 533, "set_start": 533, "set_stop": 533, "set_paus": 533, "set_hom": 533, "set_spot": 533, "set_find": 533, "reset_filtertim": 533, "disable_dnd": 533, "set_dnd": 533, "dnd_status": 533, "dnd_start": 533, "dnd_end": 533, "dnd_onoff": 533, "clean_zon": 533, "zone_cleaning": 533, "segment_clean": 533, "segment_status": 533, "go_to": 533, "create_nogo_zon": 533, "clean_tim": 533, "carpet_mod": 533, "carpetmode_high": 533, "carpetmode_integral": 533, "carpetmode_low": 533, "carpetmode_enabled": 533, "carpetmode_stall_tim": 533, "is_error": 533, "clean_total_count": 533, "clean_total_area": 533, "clean_total_duration": 533, "clean_id": 533, "clean_details_last0": 533, "last0_area": 533, "last0_complet": 533, "last0_duration": 533, "last0_start_dat": 533, "last0_start_tim": 533, "last0_end_dat": 533, "last0_end_tim": 533, "clean_details_last1": 533, "last1_area": 533, "last1_complet": 533, "last1_duration": 533, "last1_start_dat": 533, "last1_start_tim": 533, "last1_end_dat": 533, "last1_end_tim": 533, "clean_details_last2": 533, "last2_area": 533, "last2_complet": 533, "last2_duration": 533, "last2_start_dat": 533, "last2_start_tim": 533, "last2_end_dat": 533, "last2_end_tim": 533, "clean_details_last3": 533, "last3_area": 533, "last3_complet": 533, "last3_duration": 533, "last3_start_dat": 533, "last3_start_tim": 533, "last3_end_dat": 533, "last3_end_tim": 533, "side_brush": 533, "side_brush_left": 533, "main_brush": 533, "main_brush_left": 533, "filter_left": 533, "sensor_dirty": 533, "sensor_dirty_left": 533, "extensibl": [534, 545, 552], "zt": [534, 545, 552], "gruppenchat": 534, "betret": 534, "xep": [534, 641], "messga": 534, "wen": 534, "steuerungsmog": 536, "wiedergabequell": 536, "gerateabhang": 536, "netradio": 536, "streamingdien": 536, "wiedergabesteuer": 536, "zuruckspul": 536, "lautstarkesteuer": 536, "anwahl": 536, "geratestatus": 536, "wiedergabestatus": 536, "quellenabhang": 536, "wiedergabeposition": 536, "coverbild": 536, "ersetzungwert": 537, "0xdeadbeef": 537, "friendly_nam": 537, "openzwav": [538, 651], "konfiuration": 538, "garat": 538, "ozw": 538, "sicherheitsstrategi": 538, "hotz": [545, 558], "psilo909": [545, 548, 550, 552, 554, 558], "andrek": [545, 554, 558], "cannon": [545, 548, 550, 558], "assr85": [545, 558], "juerg": [545, 558], "apcups": [545, 550, 643, 645, 655], "sandman60": [545, 548, 550, 554, 558], "appletv": [545, 550, 645, 646, 652, 655], "foxi352": [545, 550, 554, 558], "artnet": [545, 548, 642, 655, 667, 671], "mode2k": [545, 548], "jentz1986": [545, 548, 550, 554, 558], "ohinckel": [545, 548, 550, 552, 554], "asterisk": [545, 550, 646, 650, 660, 663, 664, 665, 666, 667], "nobody": [545, 548, 550, 554], "sisamiw": [545, 548, 550, 554, 558, 643], "aschwith": [545, 548, 550, 552, 554, 558], "avm_smarthom": [545, 550, 649], "wenzel": [545, 550, 552], "sebastianfaulha": [545, 548, 550], "bsblan": [545, 550, 646, 649], "hengsberg": [545, 550], "thengsty": [545, 550], "buderus": [545, 550, 645, 646], "byd_bat": [545, 550, 655], "matthias": [545, 550, 666, 667], "manhart": [545, 550], "casambi": [545, 548, 645, 646, 647, 649, 650, 652, 653, 655], "macflei": [545, 548], "co2met": [545, 550, 644], "comfoair": [545, 550, 644, 649, 651, 655, 671, 673], "svstefan": [545, 550], "pfischi": [545, 548, 550], "db_addon": [545, 554, 653, 654, 655, 656], "ebus": [545, 550, 641, 649, 655], "z1marco": [545, 550], "enigma2": [545, 550, 566, 644, 646, 648, 669, 673, 685], "budd": [545, 548, 550, 667], "eta_pu": [545, 550, 667], "brootux": [545, 550], "garminconnect": [545, 558, 643, 646, 649, 650, 655], "rasberry": [545, 550], "cmalo": [545, 548, 550, 554, 558], "harmony": [545, 550, 651, 653, 670], "bombadil": [545, 550], "helios_tcp": [545, 550, 643, 645, 646, 653], "freget": [545, 550], "thilo": [545, 550], "schneid": [545, 550], "homeconnect": [545, 558, 649, 653, 655], "hue3": [545, 548, 618], "husky": [545, 550, 649], "gama": [545, 550], "scaramangas": [545, 550], "manhartm": [545, 550], "manu241": [545, 550], "husky2": [545, 550, 651, 652, 653, 654, 655], "gruberth": [545, 550, 558], "mknx": [545, 558], "indego4shng": [545, 558, 653, 654, 655], "kai": [545, 554], "med": [545, 554], "chrisr79": [545, 554], "knx_fan": [545, 558], "jvcproj": [545, 550, 655], "nportz": [545, 550], "kathrein": [545, 550, 643, 645], "mayrjohann": [545, 550], "waldmeister68": [545, 550], "leveljet": [545, 550, 651], "knatt": [545, 550], "blobo": [545, 550], "lirc": [545, 548, 645, 646, 654, 655, 673], "e3eat": [545, 548], "lms": [545, 550, 655], "ivand": [545, 548, 550], "luxtronic2": [545, 550, 646, 647, 655, 666, 671], "2ndsky": [545, 550], "mailrcv": [545, 558, 641, 643, 644, 645, 646, 649, 655, 691], "mailsend": [545, 558, 641, 643, 644, 645, 649, 655, 691], "mieleathom": [545, 548, 654, 655], "sippl": [545, 548, 550], "andrek01": [545, 548], "miflora": [545, 550, 641, 643, 674], "mikrot": [545, 550, 655], "milight": [545, 548, 643], "modbus_tcp": [545, 548, 649, 650, 652, 653, 654, 655], "mpd": [545, 548, 617, 645, 646, 648, 649, 650, 651, 652, 666, 671, 674], "beavon": [545, 548], "knxms": [545, 548], "mvg_liv": [545, 558, 655, 670], "neato": [545, 550, 643, 646, 647, 649, 652, 653, 654, 655, 656], "nuki": [545, 550, 641, 643, 646, 649, 655, 656, 670], "fuppy": [545, 550], "nut": [545, 550, 649, 652, 655, 670], "4d4mu": [545, 550], "odlinfo": [545, 558, 643, 646, 649, 655, 670], "chester4444": [545, 548], "panasonic_ac": [545, 548], "philips_tv": [545, 552, 649, 650, 653, 655], "plex": [545, 550, 655], "pluggit": [545, 550, 652, 653, 655], "pushbullet": [545, 558, 641, 642], "lbernau": [545, 558, 667], "pushov": [545, 558, 645, 655, 671], "creutz": [545, 548, 554, 558], "hholl": [545, 548], "raumfeld_ng": [545, 548, 645, 649], "rcs1000n": [545, 548, 653, 655], "hasenradball": [545, 548], "rcswitch": [545, 548, 643, 644, 648, 673], "dafra": [545, 548], "resol": [545, 550, 646, 647, 649, 651, 652, 653, 655], "khom": [545, 550, 646], "stoepf": [545, 550], "roomba_980": [545, 550, 655], "zapfen83": [545, 550], "rpi1wir": [545, 548, 643, 646, 649, 650], "elektrorudi": [545, 548], "rpi_info": [545, 550, 652, 655], "rtr2": [545, 554, 646, 648, 652, 653, 687], "russound": [545, 550, 643, 644, 645, 646, 649, 652, 665], "michaelbu": [545, 554], "slack": [545, 558, 641, 645], "maddinador": [545, 558], "kla": [545, 550], "hochpass": [545, 550], "smarttv": [545, 550, 645, 655, 666], "wvhn": [545, 554], "sml2": [545, 548, 653, 655], "snap7_logo": [545, 550, 642, 645, 650], "solarforecast": [545, 558, 652, 653, 655, 656], "alexand": [545, 558, 665, 666], "schwithal": [545, 558], "haiphong": [545, 558], "morg42": [545, 550, 554, 558], "solarlog": [545, 550, 643, 646, 666], "softwareplay": [545, 548], "systemair": [545, 550, 655, 670], "tankerkoen": [545, 558, 646, 653, 655, 669], "gamad": [545, 558], "ivan73": [545, 558, 649], "text_display": [545, 554, 649], "thz": [545, 550, 642, 643, 646], "zittho": [545, 550], "arnix": [545, 550], "timmy": [545, 554, 649], "trovis557x": [545, 550, 642, 643, 653], "unifi": [545, 550, 642, 646, 649, 655], "vacation": [545, 558, 643, 646, 651, 652, 655], "marc": [545, 558], "ren\u00e9": [545, 558], "friess": [545, 558], "vicar": [545, 548, 655, 656], "tcr82": [545, 550], "waterkott": [545, 550, 651], "tkastn": [545, 550], "webpush": [545, 558, 653, 654], "wettercom": [545, 558, 667], "klug": [545, 558, 667], "withings_health": [545, 558, 641, 642, 645, 646, 649, 650, 651], "wunderground": [545, 558, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 670, 674, 691], "xiaomi_vac": [545, 550, 644, 645, 646, 649, 652, 653, 655], "bonz": [545, 550], "yamahayxc": [545, 550, 643, 644, 645, 646, 647], "zigbee2mqtt": [545, 548, 650, 651, 654, 655, 656], "sebastian": [545, 548], "helm": [545, 548], "zwav": [545, 548, 651], "programmi": 560, "hilfsfunktion": [560, 638], "hinzukomm": 561, "vermind": 561, "fehleranfall": 561, "grandparent": [561, 566, 655, 674], "adressierbar": 561, "item_tre": 561, "grandchild": 561, "sist": 561, "dreifach": 561, "notation": 561, "begin_tag": 561, "end_tag": 561, "attibut": 561, "woran": 561, "id_schreibtischleucht": 561, "visu_smart_visu": 561, "sv_widget2": 561, "sv_nav_asid": [561, 566, 682], "sv_nav_aside2": [561, 566, 682], "vergeh": [562, 599, 634], "wirkungsweis": 562, "blendet": 562, "schrittweit": 562, "zeitdelta": 562, "herunterregeln": 562, "abzuwart": 562, "hinweist": [562, 567, 591], "decrement": 562, "stepping": 562, "myvar": [563, 596], "nament": 563, "vergrossert": 563, "anzufug": 563, "ineressant": 563, "Meine": 563, "typspezif": 563, "nachbildet": 563, "syntaxgrund": 563, "fehlerbehandl": 563, "obliegt": 563, "baz": 563, "leert": 563, "umgebungsbezog": 564, "mondlicht": 564, "configattribut": 564, "parentit": 564, "weitergefuhrt": [565, 591], "dirket": [565, 591], "first_floor": [565, 591], "bath": [565, 591], "my_special_attribut": [565, 591], "elternitem": [565, 591], "knx_": 566, "hm_": 566, "hm_address": 566, "hm_function": 566, "hue_": 566, "hue_lamp_id": 566, "hue_lamp_typ": 566, "hue_list": 566, "hue_send": 566, "avm_": 566, "avm_identifi": 566, "enigma2_": 566, "standardmechanismus": 566, "selektiv": 566, "erb": 566, "grosselt": 566, "urgrosselt": 566, "uberomm": 566, "geerbt": 566, "erbend": 566, "dementsprech": 566, "fenstergriff_kuech": 566, "oeq1234567": 566, "sabotag": 566, "low_bat": 566, "fenstergriff_bad": 566, "hm_adress": 566, "abzuand": 566, "hirarchi": 566, "my_attribut": 566, "my_attribute_": 566, "my_valu": 566, "name_": 566, "struct_knx": 566, "_maingroup": 566, "_devic": 566, "knx_send_": 566, "knx_cache_": 566, "testitem": 566, "switch1": 566, "hauptgrupp": 566, "zugreifbar": [567, 591, 596], "_by": [567, 591, 650], "_ag": [567, 591, 650], "testit": [567, 591], "spezfisch": [567, 591], "defined_in": [567, 591], "eval_unexpanded": [567, 591], "last_change_by": [567, 573, 591], "last_trigger_ag": [567, 591], "last_trigger_by": [567, 573, 591], "last_update_ag": [567, 591], "last_update_by": [567, 573, 591], "on_change_unexpanded": [567, 591], "on_update_unexpanded": [567, 591], "prev_change_ag": [567, 591], "prev_change_by": [567, 591], "prev_trigger_by": [567, 591], "prev_update_by": [567, 591], "trigger_unexpanded": [567, 591], "dynamic": [567, 591, 643, 649], "stutzt": [567, 591], "sendeadress": [567, 591], "treppenhauslicht": 568, "2h30m45s": 568, "delimit": [568, 570], "semikolon": [568, 570], "aufgang": [569, 592], "angelehnt": [569, 592], "parameteranzahl": [569, 592], "mon": [569, 592], "thu": [569, 592], "zeitein": [569, 592], "triggerpunkt": [569, 592], "fruhest": [569, 592], "zusatzangab": [569, 592], "leerschritt": [569, 592], "triggerzeitpunkt": [569, 592], "listenbild": [569, 592], "mitgesendet": [569, 592], "minutentakt": [569, 592], "verscharft": 571, "geblieb": [571, 641], "erzwing": 571, "bestand": 571, "verstandnis": 572, "informiert": 572, "irgendwoh": 572, "zwischendurch": 572, "verschick": [572, 671], "runterfahr": 572, "erlauterug": 573, "voran": 573, "auszuwert": 573, "room_a": 573, "room_b": 573, "praesenz": 573, "oneit": 573, "sprachumfang": 573, "vefug": 573, "datumsfunktion": 573, "auszulag": 573, "conditional": 573, "temperaturfahr": 573, "temperaturcelsius": 573, "generalisiert": 573, "kinderitem": 573, "temperatur2": 573, "anzumerk": 573, "triggeritem": 573, "abfragemog": 573, "War": 573, "eingabewert": [574, 577], "uberscheit": [574, 577], "unterscheit": [574, 577], "hysterese_input": 574, "hysterese_it": 574, "beschatt": [574, 589, 638, 682], "mindestdau": 574, "glied": [574, 693], "beschattung_2": 574, "einschalthell": 574, "tv_verbrauch": 574, "tv_status": 574, "lvalu": [575, 577], "mlvalu": [575, 577], "variab": 575, "geschwung": 575, "Eins": 575, "gemappt": 575, "mappend": 575, "anzuw": [575, 583], "low_limit": 575, "lognachricht": 575, "adressi": 576, "ungewollt": 576, "auslost": 576, "itema1": 576, "itemb": 576, "itema2": 576, "itemc": 576, "itemd": 576, "permanentspeich": 577, "besipiel": 577, "evaluation": [577, 645, 646, 653, 655], "hysteresis_input": 577, "hysteresis_upper_threshold": 577, "hysteresis_lower_threshold": 577, "k1": [577, 579, 641], "k2": [577, 579, 641], "log_mapping": 577, "schwellwertbereich": 577, "verlasst": 577, "betritt": 577, "stuktur": 578, "treee": 578, "fliesskomma": 579, "arbeitsspeicherauslast": 580, "garbag": [580, 632], "moonphas": 580, "mondphas": [580, 599, 636], "moonlight": 580, "hohenwinkel": 580, "bogenmass": [580, 599, 636], "sun_position": [580, 638, 669], "zugriffsbeispiel": 580, "diskspeich": 580, "diskfre": 580, "freier": 580, "laufwerk": 580, "disksiz": 580, "diskusagepercent": 580, "ephem_version": 580, "facility": [582, 584], "verworf": 583, "unterdruck": 583, "cherrypy_filt": 583, "manchmal": 583, "lautend": 583, "aufeinand": 583, "darauffolg": 583, "listenform": 583, "examplefilt": 583, "kompromiss": 584, "detailreichtum": 584, "supportanfrag": 584, "datumsformat": 584, "verliert": 585, "w0": 585, "w6": 585, "jann": 585, "dran": 585, "1699220771": 585, "133886": 585, "jahr_stund": 585, "csv_fil": 585, "test_": 585, "xten": 585, "txt_fil": 585, "losgelost": 585, "memory_heiz": 585, "mem_heiz": 585, "gefugt": 585, "shng_heizung_fil": 585, "vorkommnis": 586, "festzuhalt": 586, "befass": 586, "artikelmeng": 586, "stil": 586, "sprintf": 586, "variableninhalt": 586, "uneingeschrankt": [586, 622], "formatierungsoption": 586, "pythom": 587, "prinzipi": 587, "logik_be": 588, "importier": [589, 598], "verfuf": 589, "uberleb": 589, "myvar1": 589, "myvar2": 589, "func1": 589, "func2": 589, "init_valu": 589, "_last_valu": 589, "newvalu": 589, "freigabe_sued": 589, "laufed": 589, "existert": 589, "mis": [589, 653], "defnini": 590, "wartbar": 590, "einschaltet": 590, "neuer_wert": 591, "check_item": [591, 649, 654], "vorhandensein": 591, "wiederherzustell": 591, "propery": 591, "variablenzuweis": 591, "testlogik1": 591, "ausfuhrungsumstand": 592, "logicnameh": 592, "pfadbestandteil": 592, "hallway": 592, "prioritatsangab": 592, "standardlogg": 593, "logikobjekt": 594, "logisch": [594, 671], "unterbund": 594, "persisti": 594, "infromation": 594, "laufzeitumgeb": 594, "source_detail": [594, 641], "241": 594, "teit": 594, "objet": [595, 612], "source_logic": 595, "typenwandl": 595, "mqtt_demo": 595, "logic_publish_topic": 595, "inspect": 595, "logic_subscribe_topic": 595, "mydict": 595, "accessabl": 595, "test_mqtt": 595, "topic2": 595, "sub2": 595, "definier": 596, "persistenz": 596, "ubersteht": 596, "persist": 596, "eins": 597, "anbietet": 597, "plugin_konfiguration": 597, "local_knxd": 597, "use_project_fil": 597, "pluginfunktion": 597, "miscellaneous": 598, "pseudo": [598, 643], "synchronized": 598, "planet": 598, "star": 598, "folgeversion": 598, "feriertag": [599, 634], "geleifert": [599, 634], "feiertagsnam": [599, 634], "fromdat": [599, 634], "ferientag": [599, 634], "zeitdifferenz": [599, 634], "wochenstart": [599, 634], "jahresstart": [599, 634], "ward": [599, 634], "vorberechnet": [599, 634], "integerwert": [599, 634], "startdatum": [599, 634], "5989481": [599, 636], "0459898": [599, 636], "meeresspiegel": [599, 636], "sonnenstandsberechn": [599, 636], "ergbnis": [599, 636], "sonnenuntergangsberechn": [599, 636], "sunset_tw": [599, 636], "abenddammer": [599, 636], "sonnenaufgangsberechn": [599, 636], "sunrise_tw": [599, 636], "morgendammer": [599, 636], "mondstandsberechn": [599, 636], "monduntergangsberechn": [599, 636], "moonset_tw": [599, 636], "mondaufgangsberechn": [599, 636], "moonrise_tw": [599, 636], "beleuchtet": [599, 636], "neumond": [599, 636], "vollmond": [599, 636], "halbmond": [599, 636], "taupunktberechn": 599, "zeituberschreit": 599, "feuchtigkeitswert": 599, "konfigurationszeit": 601, "angular": [612, 643], "manipuli": 612, "restresourc": 612, "mixin": 612, "dispatching": 612, "rough": 612, "usercontroll": 612, "postcontroll": 612, "as_html": 612, "expose_resourc": 612, "destroyself": 612, "rest_instantiat": 612, "slug": 612, "rest_creat": 612, "rest_childr": 612, "extra_action": 612, "byusernam": 612, "bob": 612, "joe": 612, "owned": 612, "pluginscontroll": 612, "pluginsinstalledcontroll": 612, "pluginsconfigcontroll": 612, "pluginsinfocontroll": 612, "shng_url_root": 612, "blog_url": 612, "pluginsapicontroll": 612, "pluginslogicparameterscontroll": 612, "plugincontroll": 612, "jwt_secret": 612, "get_body": 612, "test_for_old_conf": 612, "get_config_filenam": 612, "handle_plugin_action": 612, "url_root": 612, "plgsection": 612, "administrationinterfac": 612, "ce": 612, "impl\u00e9ment": 612, "ablaufdau": 612, "loginzeitpunkt": 612, "expiration": [612, 652], "counting": 612, "temps": [612, 653], "heur": 612, "partir": 612, "d\u00e9lai": 612, "attent": 612, "obtenir": 612, "donn\u00e9": 612, "chemin": 612, "compl\u00e8t": 612, "arborescenc": 612, "searching": [612, 655], "caract\u00e8r": 612, "entr\u00e9s": 612, "d\u00e9marr": 612, "recherch": 612, "utilis": 612, "displaying": [612, 653], "larg": [612, 643, 654], "taill": 612, "morceaux": 612, "lus": 612, "lor": 612, "affichag": 612, "journaux": 612, "volumineux": 612, "on_off": 612, "admit": [614, 619], "initialize_payload_protocol": 616, "get_payload_protocol_by_id": 616, "get_tls_port": 616, "get_use_tl": 616, "ws_serv": 616, "ssl_context": 616, "handle_new_connection": 616, "unregist": 616, "log_connection_event": 616, "disconnection": 616, "client_address": 616, "get_payload_us": 616, "protocol_path": 616, "encrypted": 616, "geoffenet": 617, "zunehm": [618, 622, 641, 692], "tirvial": 618, "voraussetzt": [618, 638], "standardisi": 618, "elch": 619, "genmeinsam": 619, "klassisch": 621, "rahmencod": 621, "erfind": [621, 622, 693], "plugintyp": 621, "idealfall": [621, 681, 685], "intelligent": [621, 622], "auskommt": 621, "konversion": 621, "gebor": [622, 693], "fasst": 622, "transformiert": 622, "datentransformation": 622, "geratespezif": 622, "sdpprotocol": 622, "binarprotokoll": 622, "sdpconnection": 622, "verbindungseb": 622, "kommunikationsmodul": 622, "pluginspezif": 622, "protokolldefinition": 622, "standarddatei": 622, "sdp_viessmann": 622, "naiv": 622, "intelligenz": 622, "item_attr": 622, "opcod": 622, "0101": 622, "reply_patt": 622, "dev_datatyp": 622, "mult": 622, "gettempa": 622, "anlagenstatus": 622, "b000": 622, "operatingmod": 622, "md_read_initial": 622, "lookup_it": 622, "getbetriebsart": 622, "hk1": 622, "b020": 622, "cmd_setting": 622, "force_min": 622, "force_max": 622, "getmanuell": 622, "setmanuell": 622, "heizbetrieb": 622, "1x": 622, "temp2": 622, "outdoor_fanspeed": 622, "1a52": 622, "getspdfanout": 622, "outdoor": 622, "status_fanspeed": 622, "1a53": 622, "getspdfan": 622, "lueft": 622, "kompressor_freq": 622, "1a54": 622, "getspdkomp": 622, "compressor": 622, "sollleistungverdicht": 622, "5030": 622, "getpwrsollverdicht": 622, "anlagenuebersicht": 622, "sekunda": 622, "0484": 622, "returnstatus": 622, "getstatussekp": 622, "sekundaerpump": 622, "048d": 622, "getstatuspump": 622, "zirkulation": 622, "0490": 622, "getstatuspumpezirk": 622, "zirkulationspump": 622, "gettempraumsollnormal": 622, "raumsolltemperatur": 622, "soll_reduziert": 622, "2001": 622, "gettempraumsollred": 622, "soll_party": 622, "gettempraumsollparty": 622, "0105": 622, "gettempsekvl": 622, "vorlauftemperatur": 622, "gettempvlsoll": 622, "vorlaufsolltemperatur": 622, "16b2": 622, "gettempsekvlmittel": 622, "energiebilanz": 622, "ruecklauf": 622, "gettempsekrl": 622, "ruecklauftemperatur": 622, "16b3": 622, "gettempsekrlmittel": 622, "rl1": 622, "heizkennlini": 622, "2006": 622, "gethklniveau": 622, "2007": 622, "gethklneig": 622, "010d": 622, "gettempwwistob": 622, "warmwassertemperatur": 622, "gettempwwsoll": 622, "betriebsdat": 622, "warmwassersolltemperatur": 622, "0494": 622, "getstatusventilww": 622, "waermepump": 622, "ww1": 622, "werttransformation": 622, "sample_smartdevice_plugin": 622, "transparent": 622, "protokollklass": 622, "sdpprotocoljsonrpc": 622, "datenformatier": 622, "protokolltyp": 622, "kw2": 622, "handshak": 622, "verbindungsschicht": 622, "wahlweis": 622, "netzwerkbasiert": 622, "verbindungsklass": 622, "sdpconnectionnettcprequ": 622, "sdpconnectionnettcpclient": 622, "sendeverbind": 622, "asnychron": 622, "datenempfang": 622, "sdpconnectionnetudprequ": 622, "sdpconnectionserial": 622, "sdpconnectionserialasync": 622, "dt_non": 622, "testklass": 622, "datenweitergab": 622, "dt_raw": 622, "dt_bool": 622, "dt_int": 622, "dt_num": 622, "dt_str": 622, "dt_list": 622, "dt_dict": 622, "dt_tupl": 622, "dt_byt": 622, "dt_bytearray": 622, "dt_json": 622, "dt_webservic": 622, "typecast": 622, "strukturi": 622, "standardklass": 622, "sdpcommandstr": 622, "textbasiert": 622, "textprotokoll": 622, "datenextraktion": 622, "sdpcommandjson": 622, "sdpcommandviessmann": 622, "functional": [623, 649, 655], "converting": [623, 655, 679], "easi": 623, "update_plugin_conf": 623, "resumed": 623, "on_susp": 623, "on_resum": 623, "set_susp": 623, "recall": 623, "send_command": 623, "return_result": 623, "on_data_received": 623, "dispatch_data": 623, "read_all_command": 623, "is_valid_command": 623, "nonetyp": [623, 653, 655], "get_lookup": 623, "has_recursive_custom_attribut": 623, "set_custom_it": 623, "parse_item": 623, "xx_custom": 623, "on_connect": 623, "on_disconnect": 623, "read_initial_valu": 623, "_read_initial_valu": 623, "hieraus": 625, "uberfuhr": 625, "sptzen": 625, "vertief": 627, "make_venv": [627, 630], "environement": 627, "auspack": 627, "compili": 628, "gcc": 628, "vorinstalliert": 628, "libssl": 628, "libffi": 628, "libsqlite3": 628, "libreadlin": 628, "libncursesw5": 628, "tk": 628, "libgdbm": 628, "libc6": 628, "libbz2": 628, "zlib1g": 628, "xz": 628, "compressed": [628, 648], "tarball": 628, "traget": 628, "verzeichnisrecht": 628, "archivs": 628, "xf": 628, "konfigurationsskript": 628, "navigi": 628, "fortfahr": 628, "altinstall": 628, "pflicht": 629, "py_3": [629, 630], "nu": 629, "ergebiss": 629, "wirk": 629, "schaff": 630, "erweiterbar": 630, "vorzug": 630, "virtuall": 630, "norwend": 630, "rekirsiv": 630, "py_310": 630, "stadium": 632, "initialisert": 632, "umkopiert": 632, "konfigurationsdateienb": 632, "konfiguriet": 632, "daemonized": 632, "versionsinformation": 632, "plausibl": 632, "speicherstruktur": 632, "_init_prerun": 632, "berech": [632, 638], "watch_item": [632, 641], "gc": 632, "pip3_command": [635, 646], "autmat": 635, "einspiel": 635, "_logg": 638, "leveln": 638, "lamellen_oeffnung_ost": 638, "beschattungssteuer": 638, "stellung": 638, "wohnbereich": 638, "schliessung": 638, "87": 638, "84": 638, "weitergab": 638, "lamellen_oeffnung_sued": 638, "69": 638, "usewrfunction": 638, "reload_all": 638, "eingibt": 638, "14th": 639, "6th": 639, "january": 639, "31st": 639, "27th": 639, "21th": 639, "octob": 639, "10th": 639, "2011": 639, "21st": 639, "09th": 639, "buxfix": [641, 649, 671, 672, 674, 675], "belass": 641, "malformed": 641, "heraufgesetzt": 641, "cve": 641, "18074": 641, "deep": [641, 655], "langerfrist": 641, "confattribut": 641, "korrigiert": [641, 672, 673, 674], "webfont": 641, "ablos": 641, "vorwarn": 641, "sin": 641, "gehandled": 641, "ruckwartskompatibel": 641, "searchabl": 641, "conversation": 641, "konversation": 641, "programmierbar": 641, "arbeitsgrupp": 641, "codekommentar": 641, "trigger1": 641, "6er": 641, "fritzdect301": 641, "autocomplet": [641, 653, 655, 671], "pluginmethod": 641, "auswahlt": 641, "map_icon": 641, "gemapped": 641, "scapy": [641, 643], "beerbt": 641, "vermeidet": 641, "cleanups": 641, "konvertierungsfunktion": 641, "bereinigt": 641, "required_package_imported": 641, "funkumsetz": 641, "dpt_temproomsetpsetf16": 641, "mutlitpl": 641, "initialisation": 641, "nowait": 641, "schaltfunktion": 641, "503er": 641, "pretty_thread_nam": 641, "cryptic": 641, "id_0": 641, "id_1": 641, "id_2": 641, "id_3": 641, "nokia_health": 641, "ruckubernahm": 641, "neuimplementier": 641, "webgui": [641, 674], "xiaomi_data_typ": 641, "miflora_data_typ": 641, "beigetret": 641, "kennzeich": 641, "tellstick": [641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "netio230b": [641, 643, 644, 645, 646, 649, 667, 691], "smawb": [641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "boxcar": [641, 643, 644, 645, 646, 649, 667, 691], "openenergymonitor": [641, 643, 644, 645, 646, 649, 670, 691], "neubau": [641, 675], "requiremment": [641, 675], "installationsanleit": [641, 675], "rasenmahrobot": 642, "ansteuerng": 642, "ubiquiti": 642, "netzwerkkomponent": 642, "rework": [642, 646, 649, 653, 654, 655, 674], "book": 642, "get_calllist": 642, "get_contact_name_by_phone_numb": 642, "get_phone_numbers_by_nam": [642, 670], "7ms": 642, "adjusted": [642, 643, 644, 645, 646, 647, 648, 649, 651, 652, 653, 655], "doman": 642, "playerinformation": 642, "befehlsabfolg": 642, "hardcoded": [642, 646], "warteschlang": 642, "abwart": 642, "kodigerat": 642, "verbindungshandling": 642, "wouldn": 642, "callersourc": 642, "abfragbar": 642, "get_attributevalu": 642, "gegang": [643, 644, 645, 646, 647, 648, 649, 650, 691], "interessant": [643, 644, 645, 646, 691], "einzug": [643, 644, 645, 646, 691], "335": 643, "keeping": [643, 655], "backed": 643, "national": 643, "nesting": [643, 655], "expand": [643, 646], "parapet": 643, "ignoring": [643, 655], "subnod": 643, "updata": 643, "chartjs": [643, 649], "npm": 643, "sticky": 643, "scroll": [643, 651], "heart": 643, "vacuum": [643, 655], "school": 643, "federat": 643, "xioami_vac": 643, "hkrt": 643, "patch": 643, "compact": 643, "buggy": 643, "raspis": [643, 652], "recurring": 643, "continued": 643, "unpacking": 643, "trashfold": 643, "instantiat": 643, "miflorapoll": 643, "mqtt1": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 656, 691], "reimplemented": [643, 649, 653], "readout": [643, 646, 656], "reworked": [643, 644, 645, 655], "stop_controll": 643, "stop_it": 643, "319": 643, "faulty": [643, 646], "misinterpretation": 643, "upgraded": [643, 647, 648, 654], "optimization": 643, "stateening": 643, "immediat": 643, "leaving": [643, 653], "prettify": [643, 674], "welcome_msg": 643, "bye_msg": 643, "sv": [643, 645, 646, 648, 650, 651, 652, 653, 654], "lastvalu": [643, 649], "configued": 643, "developed": [643, 644, 645, 646, 649, 650, 651, 691], "succeeding": [643, 644, 645, 646, 649, 650, 651, 691], "survey": [643, 644, 645, 649, 691], "ecmd": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "elro": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "iaqstick": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "snom": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 665, 691], "vr100": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "nma": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 667, 691], "moreov": [643, 644, 645, 646, 649, 650, 651, 691], "sample_modul": 643, "enhancement": [643, 649, 653, 654], "hotfix": 644, "showed": [644, 645], "gitignor": [644, 650, 655], "aris": 644, "mandantory": 644, "passing": [644, 654], "extraction": [644, 655], "incomplet": [644, 646, 652, 681], "docu": [644, 646, 648, 649, 650, 651, 652, 653, 655, 656], "enfoce_chang": 645, "swap": 645, "pluguin": 645, "fit": [645, 646, 653], "ipad": [645, 653], "landscap": 645, "layout": [645, 651, 652, 655], "placed": 645, "contol": 645, "UNDER": 645, "get_param_valu": 645, "169": 645, "redesigned": 645, "iteration": [645, 646, 649, 653], "isolated": [645, 646], "database_acl": 645, "thw": 645, "counted": 645, "clarified": 645, "skipping": 645, "2y": 645, "39i": 645, "15s": 645, "inth": 645, "insteead": 645, "gpio_init": 645, "gpio_invert": 645, "reporting": 645, "streamlined": [645, 646, 653], "assignment": [645, 649], "icalupdat": 645, "get_paramet": 645, "conformanc": 645, "_update_status": 645, "adjustment": [645, 649, 651, 653], "stal": 645, "submodel": 645, "multisensor": 645, "xf7": 645, "typo": [645, 646, 648, 651, 652, 653, 656, 671], "386": 645, "_decod": 645, "playstop": 645, "optimiz": [645, 652, 655], "series_cancel": [645, 646], "segment": 645, "conform": [645, 649, 656], "sidebar": [645, 682], "arbeitsstand": [646, 656, 691], "eingefror": 646, "ensured": 646, "stays": 646, "usind": 646, "grandpartent": 646, "_learned": 646, "catching": [646, 649, 653], "temporarily": [646, 649, 653, 655], "calulating": 646, "experimental": 646, "portalock": 646, "independant": 646, "exitcod": [646, 649], "isolating": 646, "refactored": 646, "greatgrandparent": 646, "shng_status": 646, "previous_change_by": 646, "previous_update_by": 646, "itemprefixdefinition": 646, "insensitiv": [646, 651], "iowait": 646, "portabl": 646, "deadlock": 646, "__file__": 646, "threadinfo": 646, "cwd": [646, 654], "dedicated": [646, 651], "pip_log_nam": 646, "waiting": [646, 655], "restarting": [646, 652, 653], "pyjwt": [646, 648, 649], "incompatibiliti": 646, "upcoming": 646, "spinn": 646, "viewport": 646, "cheroot": [646, 655], "incompatibility": 646, "janus": 646, "create_task": 646, "hickups": 646, "test_smarthom": 646, "mocksmarthom": 646, "lpb": 646, "1coderooki": 646, "brid": 646, "aciv": 646, "color_control": 646, "freshwat": 646, "compared": 646, "simplified": 646, "viesmann": 646, "alexap3": 646, "zone4": 646, "avm_wlan_index": 646, "cit": 646, "widget_avm": 646, "occurring": [646, 649, 652], "stall": 646, "greyed": 646, "padded": 646, "mous": 646, "x2_plus": 646, "lineending": 646, "widget_enigma2": 646, "eeppars": 646, "eeps": 646, "acc": 646, "struc": 646, "visu_cal": 646, "runtimeerror": 646, "weekdays": 646, "get_process_info": 646, "dpts": [646, 663], "reordered": 646, "442": 646, "usability": 646, "metadatalirc": 646, "major": [646, 650, 654, 655], "imap4rev1": 646, "refactoring": [646, 655], "robustness": [646, 649, 651, 656], "preliminary": 646, "dustbin": [646, 649], "gotobas": 646, "availability": [646, 652], "libconnection": 646, "optimized": [646, 653], "rain_lay": 646, "cloud_lay": 646, "refined": [646, 655], "scaffold": 646, "robonect_remote_index": 646, "robonect_data_typ": 646, "get_mower_information_from_api": 646, "alread": 646, "reformatted": 646, "snipped": 646, "scantyp": 646, "attribute_prefix": 646, "se_delay": 646, "changedby": 646, "updatedby": 646, "mixed": 646, "incorrect": 646, "suspend_": 646, "supsendduration": 646, "telemetry": 646, "enrgy": 646, "time_period": 646, "v12": 646, "jobqueu": 646, "unifi_client_mac": 646, "consecutiv": 646, "scipy": [646, 650, 652, 653, 655], "sv_blocksiz": [646, 682], "discoverabl": 646, "robovac": 646, "revert": [646, 655], "unabl": 646, "_data": 646, "_connected": 646, "xeps": 646, "preceding": [646, 649, 650], "resid": [646, 649, 650, 655], "plugin_archiv": [646, 649, 650, 652, 653, 655, 656], "jointspac": 646, "_pv_1_3_4": 646, "modbus_shng_1_2": 646, "visu_shng_1_2": 646, "_pv_1_1_3": 646, "_pv_1_4_5": 646, "listing": [646, 655], "comply": 646, "tanslat": 646, "tried": 647, "1005": 647, "serialization": 647, "occasion": 647, "terminating": 647, "alexa_cmd_xx": 647, "rearranged": 647, "networkid": 647, "storm": 647, "unreach": 647, "dpt5999": 647, "lux2": 647, "27461": 647, "alphainnotec": 647, "1604934": 647, "post1604934": 647, "oerationlog": 647, "catched": [647, 652, 653], "pasg": 647, "masterfil": 647, "autorenew": 647, "eventserverthread": [647, 649], "renew": [647, 688], "reintroduc": 647, "urgent": 647, "undon": 648, "ability": [648, 653, 669], "surfaced": 648, "endless": 648, "allowd": 648, "api_conf": 648, "0a1": 648, "systemconf": 648, "isn": 648, "propperly": 648, "get_device_log": 648, "2nd": 648, "get_device_log_from_tr064": 648, "get_device_log_from_lua": 648, "previously": [648, 652, 655, 656], "expected": [648, 655], "readlogcount": 648, "itam": 648, "draft": 648, "unneeded": 648, "caught": [648, 655], "create_new_usernam": [648, 649], "remove_usernam": 648, "thirdparty": 648, "breidg": 648, "dresd": 648, "elektron": 648, "log_own_packet": 648, "bump": [648, 649, 651, 652, 653, 654, 655, 656], "get_favourit": 648, "initcommand": 648, "mailrvc": 648, "handing": 648, "svgenerator": 648, "speach": 648, "developement": 648, "triggertim": [649, 650, 653, 654], "intercept": 649, "mismatching": 649, "struct_xyz": 649, "truncated": [649, 650], "evalcheck": 649, "grouped": [649, 655, 681], "randomized": 649, "411": 649, "sorting": [649, 651, 653, 655], "1001": 649, "mock": [649, 655], "shngversion": [649, 656], "travis": [649, 652, 655], "ci": 649, "fieldbus": 649, "rar": 649, "_update_home_automation": 649, "unavailabl": 649, "leading": [649, 651], "unintentional": 649, "eventhandlerthread": 649, "sessionid": 649, "reinitialization": 649, "logl": 649, "enhanc": [649, 650], "is_aliv": 649, "fstring": 649, "enocean_devic": 649, "updategoupitem": 649, "qhue": 649, "mdns": 649, "degraded": [649, 653], "mixup": 649, "introduc": [649, 650, 651, 652, 653, 654, 655, 663], "favourit": 649, "start_robot": 649, "get_map_boundari": 649, "boundari": 649, "dismiss_current_alert": 649, "indentation": 649, "dismiss": 649, "desciption": 649, "cached": [649, 655], "bumped": [649, 650, 651, 652, 653, 654, 655, 656], "owbas": 649, "metadaa": 649, "measur": [649, 653], "keycheck": 649, "iterat": 649, "pgrad": 649, "wipecach": 649, "intentation": 649, "13_sonstig": 649, "evaluating": 649, "start_tim": 649, "rectangl": 649, "conditionlist": 649, "telegram_condition": 649, "outsourc": [649, 655], "overlay": 649, "clicking": 649, "xtension": 649, "adjustabl": 649, "moveed": 649, "return_list": 649, "clean_detail": 649, "ompatibility": 649, "loosing": 649, "myst": [649, 651], "thow": 650, "got": [650, 652], "succeed": 650, "numerical": 650, "my_": [650, 651], "simplyfy": 650, "__running": 650, "connect_on_s": 650, "update_by": [650, 673], "643": 650, "eventtim": 650, "_get_caller_typ": 650, "450": 650, "untested": 650, "_pv_1_5_12": 650, "depreciated": 650, "avm_tam_index": 650, "repetition": 650, "transmission": 650, "sigpip": 650, "sugg": [650, 651], "teach": 650, "perfect": 650, "retreival": 650, "logout": 650, "slight": [650, 653], "concerning": 650, "udpdat": 650, "unspecified": 650, "isaliv": 650, "uzsu_": 650, "uzsu_sun": 650, "residuum": 650, "hopefully": [650, 652, 655], "consolidated": 650, "sunevent": 651, "supress": 651, "_cast_duration": [651, 655], "fpr": 651, "pytz": [651, 652], "fixedhead": [651, 654], "adjusting": [651, 653], "cancellation": 651, "update_all_seri": 651, "supporting": [651, 663], "indicator": 651, "pumps": 651, "1a28170": 651, "reconfigured": 651, "bugfixing": 651, "changelog": [651, 653], "user_docu": 651, "avm_home_automation": 651, "get_device_log_from_lua_separated": 651, "dect440": 651, "adopt": 651, "timed": 651, "reimplement": [651, 655], "1428215": 651, "1764605": 651, "post1764605": 651, "requiremt": 651, "informativ": 651, "errorhandling": 651, "tweaked": 651, "capability": [651, 653], "dded": 651, "shwidget": [651, 687], "subfold": 651, "infoblock": [651, 655], "unhandled": 651, "abortion": 651, "automated": 651, "deprecation": [652, 654], "consolidating": 652, "493": 652, "api_logg": [652, 655], "lead": [652, 667], "allgmein": 652, "prs": 652, "workflow": [652, 653, 654], "pull_requ": 652, "test_dispatch_workflow": 652, "plugins_all": [652, 653, 654, 655, 656], "hkrs": 652, "max_ag": 652, "reinserted": 652, "sampled": 652, "rounding": 652, "removeold_cycl": 652, "dumping": 652, "skipped": 652, "default_maxag": 652, "max_delete_logentri": 652, "plausibility": 652, "conflict": [652, 653, 655, 659], "openlay": 652, "packed": 652, "recogniz": 652, "configurabl": [652, 653, 655], "safety": 652, "undeclared": 652, "decoding": [652, 653, 655, 656], "not_on_charge_bas": 652, "dt_weekday": 652, "accepting": 652, "cosmetics": [652, 653], "connectionreseterror": 652, "update_sun": 652, "dry": 652, "unneccessary": [652, 655], "seriescalculation": 652, "canceled": 652, "maxcalculatedcount": 652, "seriescalculated": 652, "maxcountcalculated": 652, "correclty": 652, "solv": 652, "potentially": 652, "_bytes2int": 652, "byteord": 652, "ruhestand": [652, 653, 655, 656], "repositiory": [652, 653, 655, 656], "practic": 652, "proxy_param": [652, 688], "shpinx": 652, "zumal": 653, "pyton": 653, "498": 653, "cah": 653, "expansion": [653, 672], "preparing": 653, "editabl": 653, "_item_lookup_dict": 653, "get_device_command": 653, "get_item": 653, "device_command": 653, "get_items_for_command": 653, "reversed": 653, "oposit": 653, "evaluat": [653, 655], "entir": 653, "systeminfo": [653, 654, 655, 670, 671], "acordingly": 653, "defelop": 653, "522": 653, "ovwerview": 653, "truncat": 653, "autorefresh": 653, "throw": 653, "divs": 653, "autoupdat": 653, "homescre": 653, "iphon": [653, 688], "canceling": 653, "abos": 653, "cancel_log": 653, "cancel": 653, "monitored": [653, 654], "streamlining": 653, "mockup": [653, 655], "avm_attribut": 653, "causing": [653, 654], "blacklist": 653, "failing": [653, 655], "localy": 653, "readback": 653, "networklog": 653, "orphan": 653, "ude": 653, "dorumentation": 653, "whiwch": 653, "logcount": 653, "674": 653, "incorporated": 653, "667": 653, "hue_refence_light_id": 653, "any_on": 653, "_light_basic": 653, "rescheduled": 653, "673": 653, "preparation": 653, "_cacheread": 653, "658": 653, "adaptation": 653, "vastly": 653, "warn_aft": 653, "spamming": 653, "partly": 653, "reverted": 653, "oncecall": 653, "f2ix": 653, "648": 653, "regulation": 653, "log_cancel": 653, "670": 653, "darkmod": 653, "among": 653, "massiv": 653, "6761e43": 653, "_play_sonos_radio": 653, "send_attribut": 653, "nov": 653, "flat": 653, "beautifying": 653, "reducing": 653, "_full": 653, "rad": 653, "required_packag": 653, "flaw": 653, "depricated": 653, "backup_restor": [653, 676], "proposed": 653, "tarfil": 653, "extractall": 653, "permission": [653, 655], "measure_cpu_speed": 653, "builddevdoc": 653, "joined": 654, "pr_unitt": 654, "clash": 654, "conflicting": 654, "sectionand": 654, "insight": 654, "killed": 654, "read_macosinfo": 654, "cpu_speed_class": 654, "glitch": 654, "protocol_over_reverseproxy": 654, "1011": 654, "colreord": 654, "bumed": 654, "lightbulb": 654, "fritzdect": 654, "tx_id_offset": 654, "imroved": 654, "dtend": 654, "parasit": 654, "_parasitic_power_wait": 654, "io_cycl": 654, "clearing": [654, 655], "ordering": 654, "699": 654, "av_transport": 654, "numpy": [654, 655], "superfluous": 654, "environemnt": 654, "build_plugin_config_fil": 654, "getdefaultlocal": 655, "cylc": 655, "__run_attribute_eval": 655, "fixing": 655, "perviously": 655, "possibilit": 655, "do_before_s": 655, "fragmented": 655, "buffering": [655, 656], "get_command_from_reply": 655, "ratelimit": 655, "hundred": 655, "thousand": 655, "_task": 655, "initializing": 655, "_split_requirement": 655, "2h5m25s": 655, "serializabl": 655, "api_logics": 655, "adm": 655, "deleting": 655, "hosting": 655, "hostmaps": 655, "msgs": 655, "set_cooki": 655, "get_cooki": 655, "bordered": 655, "select_menu": 655, "uncertain": 655, "decodabl": 655, "repos": [655, 656], "urlencod": 655, "media_typ": 655, "circumvent": 655, "problematic": 655, "poll_tr064": 655, "tab5": 655, "start_call": 655, "get_log": 655, "get_logs_from": 655, "regression": 655, "fritz_hom": 655, "expired": 655, "logics_blockly_cod": 655, "variabledb_": 655, "namedb_": 655, "sh_logics": 655, "refix": 655, "restartability": 655, "cleanness": 655, "robustify": 655, "database_it": 655, "db_addon_ignore_value_list": 655, "comparision": 655, "coding": 655, "_handle_waermesumm": 655, "_handle_gruenlandtemperatursumm": 655, "_handle_zaehlerstand": 655, "_query_log_timestamp": 655, "substring": 655, "_handle_onchang": 655, "database_item_path": 655, "db_addon_it": 655, "optimizing": 655, "handle_onchang": 655, "verbauch_last_24h": 655, "_handle_verbrauch": 655, "verbrauchsberechn": 655, "userdoc": 655, "reaction": 655, "loss": 655, "promis": 655, "wrongly": 655, "scroolbar": 655, "oauthlib": 655, "zeroconf": 655, "get_setting": 655, "pymodbis": 655, "boundary": 655, "neduced": 655, "503": 655, "intermediat": 655, "olog_text": 655, "mesag": 655, "piratewth": 655, "winddirectionstring": 655, "restructur": 655, "claus": 655, "rcswithch": 655, "gen2": [655, 693], "declination": 655, "reintroduced": 655, "play_radio": 655, "crash": 655, "_play_radio": 655, "play_alert_all_speak": 655, "evaluated": 655, "refactor": 655, "workload": 655, "suspendtim": 655, "graphics": 655, "panzoom": 655, "se_status": 655, "se_status_eval": 655, "suspend_dynamic": 655, "redrawn": 655, "elog": 655, "reintroducing": 655, "deepcopy": 655, "releasedby": 655, "gon": 655, "stateenginevalu": 655, "reordering": 655, "get_petrol_station": 655, "interview_all_devic": 655, "retained": 655, "new_event_loop": 655, "unneccassary": 655, "pep8": 655, "approach": 655, "partial": 655, "splitting": 655, "rgbxy": 655, "checkplugin": 655, "speedup": 656, "mutabl": 656, "persited": 656, "resolving": 656, "lately": 656, "exceeded": 656, "unnamed": 656, "pyminversion": 656, "pymodbus2": 656, "unlimited": [656, 664], "strang": 656, "useless": 656, "headlin": 656, "mmm": 657, "okt": 657, "feb": 657, "splitted": 659, "logig": 660, "computing": 660, "enviroment": 662, "redesign": 663, "db_writ": 663, "db_read": 663, "mailbox_count": 663, "8p15": 663, "autogenerat": 664, "negated": 664, "contribution": [665, 666], "rieg": [665, 666], "happy": 665, "announc": 665, "cooperation": 665, "experienc": 665, "voip": 665, "config_string": 665, "visualisation": 665, "flot": 665, "workaround": 665, "urllib2": 665, "leakag": 665, "lemk": [666, 667], "alarmclock": 666, "cl": [666, 681], "dpt10": 666, "lar": 667, "bernau": 667, "mannmawg": 667, "honisch": 667, "mik": 667, "piep": 667, "mirko": 667, "hirsch": 667, "mptei": 667, "oliv": 667, "hinckel": 667, "xtcommerc": 667, "ast_db": 667, "knx_status": 667, "nw_udp_send": 667, "predefined": 667, "improving": 667, "easy_install3": 667, "conf2": 667, "2to3": 667, "idiom": 667, "yourlogicfil": 667, "pyc": 667, "print0": 667, "xarg": 667, "piled": 668, "decision": 668, "consilidat": 668, "incorporat": 668, "visu_unterstutzung_in_v1": 669, "whatsapp": 669, "anf": 670, "reject": 670, "migrationsanleit": 670, "radiation": 670, "polish": 670, "impelemtation": 670, "get_phone_nam": 670, "get_call_origin": 670, "avm_ddata_typ": 670, "superseded": 670, "problemat": [671, 672], "vorbeleg": 671, "verwechsl": 671, "develpoer_doc": 671, "nammensraum": 671, "kollision": 671, "versionsvertrag": 671, "persistiert": 671, "konfigurationsformat": 671, "sample_plugin_webif": 671, "expermental": 671, "konfigurationsuberpruf": 671, "f11": 671, "browserfen": 671, "zeilenumbruch": 671, "threadlist": 671, "befehlsbenenn": 671, "notifizier": 671, "enthaelt": 671, "prueft": 671, "unterstuetz": 671, "451": 671, "ebi": 671, "00364476": 671, "heligkeitssensor": 671, "lernmethod": 671, "restrukturiert": 671, "enable_stat": 671, "disable_stat": 671, "pruefsummenbehandl": 671, "eingefuehrt": 671, "aggregatsfunktion": 671, "summiert": 671, "abgefrag": 671, "protokollerweiter": 671, "anwenderdokumentation": [671, 672], "gecastet": 672, "herausgefiltert": 672, "nullhandl": 672, "gecachet": 673, "kbyt": 673, "kommentarblock": 673, "comfoair_trigg": 673, "set_power_stat": 673, "mulit": 673, "adaquat": 674, "konzentriert": 674, "guis": 674, "bunt": 674, "listendefinition": 674, "exportiert": 674, "gtemplat": 674, "jinja": 674, "submodul": 674, "zeilennumm": 674, "ausbau": 674, "usern": 674, "widerspruch": 674, "komplettuberarbeit": 674, "usabilityverbesser": 674, "querverlink": 674, "eingabfeld": 674, "animation": 674, "wertehistori": 674, "verspatet": 674, "samrthomeng": 674, "multipart": 674, "mitzuschick": 674, "refaktoriert": 674, "abfragemogich": 674, "sv2": 674, "datendatei": 674, "kommondo": 674, "fehlertollerant": 674, "fehlerbeheb": 674, "unterstutzng": 674, "konfigurationsattribut": 674, "telegram_info": 674, "anzustoss": 674, "publikation": 674, "wetterinfomation": 674, "hw": 674, "baim": 675, "gewandelt": 675, "getshngpid": 676, "sichert": 677, "backupfil": 677, "outputfil": 677, "allways": 677, "gegenlauf": 678, "zusammenstell": 678, "sammelt": 678, "hinfug": 678, "quellangab": 678, "23447": 680, "lcl": 681, "lsm": 681, "lst": 681, "lip": 681, "lia": 681, "disp_plugin": 681, "dispd_plugin": 681, "clc": 681, "list_all": 681, "list_classic": 681, "list_smart": 681, "list_stat": 681, "list_inc": 681, "list_compl": 681, "check_clist": 681, "check_ilist": 681, "list_version": 681, "followind": 681, "rea": 681, "dy": 681, "implememtiert": 682, "ubersteu": 682, "zugehori": 682, "unterseit": 682, "aufzeig": 682, "zusatzinfos": 682, "kaffeemaschin": 682, "gastezimm": 682, "geheizt": 682, "scene_cooking": [682, 683], "m_koch": 682, "m_kochen_kaffee2": 682, "kaffeeautomat": 682, "scene_coffee_maker_automatic": 682, "m_kochen_heiz": 682, "navigationseintrag": [682, 683, 686], "titelzeil": [682, 693], "control_all_on_off": 682, "fts_shutter_40": 682, "beleuchtungsautomat": 682, "light_light_dim_00": 682, "seitentyp": 682, "measure_current": 682, "separator_t": 682, "cat_separator": 682, "it_rout": 682, "konfigurationsnavigation": 682, "black": 682, "aussah": 682, "optik": 682, "mindestgross": 682, "auskomm": 682, "blockhoh": 682, "control_on_off": 682, "control_standby": 682, "schrank": 682, "steckdose_tu": 682, "dual": 682, "seitengenerier": 682, "dualblock": 682, "aufgeraumt": 682, "dieh": 682, "eingemischt": 682, "modifikation": 682, "aufgezeigt": 682, "multiaxis": 682, "mitgebracht": 682, "deprecated_widget": 682, "formula": 682, "widget_window": 682, "priv_widget": 682, "plot_temperatur": 682, "visu_insel": 682, "navigagion": 682, "nav_asid": 682, "nav_aside2": 682, "scene_livingroom": [682, 683], "obergeschoss": 682, "erdgeschoss": 682, "myitem": 682, "quasi": 683, "deckenleucht": 683, "tresenbeleucht": 683, "dimmbar": 683, "tresenlicht": 683, "siht": 683, "visublock01": 683, "visublock02": 683, "visublock03": 683, "arbeitsflach": 683, "auslief": 685, "visualisi": 685, "geruf": 685, "navogation": 686, "kopf": 686, "eingebettet": 686, "linksbund": 686, "zenzriert": 686, "rechtsbund": 686, "widget_rtr2": 687, "widget_dummy": 687, "dublett": 687, "ausschliesst": 687, "tiefergeh": 687, "glucklicherweis": 687, "verzeichis": 687, "sicheren": 688, "clientzertifikat": 688, "eigenstand": 688, "geofency": 688, "aufgesetzt": 688, "standardus": 688, "leitet": 688, "xkblayout": 688, "risikoland": 688, "blocki": 688, "maxmind": 688, "libgeoip1": 688, "miyuru": 688, "lk": 688, "maxmind4": 688, "gunzip": 688, "maxmind6": 688, "geoipv6": 688, "goneuland": 688, "ausstell": 688, "identitat": 688, "acm": 688, "challeng": 688, "einhang": 688, "4096": 688, "0000_key": 688, "csr": 688, "0000_csr": 688, "denial": 688, "angriff": 688, "howtoforg": 688, "besuch": 688, "debianubuntu": 688, "geoip_country": 688, "geoip_country_cod": 688, "allowed_country": 688, "kr": 688, "ru": 688, "cn": 688, "gh": 688, "sy": 688, "http_upgrad": 688, "connection_upgrad": 688, "ddos": 688, "client_header_timeout": 688, "client_body_timeout": 688, "cyberciti": 688, "biz": 688, "tips": 688, "http_user_agent": 688, "lwp": 688, "bbbik": 688, "msnbot": 688, "scrapbot": 688, "refer": 688, "http_ref": 688, "bab": 688, "forsal": 688, "girl": 688, "jewelry": 688, "lov": 688, "nudit": 688, "organic": 688, "pok": 688, "porn": 688, "sex": 688, "teen": 688, "ssl_session_cach": 688, "builtin": 688, "shared": 688, "unsich": 688, "ciph": 688, "ssl_ciph": 688, "anull": 688, "enull": 688, "3des": 688, "md5": 688, "rc4": 688, "hsts": 688, "try_fil": 688, "loc_websocket": 688, "loc_smartvisu": 688, "loc_alexa": 688, "loc_shng": 688, "upstream_cache_status": 688, "sameorigin": 688, "xss": 688, "nosniff": 688, "proxy_http_version": 688, "cert": 688, "ssl_client_escaped_cert": 688, "klapp": 688, "openvpn": 688, "ew_certs_dir": 688, "crl": 688, "private_key": 688, "default_crl_days": 688, "default_md": 688, "sha1": 688, "crlnumb": 688, "certification": 688, "authority": 688, "genrsa": 688, "des3": 688, "1095": 688, "ca_default": 688, "gencrl": 688, "keyfil": 688, "crldays": 688, "cakey": 688, "caserial": 688, "cacreateserial": 688, "pkcs12": 688, "clcert": 688, "inkey": 688, "p12": 688, "sftp": 688, "bestatigt": 688, "arcweb": 688, "securing": 688, "ssl_client_certificat": 688, "ssl_crl": 688, "ssl_verify_client": 688, "ssl_session_timeout": 688, "ssl_client_verify": 688, "durchlass": 688, "jew": 688, "testbar": 688, "403er": 688, "aufbaut": 688, "macbook": 688, "lua5": 688, "luarock": 688, "liblua5": 688, "libnginx": 688, "evanlab": 688, "luacrypto": 688, "rockspecs": 688, "rockspec": 688, "crypto": 688, "hass_access": 688, "hmac_secret": 688, "secretkey": 688, "computehmac": 688, "hmac": 688, "sha256": 688, "verify_status": 688, "ngx": 688, "ssl_client_cert": 688, "accessexpir": 688, "elseif": 688, "cookie_clientid": 688, "client_hmac": 688, "cookie_accesstok": 688, "access_expir": 688, "cookie_accessexpir": 688, "nil": 688, "tonumb": 688, "http_forbidd": 688, "access_by_lua_fil": 688, "perfekt": 688, "raspi3": 688, "intel": 688, "4790k": 688, "dhparam": 688, "reinkopiert": 688, "ssl_dhparam": 688, "ssllab": 688, "ssltest": 688, "versiert": 688, "fail2ban": 688, "firewall": 688, "unbefugt": 688, "verschaff": 688, "existent": 688, "serverzertifikat": 688, "erneuer": 688, "hook": 688, "ufw": 688, "postfix": 688, "dovecot": 688, "agre": 688, "tos": 688, "aufschluss": 688, "auszulief": 689, "neuer": 689, "grundverstandnis": 689, "abarbeit": 689, "abgewickelt": 690, "kontent": 690, "sv_enabled": 690, "sv_acl": 690, "sv_querydef": 690, "zertifikatdatei": 690, "zukundft": 690, "kurzubersicht": [692, 693], "esphom": 692, "systemseit": 693, "zeitlied": 693, "verschachtel": 693, "untereb": 693, "definitionsdatei": 693, "migriert": 693, "masseinheitenumrechn": 693, "umzieh": 693}, "objects": {"lib": [[126, 0, 0, "-", "config"], [127, 0, 0, "-", "connection"], [128, 0, 0, "-", "constants"], [129, 0, 0, "-", "daemon"], [130, 0, 0, "-", "db"], [131, 0, 0, "-", "env"], [132, 0, 0, "-", "item"], [135, 0, 0, "-", "item_conversion"], [136, 0, 0, "-", "log"], [137, 0, 0, "-", "logic"], [138, 0, 0, "-", "logutils"], [139, 0, 0, "-", "metadata"], [140, 0, 0, "-", "module"], [141, 0, 0, "-", "network"], [142, 0, 0, "-", "orb"], [143, 0, 0, "-", "plugin"], [146, 0, 0, "-", "scene"], [147, 0, 0, "-", "scheduler"], [148, 0, 0, "-", "shtime"], [149, 0, 0, "-", "shyaml"], [40, 0, 0, "-", "smarthome"], [150, 0, 0, "-", "tools"], [151, 0, 0, "-", "translation"], [152, 0, 0, "-", "utils"]], "lib.config": [[126, 1, 1, "", "add_struct_to_item_template"], [126, 1, 1, "", "merge"], [126, 1, 1, "", "merge_structlists"], [126, 1, 1, "", "nested_get"], [126, 1, 1, "", "nested_put"], [126, 1, 1, "", "parse"], [126, 1, 1, "", "parse_basename"], [126, 1, 1, "", "parse_conf"], [126, 1, 1, "", "parse_itemsdir"], [126, 1, 1, "", "parse_yaml"], [126, 1, 1, "", "remove_comments"], [126, 1, 1, "", "remove_digits"], [126, 1, 1, "", "remove_invalid"], [126, 1, 1, "", "remove_keys"], [126, 1, 1, "", "remove_keyword"], [126, 1, 1, "", "remove_reserved"], [126, 1, 1, "", "remove_special_listentries"], [126, 1, 1, "", "replace_struct_instance"], [126, 1, 1, "", "sanitize_items"], [126, 1, 1, "", "search_for_struct_in_items"], [126, 1, 1, "", "set_attr_for_subtree"], [126, 1, 1, "", "strip_quotes"]], "lib.connection": [[127, 2, 1, "", "Base"], [127, 2, 1, "", "Client"], [127, 2, 1, "", "Connections"], [127, 2, 1, "", "Server"], [127, 2, 1, "", "Stream"]], "lib.connection.Client": [[127, 3, 1, "", "connect"]], "lib.connection.Connections": [[127, 3, 1, "", "check"], [127, 3, 1, "", "close"], [127, 3, 1, "", "monitor"], [127, 3, 1, "", "poll"], [127, 3, 1, "", "register_connection"], [127, 3, 1, "", "register_server"], [127, 3, 1, "", "trigger"], [127, 3, 1, "", "unregister_connection"]], "lib.connection.Server": [[127, 3, 1, "", "accept"], [127, 3, 1, "", "close"], [127, 3, 1, "", "connect"], [127, 3, 1, "", "handle_connection"]], "lib.connection.Stream": [[127, 3, 1, "", "balance"], [127, 3, 1, "", "close"], [127, 3, 1, "", "discard_buffers"], [127, 3, 1, "", "found_balance"], [127, 3, 1, "", "found_terminator"], [127, 3, 1, "", "handle_close"], [127, 3, 1, "", "handle_connect"], [127, 3, 1, "", "send"]], "lib.daemon": [[129, 1, 1, "", "check_sh_is_running"], [129, 1, 1, "", "daemonize"], [129, 1, 1, "", "kill"], [129, 1, 1, "", "read_pidfile"], [129, 1, 1, "", "remove_pidfile"], [129, 1, 1, "", "write_pidfile"]], "lib.db": [[130, 2, 1, "", "Database"]], "lib.db.Database": [[130, 3, 1, "", "close"], [130, 3, 1, "", "commit"], [130, 3, 1, "", "connect"], [130, 3, 1, "", "connected"], [130, 3, 1, "", "cursor"], [130, 3, 1, "", "execute"], [130, 3, 1, "", "fetchall"], [130, 3, 1, "", "fetchone"], [130, 3, 1, "", "lock"], [130, 3, 1, "", "release"], [130, 3, 1, "", "rollback"], [130, 3, 1, "", "setup"], [130, 3, 1, "", "verify"]], "lib.env": [[131, 1, 1, "", "bft_to_text"], [131, 1, 1, "", "c_to_f"], [131, 1, 1, "", "degrees_to_direction_16"], [131, 1, 1, "", "degrees_to_direction_8"], [131, 1, 1, "", "f_to_c"], [131, 1, 1, "", "kmh_to_bft"], [131, 1, 1, "", "kmh_to_kn"], [131, 1, 1, "", "kmh_to_mph"], [131, 1, 1, "", "kmh_to_mps"], [131, 1, 1, "", "kmh_to_ms"], [131, 1, 1, "", "kn_to_kmh"], [131, 1, 1, "", "location_address"], [131, 1, 1, "", "location_name"], [131, 1, 1, "", "meter_to_miles"], [131, 1, 1, "", "meter_to_nauticalmiles"], [131, 1, 1, "", "miles_to_meter"], [131, 1, 1, "", "mph_to_kmh"], [131, 1, 1, "", "mps_to_kmh"], [131, 1, 1, "", "ms_to_bft"], [131, 1, 1, "", "ms_to_kmh"], [131, 1, 1, "", "nauticalmiles_to_meter"]], "lib.item": [[134, 2, 1, "", "Items"]], "lib.item.Items": [[134, 3, 1, "", "add_item"], [134, 3, 1, "", "add_plugin_attribute"], [134, 3, 1, "", "add_plugin_attribute_prefix"], [134, 3, 1, "", "add_struct_definition"], [134, 3, 1, "", "find_children"], [134, 3, 1, "", "find_items"], [134, 3, 1, "", "get_instance"], [134, 3, 1, "", "get_plugin_attribute_type"], [134, 3, 1, "", "get_toplevel_items"], [134, 3, 1, "", "item_count"], [134, 3, 1, "", "load_itemdefinitions"], [134, 3, 1, "", "match_items"], [134, 3, 1, "", "plugin_attribute_exists"], [134, 4, 1, "", "plugin_attribute_prefixes"], [134, 4, 1, "", "plugin_attributes"], [134, 4, 1, "", "plugin_prefixes_tuple"], [134, 3, 1, "", "remove_item"], [134, 3, 1, "", "return_item"], [134, 3, 1, "", "return_items"], [134, 3, 1, "", "return_struct_definitions"], [134, 3, 1, "", "stop"], [134, 4, 1, "", "structs"]], "lib.item.item": [[133, 2, 1, "", "Item"]], "lib.item.item.Item": [[133, 2, 1, "", "DictHandler"], [133, 2, 1, "", "ListHandler"], [133, 2, 1, "", "TypeHandler"], [133, 3, 1, "", "add_logic_trigger"], [133, 3, 1, "", "add_method_trigger"], [133, 3, 1, "", "age"], [133, 3, 1, "", "autotimer"], [133, 3, 1, "", "changed_by"], [133, 3, 1, "", "expand_relativepathes"], [133, 3, 1, "", "fade"], [133, 3, 1, "", "find_attribute"], [133, 3, 1, "", "get_absolutepath"], [133, 3, 1, "", "get_calling_item_from_frame"], [133, 3, 1, "", "get_children_path"], [133, 3, 1, "", "get_class_from_frame"], [133, 3, 1, "", "get_hysteresis_item_triggers"], [133, 3, 1, "", "get_item_triggers"], [133, 3, 1, "", "get_logic_triggers"], [133, 3, 1, "", "get_method_triggers"], [133, 3, 1, "", "get_stack_info"], [133, 3, 1, "", "get_stringwithabsolutepathes"], [133, 3, 1, "", "hysteresis_data"], [133, 3, 1, "", "hysteresis_state"], [133, 3, 1, "", "id"], [133, 3, 1, "", "jsonvars"], [133, 3, 1, "", "last_change"], [133, 3, 1, "", "last_trigger"], [133, 3, 1, "", "last_update"], [133, 3, 1, "", "path"], [133, 3, 1, "", "prev_age"], [133, 3, 1, "", "prev_change"], [133, 3, 1, "", "prev_trigger"], [133, 3, 1, "", "prev_trigger_age"], [133, 3, 1, "", "prev_update"], [133, 3, 1, "", "prev_update_age"], [133, 3, 1, "", "prev_value"], [133, 3, 1, "", "remove"], [133, 3, 1, "", "remove_logic_trigger"], [133, 3, 1, "", "remove_method_trigger"], [133, 3, 1, "", "remove_timer"], [133, 3, 1, "", "return_children"], [133, 3, 1, "", "return_parent"], [133, 3, 1, "", "set"], [133, 3, 1, "", "timer"], [133, 3, 1, "", "to_json"], [133, 3, 1, "", "trigger_age"], [133, 3, 1, "", "triggered_by"], [133, 3, 1, "", "type"], [133, 3, 1, "", "update_age"], [133, 3, 1, "", "updated_by"]], "lib.item.item.Item.DictHandler": [[133, 3, 1, "", "clear"], [133, 3, 1, "", "delete"], [133, 3, 1, "", "get"], [133, 4, 1, "", "item_functions"], [133, 3, 1, "", "pop"], [133, 3, 1, "", "popitem"], [133, 3, 1, "", "update"]], "lib.item.item.Item.ListHandler": [[133, 3, 1, "", "append"], [133, 3, 1, "", "clear"], [133, 3, 1, "", "delete"], [133, 3, 1, "", "extend"], [133, 3, 1, "", "insert"], [133, 4, 1, "", "item_functions"], [133, 3, 1, "", "pop"], [133, 3, 1, "", "prepend"], [133, 3, 1, "", "remove"]], "lib.item.item.Item.TypeHandler": [[133, 4, 1, "", "item_functions"]], "lib.item_conversion": [[135, 1, 1, "", "convert_yaml"], [135, 1, 1, "", "is_ruamelyaml_installed"], [135, 1, 1, "", "parse_for_convert"], [135, 1, 1, "", "yaml_save"]], "lib.log": [[136, 2, 1, "", "DateTimeRotatingFileHandler"], [136, 2, 1, "", "Log"], [136, 2, 1, "", "Logs"], [136, 2, 1, "", "ShngMemLogHandler"], [136, 2, 1, "", "ShngTimedRotatingFileHandler"]], "lib.log.DateTimeRotatingFileHandler": [[136, 3, 1, "", "close"], [136, 3, 1, "", "do_rollover"], [136, 3, 1, "", "emit"], [136, 3, 1, "", "get_filename"], [136, 3, 1, "", "get_files_to_delete"], [136, 3, 1, "", "next_rollover_time"], [136, 3, 1, "", "parseFilename"]], "lib.log.Log": [[136, 3, 1, "", "add"], [136, 3, 1, "", "clean"], [136, 3, 1, "", "export"], [136, 3, 1, "", "last"]], "lib.log.Logs": [[136, 4, 1, "", "DBGHIGH_level"], [136, 4, 1, "", "DBGLOW_level"], [136, 4, 1, "", "DBGMED_level"], [136, 4, 1, "", "NOTICE_level"], [136, 3, 1, "", "add_all_handlers_logger"], [136, 3, 1, "", "add_log"], [136, 3, 1, "", "add_logging_level"], [136, 3, 1, "", "configure_logging"], [136, 3, 1, "", "get_all_handlernames"], [136, 3, 1, "", "get_handler_by_name"], [136, 3, 1, "", "get_shng_logging_levels"], [136, 3, 1, "", "initMemLog"], [136, 3, 1, "", "load_logging_config"], [136, 3, 1, "", "load_logging_config_for_edit"], [136, 4, 1, "", "logging_levels"], [136, 3, 1, "", "return_logs"], [136, 4, 1, "", "root_handler_name"], [136, 3, 1, "", "save_logging_config"]], "lib.log.ShngMemLogHandler": [[136, 3, 1, "", "emit"], [136, 3, 1, "", "load"]], "lib.log.ShngTimedRotatingFileHandler": [[136, 3, 1, "", "doRollover"], [136, 3, 1, "", "getFilesToDelete"]], "lib.logic": [[137, 2, 1, "", "Logic"], [137, 2, 1, "", "Logics"]], "lib.logic.Logic": [[137, 3, 1, "", "add_method_trigger"], [137, 5, 1, "", "conf"], [137, 5, 1, "", "crontab"], [137, 5, 1, "", "cycle"], [137, 5, 1, "", "description"], [137, 3, 1, "", "disable"], [137, 3, 1, "", "enable"], [137, 5, 1, "", "filename"], [137, 3, 1, "", "get_method_triggers"], [137, 5, 1, "", "groupnames"], [137, 3, 1, "", "id"], [137, 3, 1, "", "is_enabled"], [137, 3, 1, "", "last_run"], [137, 5, 1, "", "lname"], [137, 3, 1, "", "log_readonly_warning"], [137, 5, 1, "", "name"], [137, 5, 1, "", "pathname"], [137, 5, 1, "", "prio"], [137, 3, 1, "", "set_last_run"], [137, 3, 1, "", "trigger"], [137, 5, 1, "", "trigger_dict"], [137, 5, 1, "", "watch_item"]], "lib.logic.Logics": [[137, 3, 1, "", "delete_logic"], [137, 3, 1, "", "disable_logic"], [137, 3, 1, "", "enable_logic"], [137, 3, 1, "", "filename_used_count"], [137, 3, 1, "", "get_instance"], [137, 3, 1, "", "get_loaded_logics"], [137, 3, 1, "", "get_logic_info"], [137, 3, 1, "", "get_logiccrontab"], [137, 3, 1, "", "get_logics_dir"], [137, 3, 1, "", "is_logic_enabled"], [137, 3, 1, "", "is_logic_loaded"], [137, 3, 1, "", "is_userlogic"], [137, 3, 1, "", "load_logic"], [137, 4, 1, "", "plugins"], [137, 3, 1, "", "read_config_section"], [137, 3, 1, "", "reload_logics"], [137, 3, 1, "", "return_config_type"], [137, 3, 1, "", "return_defined_logics"], [137, 3, 1, "", "return_loaded_logics"], [137, 3, 1, "", "return_logic"], [137, 3, 1, "", "return_logics"], [137, 3, 1, "", "return_logictype"], [137, 4, 1, "", "scheduler"], [137, 3, 1, "", "scheduler_add"], [137, 3, 1, "", "scheduler_change"], [137, 3, 1, "", "scheduler_remove"], [137, 3, 1, "", "set_config_section_key"], [137, 3, 1, "", "toggle_logic"], [137, 3, 1, "", "trigger_logic"], [137, 3, 1, "", "unload_logic"], [137, 3, 1, "", "update_config_section"], [137, 3, 1, "", "visu_access"]], "lib.logutils": [[138, 2, 1, "", "DuplicateFilter"], [138, 2, 1, "", "Filter"]], "lib.logutils.DuplicateFilter": [[138, 3, 1, "", "filter"]], "lib.logutils.Filter": [[138, 3, 1, "", "filter"]], "lib.metadata": [[139, 2, 1, "", "Metadata"]], "lib.metadata.Metadata": [[139, 3, 1, "", "check_itemattribute"], [139, 3, 1, "", "check_parameters"], [139, 3, 1, "", "get_bool"], [139, 3, 1, "", "get_global_plugin_parameters"], [139, 3, 1, "", "get_itemdefinition"], [139, 3, 1, "", "get_itemdefinition_listlen"], [139, 3, 1, "", "get_itemdefinition_subtype"], [139, 3, 1, "", "get_itemdefinition_type"], [139, 3, 1, "", "get_itemdefinition_type_with_subtype"], [139, 3, 1, "", "get_itemdefinitionlist"], [139, 3, 1, "", "get_mlstring"], [139, 3, 1, "", "get_parameter_defaultvalue"], [139, 3, 1, "", "get_parameter_listlen"], [139, 3, 1, "", "get_parameter_subtype"], [139, 3, 1, "", "get_parameter_type"], [139, 3, 1, "", "get_parameter_type_with_subtype"], [139, 3, 1, "", "get_parameterdefinition"], [139, 3, 1, "", "get_parameterlist"], [139, 3, 1, "", "get_plugin_function_defstrings"], [139, 3, 1, "", "get_string"], [139, 3, 1, "", "get_version"], [139, 3, 1, "", "test_pythoncompatibility"], [139, 3, 1, "", "test_sdpcompatibility"], [139, 3, 1, "", "test_shngcompatibility"], [139, 3, 1, "", "test_version"]], "lib.model.mqttplugin": [[620, 2, 1, "", "MqttPlugin"]], "lib.model.mqttplugin.MqttPlugin": [[620, 3, 1, "", "add_subscription"], [620, 4, 1, "", "broker_config"], [620, 4, 1, "", "broker_monitoring"], [620, 3, 1, "", "broker_uptime"], [620, 3, 1, "", "get_broker_info"], [620, 3, 1, "", "mqtt_init"], [620, 3, 1, "", "publish_topic"], [620, 3, 1, "", "start_subscriptions"], [620, 3, 1, "", "stop_subscriptions"], [620, 3, 1, "", "translate"]], "lib.model.smartplugin": [[624, 2, 1, "", "SmartPlugin"]], "lib.model.smartplugin.SmartPlugin": [[624, 4, 1, "", "ALLOW_MULTIINSTANCE"], [624, 4, 1, "", "PLUGIN_VERSION"], [624, 4, 1, "", "STOP_ON_ITEM_CHANGE"], [624, 3, 1, "", "add_item"], [624, 4, 1, "", "alive"], [624, 3, 1, "", "asyncio_state"], [624, 3, 1, "", "callerinfo"], [624, 3, 1, "", "deinit"], [624, 3, 1, "", "get_classname"], [624, 3, 1, "", "get_command_from_run_queue"], [624, 3, 1, "", "get_configname"], [624, 3, 1, "", "get_fullname"], [624, 3, 1, "", "get_iattr_value"], [624, 3, 1, "", "get_info"], [624, 3, 1, "", "get_instance_name"], [624, 3, 1, "", "get_item_config"], [624, 3, 1, "", "get_item_list"], [624, 3, 1, "", "get_item_mapping"], [624, 3, 1, "", "get_item_mapping_list"], [624, 3, 1, "", "get_item_path_list"], [624, 3, 1, "", "get_items_for_mapping"], [624, 3, 1, "", "get_loginstance"], [624, 3, 1, "", "get_mappings"], [624, 3, 1, "", "get_module"], [624, 3, 1, "", "get_parameter_value"], [624, 3, 1, "", "get_parameter_value_for_display"], [624, 3, 1, "", "get_plugin_dir"], [624, 3, 1, "", "get_sh"], [624, 3, 1, "", "get_shortname"], [624, 3, 1, "", "get_trigger_items"], [624, 3, 1, "", "get_version"], [624, 3, 1, "", "has_iattr"], [624, 3, 1, "", "init_webinterface"], [624, 3, 1, "", "is_multi_instance_capable"], [624, 3, 1, "", "list_asyncio_tasks"], [624, 4, 1, "", "logger"], [624, 3, 1, "", "now"], [624, 3, 1, "", "parse_item"], [624, 3, 1, "", "parse_logic"], [624, 3, 1, "", "path_join"], [624, 3, 1, "", "poll_device"], [624, 3, 1, "", "put_command_to_run_queue"], [624, 3, 1, "", "register_updating"], [624, 3, 1, "", "remove_item"], [624, 3, 1, "", "run"], [624, 3, 1, "", "run_asyncio_coro"], [624, 3, 1, "", "scheduler_add"], [624, 3, 1, "", "scheduler_change"], [624, 3, 1, "", "scheduler_get"], [624, 3, 1, "", "scheduler_get_all"], [624, 3, 1, "", "scheduler_remove"], [624, 3, 1, "", "scheduler_remove_all"], [624, 3, 1, "", "scheduler_return_next"], [624, 3, 1, "", "scheduler_trigger"], [624, 3, 1, "", "set_attr_value"], [624, 4, 1, "", "shtime"], [624, 3, 1, "", "start_asyncio"], [624, 3, 1, "", "stop"], [624, 3, 1, "", "stop_asyncio"], [624, 3, 1, "", "translate"], [624, 3, 1, "", "unparse_item"], [624, 3, 1, "", "update_config_section"], [624, 3, 1, "", "update_item"], [624, 3, 1, "", "wait_for_asyncio_termination"]], "lib.module": [[140, 2, 1, "", "Modules"]], "lib.module.Modules": [[140, 3, 1, "", "get_instance"], [140, 3, 1, "", "get_module"], [140, 3, 1, "", "return_modules"], [140, 3, 1, "", "start"], [140, 3, 1, "", "stop"]], "lib.network": [[141, 2, 1, "", "ConnectionClient"], [141, 2, 1, "", "Connections"], [141, 2, 1, "", "Http"], [141, 2, 1, "", "Network"], [141, 2, 1, "", "Tcp_client"], [141, 2, 1, "", "Tcp_server"], [141, 2, 1, "", "Udp_server"]], "lib.network.ConnectionClient": [[141, 3, 1, "", "close"], [141, 3, 1, "", "send"], [141, 3, 1, "", "send_echo_off"], [141, 3, 1, "", "send_echo_on"], [141, 3, 1, "", "set_callbacks"], [141, 5, 1, "", "socket"]], "lib.network.Connections": [[141, 3, 1, "", "check"], [141, 3, 1, "", "monitor"], [141, 3, 1, "", "unmonitor"]], "lib.network.Http": [[141, 3, 1, "", "HTTPDigestAuth"], [141, 3, 1, "", "download"], [141, 3, 1, "", "get_binary"], [141, 3, 1, "", "get_json"], [141, 3, 1, "", "get_text"], [141, 3, 1, "", "post_json"], [141, 3, 1, "", "response_cookies"], [141, 3, 1, "", "response_headers"], [141, 3, 1, "", "response_object"], [141, 3, 1, "", "response_status"]], "lib.network.Network": [[141, 3, 1, "", "clean_uri"], [141, 3, 1, "", "family_to_string"], [141, 3, 1, "", "ip_port_to_socket"], [141, 3, 1, "", "ping"], [141, 3, 1, "", "ping_port"], [141, 3, 1, "", "send_wol"], [141, 3, 1, "", "validate_inet_addr"]], "lib.network.Tcp_client": [[141, 3, 1, "", "close"], [141, 3, 1, "", "connect"], [141, 3, 1, "", "connected"], [141, 3, 1, "", "open"], [141, 3, 1, "", "send"], [141, 3, 1, "", "set_callbacks"]], "lib.network.Tcp_server": [[141, 4, 1, "", "MODE_BINARY"], [141, 4, 1, "", "MODE_FIXED_LENGTH"], [141, 4, 1, "", "MODE_TEXT"], [141, 4, 1, "", "MODE_TEXT_LINE"], [141, 3, 1, "", "close"], [141, 3, 1, "", "disconnect"], [141, 3, 1, "", "listening"], [141, 3, 1, "", "send"], [141, 3, 1, "", "set_callbacks"], [141, 3, 1, "", "start"]], "lib.network.Udp_server": [[141, 3, 1, "", "close"], [141, 3, 1, "", "listening"], [141, 3, 1, "", "set_callbacks"], [141, 3, 1, "", "start"]], "lib.orb": [[142, 2, 1, "", "Orb"]], "lib.orb.Orb": [[142, 3, 1, "", "get_observer_and_orb"], [142, 3, 1, "", "midnight"], [142, 3, 1, "", "noon"], [142, 3, 1, "", "pos"], [142, 3, 1, "", "rise"], [142, 3, 1, "", "set"]], "lib.plugin": [[145, 2, 1, "", "PluginWrapper"], [144, 2, 1, "", "Plugins"]], "lib.plugin.PluginWrapper": [[145, 3, 1, "", "get_ident"], [145, 3, 1, "", "get_implementation"], [145, 3, 1, "", "get_name"], [145, 3, 1, "", "run"], [145, 3, 1, "", "stop"]], "lib.plugin.Plugins": [[144, 2, 1, "", "PyObject"], [144, 3, 1, "", "get"], [144, 3, 1, "", "get_instance"], [144, 3, 1, "", "get_loaded_plugin_instances"], [144, 3, 1, "", "get_loaded_plugins"], [144, 3, 1, "", "get_logic_parameters"], [144, 3, 1, "", "get_pluginthread"], [144, 3, 1, "", "return_plugin"], [144, 3, 1, "", "return_plugins"], [144, 3, 1, "", "start"], [144, 3, 1, "", "stop"], [144, 3, 1, "", "unload_plugin"]], "lib.plugin.Plugins.PyObject": [[144, 4, 1, "", "refcnt"]], "lib.scene": [[146, 2, 1, "", "Scenes"]], "lib.scene.Scenes": [[146, 3, 1, "", "get_instance"], [146, 3, 1, "", "get_loaded_scenes"], [146, 3, 1, "", "get_scene_action_name"], [146, 3, 1, "", "get_scene_actions"], [146, 3, 1, "", "reload_scenes"], [146, 3, 1, "", "return_scene_value_actions"]], "lib.scheduler": [[147, 6, 1, "", "LeaveLogic"], [147, 2, 1, "", "Scheduler"]], "lib.scheduler.Scheduler": [[147, 3, 1, "", "add"], [147, 3, 1, "", "change"], [147, 3, 1, "", "check_caller"], [147, 3, 1, "", "get"], [147, 3, 1, "", "get_idle_worker_count"], [147, 3, 1, "", "get_instance"], [147, 3, 1, "", "get_worker_count"], [147, 3, 1, "", "get_worker_names"], [147, 3, 1, "", "remove"], [147, 3, 1, "", "return_next"], [147, 3, 1, "", "run"], [147, 3, 1, "", "set_worker_warn_count"], [147, 3, 1, "", "stop"], [147, 3, 1, "", "trigger"]], "lib.shtime": [[148, 2, 1, "", "Shtime"]], "lib.shtime.Shtime": [[148, 3, 1, "", "add_custom_holiday"], [148, 3, 1, "", "add_custom_holiday_range"], [148, 3, 1, "", "beginning_of_month"], [148, 3, 1, "", "beginning_of_week"], [148, 3, 1, "", "beginning_of_year"], [148, 3, 1, "", "calendar_week"], [148, 3, 1, "", "current_day"], [148, 3, 1, "", "current_month"], [148, 3, 1, "", "current_monthname"], [148, 3, 1, "", "current_year"], [148, 3, 1, "", "date_transform"], [148, 3, 1, "", "datetime_transform"], [148, 3, 1, "", "day_of_year"], [148, 3, 1, "", "get_instance"], [148, 3, 1, "", "holiday_list"], [148, 3, 1, "", "holiday_name"], [148, 4, 1, "", "holidays"], [148, 3, 1, "", "is_holiday"], [148, 3, 1, "", "is_public_holiday"], [148, 3, 1, "", "is_weekend"], [148, 3, 1, "", "length_of_month"], [148, 3, 1, "", "length_of_year"], [148, 3, 1, "", "now"], [148, 3, 1, "", "public_holiday_list"], [148, 4, 1, "", "public_holidays"], [148, 3, 1, "", "runtime"], [148, 3, 1, "", "runtime_as_dict"], [148, 3, 1, "", "seconds_to_displaystring"], [148, 3, 1, "", "set_tz"], [148, 3, 1, "", "set_tzinfo"], [148, 3, 1, "", "time_diff"], [148, 3, 1, "", "time_since"], [148, 3, 1, "", "time_until"], [148, 3, 1, "", "to_seconds"], [148, 3, 1, "", "today"], [148, 3, 1, "", "tomorrow"], [148, 3, 1, "", "translate"], [148, 3, 1, "", "tz"], [148, 3, 1, "", "tzinfo"], [148, 3, 1, "", "tzlocal"], [148, 3, 1, "", "tzname"], [148, 3, 1, "", "tznameDST"], [148, 3, 1, "", "tznameST"], [148, 3, 1, "", "utcinfo"], [148, 3, 1, "", "utcnow"], [148, 3, 1, "", "weekday"], [148, 3, 1, "", "weekday_name"], [148, 3, 1, "", "yesterday"]], "lib.shyaml": [[149, 1, 1, "", "convert_linenumber"], [149, 1, 1, "", "editing_is_enabled"], [149, 1, 1, "", "get_commentedseq"], [149, 1, 1, "", "get_emptynode"], [149, 1, 1, "", "get_key"], [149, 1, 1, "", "get_parent"], [149, 1, 1, "", "setInDict"], [149, 1, 1, "", "writeBackToFile"], [149, 1, 1, "", "yaml_dump_roundtrip"], [149, 1, 1, "", "yaml_load"], [149, 1, 1, "", "yaml_load_fromstring"], [149, 1, 1, "", "yaml_load_roundtrip"], [149, 1, 1, "", "yaml_save"], [149, 1, 1, "", "yaml_save_roundtrip"], [149, 2, 1, "", "yamlfile"]], "lib.shyaml.yamlfile": [[149, 4, 1, "", "data"], [149, 4, 1, "", "filename"], [149, 3, 1, "", "getnode"], [149, 3, 1, "", "getnodetype"], [149, 3, 1, "", "getvalue"], [149, 3, 1, "", "getvaluetype"], [149, 3, 1, "", "load"], [149, 3, 1, "", "save"], [149, 3, 1, "", "setleafvalue"], [149, 3, 1, "", "setvalue"]], "lib.smarthome": [[40, 2, 1, "", "SmartHome"]], "lib.smarthome.SmartHome": [[40, 4, 1, "", "BASE"], [40, 3, 1, "", "add_event_listener"], [40, 3, 1, "", "add_item"], [40, 3, 1, "", "checkConfigFiles"], [40, 3, 1, "", "create_directories"], [40, 3, 1, "", "find_children"], [40, 3, 1, "", "find_items"], [40, 3, 1, "", "getBaseDir"], [40, 3, 1, "", "get_basedir"], [40, 3, 1, "", "get_confdir"], [40, 3, 1, "", "get_config_dir"], [40, 3, 1, "", "get_config_file"], [40, 3, 1, "", "get_defaultlanguage"], [40, 3, 1, "", "get_etcdir"], [40, 3, 1, "", "get_instance"], [40, 3, 1, "", "get_module"], [40, 3, 1, "", "get_structsdir"], [40, 3, 1, "", "get_vardir"], [40, 3, 1, "", "init_logging"], [40, 3, 1, "", "initialize_dir_vars"], [40, 3, 1, "", "initialize_vars"], [40, 5, 1, "", "lat"], [40, 3, 1, "", "list_threads"], [40, 5, 1, "", "lon"], [40, 3, 1, "", "match_items"], [40, 3, 1, "", "now"], [40, 3, 1, "", "object_refcount"], [40, 3, 1, "", "reload_logics"], [40, 3, 1, "", "restart"], [40, 3, 1, "", "return_event_listeners"], [40, 3, 1, "", "return_item"], [40, 3, 1, "", "return_items"], [40, 3, 1, "", "return_logic"], [40, 3, 1, "", "return_logics"], [40, 3, 1, "", "return_modules"], [40, 3, 1, "", "return_plugins"], [40, 3, 1, "", "runtime"], [40, 3, 1, "", "set_defaultlanguage"], [40, 3, 1, "", "start"], [40, 3, 1, "", "stop"], [40, 3, 1, "", "string2bool"], [40, 3, 1, "", "tzinfo"], [40, 3, 1, "", "utcinfo"], [40, 3, 1, "", "utcnow"]], "lib.tools": [[150, 2, 1, "", "Tools"]], "lib.tools.Tools": [[150, 3, 1, "", "abs2rel"], [150, 3, 1, "", "dewpoint"], [150, 3, 1, "", "dt2js"], [150, 3, 1, "", "dt2ts"], [150, 3, 1, "", "fetch_url"], [150, 3, 1, "", "ping"], [150, 3, 1, "", "rel2abs"], [150, 3, 1, "", "runtime"]], "lib.translation": [[151, 1, 1, "", "initialize_translations"], [151, 1, 1, "", "load_translations"], [151, 1, 1, "", "reload_translations"], [151, 1, 1, "", "set_default_language"], [151, 1, 1, "", "set_fallback_language_order"], [151, 1, 1, "", "translate"]], "lib.utils": [[152, 2, 1, "", "Utils"], [152, 2, 1, "", "Version"], [152, 1, 1, "", "execute_subprocess"], [152, 1, 1, "", "get_python_version"], [152, 1, 1, "", "running_virtual"]], "lib.utils.Utils": [[152, 3, 1, "", "check_hashed_password"], [152, 3, 1, "", "create_hash"], [152, 3, 1, "", "execute_subprocess"], [152, 3, 1, "", "get_all_addresses_for_addressfamily"], [152, 3, 1, "", "get_all_local_ipv4_addresses"], [152, 3, 1, "", "get_all_local_ipv6_addresses"], [152, 3, 1, "", "get_local_ipv4_address"], [152, 3, 1, "", "get_local_ipv6_address"], [152, 3, 1, "", "get_type"], [152, 3, 1, "", "is_float"], [152, 3, 1, "", "is_hash"], [152, 3, 1, "", "is_hostname"], [152, 3, 1, "", "is_int"], [152, 3, 1, "", "is_ip"], [152, 3, 1, "", "is_ipv4"], [152, 3, 1, "", "is_ipv6"], [152, 3, 1, "", "is_knx_groupaddress"], [152, 3, 1, "", "is_mac"], [152, 3, 1, "", "is_timeframe"], [152, 3, 1, "", "string_to_list"], [152, 3, 1, "", "strip_quotes"], [152, 3, 1, "", "strip_quotes_fromlist"], [152, 3, 1, "", "strip_square_brackets"], [152, 3, 1, "", "to_bool"], [152, 3, 1, "", "to_timeframe"]], "lib.utils.Version": [[152, 3, 1, "", "check_list"], [152, 3, 1, "", "compare"], [152, 3, 1, "", "format"], [152, 3, 1, "", "to_list"], [152, 3, 1, "", "to_string"]], "modules.admin": [[612, 0, 0, "-", "api_plugin"], [612, 0, 0, "-", "api_plugins"]], "modules.admin.api_plugin": [[612, 2, 1, "", "PluginController"]], "modules.admin.api_plugin.PluginController": [[612, 3, 1, "", "add"], [612, 3, 1, "", "delete"], [612, 3, 1, "", "get_body"], [612, 3, 1, "", "get_config_filename"], [612, 3, 1, "", "handle_plugin_action"], [612, 3, 1, "", "read"], [612, 3, 1, "", "test_for_old_config"], [612, 3, 1, "", "update"]], "modules.admin.api_plugins": [[612, 2, 1, "", "PluginsAPIController"], [612, 2, 1, "", "PluginsConfigController"], [612, 2, 1, "", "PluginsController"], [612, 2, 1, "", "PluginsInfoController"], [612, 2, 1, "", "PluginsInstalledController"], [612, 2, 1, "", "PluginsLogicParametersController"]], "modules.admin.api_plugins.PluginsAPIController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsConfigController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsInfoController": [[612, 4, 1, "", "blog_urls"], [612, 3, 1, "", "read"], [612, 3, 1, "", "stop"]], "modules.admin.api_plugins.PluginsInstalledController": [[612, 3, 1, "", "read"]], "modules.admin.api_plugins.PluginsLogicParametersController": [[612, 3, 1, "", "read"]], "modules": [[613, 0, 0, "-", "http"], [615, 0, 0, "-", "mqtt"]], "modules.http": [[613, 2, 1, "", "CherryPyFilter"], [613, 2, 1, "", "Http"], [613, 2, 1, "", "ModuleApp"]], "modules.http.CherryPyFilter": [[613, 3, 1, "", "filter"]], "modules.http.Http": [[613, 3, 1, "", "get_local_hostname"], [613, 3, 1, "", "get_local_ip_address"], [613, 3, 1, "", "get_local_port"], [613, 3, 1, "", "get_local_servicesport"], [613, 3, 1, "", "get_service_password"], [613, 3, 1, "", "get_service_user"], [613, 3, 1, "", "get_services_for_plugin"], [613, 3, 1, "", "get_user_dict"], [613, 3, 1, "", "get_webifs_for_plugin"], [613, 4, 1, "", "gstatic_dir"], [613, 4, 1, "", "gtemplates_dir"], [613, 3, 1, "", "init_template_environment"], [613, 3, 1, "", "is_port_in_use"], [613, 3, 1, "", "is_staticfile"], [613, 3, 1, "", "log_server_info"], [613, 3, 1, "", "register_service"], [613, 3, 1, "", "register_visu"], [613, 3, 1, "", "register_webif"], [613, 3, 1, "", "start"], [613, 3, 1, "", "stop"], [613, 3, 1, "", "validate_password"], [613, 3, 1, "", "validate_service_password"], [613, 4, 1, "", "version"], [613, 4, 1, "", "webif_mount_prefix"]], "modules.http.ModuleApp": [[613, 3, 1, "", "index"]], "modules.mqtt": [[615, 2, 1, "", "Mqtt"]], "modules.mqtt.Mqtt": [[615, 3, 1, "", "broker_uptime"], [615, 3, 1, "", "cast_from_mqtt"], [615, 3, 1, "", "cast_to_mqtt"], [615, 3, 1, "", "get_broker_config"], [615, 3, 1, "", "get_broker_info"], [615, 4, 1, "", "longname"], [615, 3, 1, "", "publish_topic"], [615, 4, 1, "", "scheduler"], [615, 3, 1, "", "start"], [615, 3, 1, "", "stop"], [615, 3, 1, "", "subscribe_topic"], [615, 3, 1, "", "unsubscribe_topic"], [615, 4, 1, "", "version"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:method", "4": "py:attribute", "5": "py:property", "6": "py:exception"}, "objnames": {"0": ["py", "module", "Python-Modul"], "1": ["py", "function", "Python-Funktion"], "2": ["py", "class", "Python-Klasse"], "3": ["py", "method", "Python-Methode"], "4": ["py", "attribute", "Python-Attribut"], "5": ["py", "property", "Python-property"], "6": ["py", "exception", "Python-Exception"]}, "titleterms": {"administration": 0, "interfac": [0, 30, 31, 32, 33, 34, 67, 76, 83, 157, 158, 162, 164, 165, 166, 167, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 197, 200, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 228, 229, 230, 232, 237, 238, 241, 242, 243, 244, 246, 249, 250, 251, 252, 255, 259, 261, 262, 263, 264, 265, 266, 267, 268, 276, 277, 280, 284, 285, 286, 287, 289, 291, 302, 306, 307, 310, 311, 314, 320, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 356, 357, 359, 360, 362, 363, 366, 367, 369, 402, 550, 551], "updat": [0, 10, 13, 48, 50, 53, 55, 56, 58, 65, 76, 89, 92, 101, 154, 162, 292, 391, 566, 569, 577, 592, 626, 627, 630, 631, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 675, 689, 691], "dien": [1, 27, 89, 90, 617, 630], "ubersicht": [1, 8, 36, 52, 109, 219], "eval": [1, 12, 325, 561, 573, 575, 576], "syntax": [1, 106, 561, 573], "pruf": [1, 328, 339, 340], "yaml": [1, 15, 16, 18, 19, 20, 30, 33, 34, 52, 83, 93, 103, 104, 105, 106, 107, 108, 110, 111, 112, 113, 114, 119, 120, 121, 122, 154, 157, 158, 160, 164, 165, 166, 167, 168, 169, 173, 175, 176, 180, 182, 183, 186, 188, 190, 191, 192, 193, 194, 195, 197, 198, 199, 200, 201, 202, 208, 211, 214, 215, 218, 219, 221, 222, 228, 229, 230, 231, 232, 234, 235, 236, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 261, 263, 264, 267, 269, 270, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 288, 290, 294, 296, 297, 298, 300, 301, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 317, 334, 335, 339, 340, 341, 343, 344, 351, 352, 355, 358, 359, 360, 361, 362, 363, 365, 368, 369, 370, 686], "conf": [1, 92, 106, 160, 161, 221, 222, 688], "konvert": 1, "cach": [1, 27, 434, 463], "prufung": [1, 76, 632], "userfunction": [1, 125, 573, 638], "editor": [1, 3, 93], "item": [2, 3, 11, 12, 13, 16, 18, 20, 24, 25, 27, 33, 34, 40, 52, 53, 76, 92, 94, 97, 98, 99, 103, 105, 106, 115, 132, 133, 134, 155, 160, 162, 164, 165, 166, 167, 168, 169, 170, 171, 173, 175, 176, 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, 194, 195, 196, 197, 198, 199, 200, 202, 203, 205, 207, 208, 211, 212, 213, 214, 215, 218, 219, 221, 222, 227, 229, 231, 232, 234, 235, 236, 237, 239, 240, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 256, 257, 258, 259, 260, 261, 262, 263, 265, 268, 269, 270, 272, 275, 276, 277, 278, 280, 281, 282, 284, 285, 288, 289, 290, 291, 293, 294, 295, 297, 298, 300, 301, 304, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 317, 319, 323, 324, 325, 328, 331, 334, 335, 337, 338, 339, 340, 341, 343, 344, 351, 352, 355, 356, 357, 358, 359, 360, 361, 362, 363, 365, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 562, 563, 564, 565, 566, 567, 573, 574, 576, 580, 591, 602, 603, 632, 638, 686], "baum": 2, "monitoring": 2, "konfiguration": [2, 4, 5, 6, 8, 14, 22, 27, 31, 32, 33, 34, 76, 83, 93, 94, 95, 96, 98, 101, 102, 103, 106, 111, 112, 115, 116, 119, 120, 121, 122, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 194, 196, 197, 200, 201, 203, 204, 210, 212, 213, 214, 215, 217, 219, 220, 222, 223, 226, 228, 229, 230, 232, 233, 237, 238, 241, 242, 243, 244, 246, 249, 250, 252, 255, 256, 259, 261, 262, 263, 264, 265, 266, 267, 268, 271, 272, 276, 277, 279, 284, 285, 286, 287, 289, 291, 293, 295, 300, 302, 306, 307, 309, 310, 311, 313, 314, 316, 319, 322, 328, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 354, 357, 359, 360, 362, 363, 366, 367, 369, 370, 371, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 574, 592, 593, 616, 682, 688], "struktur": [2, 24, 25, 53, 97, 329, 603], "templat": [2, 42, 50, 54, 55, 97, 289, 324, 325, 326, 329], "logik": [3, 15, 16, 17, 18, 19, 20, 21, 42, 76, 92, 109, 115, 117, 153, 164, 219, 241, 243, 263, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 581, 587, 589, 590, 592, 593, 595, 596, 632], "list": [3, 4, 5, 6, 12, 53, 97, 123, 262, 273, 472, 517, 545, 547, 548, 550, 552, 554, 558, 563, 603], "cod": [3, 47, 50, 52, 109, 192, 203, 593, 628], "paramet": [3, 30, 43, 53, 58, 157, 158, 211, 262, 273, 274, 326, 359, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 563, 592, 596, 604, 608, 609, 638, 688], "beschreib": [3, 52, 53, 170, 204, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "grupp": 3, "n": 3, "cycl": [3, 52, 365, 377, 382, 383, 388, 394, 396, 397, 405, 406, 414, 416, 423, 425, 431, 436, 443, 444, 448, 449, 452, 453, 459, 460, 461, 462, 468, 470, 475, 478, 479, 480, 481, 482, 483, 492, 493, 494, 498, 499, 500, 501, 503, 517, 520, 526, 530, 532, 570, 592], "crontab": [3, 452, 499, 569, 592], "watch": 3, "plugin": [3, 5, 22, 23, 29, 33, 34, 43, 46, 49, 51, 52, 53, 59, 62, 64, 65, 67, 71, 76, 83, 85, 86, 87, 92, 95, 97, 103, 111, 115, 116, 123, 143, 144, 154, 157, 159, 160, 162, 164, 166, 167, 168, 169, 170, 171, 173, 175, 176, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198, 200, 201, 202, 205, 206, 208, 211, 212, 213, 214, 215, 218, 219, 221, 222, 223, 227, 228, 229, 230, 231, 232, 234, 235, 236, 238, 239, 240, 241, 243, 244, 245, 247, 248, 249, 250, 251, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 267, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 285, 287, 288, 289, 290, 293, 294, 295, 296, 297, 298, 300, 301, 305, 306, 307, 308, 309, 310, 312, 313, 314, 315, 317, 334, 335, 337, 338, 339, 340, 341, 342, 343, 344, 351, 352, 353, 355, 356, 358, 359, 360, 361, 362, 363, 365, 368, 369, 370, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 545, 546, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 561, 566, 581, 597, 601, 602, 603, 604, 605, 608, 609, 610, 618, 619, 621, 622, 625, 626, 632, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 665, 666, 667, 669, 670, 671, 672, 673, 674, 675, 685, 687, 688, 691, 693], "spezif": [3, 566], "log": [4, 27, 28, 115, 136, 154, 155, 162, 170, 219, 263, 304, 356, 357], "anzeig": [4, 682], "gross": 4, "datei": [4, 52, 54, 55, 92, 103, 106, 119, 120, 121, 122, 295], "logg": [4, 222, 463, 593], "logging": [4, 83, 107, 115, 116, 160, 222, 322, 582, 583, 584, 585, 586, 593, 632, 638], "gelad": [5, 598, 632], "konfiguriert": 5, "szen": [6, 112, 124], "schedul": [7, 52, 147, 154], "syst": [8, 27, 67, 82, 177, 554, 555, 580], "eigenschaft": [8, 314], "ressourc": 8, "graph": 8, "pypi": 8, "check": [8, 64, 221], "urheberrechtshinweis": 8, "allgemein": [8, 56, 103, 170, 200, 262, 266, 279, 321, 349, 652], "http": [8, 44, 120, 157, 222, 457, 613], "modul": [8, 12, 30, 39, 43, 44, 45, 49, 53, 76, 83, 110, 118, 119, 120, 121, 122, 140, 154, 157, 158, 598, 605, 606, 608, 611, 612, 613, 614, 615, 616, 632], "admin": [8, 70, 76, 83, 119, 154, 155, 612, 638], "mqtt": [8, 30, 31, 45, 54, 76, 84, 121, 158, 252, 292, 454, 595, 615], "thread": [9, 46, 154, 157, 158, 632], "beispiel": [10, 13, 16, 21, 31, 32, 33, 34, 42, 52, 97, 98, 104, 106, 162, 164, 165, 170, 178, 179, 184, 188, 189, 192, 194, 197, 200, 203, 210, 212, 213, 214, 215, 217, 219, 229, 232, 243, 249, 250, 252, 255, 259, 261, 263, 265, 266, 268, 272, 276, 279, 284, 285, 287, 289, 295, 302, 306, 307, 310, 311, 314, 323, 325, 326, 327, 328, 329, 332, 338, 339, 340, 343, 347, 348, 351, 357, 360, 363, 366, 369, 370, 561, 562, 574, 591, 595, 683, 685], "tipps": [10, 13, 262, 693], "trick": [10, 13, 262, 693], "eval_trigg": [12, 561, 573], "bearbeit": 12, "wert": [12, 13, 18, 106, 170, 189, 192, 194, 517, 563, 591, 638], "wertermitt": 12, "datenbankabfrag": 12, "inverti": [12, 13], "ausles": [12, 165], "teil": 12, "dictionary": [12, 594], "erzeug": 12, "string": [12, 52, 219], "and": [12, 72, 76, 154, 205, 211, 262, 278, 333, 335, 566, 646], "enumeration": 12, "uber": [12, 36, 80, 93, 106, 162, 222], "lookup": [12, 15], "basier": 12, "numer": 12, "boolsch": [12, 106], "setz": 12, "berechn": [12, 13, 15, 16], "zeitdau": 12, "sekund": 12, "belieb": 12, "datetim": 12, "importi": 12, "weit": [12, 21, 27, 58, 76, 79, 83, 103, 170, 189, 293, 302, 332, 563, 598, 617, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656], "python": [12, 50, 58, 62, 67, 79, 83, 203, 273, 309, 598, 627, 628, 630, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "verwend": [12, 74, 97, 170, 189, 200, 212, 213, 265, 289, 573, 576, 638], "funktion": [12, 15, 31, 32, 33, 34, 52, 53, 58, 62, 100, 163, 164, 168, 169, 170, 194, 197, 214, 215, 217, 232, 249, 250, 256, 259, 261, 262, 263, 272, 276, 277, 287, 306, 307, 309, 313, 314, 330, 338, 343, 351, 359, 360, 363, 367, 369, 562, 573, 589, 597, 609, 671, 672, 673, 674], "tim": [12, 186, 396], "countdown": 12, "fur": [12, 13, 42, 53, 54, 55, 57, 71, 76, 82, 83, 93, 98, 116, 162, 170, 187, 189, 192, 200, 203, 262, 284, 292, 293, 324, 325, 326, 328, 354, 357, 545, 547, 548, 550, 552, 554, 558, 562, 581, 603, 605, 614, 619, 629, 685, 687, 688, 693], "bzw": [12, 170, 189, 630], "autotim": [12, 568], "verzogert": 12, "status": [12, 154, 159, 165, 200, 205, 254, 255, 293, 479], "konsolidi": 12, "itemwert": [12, 232, 328], "\u00c4nderung": 12, "bestimmt": [12, 306, 307], "zeit": [12, 16, 599, 634], "erstell": [13, 47, 52, 164, 630, 638, 688], "zeitgied": 13, "1": [13, 32, 50, 76, 92, 162, 173, 175, 176, 185, 190, 198, 218, 219, 234, 235, 236, 247, 248, 251, 254, 261, 262, 270, 278, 280, 285, 310, 314, 315, 318, 328, 351, 365, 375, 406, 423, 632, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 658, 667, 668, 669, 670, 671, 672, 673, 674, 675, 691], "2": [13, 15, 18, 50, 175, 176, 185, 190, 219, 234, 235, 236, 253, 254, 261, 271, 278, 285, 294, 314, 317, 318, 328, 351, 365, 375, 502, 589, 632, 645, 648, 651, 659, 669, 673], "tag": [13, 224, 427, 428, 580], "nacht": [13, 580], "knx": [13, 27, 69, 71, 232, 314, 434], "nutzung": [13, 47, 49, 67, 89, 111, 219, 260, 314, 370, 561, 562, 573, 595, 596, 597, 617, 638, 685], "neu": [13, 27, 42, 46, 50, 64, 76, 89, 106, 122, 154, 162, 212, 563, 566, 618, 628, 632, 641, 642, 652, 653, 654, 655, 656, 671, 672, 673, 674, 675], "zusatz": [13, 73, 76, 83, 85, 87, 88, 116, 326, 573, 574, 682], "smarthomeng": [13, 27, 36, 40, 47, 52, 69, 71, 78, 83, 85, 86, 87, 89, 92, 103, 112, 154, 155, 156, 159, 284, 303, 304, 338, 342, 356, 357, 471, 560, 580, 589, 599, 617, 629, 632, 637], "intern": 13, "knxd": [14, 27, 71, 73, 86], "hinweis": [14, 164, 189, 230, 233, 262, 283], "wichtig": [14, 162], "beispielkonfiguration": 14, "buswar": 14, "de": 14, "mdt": 14, "weinzierl": 14, "abb": 14, "windstark": 15, "ziel": [15, 16, 18, 19, 20], "usr": [15, 16, 18, 19, 20], "local": [15, 16, 18, 19, 20], "smarthom": [15, 16, 18, 19, 20, 40, 82, 83, 92, 103, 113, 175, 211, 235, 236, 254, 296, 632, 638], "logics": [15, 16, 18, 19, 20, 106, 109, 137, 154, 253, 260, 263, 335, 594], "beaufort1": 15, "py": [15, 16, 18, 19, 20, 40, 52, 71, 92, 109, 211, 253, 315, 353, 361, 677, 678, 679, 681], "etc": [15, 16, 18, 19, 20, 30, 52, 79, 103, 106, 119, 120, 121, 122, 154, 157, 158, 161, 175, 221, 222, 235, 236, 254, 296, 688], "logic": [15, 16, 18, 19, 33, 34, 53, 83, 103, 108, 137, 167, 183, 190, 197, 202, 211, 214, 218, 231, 232, 234, 240, 243, 249, 250, 251, 256, 259, 261, 276, 277, 288, 301, 304, 305, 306, 307, 309, 312, 313, 314, 315, 343, 352, 355, 356, 357, 360, 361, 363, 365, 368, 369, 425, 594, 604, 686], "alternativ": [15, 73, 344, 516], "umsetz": 15, "beaufort2": 15, "beaufort3": 15, "zeitdat": 16, "blink": 17, "per": [17, 83, 270, 370], "darstell": 18, "dpt": [18, 434], "prio": [18, 423, 592], "steuer": [19, 262], "dyn": 19, "zenith": 19, "icon": [19, 56, 162, 394, 430, 468, 527], "smartvisu": [19, 27, 69, 71, 76, 82, 85, 156, 166, 206, 218, 219, 244, 253, 255, 294, 302, 303, 304, 314, 317, 347, 352, 353, 496, 685, 687, 688, 689], "nachdimm": 20, "leucht": 20, "zentral": 20, "nachdimm_t": 20, "einfach": [21, 338], "komplex": 21, "Ein": [22, 116, 687], "develop": [22, 353, 356], "installi": [22, 27, 47, 73, 82, 83, 84, 85, 86, 87, 88, 628, 688], "anpass": [22, 58, 82], "manuell": [22, 85, 249, 302, 331, 354, 682], "repository": 22, "aufruf": [22, 53, 170, 179, 184, 187, 192, 200, 210, 212, 213, 220, 252, 255, 265, 266, 268, 289, 302, 309, 311, 348, 349, 357, 360, 366, 597, 609, 638], "download": [22, 628], "gewunscht": 22, "struct": [24, 26, 53, 76, 97, 114, 166, 169, 170, 191, 201, 212, 213, 238, 264, 265, 267, 270, 271, 289, 293, 319, 578, 603], "bequ": 25, "kopi": [25, 27], "umzieh": 27, "schritt": [27, 82, 83, 84, 85, 86, 87, 88, 89, 314, 632], "installation": [27, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 206, 221, 223, 225, 249, 269, 278, 284, 628, 630, 685], "linux": [27, 79, 82, 83, 87, 88, 181], "mosquitto": [27, 84], "onewir": [27, 87, 261, 461], "samba": [27, 88], "sichern": 27, "ubertrag": 27, "dat": [27, 58, 187, 222, 223, 260, 262, 411, 520, 599, 634], "verzeichnis": [27, 75, 103, 105, 106, 109, 112], "databas": [27, 186, 187, 222, 223, 396, 428], "executor": [27, 203, 410], "plugins_cach": 27, "einspiel": 27, "restarbeit": [27, 82], "produktiv": 27, "einricht": [27, 84, 90, 207, 226, 596], "letzt": [27, 162, 693], "konfigurationsander": 27, "transf": 27, "losch": [27, 630], "datenschutzerkla": 28, "rung": 28, "datenschutz": 28, "serv": [28, 76, 154, 534, 688], "fil": [28, 54, 55, 273, 294, 353, 368, 430, 472, 688], "ssl": [28, 161, 382, 406, 429], "verschlu": 28, "sselung": 28, "widerspruch": 28, "werb": 28, "mail": [28, 241], "development": [29, 211], "guidelin": 29, "sampl": [30, 33, 34, 251], "requirement": [30, 154, 157, 158, 173, 175, 176, 182, 183, 185, 186, 190, 193, 198, 202, 208, 209, 218, 219, 227, 231, 234, 235, 236, 239, 240, 245, 247, 248, 251, 253, 257, 258, 260, 262, 266, 273, 274, 275, 278, 280, 281, 290, 294, 297, 301, 305, 308, 311, 312, 313, 315, 334, 335, 341, 342, 344, 349, 352, 355, 358, 361, 365, 368], "configuration": [30, 154, 157, 158, 160, 173, 175, 176, 180, 182, 183, 186, 190, 193, 195, 198, 202, 208, 209, 211, 218, 221, 231, 234, 235, 236, 239, 240, 245, 247, 248, 251, 253, 254, 257, 258, 260, 269, 273, 274, 275, 278, 280, 281, 290, 294, 296, 297, 298, 301, 305, 308, 312, 315, 317, 334, 335, 341, 342, 344, 352, 355, 358, 361, 365, 368], "param1": 30, "param2": 30, "optional": [30, 157, 158, 192, 288, 688, 689], "api": [30, 44, 132, 137, 143, 147, 148, 154, 157, 158, 170, 187, 211, 219, 226, 612, 613, 615, 616], "of": [30, 154, 157, 158, 162, 211, 219, 234, 251, 260, 278, 335, 353], "test": [30, 47, 85, 86, 90, 154, 157, 158, 328], "if": [30, 154, 157, 158], "is": [30, 47, 154, 157, 158, 253, 335], "loaded": [30, 154, 157, 158], "method": [30, 46, 58, 62, 157, 158, 173, 183, 190, 193, 211, 218, 234, 251, 280, 305, 361, 365, 565, 591, 599, 618], "for": [30, 154, 157, 158, 175, 190, 206, 211, 218, 235, 236, 247, 317, 335, 342, 353, 356, 368], "implementing": [30, 157, 158], "a": [30, 154, 157, 158, 162, 192, 219, 353], "web": [30, 31, 32, 33, 34, 67, 76, 157, 158, 162, 164, 165, 166, 167, 169, 170, 171, 172, 178, 179, 181, 184, 187, 188, 189, 191, 192, 197, 200, 201, 204, 210, 212, 213, 214, 215, 219, 220, 222, 223, 228, 229, 230, 232, 237, 238, 241, 242, 243, 244, 246, 249, 250, 251, 252, 255, 259, 261, 262, 263, 264, 265, 266, 267, 268, 276, 277, 280, 284, 285, 286, 287, 289, 291, 302, 306, 307, 310, 311, 314, 320, 336, 337, 338, 339, 340, 343, 346, 347, 348, 349, 351, 357, 359, 360, 362, 363, 366, 367, 369, 558, 559], "get_": 30, "pluginnam": [31, 32], "kleinbuchstab": [31, 32], "anforder": [31, 32, 33, 34, 79, 122, 165, 167, 168, 178, 179, 189, 192, 197, 200, 214, 215, 223, 229, 249, 250, 255, 259, 261, 265, 272, 276, 277, 284, 287, 300, 306, 307, 309, 310, 314, 336, 339, 340, 343, 346, 351, 359, 360, 363, 369, 370, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "notwend": [31, 32, 33, 34, 168, 178, 197, 214, 215, 250, 259, 261, 265, 276, 277, 284, 287, 300, 306, 307, 314, 339, 340, 359, 363, 369, 687], "softwar": [31, 32, 33, 34, 79, 168, 173, 175, 176, 178, 190, 197, 214, 215, 219, 223, 235, 236, 250, 251, 259, 261, 265, 276, 277, 284, 287, 300, 306, 307, 314, 315, 339, 340, 359, 363, 369], "unterstutzt": [31, 32, 33, 34, 79, 162, 165, 167, 168, 178, 192, 197, 210, 214, 215, 255, 259, 261, 276, 277, 284, 286, 293, 300, 306, 307, 310, 314, 339, 340, 346, 351, 363, 369, 641, 643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "gerat": [31, 32, 33, 34, 164, 165, 168, 178, 197, 210, 214, 215, 259, 261, 276, 277, 284, 286, 300, 306, 307, 310, 314, 339, 340, 351, 363, 369, 688], "version": [31, 32, 67, 79, 92, 111, 162, 173, 175, 176, 190, 218, 234, 235, 236, 247, 248, 251, 262, 271, 277, 280, 284, 315, 318, 365, 442, 500, 628, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 675, 691], "history": [31, 32, 173, 175, 176, 190, 235, 236, 251, 271, 277, 280, 284, 341, 365], "tab": [32, 74, 219, 261], "nam": [32, 33, 34, 52, 162, 170, 186, 205, 219, 251, 273, 325, 382, 396, 446, 463, 472, 479, 512], "einsetz": [33, 34], "einleit": 36, "Wie": [36, 50, 282, 283], "all": [36, 234, 545, 546], "zusammenhangt": 36, "bau": [37, 73], "dokumentation": [37, 51, 52, 54, 55, 78, 302, 597, 625, 641, 652, 653, 654, 655, 656, 671, 672, 674, 675], "checkout": 37, "option": [37, 416, 635], "build": [37, 628], "skript": [37, 629], "entwickl": [38, 41, 115, 116, 159, 162, 357, 693], "cor": [38, 40, 76, 154, 637, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 669, 670, 671, 672, 673, 674, 675, 691], "programm": [39, 49], "Der": [40, 52, 54, 55, 162, 331], "lib": [40, 76, 126, 127, 128, 129, 130, 131, 132, 135, 136, 137, 138, 139, 140, 141, 142, 143, 146, 147, 148, 149, 150, 151, 152, 669, 670], "under": [42, 47], "construction": [42, 47], "einfuhr": [42, 76, 80, 196, 203, 217, 223, 224, 271, 302, 321, 347], "behandl": 42, "fehl": [42, 270, 271, 588], "syntakt": 42, "laufzeit": [42, 76, 588, 632], "verlass": 42, "metadat": [43, 52, 54, 55, 605, 612, 613, 614, 615, 616, 619], "ohn": [43, 53, 170, 601, 602, 603, 604, 608, 609], "readm": [45, 154, 157, 158, 612, 613, 615], "metadata": [45, 53, 139], "asyncio": [46, 618], "denen": 46, "ausgefuhrt": 46, "werd": [46, 162], "kombini": 46, "entwicklungsrichtlini": 47, "git": 47, "github": 47, "Die": [47, 52, 54, 55, 62, 219, 594], "repositori": 47, "branch": 47, "quell": 47, "find": [47, 430], "stil": 47, "programmi": 47, "beginn": 47, "tool": [47, 76, 150, 258, 599, 646, 650, 652, 653, 654, 655, 656, 676], "pep8": 47, "autopep8": 47, "flake8": 47, "dokumenti": 47, "basic": [47, 162], "rul": 47, "fork": 47, "merg": 47, "description": [47, 182, 198, 208, 234, 294, 368, 471], "deprecated": [47, 682], "has": 47, "to": [47, 185, 254, 273, 353, 356, 357, 445, 534, 650, 670], "be": 47, "updated": 47, "config": [47, 126, 154, 227], "arbeit": 47, "befehlszeil": 47, "client": [47, 154, 688], "nutzlich": 47, "befehl": [47, 181], "global": 47, "einstell": [47, 170, 289, 332, 347], "kurzanleit": [48, 85], "unterstutz": [50, 54, 61, 97, 192, 314, 618], "mehr": [50, 61, 97, 682], "sprach": [50, 61], "text": [50, 164, 430, 491, 586], "mehrsprach": [50, 54, 55], "kennzeichn": 50, "In": [50, 52, 222], "jinja2": 50, "Im": 50, "funktioniert": [50, 69], "ubersetz": [50, 169], "hinzufug": [50, 58, 76, 95, 212, 213, 265, 289, 687], "platzhalt": [50, 164, 338, 566], "nutz": [50, 688], "user_doc": [51, 52], "rst": [51, 52], "wenig": 52, "minut": 52, "eig": [52, 85, 189], "konfiguri": [52, 83, 84, 86, 87, 88, 292, 628], "systemkonfiguration": [52, 96], "__init__": 52, "vordefiniert": [52, 330], "webinterfac": [52, 54, 55, 56, 57, 58, 60, 62, 163, 170, 179, 184, 187, 192, 200, 203, 210, 212, 213, 220, 252, 255, 265, 266, 268, 289, 302, 309, 311, 321, 348, 349, 357, 360, 366], "scheduler_add": 52, "obj": 52, "function": [52, 103, 186, 195, 198, 231, 240, 253, 260, 273, 301, 312, 317, 335, 344, 355, 365, 368, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538], "cron": 52, "int": 52, "next": [52, 314], "dateobject": 52, "valu": [52, 106, 168, 193, 198, 231, 301, 351, 365, 379, 380, 406, 522], "offset": [52, 423], "scheduler_remov": 52, "such": 52, "item_path": 52, "verand": [52, 162], "call": [52, 168, 170, 380, 490], "detailliert": 53, "item_attribut": [53, 602], "attribut": [53, 76, 97, 100, 170, 182, 185, 189, 196, 198, 211, 212, 213, 230, 231, 240, 245, 255, 256, 257, 262, 265, 276, 278, 288, 289, 293, 298, 301, 312, 313, 315, 335, 337, 344, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 561, 566, 573, 575, 576, 577, 601, 602, 603, 686], "item_struct": [53, 170, 603], "geschachtelt": [53, 603], "redefinini": [53, 603], "definition": [53, 97, 105, 106, 112, 162, 323, 332, 603, 632, 682, 689], "multi": [53, 97, 123, 296, 603], "instanc": [53, 97, 123, 154, 296, 365, 603], "logic_paramet": [53, 604], "plugin_function": [53, 609], "beispielplugin": [54, 55], "quelltext": [54, 55], "Das": [54, 55, 60, 69, 331, 594, 595, 628, 632], "tooltips": 56, "cooki": [56, 164], "kalenderansicht": 56, "komponent": 57, "drittanbiet": 57, "automat": [58, 289, 302, 682], "new": [58, 61, 62, 90, 211, 317, 318, 506, 643, 644, 645, 646, 649, 650, 651, 665, 666, 667, 669, 670, 691], "erweit": [58, 59], "get_data_html": 58, "ids": [58, 62, 205, 510], "dom": [58, 62], "element": [58, 62, 563], "zuweis": [58, 62], "javascript": [58, 62], "handleupdateddata": 58, "sortierbar": 58, "tabell": 58, "tabellenzeil": 58, "hervorheb": 58, "\u00c4nderungen": [58, 270, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 684], "festleg": 58, "aktualisierungsintervall": 58, "dataset": 58, "dynam": 58, "besteh": [59, 164], "inhalt": [60, 77], "full": 60, "interaktion": [62, 338], "submit": 62, "implementi": [62, 76], "aktiv": [62, 79, 632], "defini": [62, 97], "handling": [62, 353, 685], "class": [63, 66, 132, 133, 134, 143, 144, 145, 620, 623, 624], "mqttplugin": [63, 620, 621], "smartplugin": [66, 621, 624], "voruberleg": 67, "fragestell": 67, "typ": [67, 335, 376, 508, 510, 517, 579, 621], "gateway": [67, 177, 179, 248, 548, 549], "protokoll": [67, 76, 219, 279, 302, 552, 553, 622], "cloud": [67, 558, 559], "vorlag": [67, 166, 169, 191, 201, 238, 264, 267, 319], "packag": 67, "virtuell": [68, 79, 89, 262, 630], "umgeb": 68, "venv": [68, 630], "pyenv": 68, "pipenv": 68, "faq": 69, "haufig": 69, "gestellt": 69, "frag": 69, "schalt": [69, 71, 162], "aktor": [69, 210], "websit": 69, "fehlersuch": [70, 71], "gui": [70, 76, 83, 93, 155, 638], "checklist": 71, "lauft": [71, 83], "debugmodus": 71, "start": [71, 83, 89, 90, 186, 317, 398, 479, 481, 506, 628, 632], "zugriff": [71, 85, 181, 262, 563, 565, 566, 591], "via": [71, 82, 181, 200, 314, 335], "eibd": 71, "Kann": 71, "kontakt": [71, 77], "sh": [71, 186, 273, 274, 317, 599, 636], "cli": [71, 180, 181, 333, 370, 391], "windows": [71, 181], "putty": [71, 181], "kitty": 71, "admonition": 72, "art": 72, "by": [72, 205, 353, 519], "the": [72, 154, 219, 235, 236, 251, 254, 353, 356, 357, 643, 644, 645, 646, 647, 648, 649, 650, 651, 653, 654, 656, 691], "way": 72, "compili": 73, "paket": [73, 83, 85, 87, 88, 628], "quellcod": [73, 83, 85], "lad": [73, 83, 85], "schnur": 73, "stichwort": 75, "ide": 76, "releas": [76, 79, 329, 341, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 691, 692, 693], "9": [76, 253, 294, 589, 649, 650, 651, 652, 653, 654, 666, 687], "inhaltsubersicht": 76, "nesting": 76, "network": [76, 141, 256, 258, 457, 688], "daemoniz": 76, "uberarbeit": 76, "trigg": [76, 219, 328, 425, 594], "shutdown": 76, "user": [76, 82, 157, 158, 161, 162, 185, 424, 436, 479, 526, 592, 688], "wahrend": 76, "einzeln": [76, 332], "loglevel": [76, 538], "color": [76, 162, 407, 491], "routin": 76, "erweiter": [76, 641, 642, 671, 672, 673, 674, 688], "websocket": [76, 122, 355, 356, 357, 616, 690], "nutzdat": [76, 302], "shngadmin": 76, "Nach": 76, "neustart": [76, 116], "infos": [76, 682], "les": [76, 563], "dark": 76, "mod": [76, 293, 344, 412, 479, 516, 528], "hue2": [76, 212, 419], "rtr2": [76, 289, 487], "tasmota": [76, 337, 511], "formal": 76, "impressum": 77, "angab": [77, 106, 162], "gema": 77, "ss": 77, "5": [77, 248, 262, 280, 314, 365, 519, 640, 654, 662, 670, 674, 675], "tmg": 77, "haftung": 77, "fu": 77, "r": 77, "link": [77, 273, 315, 472], "urheberrecht": 77, "hard": 79, "u": 79, "hardwar": [79, 167, 173, 176, 179, 190, 192, 202, 209, 211, 218, 219, 234, 239, 245, 247, 248, 251, 255, 266, 275, 277, 278, 281, 297, 305, 306, 307, 308, 309, 315, 334, 341, 346, 349], "maschin": 79, "raspberry": [79, 82, 285], "pi": [79, 82, 278, 285], "3": [79, 162, 185, 234, 235, 236, 248, 271, 278, 280, 314, 318, 375, 589, 632, 652, 660, 670, 671, 672, 674, 688], "4": [79, 112, 169, 219, 248, 278, 318, 365, 653, 661, 671, 672, 673, 674], "vorteil": [79, 106, 270, 271], "nachteil": 79, "intel": 79, "nuc": 79, "vergleichbar": 79, "nas": 79, "z": 79, "b": [79, 92, 192], "synology": [79, 258, 259], "qnap": 79, "einplatinencomput": 79, "banana": 79, "odroid": 79, "beaglebon": 79, "betriebssystem": 79, "minimum": [79, 641, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 671, 672, 674, 691], "Zur": 79, "verdeutlich": 79, "org": [79, 428], "dokumentiert": 79, "php": 79, "unt": [79, 86, 574], "distribution": 79, "enthalt": 79, "dock": [80, 481], "compos": 80, "anleit": 80, "debian": [82, 86, 161], "softwareauswahl": 82, "einlogg": 82, "ssh": [82, 278], "konsol": 82, "systemaktualisier": 82, "sudo": 82, "standby": 82, "energiesparmodus": 82, "abschalt": 82, "userumgeb": 82, "bibliothek": [83, 671, 674], "erstmal": [83, 98], "uberpruf": 83, "initial": [83, 98], "kommandozeil": [83, 635], "fortgeschritt": 83, "brok": [84, 291, 337], "servic": [84, 260, 502], "visu": [85, 353, 356, 357, 682, 689], "seit": [85, 302, 354, 682, 689], "anleg": [85, 226], "nachinstallation": 85, "visu_smartvisu": [85, 353, 354, 523], "mischung": [85, 302, 354], "generiert": [85, 302, 354], "erstellt": [85, 302, 354, 682], "systemd": 86, "owserv": 87, "einrecht": 89, "environment": [89, 627, 630], "esphom": 90, "dashboard": [90, 226], "komplettanleit": 91, "alt": [92, 106, 111, 112], "vorgehensweis": 92, "plan": 92, "betriebssystemupdat": 92, "versionsdetail": 92, "ab": [92, 112, 162, 339, 340, 589, 684], "v1": [92, 112, 271, 277, 278, 589, 684, 692, 693], "6": [92, 235, 236, 247, 315, 641, 642, 643, 663], "hoh": [92, 162], "upgrad": 92, "konvertier": [92, 106], "dialog": [93, 156, 303, 356, 357], "feiertag": [96, 104, 599, 633, 634], "uberblick": [97, 100, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 685, 689], "anwend": [97, 262, 338], "selb": [97, 596], "definiert": [97, 162, 596], "verschachtelt": 97, "nested": 97, "re": 97, "auss": 97, "verhalt": 97, "sub": [97, 682], "definitionsdatei": 97, "setup": [98, 160, 185, 205, 227], "namensvergab": 100, "properti": [100, 567, 591], "Sichern": 102, "wiederherstell": 102, "umfang": 102, "sicher": 102, "holidays": 104, "benutzerdefiniert": 104, "konfigurationsdatei": [104, 106, 115], "scen": [106, 112, 146, 154, 219], "aufbau": [106, 187, 326], "dateiformat": 106, "format": [106, 112, 294, 295], "besond": [106, 184, 268, 306, 307, 325, 331], "wertelist": 106, "nacharbeit": [106, 688], "grundleg": 106, "regeln": 106, "basis": 106, "datatyp": [106, 622], "skalar": 106, "sequenz": 106, "zuordnung": 106, "kommentar": 106, "referenzier": 111, "konfigurationsformat": 112, "neuer": [112, 692, 693], "struct_": 114, "level": [115, 399], "kurzdoku": 115, "eintrag": [115, 170], "handl": [115, 154, 585], "filt": [115, 116, 575, 583], "verander": 115, "best": [115, 116], "practic": [115, 116], "grundkonfiguration": 116, "logausgab": 116, "identifizi": 116, "zusatzlog": 116, "bess": 116, "simpl": 116, "formatt": [116, 584], "erweitert": [116, 314, 563], "standardparamet": [117, 592, 600], "fahig": [123, 162], "verfugbar": [123, 262], "funktionsweis": [124, 316], "connection": [127, 281], "constant": 128, "daemon": 129, "db": [130, 186, 317, 396, 506], "env": 131, "item_conversion": 135, "logutil": 138, "orb": 142, "pluginwrapp": [143, 145], "shtim": 148, "shyaml": 149, "translation": 151, "util": 152, "auth": 154, "authentification": 154, "post": 154, "get": [154, 235, 236, 254, 273, 335], "information": [154, 170, 218, 262, 278, 279, 285, 291, 293, 302, 337, 354, 357], "about": 154, "s": [154, 161, 162, 688], "or": 154, "common": [154, 161], "put": [154, 251], "xxx": 154, "content": [154, 162, 219], "lognam": 154, "installed": 154, "configured": 154, "singl": [154, 296], "plgsection": 154, "delet": [154, 273], "running": 154, "restart": 154, "requ": [155, 156, 303, 304, 356, 357], "monitor": [155, 170, 304, 356, 357], "ping": [155, 304, 356, 357, 599], "seri": [155, 186, 224, 304, 356, 357], "series_cancel": [155, 304, 356, 357], "log_cancel": [155, 304], "proto": [155, 304, 356, 357], "identity": [155, 304, 356, 357], "url": [156, 162, 177, 229, 273, 274, 303, 355, 356, 357, 430, 431, 471, 472, 496, 524, 525, 527], "password": [157, 158, 161, 380, 382, 383, 390, 399, 406, 411, 417, 421, 424, 429, 444, 445, 449, 451, 465, 478, 479, 492, 534], "hashed_password": [157, 158, 391], "service_us": [157, 158], "service_password": [157, 158], "service_hashed_password": [157, 158], "port": [157, 158, 256, 355, 377, 379, 380, 382, 386, 391, 393, 400, 405, 406, 408, 409, 433, 434, 435, 440, 441, 442, 443, 444, 445, 449, 451, 452, 453, 457, 459, 461, 464, 467, 470, 475, 478, 488, 494, 495, 497, 498, 499, 507, 524, 617, 688], "servicesport": [157, 158], "showpluginlist": [157, 158], "showservicelist": [157, 158], "starturl": [157, 158], "showtraceback": [157, 158], "webif_pagelength": 157, "registering": 157, "application": [157, 471], "you": 157, "get_local_ip_address": [157, 158], "get_local_hostnam": [157, 158], "get_local_port": [157, 158], "get_local_servicesport": [157, 158], "register_app": [157, 158], "register_servic": [157, 158], "aktuell": [159, 293], "oth": [159, 273], "languag": [159, 365, 516, 532], "alexa": [160, 162, 374, 688], "aws": 160, "lambda": [160, 162], "shortcoming": 160, "pitfall": 160, "nginx": [161, 688], "install": [161, 185], "includ": 161, "d": [161, 192, 688], "sit": 161, "availabl": 161, "your": [161, 185, 251, 273], "hom": 161, "enabled": [161, 479, 592], "sitemap": 161, "let": [161, 688], "encrypt": [161, 688], "certificat": 161, "alexa4p3": [162, 163, 375], "tabl": [162, 219], "sup": 162, "span": 162, "styl": [162, 682], "red": 162, "generell": [162, 219], "chang": [162, 173, 175, 176, 190, 219, 235, 236, 248, 251, 280, 365, 660, 663, 667, 670], "changelog": [162, 179, 195, 216, 248, 249, 273, 274, 278, 309, 310, 338, 351], "20": [162, 632], "10": [162, 198, 219, 253, 406, 632, 642, 655, 656, 693], "2020": [162, 643, 644, 645, 691], "11": [162, 632, 641, 692], "04": 162, "12": [162, 632], "03": [162, 219], "07": 162, "2019": [162, 219, 641, 642], "06": [162, 219], "nikolaus": 162, "01": 162, "17": [162, 671], "02": [162, 219], "26": 162, "19": 162, "31": [162, 632, 652, 654], "2018": [162, 673, 674, 675], "24": [162, 647], "requrirement": 162, "amazon": [162, 185], "skill": 162, "catagori": 162, "einbau": 162, "thermostatcontroll": 162, "thermosensor": 162, "thermostatsensor": 162, "temperatur": 162, "settargettemperatur": 162, "adjusttargettemperatur": 162, "thermostatmod": 162, "powercontroll": 162, "brightnesscontroll": 162, "powerlevelcontroll": 162, "erst": [162, 219, 314, 632], "0": [162, 169, 173, 175, 176, 186, 219, 247, 248, 253, 277, 278, 280, 310, 315, 318, 351, 382, 423, 519, 632, 639, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667], "percentagecontroll": 162, "lockcontroll": 162, "camerastreamcontoll": 162, "camerastreamcontroll": 162, "alexa_csc_proxy_uri": 162, "blue": 162, "dyndn": 162, "vergeb": 162, "kamera": 162, "mittel": [162, 325], "camproxy4alexap3": 162, "stream": 162, "alexa_proxy_credential": 162, "zugangsdat": 162, "alexacamproxy": 162, "fall": 162, "authentication": [162, 254], "dig": 162, "parametriert": 162, "form": 162, "pwd": 162, "alexa_camera_imageuri": [162, 375], "vorschau": 162, "pictur": 162, "alexa_stream_1": 162, "kamara": 162, "Hier": [162, 282], "m\u00fcssen": 162, "detail": [162, 337], "protocol": [162, 355, 356, 458, 522], "rtsp": 162, "resolution": 162, "array": 162, "auflos": [162, 333], "authorizationtyp": 162, "autorisier": 162, "videocodecs": 162, "videocod": 162, "autocodecs": 162, "audiocod": 162, "alexa_csc_uri": [162, 375], "auflist": 162, "stream1": 162, "stream2": 162, "stream3": 162, "scenecontroll": 162, "contactsensor": 162, "colorcontroll": 162, "rangecontroll": 162, "colortemperaturcontroll": 162, "playbackcontroll": 162, "stopp": [162, 632], "rollad": 162, "buro": 162, "fast": 162, "perfekt": 162, "abhangi": 162, "benutzt": 162, "echos": 162, "devic": [162, 168, 170, 171, 195, 205, 274, 291, 292, 293, 337, 380, 392, 399, 403, 421, 422, 473, 497, 498, 499, 538], "beispielfunktion": 163, "alexarc4shng": [164, 376], "voraussetz": [164, 172, 207, 632], "anmeldedat": 164, "radiostation": 164, "send": [164, 193, 194, 228, 254, 278, 430, 445, 534], "itemdefinition": 164, "kommandos": [164, 169, 191, 201, 238, 264, 267, 319, 622], "verwalt": 164, "commandlet": 164, "ssml": 164, "danksag": 164, "disclaim": 164, "apcups": [165, 377], "schlussel": 165, "report": 165, "field": [165, 224, 427], "appletv": [166, 378], "artnet": [167, 379], "asterisk": [168, 380], "ast_dev": [168, 380], "ast_db": [168, 380], "ast_box": [168, 380], "sourc": [168, 380, 628], "dest": [168, 380], "context": [168, 380], "callerid": [168, 380], "non": [168, 186, 278, 423, 430, 471, 519], "db_writ": [168, 380], "key": [168, 231, 301, 380, 388, 394, 433, 462, 468], "db_read": [168, 380], "mailbox_count": [168, 380], "mailbox": [168, 380], "default": [168, 328], "hangup": [168, 380], "avdevic": [169, 381], "avdevice_zon": 169, "instanz": [169, 170, 184, 212, 213, 265, 268, 289], "_speak": 169, "_depend": 169, "_init": 169, "wildcard": 169, "fehlerbeheb": 169, "avm": [170, 382], "fritz": 170, "box": 170, "tr064": 170, "aha": 170, "cancel_call": [170, 382], "get_call_origin": [170, 382], "get_calllist": [170, 382], "get_contact_name_by_phone_numb": [170, 382], "phone_numb": [170, 382], "get_device_log_from_lua": [170, 382], "get_device_log_from_tr064": [170, 382], "get_host_detail": [170, 382], "get_host": [170, 382], "get_hosts_list": [170, 382], "get_phone_nam": [170, 382], "get_phone_numbers_by_nam": [170, 382], "is_host_activ": [170, 382], "reboot": [170, 382], "reconnect": [170, 382], "set_call_origin": [170, 382], "start_call": [170, 382], "wol": [170, 363, 382, 531], "mac_address": [170, 382], "get_number_of_deflection": [170, 382], "get_deflection": [170, 382], "set_deflection_enabl": [170, 382], "farb": 170, "helligkeitseinstell": 170, "bspw": [170, 262], "dect": 170, "500": 170, "farbeinstell": 170, "kombiniert": 170, "hellig": 170, "farbtemperatur": 170, "weiss": [170, 195], "modus": [170, 289, 293, 351], "tr": 170, "064": 170, "vorgeh": [170, 189, 354], "funktionserweiter": [170, 189], "erganz": [170, 189], "itemattribut": 170, "avm_data_typ": [170, 382], "avm_smarthom": [171, 383], "reguirement": 171, "histori": 171, "thermostat": [171, 210], "relais": 171, "alarm": 171, "blockly": [172, 385], "aktualisier": 172, "bos": 173, "soundtouch": 173, "sinc": [173, 176, 248, 251, 365], "needed": [173, 175, 176, 190, 235, 236, 251, 315], "supported": [173, 176, 190, 195, 202, 209, 211, 218, 219, 234, 235, 239, 245, 247, 248, 251, 266, 275, 281, 297, 308, 315, 334, 341, 349, 368], "appendix": [173, 176], "bose_soundtouch": [174, 386], "bsb": 175, "lan": 175, "adapt": 175, "bsblan": [175, 387], "buderus": [176, 388], "rest": [177, 612], "km200": 177, "path": [177, 397, 506, 565, 591], "heatsourc": 177, "heatingcircuit": 177, "dhwcircuit": 177, "recording": 177, "byd_bat": [178, 389], "casambi": [179, 390], "usag": [180, 227, 269, 274, 294, 296, 315, 391], "exampl": [180, 182, 183, 185, 190, 193, 195, 198, 202, 205, 211, 218, 227, 234, 235, 236, 245, 247, 248, 251, 254, 257, 258, 260, 273, 274, 278, 288, 290, 294, 296, 298, 305, 334, 335, 352, 355, 358, 361, 365, 368, 686], "konfigurationsparamet": 181, "co2met": [182, 392], "co2meter_data_typ": [182, 392], "comfoair": [183, 393], "comfoair_s": [183, 393], "comfoair_read": [183, 393], "comfoair_read_afterwrit": [183, 393], "comfoair_read_cycl": [183, 393], "comfoair_init": [183, 393], "comfoair_trigg": [183, 393], "comfoair_trigger_afterwrit": [183, 393], "darksky": [184, 394], "dashbutton": [185, 395], "scapy": 185, "tcpdump": 185, "giv": 185, "unprivileged": 185, "access": 185, "sniff": 185, "packet": 185, "activat": [185, 488, 519], "database_acl": [186, 396], "database_write_on_shutdown": [186, 396], "end": [186, 317, 398, 479, 506], "now": [186, 317, 506], "count": [186, 398], "100": 186, "dbplugin": 186, "id": [186, 205, 335, 396, 510], "dump": [186, 187, 317, 396, 506], "dumpfil": [186, 396, 506], "time_start": [186, 396], "time_": [186, 396], "changed": [186, 396], "changed_start": [186, 396], "changed_": [186, 396], "cur": [186, 396], "insertlog": [186, 396], "duration": [186, 396, 479], "val": [186, 396], "it": [186, 396], "updatelog": [186, 396], "readlog": [186, 396], "deletelog": [186, 396], "insertit": [186, 396], "updateit": [186, 396], "vollstand": [186, 683], "ubernomm": 186, "readit": [186, 396], "readitem": [186, 396], "deleteit": [186, 396], "cleanup": [186, 317, 396, 506], "verwaist": 187, "export": 187, "csv": 187, "sql": 187, "datenbank": [187, 189, 203, 287], "datenbankfunktion": 187, "datenreih": 187, "plot": [187, 289], "einzelauswert": 187, "datalog": [188, 397], "ersatz": [188, 243, 263], "bordmittel": [188, 243, 263], "db_addon": [189, 398], "mysql": 189, "db_addon_fct": [189, 398], "db_addon_info": [189, 398], "db_addon_admin": [189, 398], "verbrauch": 189, "minmax": 189, "zeitraum": 189, "minmax_last": 189, "zaehlerstand": 189, "maintenanc": [189, 337], "erlauter": 189, "temperatursumm": 189, "grunlandtemperatursumm": 189, "wachstumsgradtag": 189, "warmesumm": 189, "kaltesumm": 189, "tagesmitteltemperatur": 189, "deebot": 190, "ozmo": 190, "920": 190, "950": 190, "960": 190, "7": [190, 643, 644, 645, 664], "denon": [191, 400], "dlms": [192, 401], "Nicht": [192, 293, 314, 556, 557], "einrichtungsverfahr": 192, "Einige": 192, "hintergrundinformation": 192, "obis": 192, "c": [192, 211], "e": 192, "f": 192, "codezeil": 192, "ermitteln": [192, 293], "codebeispiel": 192, "dmx": [193, 194, 402], "dmx_ch": [193, 194, 402], "channel": [193, 491], "vorbeding": 194, "kanal": 194, "drexel": 195, "duw_lu_regist": [195, 403], "duw_wp_regist": [195, 403], "drexelundweiss": [196, 403], "ebus": [197, 405], "enigma2": [198, 406], "get_audio_track": [198, 406], "send_messag": [198, 406], "messagetext": [198, 406], "messagetyp": [198, 406], "timeout": [198, 400, 401, 406, 408, 423, 435, 441, 459, 464, 467, 498, 499, 522], "set_power_stat": [198, 406], "get_answ": [198, 406], "ute": 199, "teach": 199, "enocean": [200, 407], "ip": [200, 210, 355, 378, 379, 386, 389, 391, 436, 457, 466, 478, 479, 524, 526, 533], "equipment": 200, "profil": 200, "eeps": 200, "keys": 200, "empfang": 200, "steu": [200, 293], "epson": [201, 408], "eta_pu": [202, 409], "eta": 202, "pellet": 202, "unit": [202, 351, 394, 462, 468, 522], "pu": 202, "loggert": 203, "datenseri": 203, "ausgeb": 203, "zahl": 203, "datensatz": 203, "gpio": [204, 412], "harmony": [205, 413], "hub": 205, "requirenment": 205, "command": [205, 211, 227, 254, 391, 622], "activiti": 205, "activity": 205, "current": 205, "limitation": 205, "helios": [206, 414], "ecx00pro": 206, "vallox": 206, "xx": 206, "se": 206, "short": 206, "widget": [206, 215, 253, 289, 314, 353, 359, 682, 685, 687], "helios_tcp": [207, 415], "verknupf": 207, "variabl": [207, 330, 575, 596], "homeconnect": [208, 416], "homematic": [209, 210, 417], "sensor": [210, 285], "sonstig": [210, 333], "phillips": 211, "hue": [211, 418], "use": 211, "michael": 211, "wurtenberg": 211, "2014": 211, "2015": 211, "2016": [211, 668, 669], "hue_us": [211, 418], "hue_ip": [211, 418], "hue_port": [211, 418], "cycle_lamps": [211, 418], "cycle_bridg": [211, 418], "default_transitiontim": [211, 418, 419, 420], "hue_bridge_id": [211, 418], "formerly": 211, "hue_bridg": 211, "hue_lamp_id": [211, 418], "hue_id": 211, "hue_group_id": [211, 418], "hue_lamp_typ": [211, 418], "light": [211, 599, 636], "stat": [211, 219, 257, 294, 328, 425, 449], "lamp": 211, "groups": 211, "bridg": [211, 212, 213], "related": 211, "hue_list": [211, 418], "errorstatus": 211, "hue_send": [211, 418], "hue_transitiontim": [211, 418], "using": 211, "dpt3": [211, 314], "dimming": 211, "hue_dim_max": [211, 418], "hue_dim_step": [211, 418], "hue_dim_tim": [211, 418], "get_conf": 211, "authorizeus": 211, "featur": [212, 234, 659, 660, 661, 662, 663, 664, 665, 666, 667, 669, 670, 682], "verbind": [212, 213, 233, 622], "hue3": [213, 420], "husky": [214, 421], "credit": [214, 215, 219, 359], "husky2": [215, 422], "sv": [215, 359], "ical": [216, 217, 423], "indego": [218, 219, 424], "x": [218, 251, 270, 656, 691], "y": [218, 251], "furth": [218, 278], "integration": [218, 253], "into": 218, "indego4shng": [219, 220, 425], "2023": [219, 653, 654], "05": 219, "v4": 219, "08": 219, "v3": 219, "2021": [219, 646, 647, 648, 649], "16": [219, 632, 669], "28": [219, 649], "benotigt": [219, 628], "zweit": 219, "originalgartenkart": 219, "setting": [219, 328], "dritt": 219, "viert": 219, "kommunikationsprotokoll": 219, "offent": 219, "funkion": 219, "send_command": [219, 425], "payload": [219, 425], "as": [219, 253, 278], "gardenkart": 219, "pimp": 219, "original": 219, "bosch": 219, "mah": 219, "symbol": 219, "behind": 219, "smarthoneng": 220, "influxdata": [221, 426], "influxdb": [221, 222, 223, 224, 225, 226, 427], "data": [221, 235, 236, 256, 260, 335, 434, 457], "udp": [222, 256, 457], "korrekt": 222, "transferi": [222, 223], "influxdb2": [223, 428], "gespeichert": 223, "Was": 224, "organisation": 224, "bucket": [224, 226, 428], "point": 224, "serienschlussel": 224, "tok": [226, 456, 491, 512, 533], "intercom": 227, "2n": 227, "event": [227, 294, 295, 471], "join": [228, 314, 430, 534], "pluginfunktion": [228, 347], "get_devic": 228, "logikbeispiel": 228, "jsonread": [229, 431], "verschied": 229, "datenquell": 229, "klimaabfrag": 229, "batteriedat": 229, "energiemanag": 229, "jvcproj": [230, 432], "jvcproj_cmd": [230, 432], "jvcproj_gamma": [230, 432], "kommandoerlauter": 230, "kathrein": [231, 433], "todo": [231, 247, 312, 313], "kathreinid": [231, 433], "umwandl": 232, "datentyp": 232, "statist": 232, "kodi": [233, 435], "umstell": 233, "kostal": [234, 235, 236, 436], "hint": [234, 262], "possibl": 234, "depending": 234, "on": 234, "invert": [234, 235], "modbus": [235, 236], "from": [235, 236, 254, 356, 357, 667], "following": [235, 236], "are": [235, 236], "stored": [235, 236], "respectiv": [235, 236], "smart": 236, "energy": 236, "met": 236, "lirc": [237, 440], "lms": [238, 441], "logo": [239, 442], "logo_read": [239, 308, 442, 500], "logo1": [239, 308], "logo_writ": [239, 308, 442, 500], "luxtronic2": [240, 443], "lux2": [240, 443], "lux2_p": [240, 443], "lux2_a": [240, 443], "lux2_c": [240, 443], "mailrcv": [241, 444], "mail_subject": 241, "mail_to": 241, "mailsend": [242, 445], "memlog": [243, 446], "einsatz": 243, "funktionsaufruf": 243, "mieleathom": [244, 447], "miflora": [245, 448], "miflora_data_typ": [245, 448], "mikrot": [246, 449], "milight": [247, 450], "udp_ip": [247, 450], "udp_port": [247, 427, 450], "bricontrol": [247, 450], "cutoff": [247, 450], "hue_calibrat": [247, 450], "milight_sw": [247, 450], "milight_dim": [247, 450], "milight_col": [247, 450], "milight_rgb": [247, 450], "milight_whit": [247, 450], "milight_disco": [247, 450], "milight_disco_up": [247, 450], "milight_disco_down": [247, 450], "rgb": 247, "mlgw": [248, 451], "bang": 248, "olufs": 248, "masterlink": 248, "mlgw_send": [248, 451], "mlgw_cmd": [248, 451], "mlgw_mln": [248, 451], "mlgw_list": [248, 451], "mlgw_room": [248, 451], "modbus_tcp": [249, 452], "pymodbus": 249, "mpd": [250, 453], "her": 251, "w": 251, "mvg_liv": [253, 455], "mvg": 253, "liv": 253, "get_station_departur": [253, 455], "self": 253, "station": [253, 335, 455], "timeoffset": 253, "entri": 253, "ubahn": 253, "true": [253, 423, 527], "tram": 253, "bus": 253, "sbahn": 253, "requir": 253, "select": 253, "used": 253, "neato": [254, 255, 456], "vorwerk": 254, "vacuum": 254, "robot": [254, 255], "authentifizier": 255, "roboterbefehl": 255, "nw": [256, 457], "nw_acl": [256, 457], "nw_udp_list": [256, 457], "nw_tcp_list": [256, 457], "nw_http_list": [256, 457], "nw_udp_send": [256, 457], "benutz": [256, 583, 585], "host": [256, 376, 377, 380, 382, 383, 388, 393, 400, 405, 406, 408, 417, 427, 428, 432, 433, 434, 435, 440, 441, 442, 443, 444, 445, 451, 452, 453, 457, 459, 461, 464, 467, 470, 475, 488, 494, 495, 497, 498, 499, 500, 503, 507, 525], "nuki": [257, 458], "support": [257, 352, 353, 365, 629], "nuki_id": [257, 458], "nuki_trigg": [257, 458], "action": [257, 368], "doorstat": 257, "battery": 257, "nut": [258, 259, 459], "ups": [258, 459], "versionshistori": 259, "odlinfo": [260, 460], "term": 260, "get_stations_for_id": [260, 460], "odlinfo_id": [260, 460], "get_station_for_id": [260, 460], "fill": [260, 335], "with": [260, 335, 667], "radiation": 260, "Wire": 261, "buss": 261, "openweathermap": [262, 462], "migration": 262, "vorher": 262, "funktionaliat": 262, "roh": 262, "json": 262, "speich": 262, "matchstring": 262, "tagesvorhersag": 262, "berechnet": 262, "verdunst": 262, "evapotranspiration": 262, "wetteralarm": 262, "fehlerbehandl": 262, "taglich": 262, "bewasser": 262, "pflanz": 262, "wocht": 262, "ras": 262, "get_beaufort_numb": [262, 462], "value_in_meter_per_second": 262, "get_beaufort_description": [262, 462], "bft_numb": 262, "owm": 262, "operationlog": [263, 463], "oppo": [264, 464], "panasonic_ac": [265, 465], "philips_tv": [266, 466], "pione": [267, 467], "piratewthr": [268, 468], "plex": [269, 469], "pluggit": [270, 271, 470], "einbind": [270, 292, 333, 685], "folgend": [270, 282, 283], "ergeb": 270, "Es": [270, 271], "paar": [270, 271], "ding": [270, 271], "gegenub": 271, "prowl": [272, 471], "pushbullet": [273, 472], "librari": [273, 581], "how": 273, "deviceid": [273, 466, 472], "not": [273, 364, 472, 657], "titl": [273, 274, 430, 469, 472, 527], "body": [273, 472], "apikey": [273, 274, 365, 422, 471, 472, 473, 510, 516, 529, 532], "address": [273, 409, 472, 482], "filepath": [273, 472], "pushid": 273, "pushov": [274, 473], "po": 274, "messag": [274, 445, 469], "priority": [274, 471], "retry": [274, 407], "expir": 274, "ttl": [274, 527], "sound": [274, 430], "url_titl": 274, "userkey": [274, 473], "raumfeld": [275, 474], "device_nam": [275, 430], "stream_url": 275, "raumfeld_ng": [276, 475], "zon": 276, "rcs1000n": [277, 476], "rcswitch": [278, 477], "necessary": 278, "wiringpi": 278, "root": 278, "testing": 278, "sshpass": 278, "troubleshooting": 278, "v0": 278, "resol": [279, 478], "robonect": [280, 479], "roomba": [281, 284, 480], "bluetooth": 281, "ethernet": 281, "roomba_980": [282, 481], "bekomm": [282, 283], "blid": [282, 283, 481, 482], "passwort": [282, 283, 688], "Um": [282, 283], "aktivi": [282, 283, 322], "musst": [282, 283], "eur": [282, 283], "ymal": 282, "aufnehm": [282, 283], "roombapysh": [283, 482], "rpi1wir": [285, 483], "rpi_info": [286, 484], "rrd": [287, 485], "vergleich": 287, "zwisch": [287, 293, 338, 574], "rrdtool": 287, "rtr": [288, 289, 486], "plug": 288, "required": 288, "rtr_current": [288, 486], "rtr_setpoint": [288, 486], "rtr_actuator": [288, 486], "rtr_kp": [288, 486], "rtr_ki": [288, 486], "rtr_stops": [288, 486], "rtr_temp_default": [288, 486], "rtr_temp_boost": [288, 486], "rtr_temp_boost_tim": [288, 486], "rtr_temp_drop": [288, 486], "rtr_hvac_mod": [288, 486], "hvac": 289, "frostschutz": 289, "nachtabsenk": 289, "structur": [289, 682], "abweich": 289, "reglerparamet": 289, "visualisier": [289, 295, 689], "russound": [290, 488], "rus_path": [290, 488], "shelly": [291, 292, 489], "betrieb": 292, "nehm": 292, "wlan": 292, "gen1": 292, "gen2": [292, 293], "gen3": 292, "firmwar": 292, "durchfuhr": 292, "backward": 293, "compatibility": 293, "unterschied": [293, 596, 682, 688], "modi": 293, "kompatibilitat": 293, "simulation": [294, 295, 490], "record": 294, "playback": 294, "control": 294, "8": [294, 317, 646, 647, 648, 665, 674, 684], "internal": 294, "diagram": 294, "aufzeichn": 295, "abspiel": [295, 314], "statusdiagramm": 295, "slack": [296, 491], "sma": [297, 298, 492], "em": 298, "sma_mb": [300, 494], "smarttv": [301, 495], "weiterfuhr": [302, 354], "seitengenerier": 302, "list_item": [304, 356, 357], "list_logics": [304, 356, 357], "sml": [305, 497], "sml_obis": [305, 497, 498, 499], "sml_prop": [305, 497, 498, 499], "sml2": [306, 498], "holley": [306, 307], "dtz541": [306, 307], "smlx": [307, 499], "snap7_logo": [308, 309, 500], "i1": 308, "m3": 308, "snap7": 309, "snmp": [310, 501], "snmp_host": [310, 501], "snmp_commnity": 310, "snmp_oid": [310, 501], "snmp_prop": [310, 501], "solarforecast": [311, 502], "solarlog": [312, 313, 503], "sonos": [314, 504], "bass": 314, "coordinator": 314, "cross_fad": 314, "current_track": 314, "current_track_duration": 314, "current_transport_action": 314, "current_valid_play_mod": 314, "dialog_mod": 314, "household_id": 314, "is_coordinator": 314, "is_initialized": 314, "load_sonos_playlist": 314, "loudness": 314, "streamtyp": 314, "mut": 314, "night_mod": 314, "number_of_track": 314, "paus": [314, 378, 399], "play": [314, 378], "player_nam": 314, "play_mod": 314, "play_snippet": 314, "play_tt": 314, "play_sonos_radio": 314, "play_tunein": 314, "play_url": 314, "play_sharelink": 314, "previous": 314, "radio_station": 314, "radio_show": 314, "snooz": 314, "sonos_playlist": 314, "status_light": 314, "buttons_enabled": 314, "stop": [314, 481], "stream_content": 314, "switch_line_in": 314, "switch_tv": 314, "track_album": 314, "track_album_art": 314, "track_artist": 314, "track_titl": 314, "track_uri": 314, "trebl": 314, "uid": 314, "unjoin": 314, "volum": 314, "zone_group_memb": 314, "sonos_favorit": 314, "favorite_radio_station": 314, "play_favorite_titl": 314, "play_favorite_numb": 314, "play_favorite_radio_titl": 314, "play_favorite_radio_numb": 314, "echtzeitfah": 314, "gruppenbefehl": 314, "radios": 314, "playlist": 314, "4a": 314, "lautstark": 314, "inkrementell": 314, "verstell": 314, "4b": 314, "minimalbeispiel": 314, "speech": [315, 316, 505], "sp": [315, 505], "sqlit": [317, 506], "filenam": [317, 506], "mov": [317, 506], "old": [317, 506], "squeezebox": [318, 319, 507], "stateengin": [320, 508], "funktionalitat": 321, "umstieg": 321, "autoblind": 321, "pluginkonfiguration": 322, "regelwerk": 323, "se_it": 323, "se_status": 323, "se_eval": 323, "zustand": [324, 329, 331, 333], "beding": [324, 325], "aktion": [324, 326, 332], "referenzi": 325, "bedingungsgrupp": 325, "wertevergleich": 325, "bedingungsabfrag": 325, "ausdruck": [325, 573, 575], "bedingungslist": 325, "vergleichsfunktion": 325, "auszufuhr": 326, "aktionsart": 326, "ausfuhrungszeitpunkt": 327, "aktionsausfuhr": 327, "automatisier": 328, "raffstor": 328, "engin": 328, "general": 329, "lock": 329, "suspend": [329, 331, 398, 484, 488], "suspend_dynamic": 329, "standard": [329, 347, 577], "pluginspezif": 329, "sperr": 331, "aussetz": 331, "dau": 331, "zeitweis": 331, "deaktivier": 331, "neukonfiguration": 333, "hierarchi": 333, "zustandsnam": 333, "systemair": [334, 509], "workaround": 334, "tankerkoen": [335, 336, 510], "cheap": 335, "one": 335, "that": 335, "requested": 335, "its": 335, "get_petrol_station": [335, 510], "lat": [335, 510], "lon": [335, 510], "sort": [335, 510], "rad": [335, 510], "get_petrol_station_detail_full": 335, "petrol": 335, "pric": 335, "bekannt": 337, "zigbe": 337, "telegram": [338, 512], "abhang": [338, 339, 340], "telegram_chat_id": [338, 512], "telegram_messag": [338, 512], "telegram_condition": [338, 512], "telegram_value_match_regex": [338, 512], "telegram_message_chat_id": [338, 512], "telegram_info": [338, 512], "telegram_text": [338, 512], "telegram_control": [338, 512], "msg_broadcast": [338, 512], "photo_broadcast": [338, 512], "menugestutzt": 338, "text_display": [339, 340, 513], "nachrichtensenk": [339, 340], "fenst": [339, 340], "nachrichtenquell": [339, 340], "aussentemperatur": [339, 340], "fensterstatus": [339, 340], "anruf": [339, 340], "meldung": [339, 340], "thz": [341, 514], "timmy": [342, 343, 515], "traffic": [344, 516], "get_route_info": [344, 516], "origin": [344, 516], "destination": [344, 516], "unifi": [346, 518], "uzsu": [347, 519], "experteneinstell": 347, "zeitseri": 347, "interpolation": [347, 519], "datenformat": 347, "vacation": [348, 520], "vicar": [349, 521], "reit": 349, "viessmann": [350, 351, 522], "viess_read": [351, 522], "viess_send": [351, 522], "viess_read_afterwrit": [351, 522], "viess_read_cycl": [351, 522], "viess_init": [351, 522], "viess_trigg": [351, 522], "viess_trigger_afterwrit": [351, 522], "viess_updat": [351, 522], "viess_tim": [351, 522], "viess_ba_list": [351, 522], "update_all_read_item": [351, 522], "read_addr": [351, 522], "addr": [351, 522], "read_temp_addr": [351, 522], "length": [351, 522], "write_addr": [351, 522], "standalon": 351, "visualisation": [352, 353, 355, 356], "visu_dir": 352, "smartvisu_dir": [352, 496, 523], "handle_widget": [352, 496, 523], "visu_acl": [352, 355, 496, 524], "sv_pag": [352, 496, 523, 686], "sv_overview": [352, 496, 523, 686], "sv_img": [352, 496, 523, 686], "sv_nav_asid": [352, 496, 523, 686], "sv_nav_aside2": [352, 496, 523, 686], "sv_widget": [352, 353, 496, 523, 686], "sv_widget2": [352, 496, 523, 686], "sv_item_typ": [352, 496, 523, 686], "sv_heading_left": [352, 496, 523, 686], "sv_heading_cent": [352, 496, 523, 686], "sv_heading_right": [352, 496, 523, 686], "__": 353, "init": 353, "subdirectory": 353, "tplng": 353, "add": 353, "modification": 353, "mad": 353, "empfohl": 354, "tls": [355, 444, 445, 524], "wsproto": [355, 524], "acl": [355, 505, 524], "querydef": [355, 524], "visu_websocket": [356, 357, 524], "sent": [356, 357], "volkszaehl": [358, 525], "vz_uuid": [358, 525], "webpush": [359, 527], "urgency": 359, "webservic": [360, 528], "nutzungshinweis": 360, "wettercom": [361, 529], "search": 361, "location": [361, 365, 532], "forecast": 361, "city_cod": 361, "withings_health": [362, 530], "vorbereit": [362, 632], "wunderground": [364, 365, 366, 532], "important": 364, "item_subtre": [365, 532], "wug_matchstring": [365, 532], "wug_datatyp": [365, 532], "xiaomi_vac": [367, 533], "xmpp": [368, 534], "xep": 368, "yamaha": [369, 535], "yamahayxc": [370, 536], "anmerk": [370, 545, 547, 548, 550, 552, 554, 558], "zigbee2mqtt": [371, 537], "service_host": 374, "service_port": [374, 375], "alexa_action": 375, "alexa_alias": 375, "alexa_auth_cred": 375, "alexa_color_temp_delta": 375, "alexa_color_value_typ": 375, "alexa_description": 375, "alexa_devic": 375, "alexa_icon": 375, "alexa_item_rang": 375, "alexa_item_turn_on": 375, "alexa_nam": 375, "alexa_proactivelyreported": 375, "alexa_range_delta": 375, "alexa_retrievabl": 375, "alexa_stream_": 375, "alexa_thermo_conf": 375, "alexa_typ": 375, "alexa_credential": 376, "cookiefil": 376, "item_2_enable_alexa_rc": 376, "login_update_cycl": 376, "mfa_secret": 376, "get_last_alexa": 376, "get_list": 376, "send_cmd": 376, "dvnam": 376, "cmdnam": 376, "mvalu": 376, "scan_timeout": 378, "is_on": 378, "is_playing": 378, "artnet_net": 379, "artnet_subnet": 379, "artnet_univers": 379, "min_channel": 379, "update_cycl": [379, 401, 415, 424, 437, 438, 439, 509], "artnet_address": 379, "send_fram": 379, "send_frame_starting_at": 379, "adr": 379, "send_single_valu": 379, "usernam": [380, 382, 383, 406, 417, 429, 444, 445, 449, 451, 465], "autoreconnect": [381, 400, 408, 435, 440, 441, 464, 467, 507], "depend0_power0": 381, "depend0_volume0": 381, "dependson_it": 381, "dependson_valu": 381, "errorrespons": 381, "forcebuff": 381, "ignorerespons": 381, "inputignoredisplay": 381, "lineending_respons": 381, "lineending_s": 381, "model": [381, 400, 408, 464, 467], "reconnectretri": 381, "resendwait": 381, "resetonerror": 381, "responsebuff": 381, "rs232_baudrat": 381, "rs232_port": 381, "rs232_timeout": 381, "secondstokeep": 381, "sendretri": 381, "statusquery": 381, "tcp_ip": 381, "tcp_port": 381, "tcp_timeout": 381, "update_exclud": 381, "avdevice_dep": 381, "avdevice_init": 381, "avdevice_speak": 381, "avdevice_zone0": 381, "avdevice_zone0_dep": 381, "avdevice_zone0_init": 381, "avdevice_zone0_speak": 381, "avdevice_zone1": 381, "avdevice_zone1_dep": 381, "avdevice_zone1_init": 381, "avdevice_zone1_speak": 381, "avdevice_zone2": 381, "avdevice_zone2_dep": 381, "avdevice_zone2_init": 381, "avdevice_zone2_speak": 381, "avdevice_zone3": 381, "avdevice_zone3_dep": 381, "avdevice_zone3_init": 381, "avdevice_zone3_speak": 381, "avdevice_zone4": 381, "avdevice_zone4_dep": 381, "avdevice_zone4_init": 381, "avdevice_zone4_speak": 381, "avm_home_automation": 382, "call_monitor": 382, "call_monitor_incoming_filt": 382, "log_entry_count": 382, "tr064_item_blacklist": 382, "verify": [382, 406, 423, 460], "avm_ain": [382, 383], "avm_data_cycl": 382, "avm_deflection_index": 382, "avm_incoming_allowed": 382, "avm_mac": 382, "avm_read_after_writ": 382, "avm_tam_index": 382, "avm_target_numb": 382, "avm_wlan_index": 382, "filter_incoming": 382, "phonebook_id": 382, "deflection_id": 382, "index": [382, 479], "only_activ": 382, "get_hosts_dict": 382, "identifier_list": 382, "filter_dict": 382, "get_mesh_topology": 382, "phone_nam": 382, "enabl": 382, "avm_smarthome_data": 383, "beolink": 384, "rescan_on_start": 384, "scan_fromip": 384, "scan_toip": 384, "beo_command": 384, "beo_id": 384, "beo_status": 384, "section_prefix": 385, "cycle_tim": [386, 486], "bose_soundtouch_action": 386, "bsblan_ip": 387, "km_id": 388, "diag_cycl": 389, "imgpath": 389, "log_ag": 389, "log_data": 389, "byd_para": 389, "byd_root": 389, "api_key": [390, 430], "email": [390, 411], "casambi_id": 390, "casambi_rx_key": 390, "casambi_tx_key": 390, "add_command": 391, "group": [391, 398, 430, 527], "remove_command": 391, "time_sleep": 392, "kwltyp": 393, "serialport": [393, 400, 401, 402, 407, 408, 439, 464, 467, 497, 498, 499, 509, 522], "lang": [394, 462, 468], "latitud": [394, 462, 468, 502], "longitud": [394, 462, 468, 502], "ds_matchstring": 394, "map_icon": [394, 468], "dashbutton_mac": 395, "dashbutton_mod": 395, "dashbutton_reset": 395, "dashbutton_valu": 395, "connect": 396, "copy_databas": 396, "copy_database_nam": 396, "count_logentri": 396, "default_maxag": 396, "driv": 396, "max_delete_logentri": 396, "precision": 396, "prefix": 396, "removeold_cycl": 396, "database_maxag": 396, "filepattern": 397, "logpattern": 397, "database_plugin_conf": 398, "ignore_0": 398, "lock_db_for_query": 398, "optimize_value_filt": 398, "startup_run_delay": 398, "use_oldest_entry": 398, "value_filt": 398, "db_addon_database_it": 398, "db_addon_ignore_valu": 398, "db_addon_ignore_value_list": 398, "db_addon_param": 398, "db_addon_params_dict": 398, "db_addon_startup": 398, "db_version": 398, "fetch_log": 398, "func": 398, "timefram": 398, "group2": 398, "deebot_ozmo": 399, "account": 399, "continent": 399, "country": 399, "interval": [399, 519], "charg": 399, "clean": 399, "clean_spot_area": 399, "area": 399, "locat": 399, "resum": [399, 519], "set_fan_speed": 399, "speed": 399, "set_water_level": 399, "autoconnect": [400, 408, 435, 441, 464, 467], "baudrat": [400, 401, 408, 439, 464, 467, 514], "binary": [400, 408, 464, 467], "bytesiz": [400, 408, 464, 467], "conn_typ": [400, 408, 467], "connect_cycl": [400, 408, 435, 440, 441, 464, 467, 507], "connect_retri": [400, 408, 435, 440, 441, 464, 467, 507], "delay_initial_read": [400, 435, 441, 464, 467], "parity": [400, 408, 464, 467], "resume_initial_read": [400, 435, 441, 464, 467], "retry_cycl": [400, 407, 408, 435, 441, 464, 467], "retry_susp": [400, 408, 435, 441, 464, 467], "send_retri": [400, 435, 441, 464, 467], "sendretry_cycl": [400, 441, 464, 467], "stopbit": [400, 408, 464, 467], "suspend_it": [400, 408, 435, 441, 464, 467], "terminator": [400, 408, 441, 464, 467], "denon_command": 400, "denon_lookup": 400, "denon_read": 400, "denon_read_cycl": 400, "denon_read_group": 400, "denon_read_group_trigg": 400, "denon_read_initial": 400, "denon_readafterwrit": 400, "denon_writ": 400, "baudrate_fix": 401, "device_address": 401, "no_waiting": 401, "only_list": 401, "querycod": 401, "reset_baudrat": 401, "update_crontab": 401, "update_cycle_start_offset": 401, "use_checksum": 401, "dlms_obis_cod": 401, "dlms_obis_readout": 401, "lu_id": 403, "panel_id": 403, "wp_id": 403, "busmonitor": [403, 434], "retrylimit": 403, "tty": [403, 414], "duw_panel_regist": 403, "ebus_cmd": 405, "ebus_typ": 405, "fast_cycl": 406, "enigma2_data_typ": 406, "enigma2_pag": 406, "enigma2_remote_command_id": 406, "sref": 406, "log_unknown_messag": 407, "tx_id": 407, "block_dim_valu": 407, "block_switch": 407, "dim_speed": 407, "enocean_devic": 407, "enocean_rocker_action": 407, "enocean_rocker_sequenc": 407, "enocean_rtim": 407, "enocean_rx_eep": 407, "enocean_rx_id": 407, "enocean_rx_key": 407, "enocean_tx_eep": 407, "enocean_tx_id_offset": 407, "ref_level": 407, "command_class": 408, "epson_command": 408, "epson_lookup": 408, "epson_read": 408, "epson_read_cycl": 408, "epson_read_group": 408, "epson_read_group_trigg": 408, "epson_read_initial": 408, "epson_writ": 408, "setnam": 409, "setpath": 409, "eta_pu_error": 409, "eta_pu_typ": 409, "eta_pu_uri": 409, "script_entri": 410, "script": [410, 688], "garminconnect": 411, "is_cn": 411, "get_heart_rat": 411, "get_stat": 411, "bouncetim": 412, "initretri": 412, "pullupdown": 412, "gpio_in": 412, "gpio_init": 412, "gpio_invert": 412, "gpio_out": 412, "gpio_pud": 412, "harmony_ip": 413, "harmony_port": 413, "sleekxmpp_debug": 413, "harmony_command_0": 413, "harmony_command_1": 413, "harmony_it": 413, "e0": 414, "e1": 414, "e10": 414, "e2": 414, "e3": 414, "e4": 414, "e5": 414, "e6": 414, "e7": 414, "e8": 414, "e9": 414, "filter_warning": 414, "helios_var": 414, "helios_ip": 415, "client_id": [416, 530], "client_secret": 416, "simulat": 416, "ha_id": 416, "homeconnect_data_typ": 416, "get_hc": 416, "get_program_option": 416, "program_key": 416, "get_programs_activ": 416, "get_programs_availabl": 416, "get_programs_selected": 416, "get_redirect_url": 416, "start_program": 416, "stop_program": 416, "callbackhost": 417, "callbackport": 417, "callbackport_hmip": 417, "customcallbackhost": 417, "learnmode_length": 417, "proxyport": 417, "proxyport_hmip": 417, "hm_address": 417, "hm_channel": 417, "hm_function": 417, "hue_listen_group": 418, "hue_send_group": 418, "bridge_ip": [419, 420, 458], "bridge_port": [419, 458], "bridge_serial": [419, 420], "bridge_us": [419, 420], "polltime_bridg": 419, "polltime_light": 419, "polltime_sensor": 419, "dpt3_dim": 419, "hue2_function": 419, "hue2_id": 419, "hue2_reference_light_id": 419, "hue2_resourc": 419, "hue2_transitiontim": 419, "hue3_function": 420, "hue3_id": 420, "hue3_resourc": 420, "hue3_transition_tim": 420, "mapkey": 421, "userid": 421, "husky_control": [421, 422], "husky_info": [421, 422], "husky_operating": 421, "husky_stat": [421, 422], "apisecret": 422, "historylength": 422, "maxgpspoint": 422, "calendar": 423, "directory": 423, "handle_login": 423, "ical_calendar": 423, "ics": 423, "delta": 423, "img_pfad": [424, 425], "indego_url": [424, 425], "parent_it": [424, 425], "indego_add_key": [424, 425], "indego_command": [424, 425], "indego_frequency": 424, "indego_smart": [424, 425], "indego_credential": 425, "path_2_weather_pics": 425, "indego_attr_nam": 425, "indego_attr_typ": 425, "indego_conf": 425, "indego_config_url": 425, "indego_function_4_all": 425, "indego_function_4_visu": 425, "indego_parse_2_attr": 425, "indego_plugin_handled": 425, "mow": 425, "influx_host": 426, "influx_keyword": 426, "influx_port": 426, "influx": 426, "http_port": [427, 428], "keyword": 427, "value_field": [427, 428], "write_http": 427, "influxdb_field": 427, "influxdb_nam": 427, "influxdb_tag": 427, "api_tok": 428, "recognize_databas": 428, "str_value_field": 428, "influxdb2_bucket": 428, "influxdb2_nam": 428, "influxdb2_tag": 428, "intercom_2n": 429, "auth_typ": 429, "intercom_ip": 429, "device_id": 430, "smallicon": 430, "imag": [430, 469, 527], "clipboard": 430, "callnumb": 430, "smsnumb": 430, "smstext": 430, "mmsfil": 430, "wallpap": 430, "lockwallpap": 430, "interruptionfilt": 430, "mediavolum": 430, "ringvolum": 430, "alarmvolum": 430, "jsonread_filt": 431, "gammaconf_dir": 432, "push": 433, "1234": 433, "date_ga": 434, "enable_stat": 434, "log_own_packet": 434, "loglevel_knxd_cache_problem": 434, "project_file_password": 434, "projectpath": 434, "provid": 434, "readonly": 434, "send_tim": 434, "time_ga": 434, "use_project_fil": 434, "knx_cach": 434, "knx_dpt": 434, "knx_init": 434, "knx_list": 434, "knx_poll": 434, "knx_reply": 434, "knx_send": 434, "knx_status": 434, "encod": 434, "groupread": 434, "ga": 434, "fals": [434, 519, 527], "groupwrit": 434, "send_timeout": 435, "kodi_command": 435, "kodi_lookup": 435, "kodi_read": 435, "kodi_read_cycl": 435, "kodi_read_group": 435, "kodi_read_group_trigg": 435, "kodi_read_initial": 435, "kodi_writ": 435, "datastructur": 436, "passwd": [436, 526], "kostalmodbus": 437, "inverter_ip": 437, "modbus_port": [437, 438, 517], "kostal_06": 437, "kostal_100": 437, "kostal_104": 437, "kostal_1056": 437, "kostal_1058": 437, "kostal_106": 437, "kostal_1060": 437, "kostal_1062": 437, "kostal_1064": 437, "kostal_1066": 437, "kostal_108": 437, "kostal_110": 437, "kostal_112": 437, "kostal_114": 437, "kostal_116": 437, "kostal_118": 437, "kostal_120": 437, "kostal_122": 437, "kostal_124": 437, "kostal_14": 437, "kostal_144": 437, "kostal_150": 437, "kostal_152": 437, "kostal_154": 437, "kostal_156": 437, "kostal_158": 437, "kostal_160": 437, "kostal_162": 437, "kostal_164": 437, "kostal_166": 437, "kostal_168": 437, "kostal_170": 437, "kostal_172": 437, "kostal_174": 437, "kostal_178": 437, "kostal_190": 437, "kostal_194": 437, "kostal_200": 437, "kostal_202": 437, "kostal_208": 437, "kostal_210": 437, "kostal_214": 437, "kostal_216": 437, "kostal_218": 437, "kostal_220": 437, "kostal_222": 437, "kostal_224": 437, "kostal_226": 437, "kostal_228": 437, "kostal_230": 437, "kostal_232": 437, "kostal_234": 437, "kostal_236": 437, "kostal_238": 437, "kostal_240": 437, "kostal_242": 437, "kostal_244": 437, "kostal_246": 437, "kostal_248": 437, "kostal_250": 437, "kostal_252": 437, "kostal_254": 437, "kostal_256": 437, "kostal_258": 437, "kostal_260": 437, "kostal_266": 437, "kostal_268": 437, "kostal_270": 437, "kostal_276": 437, "kostal_278": 437, "kostal_280": 437, "kostal_286": 437, "kostal_30": 437, "kostal_32": 437, "kostal_320": 437, "kostal_322": 437, "kostal_324": 437, "kostal_326": 437, "kostal_34": 437, "kostal_36": 437, "kostal_38": 437, "kostal_384": 437, "kostal_420": 437, "kostal_428": 437, "kostal_436": 437, "kostal_446": 437, "kostal_454": 437, "kostal_46": 437, "kostal_512": 437, "kostal_514": 437, "kostal_515": 437, "kostal_517": 437, "kostal_525": 437, "kostal_529": 437, "kostal_531": 437, "kostal_535": 437, "kostal_54": 437, "kostal_559": 437, "kostal_56": 437, "kostal_575": 437, "kostal_577": 437, "kostal_582": 437, "kostal_586": 437, "kostal_588": 437, "kostal_768": 437, "kostal_800": 437, "kostal_98": 437, "ksemmodbus": 438, "ksem_ip": 438, "ksem_0": 438, "ksem_16": 438, "ksem_18": 438, "ksem_2": 438, "ksem_24": 438, "ksem_4": 438, "ksem_512": 438, "ksem_516": 438, "ksem_520": 438, "ksem_524": 438, "ksem_544": 438, "ksem_548": 438, "ksem_6": 438, "leveljet": 439, "ljet_cmd": 439, "lirc_host": 440, "lirc_port": 440, "lirc_key": 440, "lirc_remot": 440, "recursive_custom": 441, "web_host": 441, "web_port": [441, 507], "sqb_command": 441, "sqb_custom1": 441, "sqb_lookup": 441, "sqb_read": 441, "sqb_read_cycl": 441, "sqb_read_group": 441, "sqb_read_group_trigg": 441, "sqb_read_initial": 441, "sqb_writ": 441, "io_wait": [442, 461], "trashfold": 444, "mail_from": 445, "subject": 445, "mapping": [446, 463], "maxl": [446, 463], "miele_client_country": 447, "miele_client_id": 447, "miele_client_secret": 447, "miele_cycl": 447, "miele_pwd": 447, "miele_us": 447, "miele_command": 447, "miele_deviceid": 447, "miele_parse_it": 447, "miele_visu_function": 447, "bt_addr": [448, 492], "bt_library": 448, "hostnam": 449, "mikrotik_paramet": 449, "mikrotik_port": 449, "get_port_enabled": 449, "get_port_po": 449, "get_port_status": 449, "set_port_enabled": 449, "set_port_po": 449, "white_calibrat": 450, "log_mlgwtelegram": 451, "mlns": 451, "room": 451, "pause_it": [452, 488, 512, 537], "slaveunit": 452, "modbusaddress": 452, "modbusbyteord": 452, "modbusdatatyp": 452, "modbusdirection": 452, "modbusfactor": 452, "modbusobjecttyp": 452, "modbusunit": 452, "modbuswordord": 452, "mpd_command": 453, "mpd_databas": 453, "mpd_localplaylist": 453, "mpd_rawcommand": 453, "mpd_songinfo": 453, "mpd_statistic": 453, "mpd_status": 453, "mpd_url": 453, "mqtt_bool_valu": 454, "mqtt_qos": 454, "mqtt_retain": 454, "mqtt_topic": 454, "mqtt_topic_in": 454, "mqtt_topic_init": 454, "mqtt_topic_out": 454, "account_email": 456, "account_pass": 456, "robot_vendor": 456, "neato_attribut": 456, "disable_schedul": 456, "dismiss_current_alert": 456, "enable_schedul": 456, "get_map_boundari": 456, "map_id": 456, "start_robot": 456, "boundary_id": 456, "http_acl": 457, "tcp": 457, "tcp_acl": 457, "udp_acl": 457, "bridge_api_tok": 458, "no_wait": 458, "nut_var": 459, "odl_data_typ": 460, "odl_station": 460, "get_station": 460, "get_update_timestamp": 460, "button_wait": 461, "cycle_discovery": 461, "log_counter_cycle_discovery_tim": 461, "log_counter_cycle_tim": 461, "log_counter_io_loop_tim": 461, "parasitic_power_wait": 461, "warn_aft": 461, "ow_addr": 461, "ow_sensor": 461, "altitud": 462, "api_version": 462, "softfail_precipitation": 462, "softfail_wind_gust": 462, "owm_coord_x": 462, "owm_coord_y": 462, "owm_coord_z": 462, "owm_match_prefix": 462, "owm_matchstring": 462, "owm_raw_fil": 462, "speed_in_bft": 462, "speed_in_mps": 462, "get_raw_data_fil": 462, "data_source_key": 462, "get_valu": 462, "filepatt": 463, "logdirectory": 463, "logtofil": 463, "olog": 463, "olog_level": 463, "olog_rul": 463, "olog_txt": 463, "oppo_command": 464, "oppo_lookup": 464, "oppo_read": 464, "oppo_read_cycl": 464, "oppo_read_group": 464, "oppo_read_group_trigg": 464, "oppo_read_initial": 464, "oppo_writ": 464, "pcc_index": 465, "pcc_paramet": 465, "devicekey": 466, "philips_tv_rx_key": 466, "philips_tv_tx_key": 466, "pioneer_command": 467, "pioneer_lookup": 467, "pioneer_read": 467, "pioneer_read_cycl": 467, "pioneer_read_group": 467, "pioneer_read_group_trigg": 467, "pioneer_read_initial": 467, "pioneer_writ": 467, "pw_matchstring": 468, "displaytim": 469, "plex_host": 469, "plex_port": 469, "notify": [469, 471, 491], "info": 469, "pluggit_convert": 470, "pluggit_read": 470, "pluggit_writ": 470, "prowl_event": 471, "prowl_swap": 471, "prowl_text": 471, "prowl_url": 471, "prowl_valu": 471, "rf_attr": 475, "rf_mod": 475, "rf_renderer_nam": 475, "rf_scop": 475, "rcs1000n_gpio": 476, "rcs1000n_sendduration": 476, "rcs_buttoncod": 476, "rcs_systemcod": 476, "rcswitch_dir": 477, "rcswitch_host": 477, "rcswitch_password": 477, "rcswitch_sendduration": 477, "rcswitch_us": 477, "rc_cod": 477, "rc_devic": 477, "resol_bitus": 478, "resol_command": 478, "resol_destination": 478, "resol_factor": 478, "resol_issigned": 478, "resol_offset": 478, "resol_sourc": 478, "topic_prefix": 479, "robonect_battery_index": 479, "robonect_data_typ": 479, "robonect_remote_index": 479, "get_mod": 479, "get_mode_as_text": 479, "get_status": 479, "get_status_as_text": 479, "is_mower_offlin": 479, "set_mode_via_api": 479, "remotestart": 479, "aft": 479, "set_name_via_api": 479, "set_remote_via_api": 479, "distanc": 479, "visibl": 479, "proportion": 479, "set_timer_via_api": 479, "mo": 479, "tu": 479, "we": 479, "th": 479, "fr": 479, "sa": 479, "su": 479, "start_mower_via_api": 479, "stop_mower_via_api": 479, "socket_addr": 480, "socket_port": 480, "socket_typ": 480, "roomba_cmd": 480, "roomba_get": 480, "roomba_raw": 480, "adress": 481, "roombapassword": [481, 482], "status_batteri": 481, "status_bin_full": 481, "status_cleanmissionstatus_error": 481, "status_cleanmissionstatus_phas": 481, "dirnam": 483, "rpi1wire_id": 483, "rpi1wire_sys": 483, "poll_cycl": 484, "rpiinfo_func": 484, "rpiinfo_sys": 484, "cpu_temp": 484, "frequency": 484, "frequency_capped": 484, "frequency_capped_last_reboot": 484, "temperature_limit": 484, "temperature_limit_last_reboot": 484, "throttled": 484, "throttled_last_reboot": 484, "under_voltag": 484, "under_voltage_last_reboot": 484, "uptim": 484, "uptime_str": 484, "rrd_dir": 485, "step": 485, "rrd_ds_nam": 485, "rrd_max": 485, "rrd_min": 485, "rrd_no_seri": 485, "rrd_step": 485, "rrd_typ": 485, "defaultboosttim": 486, "defaultonexpiredtim": 486, "defaultvalveprotect": 486, "default_ki": [486, 487], "default_kp": [486, 487], "rtr_valve_protect": 486, "comfort_temp": 487, "default_kd": 487, "fixed_reduction": 487, "frost_temp": 487, "hvac_mod": 487, "max_output": 487, "min_output": 487, "night_reduction": 487, "standby_reduction": 487, "valve_protect": 487, "rtr2_controller_setting": 487, "rtr2_function": 487, "rtr2_id": 487, "rtr2_setting": 487, "debuggen1devic": 489, "gen1debug": 489, "shelly_attr": 489, "shelly_group": 489, "shelly_id": 489, "shelly_list_attr": 489, "shelly_relay": 489, "shelly_typ": 489, "data_fil": 490, "sim": 490, "normal": 491, "allowed_timedelta": 492, "sma_": 493, "serial": 493, "sma_em_data_typ": 493, "smamb_datatyp": 494, "smamb_regist": 494, "delay": 495, "tv_version": 495, "create_masteritem_fil": 496, "default_acl": 496, "generate_pag": [496, 523], "list_deprecated_warning": 496, "overwrite_templat": [496, 523], "visu_styl": [496, 523], "sv_blocksiz": [496, 523], "sv_name1": [496, 523], "sv_name2": [496, 523], "clientip": [496, 524], "buffersiz": [498, 499], "date_offset": [498, 499], "poly": [498, 499], "reflect_in": [498, 499], "reflect_out": [498, 499], "swap_crc_byt": [498, 499], "use_polling": 498, "xor_in": [498, 499], "xor_out": [498, 499], "tsap_client": 500, "tsap_serv": 500, "snmp_community": 501, "snmp_port": 501, "azimuth": 502, "declination": 502, "kwp": 502, "solarforecast_attribut": 502, "is_power_availabl": 502, "pow": 502, "hour": 502, "fw2x": 503, "discover_cycl": 504, "local_webservice_path": 504, "local_webservice_path_snippet": 504, "snippet_duration_offset": 504, "speaker_ips": 504, "tts": 504, "webservice_ip": 504, "webservice_port": 504, "sonos_attrib": 504, "sonos_dpt3_step": 504, "sonos_dpt3_tim": 504, "sonos_recv": 504, "sonos_s": 504, "sonos_uid": 504, "play_all": 504, "alert_uri": 504, "speaker_list": 504, "alert_volum": 504, "alert_duration": 504, "fade_back": 504, "config_fil": 505, "default_access": 505, "listen_ip": 505, "listen_port": 505, "sqlite_visu2_8": 506, "squeezebox_albumart": 507, "squeezebox_init": 507, "squeezebox_playerid": 507, "squeezebox_recv": 507, "squeezebox_s": 507, "instant_leaveaction": 508, "lamella_offset": 508, "lamella_open_valu": 508, "log_directory": 508, "log_level": [508, 575], "log_maxag": 508, "startup_delay_default": 508, "startup_log_level": 508, "suspend_time_default": 508, "se_instant_leaveaction": 508, "se_item_suspend_": 508, "se_item_suspend_start": 508, "se_lastconditionset_item_id": 508, "se_lastconditionset_item_nam": 508, "se_laststate_item_id": 508, "se_laststate_item_nam": 508, "se_log_level": 508, "se_nam": 508, "se_plugin": 508, "se_previousconditionset_item_id": 508, "se_previousconditionset_item_nam": 508, "se_previousstate_conditionset_item_id": 508, "se_previousstate_conditionset_item_nam": 508, "se_previousstate_item_id": 508, "se_previousstate_item_nam": 508, "se_released_by": 508, "se_repeat_action": 508, "se_startup_delay": 508, "se_stateord": 508, "se_suspend_tim": 508, "se_us": 508, "slave_address": 509, "coil_regaddr": 509, "systemair_regaddr": 509, "details_update_cycl": 510, "price_update_cycl": 510, "tankerkoenig_admin": 510, "tankerkoenig_attr": 510, "tankerkoenig_id": 510, "get_petrol_station_detail": 510, "get_petrol_station_detail_reduced": 510, "get_petrol_station_pric": 510, "full_topic": 511, "telemetry_period": 511, "tasmota_admin": 511, "tasmota_attr": 511, "tasmota_button": 511, "tasmota_relay": 511, "tasmota_rf_detail": 511, "tasmota_sml_attr": 511, "tasmota_sml_devic": 511, "tasmota_topic": 511, "tasmota_zb_attr": 511, "tasmota_zb_clust": 511, "tasmota_zb_devic": 511, "tasmota_zb_group": 511, "bye_msg": 512, "long_polling_timeout": 512, "no_access_msg": 512, "no_write_access_msg": 512, "pretty_thread_nam": 512, "resend_attemps": 512, "resend_delay": 512, "welcome_msg": 512, "msg": [512, 527], "chat_id": 512, "photofile_or_url": 512, "caption": 512, "text_display_content_source_it": 513, "text_display_cycle_tim": 513, "text_display_default_messag": 513, "text_display_sink_for_ring": 513, "text_display_sink_rings_with_prio": 513, "text_display_target_ring": 513, "max_update_period": 514, "min_update_period": 514, "poll_period": [514, 537], "serial_port": 514, "server_host": 514, "server_port": 514, "timmy_blink_cycl": 515, "timmy_blink_loops": 515, "timmy_blink_patt": 515, "timmy_blink_target": 515, "timmy_delay_off_delay_second": 515, "timmy_delay_on_delay_second": 515, "timmy_delay_target_it": 515, "departure_tim": 516, "trovis557x": 517, "modbus_debug": 517, "modbus_mod": 517, "modbus_speed": 517, "modbus_timeout": 517, "modbus_trovis_address": 517, "desc": 517, "invalid_to_zero": 517, "trovis557x_var": 517, "poll_cycle_tim": 518, "unifi_controller_url": 518, "unifi_password": 518, "unifi_site_id": 518, "unifi_us": 518, "unifi_ap_mac": 518, "unifi_client_mac": 518, "unifi_device_mac": 518, "unifi_switch_mac": 518, "unifi_switch_port_no": 518, "unifi_switch_port_profile_off": 518, "unifi_switch_port_profile_on": 518, "unifi_typ": 518, "backintim": 519, "interpolation_interval": 519, "interpolation_precision": 519, "interpolation_typ": 519, "remove_duplicat": 519, "suncalculation_cron": 519, "uzsu_it": 519, "activevalu": 519, "clear": 519, "intpl_typ": 519, "itpl": 519, "lastvalu": 519, "planned": 519, "get_vacation": 520, "provinc": 520, "get_vacation_nam": 520, "is_vacation": 520, "accesstok": 521, "clientid": 521, "redirecturl": 521, "refreshtok": 521, "vicare_path": 521, "vicare_rx_key": 521, "vicare_tx_key": 521, "vicare_tx_path": 521, "heating_typ": 522, "waterkott": 526, "grouplist": 527, "varpath": 527, "webpush_communication": 527, "webpush_conf": 527, "sendpushnotification": 527, "requireinteraction": 527, "badg": 527, "silent": 527, "vibrat": 527, "604800": 527, "highpriority": 527, "returnval": 527, "timestamp": 527, "use_service_auth": 528, "webservices_data": 528, "webservices_set": 528, "project": 529, "consumer_secret": 530, "user_id": 530, "withings_typ": 530, "get_callback_url": 530, "wol_ip": 531, "wol_mac": 531, "wake_on_lan": 531, "mac_adr": 531, "ip_adr": 531, "wug_xmlstring": 532, "read_cycl": 533, "robvac": 533, "jid": 534, "use_ipv6": 534, "msgsend": 534, "mt": 534, "chat": 534, "yamaha_cmd": 535, "yamaha_host": 535, "yamahayxc_cmd": 536, "yamahayxc_host": 536, "yamahayxc_zon": 536, "base_topic": 537, "read_at_init": 537, "z2m_gui": 537, "z2m_attr": 537, "z2m_bool_valu": 537, "z2m_readonly": 537, "z2m_topic": 537, "z2m_writeonly": 537, "zwav": 538, "config_path": 538, "logfil": 538, "sec_strategy": 538, "zlogging": 538, "zwave_nod": 538, "zwave_valu": 538, "obig": [545, 547, 548, 550, 552, 554, 558], "klassifiziert": [556, 557], "apis": 560, "relativ": 561, "referenz": [561, 631], "zusammenhang": 561, "dict": [563, 632], "schreib": 563, "return_it": [565, 591], "return_item": [565, 591], "match_item": [565, 591], "regex": [565, 591], "find_item": [565, 591], "configattribut": [565, 591], "find_childr": [565, 591], "parentit": [565, 591], "vererb": 566, "attributwert": 566, "enforce_chang": 571, "enforce_updat": 572, "eval_on_trigger_only": 573, "gemeinsam": [573, 576], "on_": [573, 576], "abfrag": 573, "auslos": 573, "hysteres": 574, "hysteresis_input": 574, "oberhalb": 574, "ober": 574, "schwellwert": 574, "unterhalb": 574, "hysteresis_upper_threshold": 574, "hysteresis_lower_threshold": 574, "statusinformation": 574, "stati": 574, "hysteresis": 574, "log_chang": 575, "log_text": 575, "ausduck": 575, "log_mapping": 575, "log_rul": 575, "lowlimit": 575, "highlimit": 575, "exclud": 575, "itemvalu": 575, "on_updat": 576, "on_chang": 576, "umgebungsbezog": 580, "mondlicht": 580, "stand": 580, "sonnenaufgang": 580, "sonnenstand": 580, "cherrypyfilt": 583, "duplicatefilt": 583, "shngtimedrotatingfilehandl": 585, "datetimerotatingfilehandl": 585, "shngmemloghandl": 585, "formatier": 586, "beim": 586, "exception": 588, "leavelogic": 588, "klass": 589, "grundstruktur": 590, "watch_it": 592, "objekt": [594, 595, 596, 599, 632, 638], "publish_topic": 595, "subscribe_topic": 595, "unsubscribe_topic": 595, "persistent": 596, "existenz": 596, "sicherstell": 596, "ubergreif": 596, "lokal": 596, "en": 597, "bereit": 598, "import": 598, "astronomi": [599, 636], "sonn": [599, 636], "mond": [599, 636], "sun": [599, 636], "pos": [599, 636], "set": [599, 636], "ris": [599, 636], "moon": [599, 636], "phas": [599, 636], "dewpoint": 599, "fetch_url": 599, "dt2ts": 599, "dt": 599, "dt2js": 599, "rel2ab": 599, "temp": 599, "hum": 599, "runtim": 599, "item_attribute_prefix": 601, "prafix": 601, "api_plugin": 612, "webapi": 612, "netzwerk": 617, "classic": 621, "smartdeviceplugin": [621, 623], "archiv": 628, "auspack": 628, "Den": 628, "prozess": 628, "make_venv": 629, "act": 629, "virtualenv": 630, "environement": 630, "ablauf": 632, "initialisier": [632, 638], "initialisiert": 632, "uberpruft": 632, "prozessor": 632, "geschwind": 632, "startet": 632, "ladbar": 632, "13": [632, 650, 668], "ladt": 632, "14": [632, 644, 653], "15": [632, 646, 675], "beendig": 632, "30": 632, "32": 632, "beend": 632, "33": 632, "angehalt": 632, "shng_status": 632, "speicher": 638, "ubergab": 638, "reload": 638, "davor": 639, "mai": [641, 651, 669], "absolut": [641, 643, 644, 645, 671, 672, 674, 691], "bugfix": [641, 643, 644, 645, 646, 647, 648, 649, 656, 675, 691], "veraltet": 641, "august": [642, 660, 670], "april": [643, 644, 658, 668], "outdated": [643, 644, 645, 646, 649, 650, 651, 652, 653, 654, 655, 656, 691], "documentation": [643, 644, 645, 646, 647, 648, 649, 650, 651, 691], "23": [645, 672], "juni": 645, "januar": [646, 647, 673], "retired": [646, 649, 650, 652, 653, 655, 656], "21": 648, "februar": 648, "dezemb": [649, 671, 672], "feb": 650, "2022": [650, 651, 652], "okt": 652, "marz": [653, 654], "allgmein": [653, 654, 655, 656], "29": 655, "jan": 655, "2024": [655, 656], "tt": [656, 691], "mmm": [656, 691], "09th": 658, "2011": [658, 659, 660, 661], "jun": [659, 663, 666], "21st": 659, "bug": [659, 660, 662, 663, 664, 665, 666], "fix": [659, 660, 662, 663, 664, 665, 666], "14th": [660, 667], "nonfunctional": [660, 663], "octob": 661, "10th": 661, "july": 662, "12th": 662, "2012": [662, 663, 664], "21th": 663, "septemb": 664, "27th": 664, "january": 665, "31st": 665, "2013": [665, 666, 667], "6th": 666, "novemb": 667, "contribution": 667, "bas": 667, "migrat": 667, "removed": [669, 670], "2017": [670, 671, 672], "existing": 670, "angehob": [671, 672, 674], "entfernt": [671, 674], "juli": [674, 675], "backup_restor": 677, "build_requirement": 678, "conf_to_yaml_convert": 679, "getshngpid": 680, "plugin_metadata_check": 681, "generier": [682, 686, 689], "navigation": 682, "trenn": 682, "blockgross": 682, "blocktyp": 682, "warning": 682, "trees": 682, "welch": 685, "mitbring": 685, "modifikation": 687, "v2": 687, "durchgefuhrt": 687, "reverseproxy": 688, "annahm": 688, "basiskonfiguration": 688, "geoip": 688, "zertifikat": 688, "mydomain": 688, "myd": 688, "me": 688, "80": 688, "deaktivi": 688, "openssl": 688, "cnf": 688, "editi": 688, "lua": 688, "appl": 688, "stark": 688, "diffi": 688, "hellman": 688, "wartung": 688, "monat": 688, "erneu": 688, "navigationsstruktur": 689, "kommunikation": [689, 690]}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 57}, "alltitles": {"Administrations-Interface Update": [[0, "administrations-interface-update"]], "Dienste": [[1, "dienste"]], "\u00dcbersicht": [[1, "ubersicht"], [8, "ubersicht"], [52, "ubersicht"], [109, "ubersicht"]], "eval Syntax-Pr\u00fcfer": [[1, "eval-syntax-prufer"]], "YAML Syntax-Pr\u00fcfer": [[1, "yaml-syntax-prufer"]], "CONF-YAML Konverter": [[1, "conf-yaml-konverter"]], "Cache Pr\u00fcfung": [[1, "cache-prufung"]], "Userfunction Editor": [[1, "userfunction-editor"]], "Items": [[2, "items"], [11, "items"], [16, "items"], [18, "items"], [20, "items"], [92, "items"], [99, "items"], [166, "items"], [169, "items"], [171, "items"], [199, "items"], [215, "items"], [237, "items"], [244, "items"], [262, "items"], [319, "items"], [359, "items"], [564, "items"]], "Item Baum": [[2, "item-baum"]], "Item Monitoring": [[2, "item-monitoring"]], "Item Konfiguration": [[2, "item-konfiguration"], [184, "item-konfiguration"], [268, "item-konfiguration"], [285, "item-konfiguration"], [338, "item-konfiguration"]], "Struktur Templates": [[2, "struktur-templates"], [329, "struktur-templates"]], "Struktur Konfiguration": [[2, "struktur-konfiguration"]], "Logiken": [[3, "logiken"], [21, "logiken"], [92, "logiken"], [117, "logiken"], [153, "logiken"], [164, "logiken"], [241, "logiken"], [587, "logiken"]], "Liste der Logiken": [[3, "liste-der-logiken"]], "Logik Editor": [[3, "logik-editor"]], "Code Editor": [[3, "code-editor"]], "Parameter Editor": [[3, "parameter-editor"]], "Beschreibung": [[3, "beschreibung"], [204, "beschreibung"], [374, "beschreibung"], [375, "beschreibung"], [376, "beschreibung"], [377, "beschreibung"], [378, "beschreibung"], [379, "beschreibung"], [380, "beschreibung"], [381, "beschreibung"], [382, "beschreibung"], [383, "beschreibung"], [384, "beschreibung"], [385, "beschreibung"], [386, "beschreibung"], [387, "beschreibung"], [388, "beschreibung"], [389, "beschreibung"], [390, "beschreibung"], [391, "beschreibung"], [392, "beschreibung"], [393, "beschreibung"], [394, "beschreibung"], [395, "beschreibung"], [396, "beschreibung"], [397, "beschreibung"], [398, "beschreibung"], [399, "beschreibung"], [400, "beschreibung"], [401, "beschreibung"], [402, "beschreibung"], [403, "beschreibung"], [405, "beschreibung"], [406, "beschreibung"], [407, "beschreibung"], [408, "beschreibung"], [409, "beschreibung"], [410, "beschreibung"], [411, "beschreibung"], [412, "beschreibung"], [413, "beschreibung"], [414, "beschreibung"], [415, "beschreibung"], [416, "beschreibung"], [417, "beschreibung"], [418, "beschreibung"], [419, "beschreibung"], [420, "beschreibung"], [421, "beschreibung"], [422, "beschreibung"], [423, "beschreibung"], [424, "beschreibung"], [425, "beschreibung"], [426, "beschreibung"], [427, "beschreibung"], [428, "beschreibung"], [429, "beschreibung"], [430, "beschreibung"], [431, "beschreibung"], [432, "beschreibung"], [433, "beschreibung"], [434, "beschreibung"], [435, "beschreibung"], [436, "beschreibung"], [437, "beschreibung"], [438, "beschreibung"], [439, "beschreibung"], [440, "beschreibung"], [441, "beschreibung"], [442, "beschreibung"], [443, "beschreibung"], [444, "beschreibung"], [445, "beschreibung"], [446, "beschreibung"], [447, "beschreibung"], [448, "beschreibung"], [449, "beschreibung"], [450, "beschreibung"], [451, "beschreibung"], [452, "beschreibung"], [453, "beschreibung"], [454, "beschreibung"], [455, "beschreibung"], [456, "beschreibung"], [457, "beschreibung"], [458, "beschreibung"], [459, "beschreibung"], [460, "beschreibung"], [461, "beschreibung"], [462, "beschreibung"], [463, "beschreibung"], [464, "beschreibung"], [465, "beschreibung"], [466, "beschreibung"], [467, "beschreibung"], [468, "beschreibung"], [469, "beschreibung"], [470, "beschreibung"], [471, "beschreibung"], [472, "beschreibung"], [473, "beschreibung"], [474, "beschreibung"], [475, "beschreibung"], [476, "beschreibung"], [477, "beschreibung"], [478, "beschreibung"], [479, "beschreibung"], [480, "beschreibung"], [481, "beschreibung"], [482, "beschreibung"], [483, "beschreibung"], [484, "beschreibung"], [485, "beschreibung"], [486, "beschreibung"], [487, "beschreibung"], [488, "beschreibung"], [489, "beschreibung"], [490, "beschreibung"], [491, "beschreibung"], [492, "beschreibung"], [493, "beschreibung"], [494, "beschreibung"], [495, "beschreibung"], [496, "beschreibung"], [497, "beschreibung"], [498, "beschreibung"], [499, "beschreibung"], [500, "beschreibung"], [501, "beschreibung"], [502, "beschreibung"], [503, "beschreibung"], [504, "beschreibung"], [505, "beschreibung"], [506, "beschreibung"], [507, "beschreibung"], [508, "beschreibung"], [509, "beschreibung"], [510, "beschreibung"], [511, "beschreibung"], [512, "beschreibung"], [513, "beschreibung"], [514, "beschreibung"], [515, "beschreibung"], [516, "beschreibung"], [517, "beschreibung"], [518, "beschreibung"], [519, "beschreibung"], [520, "beschreibung"], [521, "beschreibung"], [522, "beschreibung"], [523, "beschreibung"], [524, "beschreibung"], [525, "beschreibung"], [526, "beschreibung"], [527, "beschreibung"], [528, "beschreibung"], [529, "beschreibung"], [530, "beschreibung"], [531, "beschreibung"], [532, "beschreibung"], [533, "beschreibung"], [534, "beschreibung"], [535, "beschreibung"], [536, "beschreibung"], [537, "beschreibung"], [538, "beschreibung"]], "Gruppe(n)": [[3, "gruppe-n"]], "Cycle": [[3, "cycle"]], "Crontab": [[3, "crontab"]], "Watch Items": [[3, "watch-items"]], "Plugin spezifische Parameter": [[3, "plugin-spezifische-parameter"]], "Logs": [[4, "logs"]], "Logs anzeigen": [[4, "logs-anzeigen"]], "Gro\u00dfe Log Dateien": [[4, "grosze-log-dateien"]], "Liste der Logger": [[4, "liste-der-logger"]], "Logging Konfiguration": [[4, "logging-konfiguration"]], "Plugins": [[5, "plugins"], [23, "plugins"], [76, "plugins"], [92, "plugins"], [123, "plugins"], [373, "plugins"]], "Liste der geladenen Plugins": [[5, "liste-der-geladenen-plugins"]], "Plugin Konfiguration": [[5, "plugin-konfiguration"]], "Liste der konfigurierten Plugins": [[5, "liste-der-konfigurierten-plugins"]], "Konfiguration eines Plugins": [[5, "konfiguration-eines-plugins"], [95, "konfiguration-eines-plugins"]], "Szenen": [[6, "szenen"], [112, "szenen"], [124, "szenen"]], "Szenen Liste": [[6, "szenen-liste"]], "Szenen Konfiguration": [[6, "szenen-konfiguration"]], "Scheduler": [[7, "scheduler"]], "System": [[8, "system"]], "System Eigenschaften": [[8, "system-eigenschaften"]], "Ressource Graphen": [[8, "ressource-graphen"]], "PyPI Check": [[8, "pypi-check"]], "Urheberrechtshinweise": [[8, "urheberrechtshinweise"]], "System Konfiguration": [[8, "system-konfiguration"]], "Allgemein": [[8, "allgemein"], [200, "allgemein"], [266, "allgemein"], [279, "allgemein"], [321, "allgemein"], [349, "allgemein"], [349, "id1"]], "Http Modul": [[8, "http-modul"]], "Admin Modul": [[8, "admin-modul"]], "MQTT Modul": [[8, "mqtt-modul"]], "Threads": [[9, "threads"]], "Beispiele, Tipps & Tricks Update": [[10, "beispiele-tipps-tricks-update"]], "eval und eval_trigger": [[12, "eval-und-eval-trigger"], [573, "eval-und-eval-trigger"]], "Bearbeiten von Werten": [[12, "bearbeiten-von-werten"]], "Wertermittung durch Datenbankabfrage": [[12, "wertermittung-durch-datenbankabfrage"]], "Wert invertieren": [[12, "wert-invertieren"]], "Auslesen / Teilen eines Dictionary": [[12, "auslesen-teilen-eines-dictionary"]], "Erzeugen eines String aus den Werten anderer Items": [[12, "erzeugen-eines-string-aus-den-werten-anderer-items"]], "Erzeugen einer Liste aus den Werten anderer Items": [[12, "erzeugen-einer-liste-aus-den-werten-anderer-items"]], "Enumeration \u00fcber Liste": [[12, "enumeration-uber-liste"]], "Enumeration \u00fcber Dictionary mit Lookup-Item": [[12, "enumeration-uber-dictionary-mit-lookup-item"]], "Basierend auf einem numerischen Wert einen boolschen erzeugen": [[12, "basierend-auf-einem-numerischen-wert-einen-boolschen-erzeugen"]], "Basierend auf dem Wert eines numerischen andere Items setzen": [[12, "basierend-auf-dem-wert-eines-numerischen-andere-items-setzen"]], "Berechnung einer Zeitdauer in Sekunden von beliebigen datetime bis jetzt": [[12, "berechnung-einer-zeitdauer-in-sekunden-von-beliebigen-datetime-bis-jetzt"]], "Importieren weiterer Python Module in ein eval": [[12, "importieren-weiterer-python-module-in-ein-eval"]], "Verwendung der Item-Funktion timer": [[12, "verwendung-der-item-funktion-timer"]], "Countdown f\u00fcr Timer bzw. Autotimer": [[12, "countdown-fur-timer-bzw-autotimer"]], "Item mit verz\u00f6gertem Status": [[12, "item-mit-verzogertem-status"]], "Konsolidieren von Itemwerten": [[12, "konsolidieren-von-itemwerten"]], "Item \u00c4nderung nach bestimmter Zeit": [[12, "item-anderung-nach-bestimmter-zeit"]], "Tipps und Tricks Update": [[13, "tipps-und-tricks-update"]], "Erstellen eines Zeitgiedes": [[13, "erstellen-eines-zeitgiedes"]], "Beispiel": [[13, "beispiel"], [16, "beispiel"], [188, "beispiel"], [194, "beispiel"], [217, "beispiel"], [243, "beispiel"], [261, "beispiel"], [279, "beispiel"], [295, "beispiel"], [306, "beispiel"], [307, "beispiel"], [310, "beispiel"], [325, "beispiel"], [327, "beispiel"], [328, "beispiel"], [329, "beispiel"], [338, "beispiel"], [338, "id3"], [338, "id4"], [338, "id5"], [347, "beispiel"], [351, "beispiel"], [561, "beispiel"], [591, "beispiel"]], "Invertieren eines Item Wertes": [[13, "invertieren-eines-item-wertes"]], "Beispiel 1": [[13, "beispiel-1"], [285, "beispiel-1"]], "Beispiel 2": [[13, "beispiel-2"], [285, "beispiel-2"]], "Erstellung von Tag-/Nacht-Items f\u00fcr KNX": [[13, "erstellung-von-tag-nacht-items-fur-knx"]], "Beispiele": [[13, "beispiele"], [31, "beispiele"], [32, "beispiele"], [33, "beispiele"], [34, "beispiele"], [42, "beispiele"], [97, "beispiele"], [104, "beispiele"], [162, "beispiele"], [164, "beispiele"], [165, "beispiele"], [178, "beispiele"], [179, "beispiele"], [179, "id1"], [184, "beispiele"], [189, "beispiele"], [192, "beispiele"], [197, "beispiele"], [200, "beispiele"], [210, "beispiele"], [212, "beispiele"], [213, "beispiele"], [214, "beispiele"], [215, "beispiele"], [232, "beispiele"], [249, "beispiele"], [250, "beispiele"], [252, "beispiele"], [255, "beispiele"], [255, "id1"], [259, "beispiele"], [265, "beispiele"], [266, "beispiele"], [266, "id1"], [268, "beispiele"], [272, "beispiele"], [276, "beispiele"], [284, "beispiele"], [285, "beispiele"], [287, "beispiele"], [289, "beispiele"], [302, "beispiele"], [306, "beispiele"], [307, "beispiele"], [311, "beispiele"], [314, "beispiele"], [338, "beispiele"], [339, "beispiele"], [340, "beispiele"], [343, "beispiele"], [348, "beispiele"], [357, "beispiele"], [360, "beispiele"], [363, "beispiele"], [366, "beispiele"], [369, "beispiele"], [561, "beispiele"], [574, "beispiele"]], "Nutzung mit neuen (zus\u00e4tzlichen) Items": [[13, "nutzung-mit-neuen-zusatzlichen-items"]], "Nutzung der SmarthomeNG internen Items": [[13, "nutzung-der-smarthomeng-internen-items"]], "Berechnung von Tag und Nacht": [[13, "berechnung-von-tag-und-nacht"]], "knxd: Hinweise und Konfiguration": [[14, "knxd-hinweise-und-konfiguration"]], "Wichtig": [[14, "wichtig"]], "Beispielkonfigurationen": [[14, "beispielkonfigurationen"]], "busware.de": [[14, "busware-de"]], "MDT": [[14, "mdt"]], "Weinzierl": [[14, "weinzierl"]], "ABB": [[14, "abb"]], "Berechnung der Windst\u00e4rke": [[15, "berechnung-der-windstarke"]], "Ziel": [[15, "ziel"], [16, "ziel"], [18, "ziel"], [19, "ziel"], [20, "ziel"]], "Logik": [[15, "logik"], [16, "logik"], [18, "logik"], [19, "logik"], [20, "logik"]], "/usr/local/smarthome/logics/beaufort1.py": [[15, "usr-local-smarthome-logics-beaufort1-py"]], "/usr/local/smarthome/etc/logic.yaml": [[15, "usr-local-smarthome-etc-logic-yaml"], [15, "usrlocalsmarthomeetclogic-yaml-1"], [15, "usrlocalsmarthomeetclogic-yaml-2"], [16, "usr-local-smarthome-etc-logic-yaml"], [18, "usr-local-smarthome-etc-logic-yaml"], [19, "usr-local-smarthome-etc-logic-yaml"]], "Alternative Umsetzung mit einer Funktion": [[15, "alternative-umsetzung-mit-einer-funktion"]], "/usr/local/smarthome/logics/beaufort2.py": [[15, "usr-local-smarthome-logics-beaufort2-py"]], "Alternative 2: Umsetzung als Funktion mit Lookup": [[15, "alternative-2-umsetzung-als-funktion-mit-lookup"]], "/usr/local/smarthome/logics/beaufort3.py": [[15, "usr-local-smarthome-logics-beaufort3-py"]], "Berechnung von Zeitdaten": [[16, "berechnung-von-zeitdaten"]], "/usr/local/smarthome/logics/zeit.py": [[16, "usr-local-smarthome-logics-zeit-py"]], "/usr/local/smarthome/items/zeit.yaml": [[16, "usr-local-smarthome-items-zeit-yaml"]], "Blinken per Logik": [[17, "blinken-per-logik"]], "Darstellung von DPT 2 Werten": [[18, "darstellung-von-dpt-2-werten"]], "/usr/local/smarthome/logics/prio.py": [[18, "usr-local-smarthome-logics-prio-py"]], "/usr/local/smarthome/items/prio.yaml": [[18, "usr-local-smarthome-items-prio-yaml"]], "Steuerung des dyn.zenith-Icons": [[19, "steuerung-des-dyn-zenith-icons"]], "/usr/local/smarthome/logics/zenith.py": [[19, "usr-local-smarthome-logics-zenith-py"]], "smartVISU": [[19, "smartvisu"], [244, "smartvisu"]], "Nachdimmen von Leuchten": [[20, "nachdimmen-von-leuchten"]], "/usr/local/smarthome/logics/nachdimmen.py": [[20, "usr-local-smarthome-logics-nachdimmen-py"]], "/usr/local/smarthome/etc/logics.yaml": [[20, "usr-local-smarthome-etc-logics-yaml"]], "/usr/local/smarthome/items/zentral.yaml": [[20, "usr-local-smarthome-items-zentral-yaml"]], "/usr/local/smarthome/items/nachdimm_test.yaml": [[20, "usr-local-smarthome-items-nachdimm-test-yaml"]], "Einfache Beispiele": [[21, "einfache-beispiele"]], "Komplexere Beispiele": [[21, "komplexere-beispiele"]], "Weitere Beispiele": [[21, "weitere-beispiele"]], "Ein Plugin aus develop installieren": [[22, "ein-plugin-aus-develop-installieren"]], "Konfiguration anpassen": [[22, "konfiguration-anpassen"], [22, "id1"]], "Plugin manuell installieren": [[22, "plugin-manuell-installieren"]], "Plugins Repository aufrufen": [[22, "plugins-repository-aufrufen"]], "Plugins Repository Download": [[22, "plugins-repository-download"]], "Gew\u00fcnschtes Plugin installieren": [[22, "gewunschtes-plugin-installieren"]], "structs (Item Strukturen)": [[24, "structs-item-strukturen"], [97, "structs-item-strukturen"]], "Item Strukturen bequem kopieren": [[25, "item-strukturen-bequem-kopieren"]], "Structs": [[26, "structs"]], "SmartHomeNG umziehen Neu": [[27, "smarthomeng-umziehen-neu"]], "Schritte der Installation": [[27, "schritte-der-installation"], [82, "schritte-der-installation"], [83, "schritte-der-installation"], [84, "schritte-der-installation"], [85, "schritte-der-installation"], [86, "schritte-der-installation"], [87, "schritte-der-installation"], [88, "schritte-der-installation"], [89, "schritte-der-installation"]], "Neues System installieren": [[27, "neues-system-installieren"]], "Linux installieren": [[27, "linux-installieren"]], "SmartHomeNG installieren": [[27, "smarthomeng-installieren"], [83, "smarthomeng-installieren"]], "Mosquitto installieren": [[27, "mosquitto-installieren"], [84, "mosquitto-installieren"]], "smartVISU installieren": [[27, "smartvisu-installieren"], [85, "smartvisu-installieren"]], "knxd installieren": [[27, "knxd-installieren"], [86, "knxd-installieren"]], "Onewire installieren": [[27, "onewire-installieren"], [87, "onewire-installieren"]], "Samba installieren": [[27, "samba-installieren"], [88, "samba-installieren"]], "Konfiguration sichern/\u00fcbertragen": [[27, "konfiguration-sichern-ubertragen"]], "Dienst-Konfigurationen \u00fcbertragen": [[27, "dienst-konfigurationen-ubertragen"]], "Mosquitto": [[27, "mosquitto"]], "knxd": [[27, "knxd"]], "Onewire": [[27, "onewire"]], "Samba": [[27, "samba"]], "SmartHomeNG Konfiguration sichern": [[27, "smarthomeng-konfiguration-sichern"]], "Kopieren weiterer Daten": [[27, "kopieren-weiterer-daten"]], "Item cache Verzeichnis kopieren": [[27, "item-cache-verzeichnis-kopieren"]], "database Verzeichnis kopieren": [[27, "database-verzeichnis-kopieren"]], "executor Verzeichnis kopieren": [[27, "executor-verzeichnis-kopieren"]], "knx Verzeichnis kopieren": [[27, "knx-verzeichnis-kopieren"]], "Logs kopieren": [[27, "logs-kopieren"]], "plugins_cache Verzeichnis kopieren": [[27, "plugins-cache-verzeichnis-kopieren"]], "SmartHomeNG Konfiguration einspielen": [[27, "smarthomeng-konfiguration-einspielen"]], "Restarbeiten": [[27, "restarbeiten"]], "Neues System als produktiv einrichten": [[27, "neues-system-als-produktiv-einrichten"]], "Letzte Konfigurations\u00e4nderungen": [[27, "letzte-konfigurationsanderungen"]], "Transfer Verzeichnis l\u00f6schen": [[27, "transfer-verzeichnis-loschen"]], "SmartHomeNG als Dienst einrichten": [[27, "smarthomeng-als-dienst-einrichten"]], "Datenschutzerkla\u0308rung": [[28, "datenschutzerklarung"]], "Datenschutz": [[28, "datenschutz"]], "Server-Log-Files": [[28, "server-log-files"]], "SSL-Verschlu\u0308sselung": [[28, "ssl-verschlusselung"]], "Widerspruch Werbe-Mails": [[28, "widerspruch-werbe-mails"]], "Plugin development guidelines": [[29, "plugin-development-guidelines"]], "Module sample": [[30, "module-sample"]], "Requirements": [[30, "requirements"], [154, "requirements"], [157, "requirements"], [158, "requirements"], [173, "requirements"], [176, "requirements"], [182, "requirements"], [183, "requirements"], [185, "requirements"], [186, "requirements"], [190, "requirements"], [193, "requirements"], [198, "requirements"], [202, "requirements"], [208, "requirements"], [209, "requirements"], [218, "requirements"], [219, "requirements"], [227, "requirements"], [231, "requirements"], [234, "requirements"], [239, "requirements"], [240, "requirements"], [245, "requirements"], [247, "requirements"], [248, "requirements"], [251, "requirements"], [253, "requirements"], [257, "requirements"], [258, "requirements"], [260, "requirements"], [262, "requirements"], [266, "requirements"], [273, "requirements"], [274, "requirements"], [275, "requirements"], [278, "requirements"], [280, "requirements"], [281, "requirements"], [290, "requirements"], [294, "requirements"], [297, "requirements"], [301, "requirements"], [305, "requirements"], [308, "requirements"], [311, "requirements"], [312, "requirements"], [313, "requirements"], [315, "requirements"], [334, "requirements"], [335, "requirements"], [341, "requirements"], [342, "requirements"], [344, "requirements"], [349, "requirements"], [352, "requirements"], [355, "requirements"], [358, "requirements"], [361, "requirements"], [365, "requirements"]], "Configuration": [[30, "configuration"], [154, "configuration"], [157, "configuration"], [158, "configuration"], [160, "configuration"], [173, "configuration"], [175, "configuration"], [176, "configuration"], [180, "configuration"], [182, "configuration"], [183, "configuration"], [186, "configuration"], [190, "configuration"], [193, "configuration"], [195, "configuration"], [198, "configuration"], [202, "configuration"], [208, "configuration"], [209, "configuration"], [211, "configuration"], [218, "configuration"], [221, "configuration"], [231, "configuration"], [234, "configuration"], [235, "configuration"], [236, "configuration"], [239, "configuration"], [240, "configuration"], [245, "configuration"], [247, "configuration"], [248, "configuration"], [251, "configuration"], [253, "configuration"], [254, "configuration"], [257, "configuration"], [258, "configuration"], [260, "configuration"], [269, "configuration"], [273, "configuration"], [274, "configuration"], [275, "configuration"], [278, "configuration"], [280, "configuration"], [281, "configuration"], [290, "configuration"], [294, "configuration"], [296, "configuration"], [297, "configuration"], [298, "configuration"], [301, "configuration"], [305, "configuration"], [308, "configuration"], [312, "configuration"], [315, "configuration"], [317, "configuration"], [334, "configuration"], [335, "configuration"], [341, "configuration"], [342, "configuration"], [344, "configuration"], [352, "configuration"], [355, "configuration"], [358, "configuration"], [361, "configuration"], [365, "configuration"], [368, "configuration"]], "etc/module.yaml": [[30, "etc-module-yaml"], [154, "etc-module-yaml"], [157, "etc-module-yaml"], [158, "etc-module-yaml"]], "param1": [[30, "param1"]], "param2 (optional)": [[30, "param2-optional"]], "API of module sample": [[30, "api-of-module-sample"]], "Test if module mqtt is loaded": [[30, "test-if-module-mqtt-is-loaded"], [158, "test-if-module-mqtt-is-loaded"]], "Methods for implementing a web interface": [[30, "methods-for-implementing-a-web-interface"], [157, "methods-for-implementing-a-web-interface"], [158, "methods-for-implementing-a-web-interface"]], "get_\u2026()": [[30, "get"]], "Parameters": [[30, "parameters"], [157, "parameters"], [157, "id1"], [158, "parameters"], [158, "id1"], [273, "parameters"], [274, "parameters"]], "Mqtt-Pluginname (in Kleinbuchstaben)": [[31, "mqtt-pluginname-in-kleinbuchstaben"]], "Anforderungen": [[31, "anforderungen"], [32, "anforderungen"], [33, "anforderungen"], [34, "anforderungen"], [122, "anforderungen"], [165, "anforderungen"], [167, "anforderungen"], [168, "anforderungen"], [178, "anforderungen"], [179, "anforderungen"], [189, "anforderungen"], [192, "anforderungen"], [197, "anforderungen"], [200, "anforderungen"], [214, "anforderungen"], [215, "anforderungen"], [223, "anforderungen"], [229, "anforderungen"], [249, "anforderungen"], [250, "anforderungen"], [255, "anforderungen"], [259, "anforderungen"], [261, "anforderungen"], [265, "anforderungen"], [272, "anforderungen"], [276, "anforderungen"], [277, "anforderungen"], [284, "anforderungen"], [287, "anforderungen"], [300, "anforderungen"], [306, "anforderungen"], [307, "anforderungen"], [309, "anforderungen"], [310, "anforderungen"], [314, "anforderungen"], [336, "anforderungen"], [339, "anforderungen"], [340, "anforderungen"], [343, "anforderungen"], [346, "anforderungen"], [351, "anforderungen"], [359, "anforderungen"], [360, "anforderungen"], [363, "anforderungen"], [369, "anforderungen"], [370, "anforderungen"], [374, "anforderungen"], [375, "anforderungen"], [376, "anforderungen"], [377, "anforderungen"], [378, "anforderungen"], [379, "anforderungen"], [380, "anforderungen"], [381, "anforderungen"], [382, "anforderungen"], [383, "anforderungen"], [384, "anforderungen"], [385, "anforderungen"], [386, "anforderungen"], [387, "anforderungen"], [388, "anforderungen"], [389, "anforderungen"], [390, "anforderungen"], [391, "anforderungen"], [392, "anforderungen"], [393, "anforderungen"], [394, "anforderungen"], [395, "anforderungen"], [396, "anforderungen"], [397, "anforderungen"], [398, "anforderungen"], [399, "anforderungen"], [400, "anforderungen"], [401, "anforderungen"], [402, "anforderungen"], [403, "anforderungen"], [405, "anforderungen"], [406, "anforderungen"], [407, "anforderungen"], [408, "anforderungen"], [409, "anforderungen"], [410, "anforderungen"], [411, "anforderungen"], [412, "anforderungen"], [413, "anforderungen"], [414, "anforderungen"], [415, "anforderungen"], [416, "anforderungen"], [417, "anforderungen"], [418, "anforderungen"], [419, "anforderungen"], [420, "anforderungen"], [421, "anforderungen"], [422, "anforderungen"], [423, "anforderungen"], [424, "anforderungen"], [425, "anforderungen"], [426, "anforderungen"], [427, "anforderungen"], [428, "anforderungen"], [429, "anforderungen"], [430, "anforderungen"], [431, "anforderungen"], [432, "anforderungen"], [433, "anforderungen"], [434, "anforderungen"], [435, "anforderungen"], [436, "anforderungen"], [437, "anforderungen"], [438, "anforderungen"], [439, "anforderungen"], [440, "anforderungen"], [441, "anforderungen"], [442, "anforderungen"], [443, "anforderungen"], [444, "anforderungen"], [445, "anforderungen"], [446, "anforderungen"], [447, "anforderungen"], [448, "anforderungen"], [449, "anforderungen"], [450, "anforderungen"], [451, "anforderungen"], [452, "anforderungen"], [453, "anforderungen"], [454, "anforderungen"], [455, "anforderungen"], [456, "anforderungen"], [457, "anforderungen"], [458, "anforderungen"], [459, "anforderungen"], [460, "anforderungen"], [461, "anforderungen"], [462, "anforderungen"], [463, "anforderungen"], [464, "anforderungen"], [465, "anforderungen"], [466, "anforderungen"], [467, "anforderungen"], [468, "anforderungen"], [469, "anforderungen"], [470, "anforderungen"], [471, "anforderungen"], [472, "anforderungen"], [473, "anforderungen"], [475, "anforderungen"], [476, "anforderungen"], [477, "anforderungen"], [478, "anforderungen"], [479, "anforderungen"], [480, "anforderungen"], [481, "anforderungen"], [482, "anforderungen"], [483, "anforderungen"], [484, "anforderungen"], [485, "anforderungen"], [486, "anforderungen"], [487, "anforderungen"], [488, "anforderungen"], [489, "anforderungen"], [490, "anforderungen"], [491, "anforderungen"], [492, "anforderungen"], [493, "anforderungen"], [494, "anforderungen"], [495, "anforderungen"], [496, "anforderungen"], [497, "anforderungen"], [498, "anforderungen"], [499, "anforderungen"], [500, "anforderungen"], [501, "anforderungen"], [502, "anforderungen"], [503, "anforderungen"], [504, "anforderungen"], [505, "anforderungen"], [506, "anforderungen"], [507, "anforderungen"], [508, "anforderungen"], [509, "anforderungen"], [510, "anforderungen"], [511, "anforderungen"], [512, "anforderungen"], [513, "anforderungen"], [514, "anforderungen"], [515, "anforderungen"], [516, "anforderungen"], [517, "anforderungen"], [518, "anforderungen"], [519, "anforderungen"], [520, "anforderungen"], [521, "anforderungen"], [522, "anforderungen"], [523, "anforderungen"], [524, "anforderungen"], [525, "anforderungen"], [526, "anforderungen"], [527, "anforderungen"], [528, "anforderungen"], [529, "anforderungen"], [530, "anforderungen"], [531, "anforderungen"], [532, "anforderungen"], [533, "anforderungen"], [534, "anforderungen"], [535, "anforderungen"], [536, "anforderungen"], [537, "anforderungen"], [538, "anforderungen"]], "Notwendige Software": [[31, "notwendige-software"], [32, "notwendige-software"], [33, "notwendige-software"], [34, "notwendige-software"], [168, "notwendige-software"], [178, "notwendige-software"], [197, "notwendige-software"], [214, "notwendige-software"], [215, "notwendige-software"], [250, "notwendige-software"], [259, "notwendige-software"], [261, "notwendige-software"], [265, "notwendige-software"], [276, "notwendige-software"], [277, "notwendige-software"], [284, "notwendige-software"], [287, "notwendige-software"], [300, "notwendige-software"], [306, "notwendige-software"], [307, "notwendige-software"], [314, "notwendige-software"], [339, "notwendige-software"], [340, "notwendige-software"], [359, "notwendige-software"], [363, "notwendige-software"], [369, "notwendige-software"]], "Unterst\u00fctzte Ger\u00e4te": [[31, "unterstutzte-gerate"], [32, "unterstutzte-gerate"], [33, "unterstutzte-gerate"], [34, "unterstutzte-gerate"], [165, "unterstutzte-gerate"], [168, "unterstutzte-gerate"], [178, "unterstutzte-gerate"], [197, "unterstutzte-gerate"], [214, "unterstutzte-gerate"], [215, "unterstutzte-gerate"], [259, "unterstutzte-gerate"], [261, "unterstutzte-gerate"], [276, "unterstutzte-gerate"], [277, "unterstutzte-gerate"], [284, "unterstutzte-gerate"], [286, "unterstutzte-gerate"], [300, "unterstutzte-gerate"], [306, "unterstutzte-gerate"], [307, "unterstutzte-gerate"], [310, "unterstutzte-gerate"], [314, "unterstutzte-gerate"], [339, "unterstutzte-gerate"], [340, "unterstutzte-gerate"], [351, "unterstutzte-gerate"], [363, "unterstutzte-gerate"], [369, "unterstutzte-gerate"]], "Konfiguration": [[31, "konfiguration"], [32, "konfiguration"], [33, "konfiguration"], [34, "konfiguration"], [119, "konfiguration"], [120, "konfiguration"], [121, "konfiguration"], [122, "konfiguration"], [163, "konfiguration"], [164, "konfiguration"], [165, "konfiguration"], [166, "konfiguration"], [167, "konfiguration"], [168, "konfiguration"], [169, "konfiguration"], [171, "konfiguration"], [172, "konfiguration"], [178, "konfiguration"], [179, "konfiguration"], [181, "konfiguration"], [184, "konfiguration"], [187, "konfiguration"], [188, "konfiguration"], [189, "konfiguration"], [191, "konfiguration"], [192, "konfiguration"], [194, "konfiguration"], [196, "konfiguration"], [197, "konfiguration"], [200, "konfiguration"], [201, "konfiguration"], [203, "konfiguration"], [204, "konfiguration"], [210, "konfiguration"], [212, "konfiguration"], [213, "konfiguration"], [214, "konfiguration"], [215, "konfiguration"], [217, "konfiguration"], [219, "konfiguration"], [220, "konfiguration"], [222, "konfiguration"], [223, "konfiguration"], [228, "konfiguration"], [229, "konfiguration"], [230, "konfiguration"], [232, "konfiguration"], [233, "konfiguration"], [237, "konfiguration"], [238, "konfiguration"], [241, "konfiguration"], [242, "konfiguration"], [243, "konfiguration"], [244, "konfiguration"], [246, "konfiguration"], [249, "konfiguration"], [250, "konfiguration"], [252, "konfiguration"], [255, "konfiguration"], [256, "konfiguration"], [259, "konfiguration"], [261, "konfiguration"], [262, "konfiguration"], [263, "konfiguration"], [264, "konfiguration"], [265, "konfiguration"], [266, "konfiguration"], [267, "konfiguration"], [268, "konfiguration"], [271, "konfiguration"], [272, "konfiguration"], [276, "konfiguration"], [277, "konfiguration"], [279, "konfiguration"], [284, "konfiguration"], [285, "konfiguration"], [286, "konfiguration"], [287, "konfiguration"], [289, "konfiguration"], [291, "konfiguration"], [295, "konfiguration"], [300, "konfiguration"], [302, "konfiguration"], [306, "konfiguration"], [307, "konfiguration"], [309, "konfiguration"], [310, "konfiguration"], [311, "konfiguration"], [313, "konfiguration"], [314, "konfiguration"], [316, "konfiguration"], [319, "konfiguration"], [322, "konfiguration"], [336, "konfiguration"], [337, "konfiguration"], [339, "konfiguration"], [340, "konfiguration"], [343, "konfiguration"], [346, "konfiguration"], [347, "konfiguration"], [348, "konfiguration"], [349, "konfiguration"], [351, "konfiguration"], [354, "konfiguration"], [357, "konfiguration"], [359, "konfiguration"], [360, "konfiguration"], [362, "konfiguration"], [363, "konfiguration"], [366, "konfiguration"], [367, "konfiguration"], [369, "konfiguration"], [370, "konfiguration"], [371, "konfiguration"], [374, "konfiguration"], [375, "konfiguration"], [376, "konfiguration"], [377, "konfiguration"], [378, "konfiguration"], [379, "konfiguration"], [380, "konfiguration"], [381, "konfiguration"], [382, "konfiguration"], [383, "konfiguration"], [384, "konfiguration"], [385, "konfiguration"], [386, "konfiguration"], [387, "konfiguration"], [388, "konfiguration"], [389, "konfiguration"], [390, "konfiguration"], [391, "konfiguration"], [392, "konfiguration"], [393, "konfiguration"], [394, "konfiguration"], [395, "konfiguration"], [396, "konfiguration"], [397, "konfiguration"], [398, "konfiguration"], [399, "konfiguration"], [400, "konfiguration"], [401, "konfiguration"], [402, "konfiguration"], [403, "konfiguration"], [405, "konfiguration"], [406, "konfiguration"], [407, "konfiguration"], [408, "konfiguration"], [409, "konfiguration"], [410, "konfiguration"], [411, "konfiguration"], [412, "konfiguration"], [413, "konfiguration"], [414, "konfiguration"], [415, "konfiguration"], [416, "konfiguration"], [417, "konfiguration"], [418, "konfiguration"], [419, "konfiguration"], [420, "konfiguration"], [421, "konfiguration"], [422, "konfiguration"], [423, "konfiguration"], [424, "konfiguration"], [425, "konfiguration"], [426, "konfiguration"], [427, "konfiguration"], [428, "konfiguration"], [429, "konfiguration"], [430, "konfiguration"], [431, "konfiguration"], [432, "konfiguration"], [433, "konfiguration"], [434, "konfiguration"], [435, "konfiguration"], [436, "konfiguration"], [437, "konfiguration"], [438, "konfiguration"], [439, "konfiguration"], [440, "konfiguration"], [441, "konfiguration"], [442, "konfiguration"], [443, "konfiguration"], [444, "konfiguration"], [445, "konfiguration"], [446, "konfiguration"], [447, "konfiguration"], [448, "konfiguration"], [449, "konfiguration"], [450, "konfiguration"], [451, "konfiguration"], [452, "konfiguration"], [453, "konfiguration"], [454, "konfiguration"], [455, "konfiguration"], [456, "konfiguration"], [457, "konfiguration"], [458, "konfiguration"], [459, "konfiguration"], [460, "konfiguration"], [461, "konfiguration"], [462, "konfiguration"], [463, "konfiguration"], [464, "konfiguration"], [465, "konfiguration"], [466, "konfiguration"], [467, "konfiguration"], [468, "konfiguration"], [469, "konfiguration"], [470, "konfiguration"], [471, "konfiguration"], [472, "konfiguration"], [473, "konfiguration"], [474, "konfiguration"], [475, "konfiguration"], [476, "konfiguration"], [477, "konfiguration"], [478, "konfiguration"], [479, "konfiguration"], [480, "konfiguration"], [481, "konfiguration"], [482, "konfiguration"], [483, "konfiguration"], [484, "konfiguration"], [485, "konfiguration"], [486, "konfiguration"], [487, "konfiguration"], [488, "konfiguration"], [489, "konfiguration"], [490, "konfiguration"], [491, "konfiguration"], [492, "konfiguration"], [493, "konfiguration"], [494, "konfiguration"], [495, "konfiguration"], [496, "konfiguration"], [497, "konfiguration"], [498, "konfiguration"], [499, "konfiguration"], [500, "konfiguration"], [501, "konfiguration"], [502, "konfiguration"], [503, "konfiguration"], [504, "konfiguration"], [505, "konfiguration"], [506, "konfiguration"], [507, "konfiguration"], [508, "konfiguration"], [509, "konfiguration"], [510, "konfiguration"], [511, "konfiguration"], [512, "konfiguration"], [513, "konfiguration"], [514, "konfiguration"], [515, "konfiguration"], [516, "konfiguration"], [517, "konfiguration"], [518, "konfiguration"], [519, "konfiguration"], [520, "konfiguration"], [521, "konfiguration"], [522, "konfiguration"], [523, "konfiguration"], [524, "konfiguration"], [525, "konfiguration"], [526, "konfiguration"], [527, "konfiguration"], [528, "konfiguration"], [529, "konfiguration"], [530, "konfiguration"], [531, "konfiguration"], [532, "konfiguration"], [533, "konfiguration"], [534, "konfiguration"], [535, "konfiguration"], [536, "konfiguration"], [537, "konfiguration"], [538, "konfiguration"], [574, "konfiguration"], [616, "konfiguration"]], "Funktionen": [[31, "funktionen"], [32, "funktionen"], [33, "funktionen"], [34, "funktionen"], [164, "funktionen"], [168, "funktionen"], [194, "funktionen"], [197, "funktionen"], [214, "funktionen"], [215, "funktionen"], [217, "funktionen"], [232, "funktionen"], [249, "funktionen"], [250, "funktionen"], [256, "funktionen"], [259, "funktionen"], [261, "funktionen"], [263, "funktionen"], [272, "funktionen"], [276, "funktionen"], [277, "funktionen"], [287, "funktionen"], [306, "funktionen"], [307, "funktionen"], [309, "funktionen"], [313, "funktionen"], [314, "funktionen"], [338, "funktionen"], [343, "funktionen"], [351, "funktionen"], [359, "funktionen"], [360, "funktionen"], [363, "funktionen"], [367, "funktionen"], [369, "funktionen"]], "Web Interface": [[31, "web-interface"], [32, "web-interface"], [33, "web-interface"], [34, "web-interface"], [164, "web-interface"], [165, "web-interface"], [166, "web-interface"], [167, "web-interface"], [169, "web-interface"], [170, "web-interface"], [172, "web-interface"], [178, "web-interface"], [179, "web-interface"], [181, "web-interface"], [184, "web-interface"], [187, "web-interface"], [188, "web-interface"], [189, "web-interface"], [191, "web-interface"], [192, "web-interface"], [197, "web-interface"], [200, "web-interface"], [201, "web-interface"], [204, "web-interface"], [210, "web-interface"], [212, "web-interface"], [213, "web-interface"], [214, "web-interface"], [215, "web-interface"], [220, "web-interface"], [220, "id1"], [222, "web-interface"], [223, "web-interface"], [228, "web-interface"], [229, "web-interface"], [230, "web-interface"], [232, "web-interface"], [237, "web-interface"], [238, "web-interface"], [241, "web-interface"], [242, "web-interface"], [243, "web-interface"], [244, "web-interface"], [246, "web-interface"], [249, "web-interface"], [250, "web-interface"], [252, "web-interface"], [255, "web-interface"], [259, "web-interface"], [261, "web-interface"], [262, "web-interface"], [263, "web-interface"], [264, "web-interface"], [265, "web-interface"], [266, "web-interface"], [267, "web-interface"], [268, "web-interface"], [276, "web-interface"], [277, "web-interface"], [280, "web-interface"], [284, "web-interface"], [286, "web-interface"], [287, "web-interface"], [289, "web-interface"], [291, "web-interface"], [302, "web-interface"], [306, "web-interface"], [307, "web-interface"], [311, "web-interface"], [314, "web-interface"], [320, "web-interface"], [336, "web-interface"], [338, "web-interface"], [339, "web-interface"], [340, "web-interface"], [343, "web-interface"], [346, "web-interface"], [347, "web-interface"], [348, "web-interface"], [349, "web-interface"], [351, "web-interface"], [357, "web-interface"], [359, "web-interface"], [360, "web-interface"], [362, "web-interface"], [363, "web-interface"], [366, "web-interface"], [367, "web-interface"], [369, "web-interface"]], "Version History": [[31, "version-history"], [32, "version-history"], [271, "version-history"], [277, "version-history"], [284, "version-history"]], "Pluginname (in Kleinbuchstaben)": [[32, "pluginname-in-kleinbuchstaben"]], "Tab 1: ": [[32, "tab-1-name-des-tabs"]], "Sample Plugin <- hier den Namen des Plugins einsetzen": [[33, "sample-plugin-hier-den-namen-des-plugins-einsetzen"], [34, "sample-plugin-hier-den-namen-des-plugins-einsetzen"]], "plugin.yaml": [[33, "plugin-yaml"], [34, "plugin-yaml"], [83, "plugin-yaml"], [103, "plugin-yaml"], [111, "plugin-yaml"], [160, "plugin-yaml"], [164, "plugin-yaml"], [166, "plugin-yaml"], [168, "plugin-yaml"], [169, "plugin-yaml"], [173, "plugin-yaml"], [176, "plugin-yaml"], [180, "plugin-yaml"], [182, "plugin-yaml"], [183, "plugin-yaml"], [186, "plugin-yaml"], [188, "plugin-yaml"], [190, "plugin-yaml"], [191, "plugin-yaml"], [193, "plugin-yaml"], [194, "plugin-yaml"], [195, "plugin-yaml"], [197, "plugin-yaml"], [198, "plugin-yaml"], [200, "plugin-yaml"], [201, "plugin-yaml"], [202, "plugin-yaml"], [208, "plugin-yaml"], [211, "plugin-yaml"], [214, "plugin-yaml"], [215, "plugin-yaml"], [218, "plugin-yaml"], [219, "plugin-yaml"], [221, "plugin-yaml"], [222, "plugin-yaml"], [228, "plugin-yaml"], [229, "plugin-yaml"], [230, "plugin-yaml"], [231, "plugin-yaml"], [232, "plugin-yaml"], [234, "plugin-yaml"], [238, "plugin-yaml"], [239, "plugin-yaml"], [240, "plugin-yaml"], [241, "plugin-yaml"], [243, "plugin-yaml"], [244, "plugin-yaml"], [245, "plugin-yaml"], [247, "plugin-yaml"], [248, "plugin-yaml"], [249, "plugin-yaml"], [250, "plugin-yaml"], [251, "plugin-yaml"], [253, "plugin-yaml"], [256, "plugin-yaml"], [257, "plugin-yaml"], [258, "plugin-yaml"], [258, "id1"], [259, "plugin-yaml"], [260, "plugin-yaml"], [261, "plugin-yaml"], [263, "plugin-yaml"], [264, "plugin-yaml"], [267, "plugin-yaml"], [269, "plugin-yaml"], [272, "plugin-yaml"], [273, "plugin-yaml"], [274, "plugin-yaml"], [275, "plugin-yaml"], [276, "plugin-yaml"], [277, "plugin-yaml"], [278, "plugin-yaml"], [280, "plugin-yaml"], [288, "plugin-yaml"], [290, "plugin-yaml"], [294, "plugin-yaml"], [297, "plugin-yaml"], [298, "plugin-yaml"], [300, "plugin-yaml"], [301, "plugin-yaml"], [305, "plugin-yaml"], [306, "plugin-yaml"], [307, "plugin-yaml"], [308, "plugin-yaml"], [309, "plugin-yaml"], [310, "plugin-yaml"], [312, "plugin-yaml"], [313, "plugin-yaml"], [314, "plugin-yaml"], [315, "plugin-yaml"], [317, "plugin-yaml"], [334, "plugin-yaml"], [335, "plugin-yaml"], [339, "plugin-yaml"], [340, "plugin-yaml"], [341, "plugin-yaml"], [343, "plugin-yaml"], [344, "plugin-yaml"], [351, "plugin-yaml"], [352, "plugin-yaml"], [355, "plugin-yaml"], [358, "plugin-yaml"], [359, "plugin-yaml"], [360, "plugin-yaml"], [361, "plugin-yaml"], [362, "plugin-yaml"], [363, "plugin-yaml"], [365, "plugin-yaml"], [368, "plugin-yaml"], [369, "plugin-yaml"], [370, "plugin-yaml"]], "items.yaml": [[33, "items-yaml"], [34, "items-yaml"], [164, "items-yaml"], [165, "items-yaml"], [167, "items-yaml"], [168, "items-yaml"], [173, "items-yaml"], [176, "items-yaml"], [182, "items-yaml"], [183, "items-yaml"], [186, "items-yaml"], [188, "items-yaml"], [190, "items-yaml"], [193, "items-yaml"], [194, "items-yaml"], [195, "items-yaml"], [197, "items-yaml"], [198, "items-yaml"], [199, "items-yaml"], [202, "items-yaml"], [208, "items-yaml"], [211, "items-yaml"], [214, "items-yaml"], [218, "items-yaml"], [219, "items-yaml"], [221, "items-yaml"], [222, "items-yaml"], [229, "items-yaml"], [231, "items-yaml"], [232, "items-yaml"], [234, "items-yaml"], [239, "items-yaml"], [240, "items-yaml"], [243, "items-yaml"], [245, "items-yaml"], [247, "items-yaml"], [248, "items-yaml"], [249, "items-yaml"], [250, "items-yaml"], [251, "items-yaml"], [253, "items-yaml"], [256, "items-yaml"], [258, "items-yaml"], [259, "items-yaml"], [260, "items-yaml"], [261, "items-yaml"], [263, "items-yaml"], [269, "items-yaml"], [272, "items-yaml"], [275, "items-yaml"], [276, "items-yaml"], [277, "items-yaml"], [278, "items-yaml"], [280, "items-yaml"], [284, "items-yaml"], [288, "items-yaml"], [290, "items-yaml"], [294, "items-yaml"], [297, "items-yaml"], [298, "items-yaml"], [300, "items-yaml"], [301, "items-yaml"], [305, "items-yaml"], [306, "items-yaml"], [307, "items-yaml"], [308, "items-yaml"], [309, "items-yaml"], [310, "items-yaml"], [312, "items-yaml"], [313, "items-yaml"], [314, "items-yaml"], [315, "items-yaml"], [317, "items-yaml"], [334, "items-yaml"], [335, "items-yaml"], [339, "items-yaml"], [340, "items-yaml"], [341, "items-yaml"], [343, "items-yaml"], [344, "items-yaml"], [351, "items-yaml"], [352, "items-yaml"], [355, "items-yaml"], [358, "items-yaml"], [360, "items-yaml"], [361, "items-yaml"], [362, "items-yaml"], [363, "items-yaml"], [369, "items-yaml"], [370, "items-yaml"]], "logic.yaml": [[33, "logic-yaml"], [34, "logic-yaml"], [83, "logic-yaml"], [103, "logic-yaml"], [108, "logic-yaml"], [167, "logic-yaml"], [183, "logic-yaml"], [190, "logic-yaml"], [197, "logic-yaml"], [202, "logic-yaml"], [211, "logic-yaml"], [214, "logic-yaml"], [218, "logic-yaml"], [231, "logic-yaml"], [232, "logic-yaml"], [234, "logic-yaml"], [240, "logic-yaml"], [243, "logic-yaml"], [249, "logic-yaml"], [250, "logic-yaml"], [251, "logic-yaml"], [256, "logic-yaml"], [259, "logic-yaml"], [261, "logic-yaml"], [276, "logic-yaml"], [277, "logic-yaml"], [301, "logic-yaml"], [305, "logic-yaml"], [306, "logic-yaml"], [307, "logic-yaml"], [309, "logic-yaml"], [312, "logic-yaml"], [313, "logic-yaml"], [314, "logic-yaml"], [315, "logic-yaml"], [343, "logic-yaml"], [352, "logic-yaml"], [355, "logic-yaml"], [360, "logic-yaml"], [361, "logic-yaml"], [363, "logic-yaml"], [365, "logic-yaml"], [368, "logic-yaml"], [369, "logic-yaml"], [686, "logic-yaml"]], "Einleitung": [[36, "einleitung"]], "\u00dcbersicht \u00fcber SmartHomeNG": [[36, "ubersicht-uber-smarthomeng"]], "Wie alles zusammenh\u00e4ngt": [[36, "wie-alles-zusammenhangt"]], "Bau der Dokumentation": [[37, "bau-der-dokumentation"]], "Checkout und Bau der Dokumentation": [[37, "checkout-und-bau-der-dokumentation"]], "Optionen des Build Skripts": [[37, "optionen-des-build-skripts"]], "Entwicklung des Core": [[38, "entwicklung-des-core"]], "Programm Module": [[39, "programm-module"]], "Der Core von SmartHomeNG": [[40, "der-core-von-smarthomeng"]], "smarthome.py": [[40, "smarthome-py"]], "lib.item": [[40, "lib-item"], [132, "module-lib.item"]], "Entwicklung": [[41, "entwicklung"]], "Logiken under construction": [[42, "logiken-under-construction"]], "Einf\u00fchrung": [[42, "einfuhrung"], [80, "einfuhrung"], [196, "einfuhrung"], [203, "einfuhrung"], [217, "einfuhrung"], [223, "einfuhrung"], [271, "einfuhrung"], [302, "einfuhrung"], [321, "einfuhrung"], [347, "einfuhrung"]], "Behandlung von Fehlern in der Logik": [[42, "behandlung-von-fehlern-in-der-logik"]], "Syntaktische Fehler": [[42, "syntaktische-fehler"]], "Laufzeit Fehler": [[42, "laufzeit-fehler"], [588, "laufzeit-fehler"]], "Template f\u00fcr eine neue Logik": [[42, "template-fur-eine-neue-logik"]], "Verlassen einer Logik": [[42, "verlassen-einer-logik"]], "Module": [[43, "module"], [118, "module"], [611, "module"]], "Metadaten": [[43, "metadaten"], [605, "metadaten"], [612, "metadaten"], [613, "metadaten"], [615, "metadaten"], [616, "metadaten"]], "module": [[43, "index-3"], [606, "module"]], "parameters": [[43, "parameters"], [53, "parameters"], [608, "parameters"]], "Plugins/Module ohne Parameter": [[43, "plugins-module-ohne-parameter"], [53, "plugins-module-ohne-parameter"], [608, "plugins-module-ohne-parameter"]], "Module http": [[44, "module-http"], [120, "module-http"]], "API des Moduls": [[44, "api-des-moduls"], [612, "api-des-moduls"], [613, "module-modules.http"], [615, "module-modules.mqtt"], [616, "api-des-moduls"]], "Module mqtt": [[45, "module-mqtt"], [121, "module-mqtt"]], "README": [[45, "readme"], [612, "readme"], [613, "readme"], [615, "readme"]], "Metadata": [[45, "metadata"]], "AsyncIO in Plugins neu": [[46, "asyncio-in-plugins-neu"]], "Methoden des Plugins": [[46, "methoden-des-plugins"]], "Threads in denen Plugin Methoden ausgef\u00fchrt werden": [[46, "id1"]], "Asyncio und Threads kombinieren": [[46, "asyncio-und-threads-kombinieren"]], "Entwicklungsrichtlinien under construction": [[47, "entwicklungsrichtlinien-under-construction"]], "Nutzung von git und GitHub": [[47, "nutzung-von-git-und-github"]], "Die Repositories von SmartHomeNG": [[47, "die-repositories-von-smarthomeng"]], "Repositories und Branches": [[47, "repositories-und-branches"]], "Die Quellen finden/installieren": [[47, "die-quellen-finden-installieren"]], "Code Stil": [[47, "code-stil"]], "Programmieren beginnen": [[47, "programmieren-beginnen"]], "Tools": [[47, "tools"], [76, "tools"], [646, "tools"], [650, "tools"], [652, "tools"], [653, "tools"], [654, "tools"], [655, "tools"], [656, "tools"], [676, "tools"]], "pep8": [[47, "pep8"]], "autopep8": [[47, "autopep8"]], "flake8": [[47, "flake8"]], "Testen und Dokumentieren": [[47, "testen-und-dokumentieren"]], "Basic Rules": [[47, "basic-rules"]], "Fork erstellen": [[47, "fork-erstellen"]], "Merge (description is deprecated, has to be updated)": [[47, "merge-description-is-deprecated-has-to-be-updated"]], ".git/config (description is deprecated, has to be updated)": [[47, "git-config-description-is-deprecated-has-to-be-updated"]], "Arbeiten mit dem Git-Befehlszeilen-Client": [[47, "arbeiten-mit-dem-git-befehlszeilen-client"]], "N\u00fctzliche Git-Befehle": [[47, "nutzliche-git-befehle"]], "Globale Einstellungen": [[47, "globale-einstellungen"]], "Kurzanleitung update": [[48, "kurzanleitung-update"]], "Programm Module zur Nutzung in Plugins": [[49, "programm-module-zur-nutzung-in-plugins"]], "Unterst\u00fctzung mehrerer Sprachen Update": [[50, "unterstutzung-mehrerer-sprachen-update"]], "Text als mehrsprachig kennzeichnen": [[50, "text-als-mehrsprachig-kennzeichnen"]], "1. In Jinja2-Templates": [[50, "in-jinja2-templates"]], "2. Im Python-Code": [[50, "im-python-code"]], "Wie Mehrsprachigkeit funktioniert": [[50, "wie-mehrsprachigkeit-funktioniert"]], "Sprachen und \u00dcbersetzungen hinzuf\u00fcgen": [[50, "sprachen-und-ubersetzungen-hinzufugen"]], "Platzhalter in \u00dcbersetzungen nutzen Neu": [[50, "platzhalter-in-ubersetzungen-nutzen-neu"]], "1. Platzhalter in Jinja2-Templates": [[50, "platzhalter-in-jinja2-templates"]], "2. Platzhalter im Python-Code": [[50, "platzhalter-im-python-code"]], "Plugin-Dokumentation": [[51, "plugin-dokumentation"]], "user_doc.rst": [[51, "user-doc-rst"]], "In wenigen Minuten zum eigenen Plugin": [[52, "in-wenigen-minuten-zum-eigenen-plugin"]], "Beschreibung des Plugins": [[52, "beschreibung-des-plugins"]], "Die Metadaten: plugin.yaml": [[52, "die-metadaten-plugin-yaml"]], "Beispiel einer Metadaten-Datei:": [[52, "beispiel-einer-metadaten-datei"]], "Die Dokumentation: user_doc.rst": [[52, "die-dokumentation-user-doc-rst"]], "Konfigurieren des Plugins in der Systemkonfiguration /etc/plugin.yaml": [[52, "konfigurieren-des-plugins-in-der-systemkonfiguration-etc-plugin-yaml"]], "Der Plugin-Code: __init__.py": [[52, "der-plugin-code-init-py"]], "Vordefinierte Funktionen des Plugins": [[52, "vordefinierte-funktionen-des-plugins"]], "Erstellung eines Webinterfaces": [[52, "erstellung-eines-webinterfaces"]], "Funktionen von SmartHomeNG": [[52, "funktionen-von-smarthomeng"]], "Der Scheduler": [[52, "der-scheduler"]], "scheduler_add": [[52, "scheduler-add"]], "name=string": [[52, "name-string"]], "obj=function": [[52, "obj-function"]], "cron": [[52, "cron"]], "cycle=int": [[52, "cycle-int"]], "next=dateobject": [[52, "next-dateobject"]], "value": [[52, "value"], [52, "id2"], [365, "value"], [379, "value"], [380, "value"], [406, "value"], [522, "value"]], "offset=int": [[52, "offset-int"]], "scheduler_remove": [[52, "scheduler-remove"]], "Name=string": [[52, "id1"]], "Items suchen": [[52, "items-suchen"]], "item_path=string": [[52, "item-path-string"]], "Items ver\u00e4ndern": [[52, "items-verandern"]], "caller=string": [[52, "caller-string"]], "Plugin-Metadata update": [[53, "plugin-metadata-update"]], "Detaillierte Beschreibung": [[53, "detaillierte-beschreibung"]], "plugin": [[53, "plugin"], [610, "plugin"]], "item_attributes": [[53, "item-attributes"], [602, "item-attributes"]], "Plugins ohne Item Attribute": [[53, "plugins-ohne-item-attribute"], [602, "plugins-ohne-item-attribute"]], "item_structs": [[53, "item-structs"], [170, "item-structs"], [603, "item-structs"]], "Geschachtelte Strukturen": [[53, "geschachtelte-strukturen"], [603, "geschachtelte-strukturen"]], "Redefininieren von Attributen": [[53, "redefininieren-von-attributen"], [603, "redefininieren-von-attributen"]], "Redefininieren von list-Attributen": [[53, "redefininieren-von-list-attributen"], [603, "redefininieren-von-list-attributen"]], "Definitionen f\u00fcr multi-instance Plugins": [[53, "definitionen-fur-multi-instance-plugins"], [603, "definitionen-fur-multi-instance-plugins"]], "Plugins ohne item-structs": [[53, "plugins-ohne-item-structs"], [603, "plugins-ohne-item-structs"]], "logic_parameters": [[53, "logic-parameters"], [604, "logic-parameters"]], "Plugins ohne Logic Parameter": [[53, "plugins-ohne-logic-parameter"], [604, "plugins-ohne-logic-parameter"]], "plugin_functions": [[53, "plugin-functions"], [609, "plugin-functions"]], "Plugins ohne Plugin Funktionen": [[53, "plugins-ohne-plugin-funktionen"], [609, "plugins-ohne-plugin-funktionen"]], "Funktionen ohne Parameter": [[53, "funktionen-ohne-parameter"], [609, "funktionen-ohne-parameter"]], "Aufruf von Funktionen": [[53, "aufruf-von-funktionen"], [609, "aufruf-von-funktionen"]], "Beispielplugin mit MQTT-Unterst\u00fctzung": [[54, "beispielplugin-mit-mqtt-unterstutzung"]], "Die Metadaten-Datei:": [[54, "die-metadaten-datei"], [55, "die-metadaten-datei"]], "Der Quelltext:": [[54, "der-quelltext"], [55, "der-quelltext"]], "Das Webinterface (template file):": [[54, "das-webinterface-template-file"], [55, "das-webinterface-template-file"]], "Die Datei f\u00fcr Mehrsprachigkeit:": [[54, "die-datei-fur-mehrsprachigkeit"], [55, "die-datei-fur-mehrsprachigkeit"]], "Die Dokumentation:": [[54, "die-dokumentation"], [55, "die-dokumentation"]], "Beispielplugin update": [[55, "beispielplugin-update"]], "Webinterface update": [[56, "webinterface-update"]], "Allgemeines": [[56, "allgemeines"]], "Tooltips": [[56, "tooltips"]], "Cookies": [[56, "cookies"], [164, "cookies"]], "Icons": [[56, "icons"]], "Kalenderansicht": [[56, "kalenderansicht"]], "Komponenten von Drittanbietern f\u00fcr Webinterfaces": [[57, "komponenten-von-drittanbietern-fur-webinterfaces"]], "Automatische Updates der Daten im Webinterface new": [[58, "automatische-updates-der-daten-im-webinterface-new"]], "Erweitern der Python-Methode get_data_html()": [[58, "erweitern-der-python-methode-get-data-html"]], "IDs an DOM-Elemente zuweisen": [[58, "ids-an-dom-elemente-zuweisen"], [62, "ids-an-dom-elemente-zuweisen"]], "Erweitern der JavaScript-Funktion handleUpdatedData()": [[58, "erweitern-der-javascript-funktion-handleupdateddata"]], "Sortierbare Tabellen": [[58, "sortierbare-tabellen"]], "Hinzuf\u00fcgen von Tabellenzeilen": [[58, "hinzufugen-von-tabellenzeilen"]], "Hervorheben von \u00c4nderungen": [[58, "hervorheben-von-anderungen"]], "Festlegen von Aktualisierungsintervall, dataSets und weiteren Parametern": [[58, "festlegen-von-aktualisierungsintervall-datasets-und-weiteren-parametern"]], "Dynamische Anpassung von Aktualisierungsintervall, dataSets und weiteren Parametern": [[58, "dynamische-anpassung-von-aktualisierungsintervall-datasets-und-weiteren-parametern"]], "Erweitern eines bestehenden Plugins": [[59, "erweitern-eines-bestehenden-plugins"]], "Das Webinterface mit Inhalt f\u00fcllen": [[60, "das-webinterface-mit-inhalt-fullen"]], "Unterst\u00fctzung mehrerer Sprachen new": [[61, "unterstutzung-mehrerer-sprachen-new"]], "Interaktion des Webinterface mit dem Plugin new": [[62, "interaktion-des-webinterface-mit-dem-plugin-new"]], "Die Python-Methode submit() implementieren": [[62, "die-python-methode-submit-implementieren"]], "Aktive Elemente im WebInterface definieren": [[62, "aktive-elemente-im-webinterface-definieren"]], "Javascript-Funktion zum Handling implementieren": [[62, "javascript-funktion-zum-handling-implementieren"]], "Class MqttPlugin": [[63, "class-mqttplugin"], [620, "class-mqttplugin"]], "Plugin-Checker neu": [[64, "plugin-checker-neu"]], "Plugins Update": [[65, "plugins-update"], [626, "plugins-update"]], "Class SmartPlugin": [[66, "class-smartplugin"], [624, "class-smartplugin"]], "Vor\u00fcberlegungen": [[67, "voruberlegungen"]], "Fragestellungen": [[67, "fragestellungen"]], "Typ des Plugins": [[67, "typ-des-plugins"]], "System Plugin": [[67, "system-plugin"]], "Interface Plugin": [[67, "interface-plugin"]], "Gateway Plugin": [[67, "gateway-plugin"]], "Protokoll Plugin": [[67, "protokoll-plugin"]], "Web/Cloud Plugin": [[67, "web-cloud-plugin"]], "Plugin Vorlagen": [[67, "plugin-vorlagen"]], "Nutzung von Python Packages": [[67, "nutzung-von-python-packages"]], "Python Version": [[67, "python-version"]], "Virtuelle Umgebungen": [[68, "virtuelle-umgebungen"]], "Venv": [[68, "venv"]], "Pyenv": [[68, "pyenv"]], "Pipenv": [[68, "pipenv"]], "FAQ - H\u00e4ufig gestellte Fragen": [[69, "faq-haufig-gestellte-fragen"]], "Das Schalten von KNX Aktoren aus der smartVISU funktioniert nicht": [[69, "das-schalten-von-knx-aktoren-aus-der-smartvisu-funktioniert-nicht"]], "FAQ auf der Website von SmartHomeNG": [[69, "faq-auf-der-website-von-smarthomeng"]], "Fehlersuche": [[70, "fehlersuche"]], "Fehlersuche mit der Admin GUI": [[70, "fehlersuche-mit-der-admin-gui"]], "Checkliste f\u00fcr die Fehlersuche": [[71, "checkliste-fur-die-fehlersuche"]], "L\u00e4uft SmartHomeNG?": [[71, "lauft-smarthomeng"]], "SmartHomeNG im Debugmodus starten": [[71, "smarthomeng-im-debugmodus-starten"]], "Zugriff auf den KNX via eibd": [[71, "zugriff-auf-den-knx-via-eibd"]], "Zugriff auf den KNX via knxd": [[71, "zugriff-auf-den-knx-via-knxd"]], "Kann SmartHomeNG schalten?": [[71, "kann-smarthomeng-schalten"]], "Kontakt mit SmartVISU": [[71, "kontakt-mit-smartvisu"]], "Zugriff auf SH.py via CLI Plugin aus Windows mit putty oder kitty": [[71, "zugriff-auf-sh-py-via-cli-plugin-aus-windows-mit-putty-oder-kitty"]], "Admonition Arten": [[72, "admonition-arten"]], "And, by the way\u2026": [[72, null]], "Alternativ knxd compilieren": [[73, "alternativ-knxd-compilieren"]], "zus\u00e4tzliche Pakete zum Bau installieren": [[73, "zusatzliche-pakete-zum-bau-installieren"]], "Quellcode laden, compilieren und ein Paket schn\u00fcren": [[73, "quellcode-laden-compilieren-und-ein-paket-schnuren"]], "Verwendung von Tabs": [[74, "verwendung-von-tabs"]], "Stichwort Verzeichnis": [[75, "stichwort-verzeichnis"]], "Ideen f\u00fcr das Release 1.9": [[76, "ideen-fur-das-release-1-9"]], "Inhalts\u00fcbersicht": [[76, "inhaltsubersicht"]], "Core": [[76, "core"]], "Struct Nesting": [[76, "struct-nesting"]], "lib.network": [[76, "lib-network"], [141, "module-lib.network"]], "daemonize \u00fcberarbeiten": [[76, "daemonize-uberarbeiten"]], "Logiken: Zus\u00e4tzlichen Trigger \u201eshutdown\u201c": [[76, "logiken-zusatzlichen-trigger-shutdown"]], "Items: User Attribute implementieren": [[76, "items-user-attribute-implementieren"]], "Items: Hinzuf\u00fcgen von Items w\u00e4hrend der Laufzeit": [[76, "items-hinzufugen-von-items-wahrend-der-laufzeit"]], "Items: Einzelne Attribute w\u00e4hrend der Laufzeit \u00e4ndern": [[76, "items-einzelne-attribute-wahrend-der-laufzeit-andern"]], "Weitere Loglevel einf\u00fchren": [[76, "weitere-loglevel-einfuhren"]], "lib.color": [[76, "lib-color"]], "Web Interfaces": [[76, "web-interfaces"], [251, "web-interfaces"]], "Update Routinen f\u00fcr die Konfiguration bei neuen Releases implementieren": [[76, "update-routinen-fur-die-konfiguration-bei-neuen-releases-implementieren"]], "MQTT Modul Erweiterungen": [[76, "mqtt-modul-erweiterungen"]], "Admin GUI": [[76, "admin-gui"]], "Websocket Nutzdaten Protokoll f\u00fcr shngadmin": [[76, "websocket-nutzdaten-protokoll-fur-shngadmin"]], "Nach Core Neustart die Server infos neu lesen": [[76, "nach-core-neustart-die-server-infos-neu-lesen"]], "Admin GUI shngadmin: Dark Mode?": [[76, "admin-gui-shngadmin-dark-mode"]], "hue2": [[76, "hue2"], [212, "hue2"]], "rtr2": [[76, "rtr2"], [289, "rtr2"]], "smartvisu": [[76, "smartvisu"], [302, "smartvisu"]], "tasmota": [[76, "tasmota"], [337, "tasmota"]], "Tool zur formalen Pr\u00fcfung von Plugins": [[76, "tool-zur-formalen-prufung-von-plugins"]], "Impressum": [[77, "impressum"]], "Angaben gema\u0308\u00df \u00a7 5 TMG": [[77, "angaben-gemasz-5-tmg"]], "Kontakt": [[77, "kontakt"]], "Haftung fu\u0308r Inhalte": [[77, "haftung-fur-inhalte"]], "Haftung fu\u0308r Links": [[77, "haftung-fur-links"]], "Urheberrecht": [[77, "urheberrecht"]], "SmartHomeNG": [[78, "smarthomeng"]], "Dokumentation": [[78, "dokumentation"], [641, "dokumentation"], [652, "dokumentation"], [653, "dokumentation"], [654, "dokumentation"], [655, "dokumentation"], [656, "dokumentation"], [671, "dokumentation"], [672, "dokumentation"], [674, "dokumentation"], [675, "dokumentation"]], "Hard- u. Software Anforderungen": [[79, "hard-u-software-anforderungen"]], "Hardware": [[79, "hardware"], [305, "hardware"], [309, "hardware"]], "Virtuelle Maschine": [[79, "virtuelle-maschine"]], "Raspberry Pi 3 oder 4": [[79, "raspberry-pi-3-oder-4"]], "Vorteile:": [[79, "vorteile"], [79, "id1"], [79, "id3"], [79, "id5"]], "Nachteile:": [[79, "nachteile"], [79, "id2"], [79, "id4"], [79, "id6"]], "Intel NUC oder vergleichbar": [[79, "intel-nuc-oder-vergleichbar"]], "NAS (z.B. Synology, QNAP)": [[79, "nas-z-b-synology-qnap"]], "Weitere Einplatinencomputer (Banana PI, ODroid, BeagleBone, etc.)": [[79, "weitere-einplatinencomputer-banana-pi-odroid-beaglebone-etc"]], "Betriebssysteme": [[79, "betriebssysteme"]], "Python Versionen": [[79, "python-versionen"]], "Minimum Python Version": [[79, "minimum-python-version"], [646, "minimum-python-version"], [647, "minimum-python-version"], [648, "minimum-python-version"], [649, "minimum-python-version"], [650, "minimum-python-version"], [651, "minimum-python-version"], [652, "minimum-python-version"], [653, "minimum-python-version"], [654, "minimum-python-version"], [655, "minimum-python-version"], [656, "minimum-python-version"]], "Unterst\u00fctzte Python Versionen": [[79, "unterstutzte-python-versionen"], [641, "unterstutzte-python-versionen"], [643, "unterstutzte-python-versionen"], [644, "unterstutzte-python-versionen"], [645, "unterstutzte-python-versionen"], [646, "unterstutzte-python-versionen"], [649, "unterstutzte-python-versionen"], [650, "unterstutzte-python-versionen"], [651, "unterstutzte-python-versionen"], [652, "unterstutzte-python-versionen"], [653, "unterstutzte-python-versionen"], [654, "unterstutzte-python-versionen"], [655, "unterstutzte-python-versionen"], [656, "unterstutzte-python-versionen"], [671, "unterstutzte-python-versionen"], [672, "unterstutzte-python-versionen"], [674, "unterstutzte-python-versionen"], [675, "unterstutzte-python-versionen"], [691, "unterstutzte-python-versionen"]], "Zur Verdeutlichung": [[79, "id8"]], "Aktive Python Releases (wie auf python.org dokumentiert)": [[79, "id9"]], "Python (und PHP) Versionen unter Linux": [[79, "python-und-php-versionen-unter-linux"]], "Distributionen und enthaltene Python und PHP Versionen": [[79, "id10"]], "Installation \u00fcber Docker": [[80, "installation-uber-docker"]], "Docker-Compose": [[80, "docker-compose"]], "Anleitung": [[80, "anleitung"]], "Installation": [[81, "installation"], [221, "installation"], [269, "installation"], [284, "installation"]], "Debian Linux installieren": [[82, "debian-linux-installieren"]], "Softwareauswahl": [[82, "softwareauswahl"]], "Einloggen via SSH oder an der Konsole": [[82, "einloggen-via-ssh-oder-an-der-konsole"]], "Systemaktualisierung": [[82, "systemaktualisierung"]], "Raspberry Pi": [[82, null]], "Restarbeiten am System": [[82, "restarbeiten-am-system"]], "sudo f\u00fcr User smarthome": [[82, "sudo-fur-user-smarthome"]], "Standby/Energiesparmodus abschalten": [[82, "standby-energiesparmodus-abschalten"]], "Anpassung f\u00fcr die smartVISU": [[82, "anpassung-fur-die-smartvisu"]], "Anpassung der Userumgebung": [[82, "anpassung-der-userumgebung"]], "System abschalten": [[82, "system-abschalten"]], "zus\u00e4tzliche Linux Pakete installieren": [[83, "zusatzliche-linux-pakete-installieren"], [87, "zusatzliche-linux-pakete-installieren"], [88, "zusatzliche-linux-pakete-installieren"]], "SmartHomeNG Quellcode laden": [[83, "smarthomeng-quellcode-laden"]], "Weitere Python Bibliotheken installieren": [[83, "weitere-python-bibliotheken-installieren"]], "Erstmaliger Start von SmartHomeNG": [[83, "erstmaliger-start-von-smarthomeng"]], "SmartHomeNG starten": [[83, "smarthomeng-starten"], [83, "id1"]], "\u00dcberpr\u00fcfen, ob SmartHomeNG l\u00e4uft": [[83, "uberprufen-ob-smarthomeng-lauft"]], "Initiale Konfiguration per GUI": [[83, "initiale-konfiguration-per-gui"]], "SmartHomeNG konfigurieren": [[83, "smarthomeng-konfigurieren"]], "Erstmalige Konfiguration per Kommandozeile (f\u00fcr Fortgeschrittene)": [[83, "erstmalige-konfiguration-per-kommandozeile-fur-fortgeschrittene"]], "smarthome.yaml": [[83, "smarthome-yaml"], [103, "smarthome-yaml"], [113, "smarthome-yaml"]], "logging.yaml": [[83, "logging-yaml"], [107, "logging-yaml"], [160, "logging-yaml"]], "module.yaml": [[83, "module-yaml"], [110, "module-yaml"]], "Admin Interface": [[83, "admin-interface"]], "MQTT Broker installieren": [[84, "mqtt-broker-installieren"]], "Mosquitto als Service einrichten": [[84, "mosquitto-als-service-einrichten"]], "Mosquitto konfigurieren": [[84, "mosquitto-konfigurieren"]], "zus\u00e4tzliche Pakete installieren": [[85, "zusatzliche-pakete-installieren"]], "SmartVISU Quellcode laden": [[85, "smartvisu-quellcode-laden"]], "Zugriff auf die SmartVISU testen": [[85, "zugriff-auf-die-smartvisu-testen"]], "Eigene Visu Seiten anlegen": [[85, "eigene-visu-seiten-anlegen"]], "Nachinstallation der Kurzanleitung": [[85, "nachinstallation-der-kurzanleitung"]], "SmartHomeNG Plugin visu_smartvisu": [[85, "smarthomeng-plugin-visu-smartvisu"]], "Mischung von generierten und manuell erstellten Seiten": [[85, "mischung-von-generierten-und-manuell-erstellten-seiten"], [302, "mischung-von-generierten-und-manuell-erstellten-seiten"], [354, "mischung-von-generierten-und-manuell-erstellten-seiten"]], "knxd unter Debian installieren": [[86, "knxd-unter-debian-installieren"]], "knxd konfigurieren": [[86, "knxd-konfigurieren"]], "knxd testen": [[86, "knxd-testen"]], "knxd und systemd": [[86, "knxd-und-systemd"]], "SmartHomeNG Plugin konfigurieren": [[86, "smarthomeng-plugin-konfigurieren"], [87, "smarthomeng-plugin-konfigurieren"]], "Owserver konfigurieren": [[87, "owserver-konfigurieren"]], "Samba konfigurieren": [[88, "samba-konfigurieren"]], "SmartHomeNG als Dienst update": [[89, "smarthomeng-als-dienst-update"]], "Einrechten des Dienstes": [[89, "einrechten-des-dienstes"]], "Nutzung eines virtuellen Environments neu": [[89, "nutzung-eines-virtuellen-environments-neu"]], "Starten des Dienstes": [[89, "starten-des-dienstes"], [90, "starten-des-dienstes"]], "ESPHome Dashboard new": [[90, "esphome-dashboard-new"]], "ESPHome Dashboard starten und testen": [[90, "esphome-dashboard-starten-und-testen"]], "ESPHome Dashboard als Dienst einrichten": [[90, "esphome-dashboard-als-dienst-einrichten"]], "Komplettanleitung": [[91, "komplettanleitung"]], "Update von einer \u00e4lteren Version": [[92, "update-von-einer-alteren-version"]], "Vorgehensweise": [[92, "vorgehensweise"], [92, "id1"]], "Plan B": [[92, "plan-b"]], "Betriebssystemupdate": [[92, "betriebssystemupdate"]], "Versionsdetails": [[92, "versionsdetails"]], "Update von SmarthomeNG ab v1.6 und h\u00f6her": [[92, "update-von-smarthomeng-ab-v1-6-und-hoher"]], "Update von SmarthomeNG ab v1.1 und h\u00f6her": [[92, "update-von-smarthomeng-ab-v1-1-und-hoher"]], "Upgrade von Smarthome.py": [[92, "upgrade-von-smarthome-py"]], "Konvertierung von *.conf-Dateien": [[92, "konvertierung-von-conf-dateien"]], "Konfiguration \u00fcber die GUI": [[93, "konfiguration-uber-die-gui"]], "Konfigurations-Dialoge": [[93, "konfigurations-dialoge"]], "Editoren f\u00fcr YAML Konfigurationen": [[93, "editoren-fur-yaml-konfigurationen"]], "Konfiguration von Items": [[94, "konfiguration-von-items"], [371, "konfiguration-von-items"]], "Konfiguration von Plugins": [[95, "konfiguration-von-plugins"]], "Hinzuf\u00fcgen von Plugins": [[95, "hinzufugen-von-plugins"]], "Systemkonfiguration": [[96, "systemkonfiguration"]], "Konfiguration der Feiertage": [[96, "konfiguration-der-feiertage"]], "\u00dcberblick": [[97, "uberblick"], [100, "uberblick"], [643, "uberblick"], [644, "uberblick"], [645, "uberblick"], [646, "uberblick"], [647, "uberblick"], [648, "uberblick"], [649, "uberblick"], [650, "uberblick"], [651, "uberblick"], [652, "uberblick"], [653, "uberblick"], [654, "uberblick"], [655, "uberblick"], [656, "uberblick"], [685, "uberblick"], [689, "uberblick"]], "struct-Templates in Plugins": [[97, "struct-templates-in-plugins"]], "Anwendung": [[97, "anwendung"], [97, "id1"]], "Multi-Instance Unterst\u00fctzung": [[97, "multi-instance-unterstutzung"]], "selbst definierte struct-Templates": [[97, "selbst-definierte-struct-templates"]], "Verschachtelte struct Definitionen (nested structs)": [[97, "verschachtelte-struct-definitionen-nested-structs"]], "Re-Definieren von Attributen (au\u00dfer list-Attributen)": [[97, "re-definieren-von-attributen-auszer-list-attributen"]], "Re-Definieren von list-Attributen": [[97, "re-definieren-von-list-attributen"]], "Verhalten bei struct in einem Item": [[97, "verhalten-bei-struct-in-einem-item"]], "Verhalten bei sub-struct in struct": [[97, "verhalten-bei-sub-struct-in-struct"]], "Verwendung mehrerer Definitionsdateien": [[97, "verwendung-mehrerer-definitionsdateien"]], "Initiale Item-Konfiguration": [[98, "initiale-item-konfiguration"]], "Beispiele f\u00fcr erstmaliges Setup": [[98, "beispiele-fur-erstmaliges-setup"]], "Namensvergabe": [[100, "namensvergabe"]], "Attribute": [[100, "attribute"], [230, "attribute"], [256, "attribute"], [313, "attribute"]], "Properties und Funktionen": [[100, "properties-und-funktionen"]], "Konfiguration Update": [[101, "konfiguration-update"]], "Konfiguration Sichern und Wiederherstellen": [[102, "konfiguration-sichern-und-wiederherstellen"]], "Sichern": [[102, "sichern"]], "Wiederherstellen": [[102, "wiederherstellen"]], "Umfang der Sicherung": [[102, "umfang-der-sicherung"]], "Allgemeines zur Konfiguration": [[103, "allgemeines-zur-konfiguration"]], "Verzeichnisse in SmartHomeNG": [[103, "verzeichnisse-in-smarthomeng"]], "Dateien im Verzeichnis ../etc": [[103, "dateien-im-verzeichnis-etc"]], "Weitere Dateien": [[103, "weitere-dateien"]], "Dateien im Verzeichnis ../functions": [[103, "dateien-im-verzeichnis-functions"]], "Dateien im Verzeichnis ../items": [[103, "dateien-im-verzeichnis-items"]], "holidays.yaml": [[104, "holidays-yaml"]], "Benutzerdefinierte Feiertage": [[104, "benutzerdefinierte-feiertage"]], "Konfigurationsdatei": [[104, "konfigurationsdatei"]], "items/*.yaml": [[105, "items-yaml"]], "Item Definitionen im Verzeichnis ../items": [[105, "item-definitionen-im-verzeichnis-items"]], "Konfiguration \u00fcber Dateien": [[106, "konfiguration-uber-dateien"]], "Verzeichnisse": [[106, "verzeichnisse"]], "Verzeichnis ../etc": [[106, "verzeichnis-etc"]], "Verzeichnis ../items": [[106, "verzeichnis-items"]], "Verzeichnis ../logics": [[106, "verzeichnis-logics"]], "Verzeichnis ../scenes": [[106, "verzeichnis-scenes"]], "Aufbau der Konfigurationsdateien": [[106, "aufbau-der-konfigurationsdateien"]], "Neues Dateiformat - .yaml Dateien": [[106, "neues-dateiformat-yaml-dateien"]], "Formate von Values in YAML Dateien": [[106, "formate-von-values-in-yaml-dateien"]], "Besonderheiten boolscher Werte": [[106, "besonderheiten-boolscher-werte"]], "Besonderheiten bei der Angabe von Wertelisten": [[106, "besonderheiten-bei-der-angabe-von-wertelisten"]], "Beispiel von Item Definitionen in YAML": [[106, "beispiel-von-item-definitionen-in-yaml"]], "Konvertierung von .conf Dateien in das YAML Format": [[106, "konvertierung-von-conf-dateien-in-das-yaml-format"]], "Nacharbeiten": [[106, "nacharbeiten"]], "Vorteile von YAML": [[106, "vorteile-von-yaml"]], "Altes Dateiformat - .conf Dateien": [[106, "altes-dateiformat-conf-dateien"]], "YAML Syntax": [[106, "yaml-syntax"]], "Grundlegende YAML Regeln": [[106, "grundlegende-yaml-regeln"]], "Basis DataTypen in YAML": [[106, "basis-datatypen-in-yaml"]], "Skalare": [[106, "skalare"]], "Sequenzen": [[106, "sequenzen"]], "Zuordnungen": [[106, "zuordnungen"]], "Kommentare": [[106, "kommentare"]], "Konfigurationsdateien": [[106, "konfigurationsdateien"]], "logics/*.py": [[109, "logics-py"]], "Logik Code im Verzeichnis ../logics": [[109, "logik-code-im-verzeichnis-logics"]], "Referenzierung eines Plugins in der Konfiguration": [[111, "referenzierung-eines-plugins-in-der-konfiguration"]], "Nutzung einer \u00e4lteren Version eines Plugins": [[111, "nutzung-einer-alteren-version-eines-plugins"]], "scenes/*.yaml": [[112, "scenes-yaml"]], "Szenen Definitionen im Verzeichnis ../scenes": [[112, "szenen-definitionen-im-verzeichnis-scenes"]], "altes Konfigurationsformat": [[112, "altes-konfigurationsformat"]], "Neuerungen ab SmartHomeNG v1.4": [[112, "neuerungen-ab-smarthomeng-v1-4"]], "Konfiguration im YAML Format": [[112, "konfiguration-im-yaml-format"]], "struct.yaml und struct_*.yaml": [[114, "struct-yaml-und-struct-yaml"]], "Logging": [[115, "logging"], [322, "logging"], [582, "logging"]], "Log Level": [[115, "id1"]], "Konfiguration des Loggings": [[115, "konfiguration-des-loggings"]], "Kurzdoku der Eintr\u00e4ge in der Konfigurationsdatei": [[115, "kurzdoku-der-eintrage-in-der-konfigurationsdatei"]], "Logging Handler und Filter": [[115, "logging-handler-und-filter"]], "Plugin und Logik Entwicklung": [[115, "plugin-und-logik-entwicklung"]], "Logging der Ver\u00e4nderung von Items": [[115, "logging-der-veranderung-von-items"]], "Best Practices": [[115, "best-practices"]], "Logging - Best Practices": [[116, "logging-best-practices"]], "Grundkonfiguration des Loggings": [[116, "grundkonfiguration-des-loggings"]], "Konfiguration zus\u00e4tzlicher Logausgaben": [[116, "konfiguration-zusatzlicher-logausgaben"]], "Identifizieren von Neustarts im Zusatzlog": [[116, "identifizieren-von-neustarts-im-zusatzlog"]], "Ein besserer simple-Formatter": [[116, "ein-besserer-simple-formatter"]], "Erweiterte Konfigurationen des Loggings": [[116, "erweiterte-konfigurationen-des-loggings"]], "Logging Filter": [[116, "logging-filter"], [583, "logging-filter"]], "Erweitertes Logging f\u00fcr die Plugin Entwicklung": [[116, "erweitertes-logging-fur-die-plugin-entwicklung"]], "Standardparameter": [[117, "standardparameter"], [592, "standardparameter"], [600, "standardparameter"]], "Module admin": [[119, "module-admin"]], "Datei ../etc/module.yaml": [[119, "datei-etc-module-yaml"], [120, "datei-etc-module-yaml"], [121, "datei-etc-module-yaml"], [122, "datei-etc-module-yaml"]], "Module websocket Neu": [[122, "module-websocket-neu"]], "Multi-Instance F\u00e4higkeit": [[123, "multi-instance-fahigkeit"]], "Liste der verf\u00fcgbaren Plugins": [[123, "liste-der-verfugbaren-plugins"]], "Funktionsweise von Szenen": [[124, "funktionsweise-von-szenen"]], "Userfunctions": [[125, "userfunctions"], [638, "userfunctions"]], "lib.config": [[126, "module-lib.config"]], "lib.connection": [[127, "module-lib.connection"]], "lib.constants": [[128, "module-lib.constants"]], "lib.daemon": [[129, "module-lib.daemon"]], "lib.db": [[130, "module-lib.db"]], "lib.env": [[131, "lib-env"]], "Items-API": [[132, "items-api"]], "class Item": [[132, "class-item"]], "class Items": [[132, "class-items"]], "Class Item": [[133, "class-item"]], "Class Items": [[134, "class-items"]], "lib.item_conversion": [[135, "module-lib.item_conversion"]], "lib.log": [[136, "module-lib.log"]], "Logics-API": [[137, "logics-api"]], "lib.logic": [[137, "module-lib.logic"]], "lib.logutils": [[138, "module-lib.logutils"]], "lib.metadata": [[139, "lib-metadata"]], "lib.module": [[140, "module-lib.module"]], "lib.orb": [[142, "module-lib.orb"]], "Plugins-API": [[143, "plugins-api"]], "lib.plugin": [[143, "lib-plugin"]], "class PluginWrapper": [[143, "class-pluginwrapper"]], "class Plugins": [[143, "class-plugins"]], "Class Plugins": [[144, "class-plugins"]], "Class PluginWrapper": [[145, "class-pluginwrapper"]], "lib.scene": [[146, "module-lib.scene"]], "Scheduler-API": [[147, "scheduler-api"]], "lib.scheduler": [[147, "module-lib.scheduler"]], "Shtime-API": [[148, "shtime-api"]], "lib.shtime": [[148, "module-lib.shtime"]], "lib.shyaml": [[149, "module-lib.shyaml"]], "lib.tools": [[150, "module-lib.tools"]], "lib.translation": [[151, "lib-translation"]], "lib.utils": [[152, "module-lib.utils"]], "Module admin (README)": [[154, "module-admin-readme"]], "API des Moduls admin": [[154, "api-des-moduls-admin"]], "AUTH API - Authentification for clients": [[154, "auth-api-authentification-for-clients"]], "POST /api/auth/": [[154, "post-api-auth"]], "CONFIG API - Get and update information about the core\u2019s configuration": [[154, "config-api-get-and-update-information-about-the-core-s-configuration"]], "GET /api/config": [[154, "get-api-config"]], "GET /api/config/": [[154, "get-api-config-module-or-common"]], "PUT /api/config/": [[154, "put-api-config-module-or-common"]], "LOGICS API - xxx": [[154, "logics-api-xxx"]], "???": [[154, "id1"]], "LOGS API - Get information about logs and get log content": [[154, "logs-api-get-information-about-logs-and-get-log-content"]], "GET /api/logs": [[154, "get-api-logs"]], "GET /api/logs/": [[154, "get-api-logs-logname"]], "PLUGINS API - Get information about installed or configured plugins": [[154, "plugins-api-get-information-about-installed-or-configured-plugins"]], "GET /api/plugins": [[154, "get-api-plugins"]], "GET /api/plugins/config": [[154, "get-api-plugins-config"]], "PLUGIN API - Handle a single plugin configuration": [[154, "plugin-api-handle-a-single-plugin-configuration"]], "POST /api/plugin/config/": [[154, "post-api-plugin-config-neu"]], "PUT /api/plugin/config/": [[154, "put-api-plugin-config-plgsection"]], "DELETE /api/plugin/config/": [[154, "delete-api-plugin-config-plgsection"]], "SCENES API - Get information about configured scenes": [[154, "scenes-api-get-information-about-configured-scenes"]], "SCHEDULER API - Get information about configured schedulers": [[154, "scheduler-api-get-information-about-configured-schedulers"]], "SCHEDULER API - Get information about the SmartHomeNG server configuration": [[154, "scheduler-api-get-information-about-the-smarthomeng-server-configuration"]], "THREADS API - Get information about running threads": [[154, "threads-api-get-information-about-running-threads"]], "STATUS API - Get running status of the SmartHomeNG server instance": [[154, "status-api-get-running-status-of-the-smarthomeng-server-instance"]], "RESTART API - Restart the SmartHomeNG server instance": [[154, "restart-api-restart-the-smarthomeng-server-instance"]], "": [[154, "id2"]], "Test if module admin is loaded": [[154, "test-if-module-admin-is-loaded"]], "Requests von der Admin GUI an SmartHomeNG": [[155, "requests-von-der-admin-gui-an-smarthomeng"]], "item": [[155, "item"], [304, "item"], [356, "item"], [357, "item"], [396, "item"], [398, "item"], [519, "item"], [519, "id2"], [519, "id5"], [519, "id6"], [519, "id7"], [519, "id9"]], "monitor": [[155, "monitor"], [304, "monitor"], [356, "monitor"], [357, "monitor"]], "ping": [[155, "ping"], [304, "ping"], [356, "ping"], [357, "ping"]], "series": [[155, "series"], [304, "series"], [356, "series"], [357, "series"]], "series_cancel": [[155, "series-cancel"], [304, "series-cancel"], [356, "series-cancel"], [357, "series-cancel"]], "log": [[155, "log"], [304, "log"], [356, "log"], [357, "log"]], "log_cancel": [[155, "log-cancel"], [304, "log-cancel"]], "proto": [[155, "proto"], [304, "proto"], [356, "proto"], [357, "proto"]], "identity": [[155, "identity"], [304, "identity"], [356, "identity"], [357, "identity"]], "Requests von SmartHomeNG an die smartVISU": [[156, "requests-von-smarthomeng-an-die-smartvisu"], [303, "requests-von-smarthomeng-an-die-smartvisu"]], "dialog": [[156, "dialog"], [303, "dialog"], [356, "dialog"], [357, "dialog"]], "url": [[156, "url"], [303, "url"], [356, "url"], [357, "url"], [430, "url"], [431, "url"], [471, "url"], [472, "url"], [496, "url"], [524, "url"], [525, "url"], [527, "url"]], "Module http (README)": [[157, "module-http-readme"]], "user (optional)": [[157, "user-optional"]], "password (optional)": [[157, "password-optional"], [158, "password-optional"]], "hashed_password (optional)": [[157, "hashed-password-optional"], [158, "hashed-password-optional"]], "service_user (optional": [[157, "service-user-optional"], [158, "service-user-optional"]], "service_password (optional)": [[157, "service-password-optional"], [158, "service-password-optional"]], "service_hashed_password (optional)": [[157, "service-hashed-password-optional"], [158, "service-hashed-password-optional"]], "port (optional)": [[157, "port-optional"], [158, "port-optional"]], "servicesport (optional)": [[157, "servicesport-optional"], [158, "servicesport-optional"]], "showpluginlist": [[157, "showpluginlist"], [158, "showpluginlist"]], "showservicelist": [[157, "showservicelist"], [158, "showservicelist"]], "starturl (optional)": [[157, "starturl-optional"], [158, "starturl-optional"]], "threads (optional)": [[157, "threads-optional"], [158, "threads-optional"]], "showtraceback": [[157, "showtraceback"], [158, "showtraceback"]], "webif_pagelength": [[157, "webif-pagelength"]], "API of module http": [[157, "api-of-module-http"]], "Test if module http is loaded": [[157, "test-if-module-http-is-loaded"]], "Registering a web application/interface": [[157, "registering-a-web-application-interface"]], "Implementing a web interface for you plugin": [[157, "implementing-a-web-interface-for-you-plugin"]], "get_local_ip_address()": [[157, "get-local-ip-address"], [158, "get-local-ip-address"]], "get_local_hostname()": [[157, "get-local-hostname"], [158, "get-local-hostname"]], "get_local_port()": [[157, "get-local-port"], [158, "get-local-port"]], "get_local_servicesport( \u2026 )": [[157, "get-local-servicesport"], [158, "get-local-servicesport"]], "register_app()": [[157, "register-app"], [158, "register-app"]], "register_service( \u2026 )": [[157, "register-service"], [158, "register-service"]], "Module mqtt (README)": [[158, "module-mqtt-readme"]], "user (optional": [[158, "user-optional"]], "API of module mqtt": [[158, "api-of-module-mqtt"]], "SmartHomeNG Plugins": [[159, "smarthomeng-plugins"]], "Aktueller Status der Entwicklung": [[159, "aktueller-status-der-entwicklung"]], "Other languages": [[159, "other-languages"]], "Alexa": [[160, "alexa"]], "Alexa Setup": [[160, "alexa-setup"]], "AWS Lambda": [[160, "aws-lambda"]], "Shortcomings / Pitfalls": [[160, "shortcomings-pitfalls"]], "items.conf": [[160, "items-conf"]], "NGINX": [[161, "nginx"]], "Install (debian)": [[161, "install-debian"]], "/etc/nginx/nginx.conf": [[161, "etc-nginx-nginx-conf"]], "/etc/nginx/include.d/common": [[161, "etc-nginx-include-d-common"]], "/etc/nginx/sites-available/your-home": [[161, "etc-nginx-sites-available-your-home"]], "/etc/nginx/sites-enabled/your-home": [[161, "etc-nginx-sites-enabled-your-home"]], "Sitemap": [[161, "sitemap"]], "User & Passwords": [[161, "user-passwords"]], "Let\u2019s Encrypt SSL Certificate": [[161, "let-s-encrypt-ssl-certificate"]], "alexa4p3": [[162, "alexa4p3"], [163, "alexa4p3"]], "Table of Content": [[162, "table-of-content"], [219, "table-of-content"]], "Beispiel-Konfigurationen Neu": [[162, "beispiel-konfigurationen-neu"]], "\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013": [[162, "id1"]], "Generell ": [[162, "generell"]], "Change Log ": [[162, "change-log"]], "20.10.2020": [[162, "id2"]], "11.04.2020": [[162, "id3"]], "12.03.2020": [[162, "id4"]], "07.12.2019": [[162, "id5"]], "06.12.2019 - zum Nikolaus :-)": [[162, "zum-nikolaus"]], "01.12.2019": [[162, "id6"]], "20.04.2019": [[162, "id7"]], "17.02.2019": [[162, "id8"]], "26.01.2019": [[162, "id9"]], "19.01.2019": [[162, "id10"]], "31.12.2018": [[162, "id11"]], "24.12.2018": [[162, "id12"]], "12.12.2018": [[162, "id13"]], "Requrirements": [[162, "requrirements"]], "Amazon Skill / Lambda": [[162, "amazon-skill-lambda"]], "Icons / Catagories": [[162, "icons-catagories"]], "Entwicklung / Einbau von neuen F\u00e4higkeiten ": [[162, "entwicklung-einbau-von-neuen-fahigkeiten"]], "Alexa-ThermostatController + Thermosensor ": [[162, "alexa-thermostatcontroller-thermosensor"]], "Thermostatsensor": [[162, "thermostatsensor"]], "Ver\u00e4ndern der Temperatur (SetTargetTemperature AdjustTargetTemperature)": [[162, "verandern-der-temperatur-settargettemperature-adjusttargettemperature"]], "Thermostatmode": [[162, "thermostatmode"]], "Alexa-PowerController": [[162, "alexa-powercontroller"]], "Alexa-BrightnessController": [[162, "alexa-brightnesscontroller"]], "Alexa-PowerLevelController": [[162, "alexa-powerlevelcontroller"]], "!!!! erst ab Plugin-Version 1.0.1 oder h\u00f6her !!!!": [[162, "erst-ab-plugin-version-1-0-1-oder-hoher"], [162, "id14"], [162, "id15"]], "Alexa-PercentageController": [[162, "alexa-percentagecontroller"]], "Alexa-LockController": [[162, "alexa-lockcontroller"]], "Alexa-CameraStreamContoller": [[162, "alexa-camerastreamcontoller"]], "alexa_csc_proxy_uri Update: URL \u00fcber DynDNS vergeben um die Kamera mittels CamProxy4AlexaP3 zu streamen": [[162, "alexa-csc-proxy-uri-update-url-uber-dyndns-vergeben-um-die-kamera-mittels-camproxy4alexap3-zu-streamen"]], "alexa_proxy_credentials Update: Zugangsdaten f\u00fcr den AlexaCamProxy falls dieser mit Authentication \u201eBasic\u201c oder \u201eDigest\u201c parametriert wird. Angabe in der Form \u201eUSER\u201c:\u201cPWD\u201c": [[162, "alexa-proxy-credentials-update-zugangsdaten-fur-den-alexacamproxy-falls-dieser-mit-authentication-basic-oder-digest-parametriert-wird-angabe-in-der-form-user-pwd"]], "alexa_camera_imageUri: die URL des Vorschau-Pictures der Kamera": [[162, "alexa-camera-imageuri-die-url-des-vorschau-pictures-der-kamera"]], "alexa_stream_1: Definition f\u00fcr den ersten Stream der Kamara, es werden bis zu 3 Streams unterst\u00fctzt. Hier m\u00fcssen die Details zum Stream definiert werden (protocol = rtsp, resolutions = Array mit der Aufl\u00f6sung, authorizationTypes = Autorisierung, videoCodecs = Array der VideoCodes, autoCodecs = Array der Audiocodes)": [[162, "alexa-stream-1-definition-fur-den-ersten-stream-der-kamara-es-werden-bis-zu-3-streams-unterstutzt-hier-mussen-die-details-zum-stream-definiert-werden-protocol-rtsp-resolutions-array-mit-der-auflosung-authorizationtypes-autorisierung-videocodecs-array-der-videocodes-autocodecs-array-der-audiocodes"]], "alexa_csc_uri: Auflistung der Stream-URL\u00b4s f\u00fcr Stream1: / Stream2: / Stream3": [[162, "alexa-csc-uri-auflistung-der-stream-url-s-fur-stream1-stream2-stream3"]], "Alexa-SceneController": [[162, "alexa-scenecontroller"]], "ContactSensor Interface ": [[162, "contactsensor-interface"]], "ColorController ": [[162, "colorcontroller"]], "RangeController ": [[162, "rangecontroller"]], "ColorTemperaturController ": [[162, "colortemperaturcontroller"]], "PlaybackController ": [[162, "playbackcontroller"]], "Alexa, stoppe den Rolladen B\u00fcro": [[162, "alexa-stoppe-den-rolladen-buro"]], "Web-Interface": [[162, "web-interface"], [219, "web-interface"], [310, "web-interface"]], "Der fast perfekte Rolladen": [[162, "der-fast-perfekte-rolladen"]], "!! Wichtig !!": [[162, "wichtig"]], "Items in Abh\u00e4ngikeit des letzten benutzten Echos-Devices schalten": [[162, "items-in-abhangikeit-des-letzten-benutzten-echos-devices-schalten"]], "Webinterface": [[163, "webinterface"], [203, "webinterface"], [321, "webinterface"]], "Beispielfunktionen": [[163, "beispielfunktionen"]], "Webinterface-Funktionen": [[163, "webinterface-funktionen"]], "alexarc4shng": [[164, "alexarc4shng"]], "Voraussetzungen": [[164, "voraussetzungen"], [172, "voraussetzungen"], [207, "voraussetzungen"]], "Cookie": [[164, "cookie"]], "Anmeldedaten": [[164, "anmeldedaten"]], "Radiostation": [[164, "radiostation"]], "Text senden": [[164, "text-senden"]], "Beispiel Itemdefinition": [[164, "beispiel-itemdefinition"]], "Platzhalter": [[164, "platzhalter"]], "Kommandos erstellen": [[164, "kommandos-erstellen"]], "Ger\u00e4te": [[164, "gerate"]], "Kommandos verwalten": [[164, "kommandos-verwalten"]], "Bestehende Commandlets": [[164, "bestehende-commandlets"]], "SSML Hinweise": [[164, "ssml-hinweise"]], "Danksagung": [[164, "danksagung"]], "Disclaimer": [[164, "disclaimer"]], "apcups": [[165, "apcups"], [377, "apcups"]], "Schl\u00fcssel auslesen": [[165, "schlussel-auslesen"]], "Status Report Fields": [[165, "status-report-fields"]], "appletv": [[166, "appletv"], [378, "appletv"]], "Struct Vorlagen": [[166, "struct-vorlagen"], [169, "struct-vorlagen"], [191, "struct-vorlagen"], [201, "struct-vorlagen"], [238, "struct-vorlagen"], [264, "struct-vorlagen"], [267, "struct-vorlagen"], [319, "struct-vorlagen"]], "SmartVISU": [[166, "smartvisu"], [347, "smartvisu"]], "artnet": [[167, "artnet"]], "Unterst\u00fctzte Hardware": [[167, "unterstutzte-hardware"], [192, "unterstutzte-hardware"], [255, "unterstutzte-hardware"], [346, "unterstutzte-hardware"]], "plugins.yaml": [[167, "plugins-yaml"]], "asterisk": [[168, "asterisk"]], "ast_dev": [[168, "ast-dev"], [380, "ast-dev"]], "ast_db": [[168, "ast-db"], [380, "ast-db"]], "ast_box": [[168, "ast-box"], [380, "ast-box"]], "call(source, dest, context, callerid=None)": [[168, "call-source-dest-context-callerid-none"]], "db_write(key, value)": [[168, "db-write-key-value"], [380, "db-write-key-value"]], "db_read(key)": [[168, "db-read-key"], [380, "db-read-key"]], "mailbox_count(mailbox, context=\u2018default\u2018)": [[168, "mailbox-count-mailbox-context-default"]], "hangup(device)": [[168, "hangup-device"], [380, "hangup-device"]], "avdevice": [[169, "avdevice"], [381, "avdevice"]], "avdevice_zone[0-4]@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-instanz-funktion"]], "avdevice_zone[0-4]_speakers@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-speakers-instanz-funktion"]], "avdevice_zone[0-4]_depend@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-depend-instanz-funktion"]], "avdevice_zone[0-4]_init@[Instanz]: [Funktion]": [[169, "avdevice-zone-0-4-init-instanz-funktion"]], "Kommandos": [[169, "kommandos"], [191, "kommandos"], [201, "kommandos"], [238, "kommandos"], [264, "kommandos"], [267, "kommandos"], [319, "kommandos"], [622, "kommandos"]], "\u00dcbersetzungen": [[169, "ubersetzungen"]], "Wildcards": [[169, "wildcards"]], "Fehlerbehebung": [[169, "fehlerbehebung"]], "avm": [[170, "avm"]], "Allgemeine Informationen": [[170, "allgemeine-informationen"]], "Konfiguration der Fritz!Box": [[170, "konfiguration-der-fritz-box"]], "Konfiguration des Plugins": [[170, "konfiguration-des-plugins"], [285, "konfiguration-des-plugins"], [293, "konfiguration-des-plugins"], [338, "konfiguration-des-plugins"]], "Attribute und Beschreibung": [[170, "attribute-und-beschreibung"]], "TR064-Interface": [[170, "tr064-interface"]], "AHA-Interface": [[170, "aha-interface"]], "Item Beispiel mit Verwendung der structs ohne Instanz": [[170, "item-beispiel-mit-verwendung-der-structs-ohne-instanz"]], "Item Beispiel mit Verwendung der structs mit Instanz": [[170, "item-beispiel-mit-verwendung-der-structs-mit-instanz"]], "Plugin Funktionen": [[170, "plugin-funktionen"]], "cancel_call": [[170, "cancel-call"]], "get_call_origin": [[170, "get-call-origin"]], "get_calllist": [[170, "get-calllist"]], "get_contact_name_by_phone_number(phone_number)": [[170, "get-contact-name-by-phone-number-phone-number"]], "get_device_log_from_lua": [[170, "get-device-log-from-lua"]], "get_device_log_from_tr064": [[170, "get-device-log-from-tr064"]], "get_host_details": [[170, "get-host-details"]], "get_hosts": [[170, "get-hosts"]], "get_hosts_list": [[170, "get-hosts-list"]], "get_phone_name": [[170, "get-phone-name"]], "get_phone_numbers_by_name(name)": [[170, "get-phone-numbers-by-name-name"]], "is_host_active": [[170, "is-host-active"]], "reboot": [[170, "reboot"]], "reconnect": [[170, "reconnect"]], "set_call_origin": [[170, "set-call-origin"]], "start_call": [[170, "start-call"]], "wol(mac_address)": [[170, "wol-mac-address"], [382, "wol-mac-address"]], "get_number_of_deflections": [[170, "get-number-of-deflections"]], "get_deflection": [[170, "get-deflection"]], "get_deflections": [[170, "get-deflections"]], "set_deflection_enable": [[170, "set-deflection-enable"]], "Farb- und Helligkeitseinstellungen bspw. an DECT!500": [[170, "farb-und-helligkeitseinstellungen-bspw-an-dect-500"]], "Farbeinstellung": [[170, "farbeinstellung"]], "Helligkeitseinstellungen": [[170, "helligkeitseinstellungen"]], "Kombinierte Einstellung von Farbe und Helligkeit": [[170, "kombinierte-einstellung-von-farbe-und-helligkeit"]], "Einstellung der Farbtemperatur im \u201eWei\u00df-Modus\u201c": [[170, "einstellung-der-farbtemperatur-im-weisz-modus"]], "Aufruf des Webinterfaces": [[170, "aufruf-des-webinterfaces"], [179, "aufruf-des-webinterfaces"], [184, "aufruf-des-webinterfaces"], [187, "aufruf-des-webinterfaces"], [192, "aufruf-des-webinterfaces"], [200, "aufruf-des-webinterfaces"], [210, "aufruf-des-webinterfaces"], [212, "aufruf-des-webinterfaces"], [213, "aufruf-des-webinterfaces"], [220, "aufruf-des-webinterfaces"], [252, "aufruf-des-webinterfaces"], [255, "aufruf-des-webinterfaces"], [265, "aufruf-des-webinterfaces"], [266, "aufruf-des-webinterfaces"], [268, "aufruf-des-webinterfaces"], [289, "aufruf-des-webinterfaces"], [302, "aufruf-des-webinterfaces"], [309, "aufruf-des-webinterfaces"], [311, "aufruf-des-webinterfaces"], [348, "aufruf-des-webinterfaces"], [349, "aufruf-des-webinterfaces"], [357, "aufruf-des-webinterfaces"], [360, "aufruf-des-webinterfaces"], [366, "aufruf-des-webinterfaces"]], "AVM AVM TR-064 Items": [[170, "avm-avm-tr-064-items"]], "AVM AHA Items": [[170, "avm-aha-items"]], "AVM AHA Devices": [[170, "avm-aha-devices"]], "AVM Call Monitor Items": [[170, "avm-call-monitor-items"]], "AVM Log-Eintr\u00e4ge": [[170, "avm-log-eintrage"]], "AVM Plugin-API": [[170, "avm-plugin-api"]], "Vorgehen bei Funktionserweiterung des Plugins bzw. Erg\u00e4nzung weiterer Werte f\u00fcr Itemattribut avm_data_type": [[170, "vorgehen-bei-funktionserweiterung-des-plugins-bzw-erganzung-weiterer-werte-fur-itemattribut-avm-data-type"]], "avm_smarthome": [[171, "avm-smarthome"]], "Reguirements": [[171, "reguirements"]], "Historie": [[171, "historie"]], "Web Interface des Plugins": [[171, "web-interface-des-plugins"], [285, "web-interface-des-plugins"], [337, "web-interface-des-plugins"]], "Devices": [[171, "devices"]], "Thermostat": [[171, "thermostat"]], "Relais": [[171, "relais"]], "Alarm": [[171, "alarm"]], "blockly": [[172, "blockly"]], "Aktualisierung": [[172, "aktualisierung"]], "Bose Soundtouch Plugin": [[173, "bose-soundtouch-plugin"]], "Version 1.0.1": [[173, "version-1-0-1"]], "Version 1.0.0": [[173, "version-1-0-0"]], "Change history": [[173, "change-history"], [175, "change-history"], [176, "change-history"], [190, "change-history"], [235, "change-history"], [236, "change-history"], [251, "change-history"], [280, "change-history"]], "Changes Since version 1.0.0": [[173, "changes-since-version-1-0-0"]], "Needed software": [[173, "needed-software"], [176, "needed-software"], [190, "needed-software"], [251, "needed-software"], [315, "needed-software"]], "Supported Hardware": [[173, "supported-hardware"], [176, "supported-hardware"], [190, "supported-hardware"], [202, "supported-hardware"], [209, "supported-hardware"], [211, "supported-hardware"], [218, "supported-hardware"], [219, "supported-hardware"], [234, "supported-hardware"], [239, "supported-hardware"], [245, "supported-hardware"], [247, "supported-hardware"], [248, "supported-hardware"], [251, "supported-hardware"], [266, "supported-hardware"], [275, "supported-hardware"], [281, "supported-hardware"], [297, "supported-hardware"], [308, "supported-hardware"], [315, "supported-hardware"], [334, "supported-hardware"], [341, "supported-hardware"], [349, "supported-hardware"]], "Methods": [[173, "methods"], [183, "methods"], [190, "methods"], [193, "methods"], [211, "methods"], [218, "methods"], [234, "methods"], [251, "methods"], [280, "methods"], [361, "methods"]], "Appendix": [[173, "appendix"], [176, "appendix"]], "bose_soundtouch": [[174, "bose-soundtouch"]], "Plugin for BSB-Lan-Adapter": [[175, "plugin-for-bsb-lan-adapter"]], "Version 1.0.2": [[175, "version-1-0-2"]], "Requirements needed software": [[175, "requirements-needed-software"], [235, "requirements-needed-software"], [236, "requirements-needed-software"]], "1) /smarthome/etc/plugin.yaml": [[175, "smarthome-etc-plugin-yaml"], [235, "smarthome-etc-plugin-yaml"], [236, "smarthome-etc-plugin-yaml"], [254, "smarthome-etc-plugin-yaml"]], "2) /smarthome/items/bsblan.yaml": [[175, "smarthome-items-bsblan-yaml"]], "Buderus Plugin": [[176, "buderus-plugin"]], "Changes Since version 1.0.2": [[176, "changes-since-version-1-0-2"]], "REST URLs KM200": [[177, "rest-urls-km200"]], "REST Path /system": [[177, "rest-path-system"]], "REST Path /gateway": [[177, "rest-path-gateway"]], "REST Path /heatSources": [[177, "rest-path-heatsources"]], "REST Path /heatingCircuits": [[177, "rest-path-heatingcircuits"]], "REST Path /dhwCircuits": [[177, "rest-path-dhwcircuits"]], "REST Path /recordings": [[177, "rest-path-recordings"]], "byd_bat": [[178, "byd-bat"]], "casambi": [[179, "casambi"]], "Gateway Hardware": [[179, "gateway-hardware"]], "Changelog": [[179, "changelog"], [195, "changelog"], [216, "changelog"], [248, "changelog"], [249, "changelog"], [273, "changelog"], [274, "changelog"], [278, "changelog"], [309, "changelog"], [310, "changelog"], [338, "changelog"], [351, "changelog"]], "CLI": [[180, "cli"], [333, "cli"]], "Usage": [[180, "usage"], [269, "usage"], [294, "usage"], [296, "usage"], [315, "usage"]], "Example:": [[180, "example"], [198, "example"], [257, "example"], [260, "example"], [278, "id2"], [298, "example"]], "cli": [[181, "cli"]], "Plugin Konfigurationsparameter": [[181, "plugin-konfigurationsparameter"]], "Zugriff auf die CLI": [[181, "zugriff-auf-die-cli"]], "Linux": [[181, "linux"]], "Zugriff via Windows / Putty": [[181, "zugriff-via-windows-putty"]], "CLI Befehle": [[181, "cli-befehle"]], "CO2Meter": [[182, "co2meter"]], "Description": [[182, "description"], [198, "description"], [208, "description"], [294, "description"]], "Attributes": [[182, "attributes"], [198, "attributes"], [231, "attributes"], [240, "attributes"], [245, "attributes"], [257, "attributes"], [278, "attributes"], [278, "id1"], [298, "attributes"], [301, "attributes"], [312, "attributes"], [315, "attributes"], [335, "attributes"], [344, "attributes"]], "co2meter_data_type": [[182, "co2meter-data-type"], [392, "co2meter-data-type"]], "Example": [[182, "example"], [183, "example"], [193, "example"], [195, "example"], [202, "example"], [211, "example"], [234, "example"], [245, "example"], [247, "example"], [248, "example"], [258, "example"], [273, "example"], [273, "id2"], [273, "id4"], [273, "id6"], [273, "id8"], [273, "id10"], [274, "example"], [278, "example"], [288, "example"], [290, "example"], [294, "example"], [305, "example"], [334, "example"], [352, "example"], [355, "example"], [358, "example"], [361, "example"], [686, "example"]], "ComfoAir": [[183, "comfoair"]], "comfoair_send": [[183, "comfoair-send"], [393, "comfoair-send"]], "comfoair_read": [[183, "comfoair-read"], [393, "comfoair-read"]], "comfoair_read_afterwrite": [[183, "comfoair-read-afterwrite"], [393, "comfoair-read-afterwrite"]], "comfoair_read_cycle": [[183, "comfoair-read-cycle"], [393, "comfoair-read-cycle"]], "comfoair_init": [[183, "comfoair-init"], [393, "comfoair-init"]], "comfoair_trigger": [[183, "comfoair-trigger"], [393, "comfoair-trigger"]], "comfoair_trigger_afterwrite": [[183, "comfoair-trigger-afterwrite"], [393, "comfoair-trigger-afterwrite"]], "darksky": [[184, "darksky"]], "Besonderheiten": [[184, "besonderheiten"], [268, "besonderheiten"]], "Instanzen": [[184, "instanzen"], [268, "instanzen"]], "Dashbutton Plugin": [[185, "dashbutton-plugin"]], "Setup your Amazon Dashbutton": [[185, "setup-your-amazon-dashbutton"]], "1. Install scapy": [[185, "install-scapy"]], "2. Install tcpdump": [[185, "install-tcpdump"]], "3. Give unprivileged user access to sniff packets": [[185, "give-unprivileged-user-access-to-sniff-packets"]], "Item setup": [[185, "item-setup"]], "Activate plugin": [[185, "activate-plugin"]], "Item attributes": [[185, "item-attributes"]], "Examples": [[185, "examples"], [190, "examples"], [205, "examples"], [218, "examples"], [235, "examples"], [236, "examples"], [251, "examples"], [254, "examples"]], "Database": [[186, "database"]], "database": [[186, "id1"], [187, "database"], [396, "database"], [428, "database"]], "database_acl": [[186, "database-acl"], [396, "database-acl"]], "database_write_on_shutdown": [[186, "database-write-on-shutdown"], [396, "database-write-on-shutdown"]], "Functions": [[186, "functions"], [195, "functions"], [198, "functions"], [231, "functions"], [240, "functions"], [253, "functions"], [260, "functions"], [273, "functions"], [301, "functions"], [312, "functions"], [317, "functions"], [335, "functions"], [344, "functions"], [355, "functions"], [368, "functions"]], "sh.item.db(function, start, end=\u2018now\u2018)": [[186, "sh-item-db-function-start-end-now"], [317, "sh-item-db-function-start-end-now"]], "sh.item.series(function, start, end=\u2018now\u2018, count=100)": [[186, "sh-item-series-function-start-end-now-count-100"]], "sh.item.dbplugin": [[186, "sh-item-dbplugin"]], "dbplugin.id(item)": [[186, "dbplugin-id-item"]], "dbplugin.db()": [[186, "dbplugin-db"]], "dbplugin.dump(dumpfile, id = None, time = None, time_start = None, time_end = None, changed = None, changed_start = None, changed_end = None, cur = None)": [[186, "dbplugin-dump-dumpfile-id-none-time-none-time-start-none-time-end-none-changed-none-changed-start-none-changed-end-none-cur-none"]], "dbplugin.insertLog(id, time, duration=0, val=None, it=None, changed=None, cur=None)": [[186, "dbplugin-insertlog-id-time-duration-0-val-none-it-none-changed-none-cur-none"]], "dbplugin.updateLog(id, time, duration=0, val=None, it=None, changed=None, cur=None)": [[186, "dbplugin-updatelog-id-time-duration-0-val-none-it-none-changed-none-cur-none"]], "dbplugin.readLog(id, time, cur = None)": [[186, "dbplugin-readlog-id-time-cur-none"]], "dbplugin.readLogs(id, time = None, time_start = None, time_end = None, changed = None, changed_start = None, changed_end = None, cur = None)": [[186, "dbplugin-readlogs-id-time-none-time-start-none-time-end-none-changed-none-changed-start-none-changed-end-none-cur-none"]], "dbplugin.deleteLog(id, time = None, time_start = None, time_end = None, changed = None, changed_start = None, changed_end = None, cur = None)": [[186, "dbplugin-deletelog-id-time-none-time-start-none-time-end-none-changed-none-changed-start-none-changed-end-none-cur-none"]], "dbplugin.insertItem(name, cur=None)": [[186, "dbplugin-insertitem-name-cur-none"]], "dbplugin.updateItem(id, time, duration=0, val=None, it=None, changed=None, cur=None)": [[186, "dbplugin-updateitem-id-time-duration-0-val-none-it-none-changed-none-cur-none"]], "Vollst\u00e4ndig \u00fcbernommen in plugin.yaml": [[186, "vollstandig-ubernommen-in-plugin-yaml"]], "dbplugin.readItem(id, cur=None)": [[186, "dbplugin-readitem-id-cur-none"]], "dbplugin.readItems(cur=None)": [[186, "dbplugin-readitems-cur-none"]], "dbplugin.deleteItem(id, cur=None)": [[186, "dbplugin-deleteitem-id-cur-none"]], "dbplugin.cleanup()": [[186, "dbplugin-cleanup"]], "Database Items": [[187, "database-items"]], "Plugin-API": [[187, "plugin-api"]], "Verwaiste Items": [[187, "verwaiste-items"]], "Export von Daten": [[187, "export-von-daten"]], "CSV Dump": [[187, "csv-dump"]], "SQL Dump": [[187, "sql-dump"]], "Aufbau der Datenbank": [[187, "aufbau-der-datenbank"]], "Datenbankfunktionen f\u00fcr Datenreihen/Plots": [[187, "datenbankfunktionen-fur-datenreihen-plots"]], "Datenbankfunktionen f\u00fcr Einzelauswertungen": [[187, "datenbankfunktionen-fur-einzelauswertungen"]], "datalog": [[188, "datalog"], [397, "datalog"]], "Ersatz durch Bordmittel": [[188, "ersatz-durch-bordmittel"], [243, "ersatz-durch-bordmittel"], [263, "ersatz-durch-bordmittel"]], "db_addon": [[189, "db-addon"]], "Hinweise": [[189, "hinweise"], [262, "hinweise"]], "mysql Datenbank": [[189, "mysql-datenbank"]], "db_addon_fct": [[189, "db-addon-fct"], [398, "db-addon-fct"]], "db_addon_info": [[189, "db-addon-info"], [398, "db-addon-info"]], "db_addon_admin": [[189, "db-addon-admin"], [398, "db-addon-admin"]], "Verbrauch": [[189, "verbrauch"]], "minmax": [[189, "minmax"], [189, "id1"]], "Verwendung von eigenen Zeitr\u00e4umen": [[189, "verwendung-von-eigenen-zeitraumen"]], "minmax_last": [[189, "minmax-last"]], "verbrauch": [[189, "id2"]], "zaehlerstand": [[189, "zaehlerstand"]], "db_addon Items": [[189, "db-addon-items"]], "db_addon Maintenance": [[189, "db-addon-maintenance"]], "Erl\u00e4uterungen zu Temperatursummen": [[189, "erlauterungen-zu-temperatursummen"]], "Gr\u00fcnlandtemperatursumme": [[189, "grunlandtemperatursumme"]], "Wachstumsgradtage": [[189, "wachstumsgradtage"]], "W\u00e4rmesumme": [[189, "warmesumme"]], "K\u00e4ltesumme": [[189, "kaltesumme"]], "Tagesmitteltemperatur": [[189, "tagesmitteltemperatur"]], "Vorgehen bei Funktionserweiterung des Plugins bzw. Erg\u00e4nzung weiterer Werte f\u00fcr Item-Attribute": [[189, "vorgehen-bei-funktionserweiterung-des-plugins-bzw-erganzung-weiterer-werte-fur-item-attribute"]], "Plugin for Deebot Ozmo 920 / 950 / 960": [[190, "plugin-for-deebot-ozmo-920-950-960"]], "Version 1.7.2": [[190, "version-1-7-2"]], "denon": [[191, "denon"]], "dlms": [[192, "dlms"]], "Nicht unterst\u00fctze Hardware": [[192, "nicht-unterstutze-hardware"]], "Beispiele f\u00fcr die plugin.yaml": [[192, "beispiele-fur-die-plugin-yaml"]], "Einrichtungsverfahren:": [[192, "einrichtungsverfahren"]], "Optional": [[192, "optional"]], "Einige Hintergrundinformationen zu OBIS-Codes": [[192, "einige-hintergrundinformationen-zu-obis-codes"]], "A": [[192, "a"]], "B": [[192, "b"]], "C": [[192, "c"]], "D": [[192, "d"]], "E": [[192, "e"]], "F": [[192, "f"]], "Werte aus Codezeilen ermitteln": [[192, "werte-aus-codezeilen-ermitteln"]], "OBIS-Codebeispiel A": [[192, "obis-codebeispiel-a"]], "OBIS-Codebeispiel B": [[192, "obis-codebeispiel-b"]], "Werte aus den Codezeilen ermitteln": [[192, "werte-aus-den-codezeilen-ermitteln"]], "DMX": [[193, "dmx"]], "dmx_ch": [[193, "dmx-ch"], [194, "dmx-ch"], [402, "dmx-ch"]], "send(channel, value)": [[193, "send-channel-value"]], "dmx": [[194, "dmx"]], "Vorbedingungen": [[194, "vorbedingungen"]], "send(Kanal, Wert)": [[194, "send-kanal-wert"]], "Drexel & Weiss": [[195, "drexel-weiss"]], "Supported Devices": [[195, "supported-devices"]], "DuW_LU_register / DuW_WP_register": [[195, "duw-lu-register-duw-wp-register"]], "drexelundweiss": [[196, "drexelundweiss"]], "Items Attribute": [[196, "items-attribute"]], "ebus": [[197, "ebus"]], "Enigma2": [[198, "enigma2"]], "get_audio_tracks()": [[198, "get-audio-tracks"], [406, "get-audio-tracks"]], "send_message(messagetext, messagetype=1, timeout=10)": [[198, "send-message-messagetext-messagetype-1-timeout-10"], [406, "send-message-messagetext-messagetype-1-timeout-10"]], "set_power_state(value)": [[198, "set-power-state-value"], [406, "set-power-state-value"]], "get_answer()": [[198, "get-answer"], [406, "get-answer"]], "UTE teach-in": [[199, "ute-teach-in"]], "enocean": [[200, "enocean"]], "Verwendung via IP": [[200, "verwendung-via-ip"]], "item.yaml": [[200, "item-yaml"], [257, "item-yaml"]], "Enocean Equipment Profiles": [[200, "enocean-equipment-profiles"]], "Status EEPs": [[200, "status-eeps"]], "Keys (nur f\u00fcr empfangende Items)": [[200, "keys-nur-fur-empfangende-items"]], "Steuer EEPs": [[200, "steuer-eeps"]], "epson": [[201, "epson"]], "eta_pu - ETA Pellet Unit PU": [[202, "eta-pu-eta-pellet-unit-pu"]], "executor": [[203, "executor"]], "Beispiel Python Code": [[203, "beispiel-python-code"]], "Loggertest": [[203, "loggertest"]], "Datenserien f\u00fcr ein Item ausgeben": [[203, "datenserien-fur-ein-item-ausgeben"]], "Z\u00e4hlen der Datens\u00e4tze in der Datenbank": [[203, "zahlen-der-datensatze-in-der-datenbank"]], "gpio": [[204, "gpio"]], "Harmony Hub Plugin": [[205, "harmony-hub-plugin"]], "Requirenments": [[205, "requirenments"]], "Device IDs and Commands": [[205, "device-ids-and-commands"]], "Setup plugin": [[205, "setup-plugin"]], "Setup harmony commands and activities": [[205, "setup-harmony-commands-and-activities"]], "command": [[205, "command"], [391, "command"], [391, "id2"]], "activity": [[205, "activity"]], "Setup Harmony status items": [[205, "setup-harmony-status-items"]], "Harmony Current Activity by ID": [[205, "harmony-current-activity-by-id"]], "Harmony Current Activity by Name": [[205, "harmony-current-activity-by-name"]], "Limitations": [[205, "limitations"]], "helios - Helios ECx00Pro / Vallox xx SE Plugin": [[206, "helios-helios-ecx00pro-vallox-xx-se-plugin"]], "Plugin installation in short:": [[206, "plugin-installation-in-short"]], "Widget for SmartVisu": [[206, "widget-for-smartvisu"]], "helios_tcp": [[207, "helios-tcp"], [415, "helios-tcp"]], "Einrichtung": [[207, "einrichtung"], [596, "einrichtung"]], "Verkn\u00fcpfung von Items": [[207, "verknupfung-von-items"]], "Variablen": [[207, "variablen"], [330, "variablen"]], "HomeConnect": [[208, "homeconnect"]], "homematic": [[209, "homematic"], [210, "homematic"]], "Unterst\u00fctzte HomeMatic und HomeMatic IP Ger\u00e4te": [[210, "unterstutzte-homematic-und-homematic-ip-gerate"]], "Aktoren": [[210, "aktoren"]], "Sensoren": [[210, "sensoren"]], "Thermostate": [[210, "thermostate"]], "Sonstige": [[210, "sonstige"]], "Phillips HUE": [[211, "phillips-hue"]], "New development of Hue plugin for use in smarthome.py (C) Michael W\u00fcrtenberger 2014, 2015, 2016": [[211, "new-development-of-hue-plugin-for-use-in-smarthome-py-c-michael-wurtenberger-2014-2015-2016"]], "hue_user": [[211, "hue-user"], [418, "hue-user"]], "hue_ip": [[211, "hue-ip"], [418, "hue-ip"]], "hue_port": [[211, "hue-port"], [418, "hue-port"]], "cycle_lamps": [[211, "cycle-lamps"], [418, "cycle-lamps"]], "cycle_bridges": [[211, "cycle-bridges"], [418, "cycle-bridges"]], "default_transitionTime": [[211, "default-transitiontime"], [418, "default-transitiontime"], [419, "default-transitiontime"], [420, "default-transitiontime"]], "hue_bridge_id (formerly hue_bridge !)": [[211, "hue-bridge-id-formerly-hue-bridge"]], "hue_lamp_id (formerly hue_id)": [[211, "hue-lamp-id-formerly-hue-id"]], "hue_group_id": [[211, "hue-group-id"], [418, "hue-group-id"]], "hue_lamp_type": [[211, "hue-lamp-type"], [418, "hue-lamp-type"]], "Commands and Parameters supported": [[211, "commands-and-parameters-supported"]], "Lights API (Light state)": [[211, "lights-api-light-state"]], "Lights API (Lamp attributes)": [[211, "lights-api-lamp-attributes"]], "Groups API": [[211, "groups-api"]], "Configuration API (Bridge related)": [[211, "configuration-api-bridge-related"]], "Configuration API (Plugin related)": [[211, "configuration-api-plugin-related"]], "hue_listen = errorstatus": [[211, "hue-listen-errorstatus"]], "hue_send": [[211, "hue-send"], [418, "hue-send"]], "hue_listen": [[211, "hue-listen"], [418, "hue-listen"]], "hue_transitionTime": [[211, "hue-transitiontime"]], "Using DPT3 dimming": [[211, "using-dpt3-dimming"]], "hue_dim_max": [[211, "hue-dim-max"], [418, "hue-dim-max"]], "hue_dim_step": [[211, "hue-dim-step"], [418, "hue-dim-step"]], "hue_dim_time": [[211, "hue-dim-time"], [418, "hue-dim-time"]], "get_config()": [[211, "get-config"]], "authorizeuser()": [[211, "authorizeuser"]], "Neue Features": [[212, "neue-features"]], "Plugin Instanz hinzuf\u00fcgen": [[212, "plugin-instanz-hinzufugen"], [213, "plugin-instanz-hinzufugen"], [265, "plugin-instanz-hinzufugen"], [289, "plugin-instanz-hinzufugen"]], "Bridge verbinden": [[212, "bridge-verbinden"], [213, "bridge-verbinden"]], "Verwendung von structs": [[212, "verwendung-von-structs"], [213, "verwendung-von-structs"], [265, "verwendung-von-structs"], [289, "verwendung-von-structs"]], "Item Attribute": [[212, "item-attribute"], [213, "item-attribute"], [265, "item-attribute"], [289, "item-attribute"], [374, "item-attribute"], [375, "item-attribute"], [376, "item-attribute"], [377, "item-attribute"], [378, "item-attribute"], [379, "item-attribute"], [380, "item-attribute"], [381, "item-attribute"], [382, "item-attribute"], [383, "item-attribute"], [384, "item-attribute"], [385, "item-attribute"], [386, "item-attribute"], [387, "item-attribute"], [388, "item-attribute"], [389, "item-attribute"], [390, "item-attribute"], [391, "item-attribute"], [392, "item-attribute"], [393, "item-attribute"], [394, "item-attribute"], [395, "item-attribute"], [396, "item-attribute"], [397, "item-attribute"], [398, "item-attribute"], [399, "item-attribute"], [400, "item-attribute"], [401, "item-attribute"], [402, "item-attribute"], [403, "item-attribute"], [405, "item-attribute"], [406, "item-attribute"], [407, "item-attribute"], [408, "item-attribute"], [409, "item-attribute"], [410, "item-attribute"], [411, "item-attribute"], [412, "item-attribute"], [413, "item-attribute"], [414, "item-attribute"], [415, "item-attribute"], [416, "item-attribute"], [417, "item-attribute"], [418, "item-attribute"], [419, "item-attribute"], [420, "item-attribute"], [421, "item-attribute"], [422, "item-attribute"], [423, "item-attribute"], [424, "item-attribute"], [425, "item-attribute"], [426, "item-attribute"], [427, "item-attribute"], [428, "item-attribute"], [429, "item-attribute"], [430, "item-attribute"], [431, "item-attribute"], [432, "item-attribute"], [433, "item-attribute"], [434, "item-attribute"], [435, "item-attribute"], [436, "item-attribute"], [437, "item-attribute"], [438, "item-attribute"], [439, "item-attribute"], [440, "item-attribute"], [441, "item-attribute"], [442, "item-attribute"], [443, "item-attribute"], [444, "item-attribute"], [445, "item-attribute"], [446, "item-attribute"], [447, "item-attribute"], [448, "item-attribute"], [449, "item-attribute"], [450, "item-attribute"], [451, "item-attribute"], [452, "item-attribute"], [453, "item-attribute"], [454, "item-attribute"], [455, "item-attribute"], [456, "item-attribute"], [457, "item-attribute"], [458, "item-attribute"], [459, "item-attribute"], [460, "item-attribute"], [461, "item-attribute"], [462, "item-attribute"], [463, "item-attribute"], [464, "item-attribute"], [465, "item-attribute"], [466, "item-attribute"], [467, "item-attribute"], [468, "item-attribute"], [469, "item-attribute"], [470, "item-attribute"], [471, "item-attribute"], [472, "item-attribute"], [473, "item-attribute"], [474, "item-attribute"], [475, "item-attribute"], [476, "item-attribute"], [477, "item-attribute"], [478, "item-attribute"], [479, "item-attribute"], [480, "item-attribute"], [481, "item-attribute"], [482, "item-attribute"], [483, "item-attribute"], [484, "item-attribute"], [485, "item-attribute"], [486, "item-attribute"], [487, "item-attribute"], [488, "item-attribute"], [489, "item-attribute"], [490, "item-attribute"], [491, "item-attribute"], [492, "item-attribute"], [493, "item-attribute"], [494, "item-attribute"], [495, "item-attribute"], [496, "item-attribute"], [497, "item-attribute"], [498, "item-attribute"], [499, "item-attribute"], [500, "item-attribute"], [501, "item-attribute"], [502, "item-attribute"], [503, "item-attribute"], [504, "item-attribute"], [505, "item-attribute"], [506, "item-attribute"], [507, "item-attribute"], [508, "item-attribute"], [509, "item-attribute"], [510, "item-attribute"], [511, "item-attribute"], [512, "item-attribute"], [513, "item-attribute"], [514, "item-attribute"], [515, "item-attribute"], [516, "item-attribute"], [517, "item-attribute"], [518, "item-attribute"], [519, "item-attribute"], [520, "item-attribute"], [521, "item-attribute"], [522, "item-attribute"], [523, "item-attribute"], [524, "item-attribute"], [525, "item-attribute"], [526, "item-attribute"], [527, "item-attribute"], [528, "item-attribute"], [529, "item-attribute"], [530, "item-attribute"], [531, "item-attribute"], [532, "item-attribute"], [533, "item-attribute"], [534, "item-attribute"], [535, "item-attribute"], [536, "item-attribute"], [537, "item-attribute"], [538, "item-attribute"]], "hue3": [[213, "hue3"]], "husky": [[214, "husky"]], "Credits": [[214, "credits"], [215, "credits"], [359, "credits"]], "husky2": [[215, "husky2"]], "SV Widget": [[215, "sv-widget"], [359, "sv-widget"]], "iCal": [[216, "ical"]], "ical": [[217, "ical"]], "indego Plugin": [[218, "indego-plugin"]], "Version 1.x.y": [[218, "version-1-x-y"], [251, "version-1-x-y"]], "Further Information": [[218, "further-information"]], "Integration into SmartVISU": [[218, "integration-into-smartvisu"]], "for SmartVISU Version": [[218, "for-smartvisu-version"]], "Indego4shNG": [[219, "indego4shng"]], "Generell": [[219, "generell"]], "Credits": [[219, "credits"]], "Change Log": [[219, "change-log"]], "2023-05-06 V4.0.1": [[219, "v4-0-1"]], "2023-03-08 V4.0.0": [[219, "v4-0-0"]], "2023-02-05 V3.0.2": [[219, "v3-0-2"]], "2021-05-16 V3.0.1": [[219, "v3-0-1"]], "2019-10-28 V3.0.0": [[219, "v3-0-0"]], "ben\u00f6tigte Software": [[219, "benotigte-software"]], "SmartVisu": [[219, "smartvisu"], [255, "smartvisu"]], "erster Tab - \u00dcbersicht Indego-Items": [[219, "erster-tab-ubersicht-indego-items"]], "zweiter Tab - Originalgartenkarte / Settings": [[219, "zweiter-tab-originalgartenkarte-settings"]], "dritter Tab - State-Protokoll": [[219, "dritter-tab-state-protokoll"]], "vierter Tab - Kommunikationsprotokoll": [[219, "vierter-tab-kommunikationsprotokoll"]], "Logik-Trigger": [[219, "logik-trigger"]], "\u00f6ffentliche Funkionen": [[219, "offentliche-funkionen"]], "send_command(Payload as String)": [[219, "send-command-payload-as-string"]], "Gardenkarte \u201epimpen\u201c": [[219, "gardenkarte-pimpen"]], "Beispiel :": [[219, "beispiel"]], "Nutzung der Original Bosch-M\u00e4her-Symbole": [[219, "nutzung-der-original-bosch-maher-symbole"]], "Die Bosch-Api 4.0.1 - behind the scenes": [[219, "die-bosch-api-4-0-1-behind-the-scenes"]], "indego4shng": [[220, "indego4shng"]], "Konfiguration von SmarthoneNG": [[220, "konfiguration-von-smarthoneng"]], "influxdata": [[221, "influxdata"]], "/etc/influxdb/influxdb.conf": [[221, "etc-influxdb-influxdb-conf"], [222, "etc-influxdb-influxdb-conf"]], "Check data": [[221, "check-data"]], "influxdb": [[222, "influxdb"], [427, "influxdb"]], "In InfluxDB \u00fcber UDP oder HTTP loggen": [[222, "in-influxdb-uber-udp-oder-http-loggen"]], "Korrektes Logging": [[222, "korrektes-logging"]], "Daten aus dem Database Plugin transferieren": [[222, "daten-aus-dem-database-plugin-transferieren"], [223, "daten-aus-dem-database-plugin-transferieren"]], "influxdb2": [[223, "influxdb2"], [428, "influxdb2"]], "Installation der InfluxDB Software": [[223, "installation-der-influxdb-software"]], "Gespeicherte Daten": [[223, "gespeicherte-daten"]], "InfluxDB Einf\u00fchrung": [[224, "influxdb-einfuhrung"]], "Was ist InfluxDB?": [[224, "was-ist-influxdb"]], "Was ist eine Organisation?": [[224, "was-ist-eine-organisation"]], "Was ist ein Bucket?": [[224, "was-ist-ein-bucket"]], "Was ist ein Point?": [[224, "was-ist-ein-point"]], "Serienschl\u00fcssel und Serien": [[224, "serienschlussel-und-serien"]], "Fields und Tags": [[224, "fields-und-tags"]], "InfluxDB Installation": [[225, "influxdb-installation"]], "InfluxDB Konfiguration": [[226, "influxdb-konfiguration"]], "Buckets anlegen": [[226, "buckets-anlegen"]], "API Token anlegen": [[226, "api-token-anlegen"]], "Dashboard einrichten": [[226, "dashboard-einrichten"]], "Intercom-2N Plugin": [[227, "intercom-2n-plugin"]], "Plugin setup": [[227, "plugin-setup"]], "Plugin usage": [[227, "plugin-usage"]], "Events": [[227, "events"]], "Commands": [[227, "commands"], [622, "commands"]], "Example item config": [[227, "example-item-config"]], "join": [[228, "join"], [314, "join"], [534, "join"]], "Pluginfunktionen": [[228, "pluginfunktionen"], [347, "pluginfunktionen"]], "send()": [[228, "send"]], "get_devices()": [[228, "get-devices"]], "Logikbeispiele": [[228, "logikbeispiele"]], "jsonread": [[229, "jsonread"]], "URL": [[229, "url"]], "Beispiele verschiedener Datenquellen": [[229, "beispiele-verschiedener-datenquellen"]], "Beispiel Klimaabfrage": [[229, "beispiel-klimaabfrage"]], "Beispiel Batteriedaten": [[229, "beispiel-batteriedaten"]], "Beispiel Energiemanager": [[229, "beispiel-energiemanager"]], "jvcproj": [[230, "jvcproj"]], "Hinweis": [[230, "hinweis"]], "jvcproj_cmd:": [[230, "jvcproj-cmd"]], "jvcproj_gamma:": [[230, "jvcproj-gamma"]], "Kommandoerl\u00e4uterung": [[230, "kommandoerlauterung"]], "kathrein": [[231, "kathrein"], [231, "id1"], [433, "kathrein"]], "ToDo": [[231, "todo"]], "kathreinid": [[231, "kathreinid"], [433, "kathreinid"]], "Key Values": [[231, "key-values"], [301, "key-values"]], "knx": [[232, "knx"]], "Umwandlungen der Datentypen in Itemwerte": [[232, "umwandlungen-der-datentypen-in-itemwerte"]], "Statistiken": [[232, "statistiken"]], "kodi": [[233, "kodi"]], "Hinweise zur Umstellung": [[233, "hinweise-zur-umstellung"]], "Hinweise zu Verbindungen": [[233, "hinweise-zu-verbindungen"]], "kostal": [[234, "kostal"], [436, "kostal"]], "Version: 1.3.1.2": [[234, "version-1-3-1-2"]], "Hint": [[234, "hint"]], "Description of all possible items (depending on inverter features)": [[234, "description-of-all-possible-items-depending-on-inverter-features"]], "Modbus Plugin for Kostal inverters": [[235, "modbus-plugin-for-kostal-inverters"]], "Version 1.6.3": [[235, "version-1-6-3"], [236, "version-1-6-3"]], "Supported Inverters": [[235, "supported-inverters"]], "2) /smarthome/items/kostal.yaml": [[235, "smarthome-items-kostal-yaml"], [236, "smarthome-items-kostal-yaml"]], "Get data from inverter:": [[235, "get-data-from-inverter"]], "The following data are stored in the respective items:": [[235, "the-following-data-are-stored-in-the-respective-items"], [236, "the-following-data-are-stored-in-the-respective-items"]], "Modbus Plugin for Kostal Smart Energy Meter": [[236, "modbus-plugin-for-kostal-smart-energy-meter"]], "Get data from Energy Meter:": [[236, "get-data-from-energy-meter"]], "lirc": [[237, "lirc"]], "lms": [[238, "lms"]], "logo": [[239, "logo"]], "logo_read@logo1": [[239, "logo-read-logo1"]], "logo_write@logo1": [[239, "logo-write-logo1"]], "luxtronic2": [[240, "luxtronic2"]], "lux2": [[240, "lux2"], [443, "lux2"]], "lux2_p": [[240, "lux2-p"], [443, "lux2-p"]], "lux2_a": [[240, "lux2-a"], [443, "lux2-a"]], "lux2_c": [[240, "lux2-c"], [443, "lux2-c"]], "mailrcv": [[241, "mailrcv"]], "mail_subject": [[241, "mail-subject"]], "mail_to": [[241, "mail-to"]], "mail": [[241, "mail"]], "mailsend": [[242, "mailsend"]], "memlog": [[243, "memlog"], [446, "memlog"]], "Beispiel Logik": [[243, "beispiel-logik"], [263, "beispiel-logik"], [595, "beispiel-logik"]], "Beispiel Item": [[243, "beispiel-item"], [263, "beispiel-item"]], "Einsatz in Logiken": [[243, "einsatz-in-logiken"]], "Funktionsaufruf": [[243, "funktionsaufruf"]], "mieleathome": [[244, "mieleathome"]], "miflora": [[245, "miflora"]], "miflora_data_type": [[245, "miflora-data-type"], [448, "miflora-data-type"]], "mikrotik": [[246, "mikrotik"]], "milight": [[247, "milight"]], "Version 1.6.0": [[247, "version-1-6-0"], [315, "version-1-6-0"]], "Todo:": [[247, "todo"]], "udp_ip": [[247, "udp-ip"], [450, "udp-ip"]], "udp_port": [[247, "udp-port"], [427, "udp-port"], [450, "udp-port"]], "bricontrol": [[247, "bricontrol"], [450, "bricontrol"]], "cutoff": [[247, "cutoff"], [450, "cutoff"]], "hue_calibrate": [[247, "hue-calibrate"], [450, "hue-calibrate"]], "milight_sw": [[247, "milight-sw"], [450, "milight-sw"]], "milight_dim": [[247, "milight-dim"], [450, "milight-dim"]], "milight_col": [[247, "milight-col"], [450, "milight-col"]], "milight_rgb": [[247, "milight-rgb"], [450, "milight-rgb"]], "milight_white": [[247, "milight-white"], [450, "milight-white"]], "milight_disco": [[247, "milight-disco"], [450, "milight-disco"]], "milight_disco_up / milight_disco_down": [[247, "milight-disco-up-milight-disco-down"]], "Example for RGB": [[247, "example-for-rgb"]], "mlgw Plugin - Bang & Olufsen Masterlink Gateway": [[248, "mlgw-plugin-bang-olufsen-masterlink-gateway"]], "Version 1.1.1": [[248, "version-1-1-1"]], "Changes Since version 0.5": [[248, "changes-since-version-0-5"]], "Changes Since version 0.4": [[248, "changes-since-version-0-4"]], "Changes Since version 0.3": [[248, "changes-since-version-0-3"]], "mlgw_send": [[248, "mlgw-send"], [451, "mlgw-send"]], "mlgw_cmd": [[248, "mlgw-cmd"], [248, "id1"], [451, "mlgw-cmd"]], "mlgw_mln": [[248, "mlgw-mln"], [451, "mlgw-mln"]], "mlgw_listen": [[248, "mlgw-listen"], [451, "mlgw-listen"]], "mlgw_room": [[248, "mlgw-room"], [451, "mlgw-room"]], "modbus_tcp": [[249, "modbus-tcp"]], "pymodbus": [[249, "pymodbus"]], "pymodbus - manuelle Installation:": [[249, "pymodbus-manuelle-installation"]], "mpd": [[250, "mpd"]], "Sample Plugin <- put the name of your plugin here": [[251, "sample-plugin-put-the-name-of-your-plugin-here"]], "Changes Since version 1.x.x": [[251, "changes-since-version-1-x-x"]], "Changes Since version 1.x.w": [[251, "changes-since-version-1-x-w"]], "mqtt": [[252, "mqtt"]], "mvg_live - MVG Live": [[253, "mvg-live-mvg-live"]], "get_station_departures(self, station, timeoffset=0, entries=10, ubahn=True, tram=True, bus=True, sbahn=True):": [[253, "get-station-departures-self-station-timeoffset-0-entries-10-ubahn-true-tram-true-bus-true-sbahn-true"]], "Logics": [[253, "logics"], [260, "logics"], [335, "logics"]], "logics.yaml": [[253, "logics-yaml"], [263, "logics-yaml"]], "mvg.py": [[253, "mvg-py"]], "smartVISU integration (Requires smartVISU 2.9, as select widget is used)": [[253, "smartvisu-integration-requires-smartvisu-2-9-as-select-widget-is-used"]], "Neato/Vorwerk Vacuum Robot": [[254, "neato-vorwerk-vacuum-robot"]], "2) Authentication": [[254, "authentication"]], "2) /smarthome/items/robot.yaml": [[254, "smarthome-items-robot-yaml"]], "Get status from robot:": [[254, "get-status-from-robot"]], "Send commands to the robot:": [[254, "send-commands-to-the-robot"]], "neato": [[255, "neato"]], "Authentifizierung": [[255, "authentifizierung"]], "Unterst\u00fctzte Plugin Attribute": [[255, "unterstutzte-plugin-attribute"]], "Roboter Status": [[255, "roboter-status"]], "Roboterbefehle": [[255, "roboterbefehle"]], "network": [[256, "network"]], "nw": [[256, "nw"], [457, "nw"]], "nw_acl": [[256, "nw-acl"], [457, "nw-acl"]], "nw_udp_listen/nw_tcp_listen/nw_http_listen": [[256, "nw-udp-listen-nw-tcp-listen-nw-http-listen"]], "nw_udp_send": [[256, "nw-udp-send"], [457, "nw-udp-send"]], "Benutzung": [[256, "benutzung"]], "udp(host, port, data)": [[256, "udp-host-port-data"], [457, "udp-host-port-data"]], "Nuki": [[257, "nuki"]], "Support": [[257, "support"], [365, "support"]], "nuki_id": [[257, "nuki-id"], [458, "nuki-id"]], "nuki_trigger": [[257, "nuki-trigger"], [458, "nuki-trigger"]], "action": [[257, "action"]], "state": [[257, "state"], [449, "state"], [449, "id7"]], "doorstate": [[257, "doorstate"]], "battery": [[257, "battery"]], "NUT - Network UPS Tools plugin": [[258, "nut-network-ups-tools-plugin"]], "Synology Example": [[258, "synology-example"]], "nut": [[259, "nut"]], "Synology Beispiel": [[259, "synology-beispiel"]], "Versionshistorie": [[259, "versionshistorie"]], "ODLInfo": [[260, "odlinfo"]], "Nutzung der Daten / Terms of Service": [[260, "nutzung-der-daten-terms-of-service"]], "get_stations_for_ids(odlinfo_ids):": [[260, "get-stations-for-ids-odlinfo-ids"]], "get_station_for_id(odlinfo_id)": [[260, "get-station-for-id-odlinfo-id"], [460, "get-station-for-id-odlinfo-id"]], "Fill item with radiation data": [[260, "fill-item-with-radiation-data"]], "onewire": [[261, "onewire"]], "Tab 1: Items": [[261, "tab-1-items"]], "Tab 2: 1-Wire Busse": [[261, "tab-2-1-wire-busse"]], "openweathermap": [[262, "openweathermap"]], "Migration von vorheriger Version 1.5.1": [[262, "migration-von-vorheriger-version-1-5-1"]], "Plugin-parameter": [[262, "plugin-parameter"]], "Item-attribute": [[262, "item-attribute"]], "Hints": [[262, "hints"]], "Funktionali\u00e4t": [[262, "funktionaliat"]], "Allgemeine Information": [[262, "allgemeine-information"]], "Rohe JSON Daten in ein Item speichern": [[262, "rohe-json-daten-in-ein-item-speichern"]], "Verf\u00fcgbare Matchstrings": [[262, "verfugbare-matchstrings"]], "Zugriff auf Listen": [[262, "zugriff-auf-listen"]], "Virtuelle Matchstrings": [[262, "virtuelle-matchstrings"]], "Tagesvorhersage (berechnet)": [[262, "tagesvorhersage-berechnet"]], "Verdunstung / Evapotranspiration": [[262, "verdunstung-evapotranspiration"]], "Wetteralarme": [[262, "wetteralarme"]], "Matchstring Fehlerbehandlung": [[262, "matchstring-fehlerbehandlung"]], "Anwendungen": [[262, "anwendungen"], [338, "anwendungen"]], "Steuerung einer t\u00e4glichen Bew\u00e4sserung bspw. f\u00fcr Pflanzen": [[262, "steuerung-einer-taglichen-bewasserung-bspw-fur-pflanzen"]], "Steuerung einer w\u00f6chtenlichen Bew\u00e4sserung bspw. f\u00fcr Rasen": [[262, "steuerung-einer-wochtenlichen-bewasserung-bspw-fur-rasen"]], "Funktionen des Plugins": [[262, "funktionen-des-plugins"]], "get_beaufort_number(value_in_meter_per_second)": [[262, "get-beaufort-number-value-in-meter-per-second"]], "get_beaufort_description(bft_number)": [[262, "get-beaufort-description-bft-number"]], "OWM Items": [[262, "owm-items"]], "JSON": [[262, "json"]], "Tipps and Tricks": [[262, "tipps-and-tricks"]], "operationlog": [[263, "operationlog"]], "Item Log Beispiele": [[263, "item-log-beispiele"]], "oppo": [[264, "oppo"]], "panasonic_ac": [[265, "panasonic-ac"]], "philips_tv": [[266, "philips-tv"]], "pioneer": [[267, "pioneer"]], "piratewthr": [[268, "piratewthr"]], "plex": [[269, "plex"]], "pluggit": [[270, "pluggit"], [271, "pluggit"]], "Einbindung in der plugin.yaml mit:": [[270, "einbindung-in-der-plugin-yaml-mit"]], "Einbindung in den Items per Item-Struct:": [[270, "einbindung-in-den-items-per-item-struct"]], "\u00c4nderungen:": [[270, "anderungen"]], "Folgende Vorteile ergeben sich zu dem Plugin 1.x": [[270, "folgende-vorteile-ergeben-sich-zu-dem-plugin-1-x"]], "Es fehlen auch noch ein paar Dinge:": [[270, "es-fehlen-auch-noch-ein-paar-dinge"]], "Vorteile gegen\u00fcber der Plugin Version v1.2.3": [[271, "vorteile-gegenuber-der-plugin-version-v1-2-3"]], "Es fehlen auch noch ein paar Dinge": [[271, "es-fehlen-auch-noch-ein-paar-dinge"]], "Struct": [[271, "struct"]], "prowl": [[272, "prowl"]], "Pushbullet": [[273, "pushbullet"]], "Python libraries": [[273, "python-libraries"]], "Other": [[273, "other"]], "How to get your deviceId": [[273, "how-to-get-your-deviceid"]], "sh.pushbullet.note(title, body [, deviceid] [, apikey])": [[273, "sh-pushbullet-note-title-body-deviceid-apikey"]], "sh.pushbullet.link(title, url [, deviceid] [, apikey] [, body])": [[273, "sh-pushbullet-link-title-url-deviceid-apikey-body"]], "Parameters:": [[273, "id1"], [273, "id3"], [273, "id5"], [273, "id7"], [273, "id9"]], "sh.pushbullet.address(name, address [, deviceid] [, apikey])": [[273, "sh-pushbullet-address-name-address-deviceid-apikey"]], "sh.pushbullet.list(title, title [, deviceid] [, apikey])": [[273, "sh-pushbullet-list-title-title-deviceid-apikey"]], "sh.pushbullet.file(filepath [, deviceid] [, apikey] [, body])": [[273, "sh-pushbullet-file-filepath-deviceid-apikey-body"]], "sh.pushbullet.delete(pushid)": [[273, "sh-pushbullet-delete-pushid"]], "Pushover": [[274, "pushover"]], "Usage:": [[274, "usage"]], "sh.po(title, message [, priority] [, retry] [, expire] [, ttl] [, sound] [, url] [, url_title] [, device] [, userKey] [, apiKey])": [[274, "sh-po-title-message-priority-retry-expire-ttl-sound-url-url-title-device-userkey-apikey"]], "Raumfeld": [[275, "raumfeld"]], "device_name": [[275, "device-name"], [430, "device-name"]], "stream_url": [[275, "stream-url"]], "raumfeld_ng": [[276, "raumfeld-ng"]], "Ger\u00e4te Attribute": [[276, "gerate-attribute"]], "Zonen Attribute": [[276, "zonen-attribute"]], "rcs1000n": [[277, "rcs1000n"]], "Notwendige Hardware": [[277, "notwendige-hardware"]], "v1.0.0": [[277, "v1-0-0"]], "RCswitch": [[278, "rcswitch"]], "Necessary Hardware": [[278, "necessary-hardware"]], "Installation of wiringPi:": [[278, "installation-of-wiringpi"]], "Installation of rcswitch-pi": [[278, "installation-of-rcswitch-pi"]], "Send as non-root and testing": [[278, "send-as-non-root-and-testing"]], "Installation of ssh and sshpass": [[278, "installation-of-ssh-and-sshpass"]], "Troubleshooting": [[278, "troubleshooting"]], "v0.1": [[278, "v0-1"]], "v0.2": [[278, "v0-2"]], "v0.3": [[278, "v0-3"]], "v1.2.0.4": [[278, "v1-2-0-4"]], "Further information": [[278, "further-information"]], "resol": [[279, "resol"]], "Resol Protokoll": [[279, "resol-protokoll"]], "Informationen": [[279, "informationen"]], "Robonect Plugin": [[280, "robonect-plugin"]], "Version 1.0.5": [[280, "version-1-0-5"]], "Version 1.0.3": [[280, "version-1-0-3"]], "Roomba": [[281, "roomba"]], "Bluetooth": [[281, "bluetooth"]], "Ethernet": [[281, "ethernet"]], "Connection:": [[281, "connection"]], "plugin.yaml:": [[281, "plugin-yaml"]], "item.yaml:": [[281, "item-yaml"]], "roomba_980": [[282, "roomba-980"]], "Wie bekomme ich meine blid und mein Passwort": [[282, "wie-bekomme-ich-meine-blid-und-mein-passwort"]], "Um das Plugin zu aktivieren m\u00fcsst ihr Folgendes in eure plugin.ymal aufnehmen:": [[282, "um-das-plugin-zu-aktivieren-musst-ihr-folgendes-in-eure-plugin-ymal-aufnehmen"]], "Hier meine item.yaml:": [[282, "hier-meine-item-yaml"]], "roombapysh": [[283, "roombapysh"], [482, "roombapysh"]], "Wie bekomme ich meine blid und mein Passwort?": [[283, "wie-bekomme-ich-meine-blid-und-mein-passwort"]], "Um das Plugin zu aktivieren, m\u00fcsst ihr Folgendes in eure plugin.yaml aufnehmen:": [[283, "um-das-plugin-zu-aktivieren-musst-ihr-folgendes-in-eure-plugin-yaml-aufnehmen"]], "Hinweise:": [[283, "hinweise"]], "Roomba f\u00fcr SmartHomeNG": [[284, "roomba-fur-smarthomeng"]], "rpi1wire": [[285, "rpi1wire"]], "Information": [[285, "information"]], "Raspberry Pi Konfiguration": [[285, "raspberry-pi-konfiguration"]], "rpi1wire Items": [[285, "rpi1wire-items"]], "rpi1wire Sensores": [[285, "rpi1wire-sensores"]], "rpi_info": [[286, "rpi-info"]], "rrd": [[287, "rrd"], [485, "rrd"]], "Vergleich zwischen Datenbank-Plugin und rrdtool:": [[287, "vergleich-zwischen-datenbank-plugin-und-rrdtool"]], "RTR plug-in": [[288, "rtr-plug-in"]], "Required attributes:": [[288, "required-attributes"]], "rtr_current": [[288, "rtr-current"], [486, "rtr-current"]], "rtr_setpoint": [[288, "rtr-setpoint"], [486, "rtr-setpoint"]], "rtr_actuator": [[288, "rtr-actuator"], [486, "rtr-actuator"]], "Optional attributes": [[288, "optional-attributes"]], "rtr_Kp, rtr_Ki": [[288, "rtr-kp-rtr-ki"]], "rtr_stops": [[288, "rtr-stops"], [486, "rtr-stops"]], "rtr_temp_default, rtr_temp_boost, rtr_temp_boost_time, rtr_temp_drop": [[288, "rtr-temp-default-rtr-temp-boost-rtr-temp-boost-time-rtr-temp-drop"]], "rtr_hvac_mode": [[288, "rtr-hvac-mode"], [486, "rtr-hvac-mode"]], "logic": [[288, "logic"], [304, "logic"], [356, "logic"], [357, "logic"]], "Einstellen des Modus": [[289, "einstellen-des-modus"]], "hvac": [[289, "hvac"]], "Frostschutz": [[289, "frostschutz"]], "Automatische Nachtabsenkung": [[289, "automatische-nachtabsenkung"]], "automatischer Frostschutz": [[289, "automatischer-frostschutz"]], "Structure Template": [[289, "structure-template"]], "Abweichende Reglerparameter": [[289, "abweichende-reglerparameter"]], "Visualisierung": [[289, "visualisierung"], [295, "visualisierung"]], "RTR Widget": [[289, "rtr-widget"]], "Plot Widget": [[289, "plot-widget"]], "Russound": [[290, "russound"]], "rus_path": [[290, "rus-path"], [488, "rus-path"]], "shelly": [[291, "shelly"]], "Shelly Items": [[291, "shelly-items"]], "Shelly Devices": [[291, "shelly-devices"]], "Broker Information": [[291, "broker-information"], [337, "broker-information"]], "Shelly Device in Betrieb nehmen": [[292, "shelly-device-in-betrieb-nehmen"]], "Einbindung ins WLAN": [[292, "einbindung-ins-wlan"]], "Gen1 Devices einbinden": [[292, "gen1-devices-einbinden"]], "Gen2/Gen3 Devices einbinden": [[292, "gen2-gen3-devices-einbinden"]], "Firmware Update durchf\u00fchren": [[292, "firmware-update-durchfuhren"]], "Update f\u00fcr Gen1 Devices": [[292, "update-fur-gen1-devices"]], "Update f\u00fcr Gen2/Gen3 Devices": [[292, "update-fur-gen2-gen3-devices"]], "MQTT konfigurieren": [[292, "mqtt-konfigurieren"]], "F\u00fcr Gen1 Devices": [[292, "fur-gen1-devices"]], "F\u00fcr Gen2/Gen3 Devices": [[292, "fur-gen2-gen3-devices"]], "Backward-Compatibility Mode": [[293, "backward-compatibility-mode"]], "Aktueller Konfigurations Modus": [[293, "aktueller-konfigurations-modus"]], "Unterschiede zwischen Plugin Modi": [[293, "unterschiede-zwischen-plugin-modi"]], "Konfiguration im Kompatibilit\u00e4ts-Modus": [[293, "konfiguration-im-kompatibilitats-modus"]], "Konfiguration f\u00fcr Gen2 Devices": [[293, "konfiguration-fur-gen2-devices"]], "Ermitteln der unterst\u00fctzten Status Attribute": [[293, "ermitteln-der-unterstutzten-status-attribute"]], "Nicht unterst\u00fctzte Status Attribute": [[293, "nicht-unterstutzte-status-attribute"]], "Attribute um ein Device zu steuern": [[293, "attribute-um-ein-device-zu-steuern"]], "Item structs": [[293, "item-structs"]], "weitere Informationen": [[293, "weitere-informationen"]], "Simulation": [[294, "simulation"]], "Record": [[294, "record"]], "Playback": [[294, "playback"]], "Control": [[294, "control"]], "SmartVisu 2.9:": [[294, "smartvisu-2-9"]], "SmartVisu <= 2.8:": [[294, "smartvisu-2-8"]], "Internals": [[294, "internals"]], "Event file format": [[294, "event-file-format"]], "State Diagram": [[294, "state-diagram"]], "simulation": [[295, "simulation"]], "Plugin Items": [[295, "plugin-items"]], "Aufzeichnung": [[295, "aufzeichnung"]], "Abspielen": [[295, "abspielen"]], "Event Datei Format": [[295, "event-datei-format"]], "Statusdiagramm": [[295, "statusdiagramm"]], "smarthome-slack": [[296, "smarthome-slack"]], "etc/plugin.yaml single instance example": [[296, "etc-plugin-yaml-single-instance-example"]], "etc/plugin.yaml multi instance example": [[296, "etc-plugin-yaml-multi-instance-example"]], "SMA": [[297, "sma"]], "SMA-EM Plugin": [[298, "sma-em-plugin"]], "sma_mb": [[300, "sma-mb"]], "SmartTV": [[301, "smarttv"]], "smarttv": [[301, "id1"], [495, "smarttv"]], "Weiterf\u00fchrende Informationen": [[302, "weiterfuhrende-informationen"], [354, "weiterfuhrende-informationen"]], "Nutzdaten Protokoll": [[302, "nutzdaten-protokoll"]], "Automatische Seitengenerierung": [[302, "automatische-seitengenerierung"]], "Weitere Dokumentation": [[302, "weitere-dokumentation"]], "Requests von der smartVISU an SmartHomeNG": [[304, "requests-von-der-smartvisu-an-smarthomeng"]], "list_items": [[304, "list-items"], [356, "list-items"], [357, "list-items"]], "list_logics": [[304, "list-logics"], [356, "list-logics"], [357, "list-logics"]], "Sml": [[305, "sml"]], "sml_obis": [[305, "sml-obis"], [497, "sml-obis"], [498, "sml-obis"], [499, "sml-obis"]], "sml_prop": [[305, "sml-prop"], [497, "sml-prop"], [498, "sml-prop"], [499, "sml-prop"]], "Methodes": [[305, "methodes"]], "sml2": [[306, "sml2"]], "Besonderheiten bestimmter Hardware": [[306, "besonderheiten-bestimmter-hardware"], [307, "besonderheiten-bestimmter-hardware"]], "Holley DTZ541": [[306, "holley-dtz541"], [307, "holley-dtz541"]], "smlx": [[307, "smlx"]], "snap7_logo": [[308, "snap7-logo"], [309, "snap7-logo"]], "logo_read@logo1: I1": [[308, "logo-read-logo1-i1"]], "logo_write@logo1: M3": [[308, "logo-write-logo1-m3"]], "snap7": [[309, "snap7"]], "python-snap7": [[309, "python-snap7"]], "snmp": [[310, "snmp"]], "1.1.0": [[310, "id1"], [351, "id3"]], "1.0.0": [[310, "id2"], [351, "id4"]], "snmp_host": [[310, "snmp-host"], [501, "snmp-host"]], "snmp_commnity": [[310, "snmp-commnity"]], "Plugin-Konfiguration:": [[310, "plugin-konfiguration"]], "snmp_oid": [[310, "snmp-oid"], [501, "snmp-oid"]], "snmp_prop": [[310, "snmp-prop"], [501, "snmp-prop"]], "solarforecast": [[311, "solarforecast"]], "Solarlog": [[312, "solarlog"]], "Todo": [[312, "todo"], [313, "todo"]], "solarlog": [[312, "id1"], [313, "solarlog"], [313, "id1"], [503, "solarlog"]], "sonos": [[314, "sonos"]], "Erste Schritte": [[314, "erste-schritte"]], "Unterst\u00fctze Eigenschaften/Funktionen": [[314, "unterstutze-eigenschaften-funktionen"]], "bass": [[314, "bass"]], "coordinator": [[314, "coordinator"]], "cross_fade": [[314, "cross-fade"]], "current_track": [[314, "current-track"]], "current_track_duration": [[314, "current-track-duration"]], "current_transport_actions": [[314, "current-transport-actions"]], "current_valid_play_modes": [[314, "current-valid-play-modes"]], "dialog_mode": [[314, "dialog-mode"]], "household_id": [[314, "household-id"]], "is_coordinator": [[314, "is-coordinator"]], "is_initialized": [[314, "is-initialized"]], "load_sonos_playlist": [[314, "load-sonos-playlist"]], "loudness": [[314, "loudness"]], "streamtype": [[314, "streamtype"]], "mute": [[314, "mute"]], "next": [[314, "next"]], "night_mode": [[314, "night-mode"]], "number_of_tracks": [[314, "number-of-tracks"]], "pause": [[314, "pause"]], "play": [[314, "play"]], "player_name": [[314, "player-name"]], "play_mode": [[314, "play-mode"]], "play_snippet": [[314, "play-snippet"]], "play_tts": [[314, "play-tts"]], "play_sonos_radio / play_tunein": [[314, "play-sonos-radio-play-tunein"]], "play_url": [[314, "play-url"]], "play_sharelink": [[314, "play-sharelink"]], "previous": [[314, "previous"]], "radio_station": [[314, "radio-station"]], "radio_show": [[314, "radio-show"]], "snooze": [[314, "snooze"]], "sonos_playlists": [[314, "sonos-playlists"]], "status_light": [[314, "status-light"]], "buttons_enabled": [[314, "buttons-enabled"]], "stop": [[314, "stop"], [481, "stop"]], "stream_content": [[314, "stream-content"]], "switch_line_in": [[314, "switch-line-in"]], "switch_tv": [[314, "switch-tv"]], "track_album": [[314, "track-album"]], "track_album_art": [[314, "track-album-art"]], "track_artist": [[314, "track-artist"]], "track_title": [[314, "track-title"]], "track_uri": [[314, "track-uri"]], "treble": [[314, "treble"]], "uid": [[314, "uid"]], "unjoin": [[314, "unjoin"]], "volume": [[314, "volume"]], "zone_group_members": [[314, "zone-group-members"]], "sonos_favorites": [[314, "sonos-favorites"]], "favorite_radio_stations": [[314, "favorite-radio-stations"]], "play_favorite_title": [[314, "play-favorite-title"]], "play_favorite_number": [[314, "play-favorite-number"]], "play_favorite_radio_title": [[314, "play-favorite-radio-title"]], "play_favorite_radio_number": [[314, "play-favorite-radio-number"]], "Nicht echtzeitf\u00e4hige Eigenschaften": [[314, "nicht-echtzeitfahige-eigenschaften"]], "Gruppenbefehle": [[314, "gruppenbefehle"]], "1) Radiosender abspielen": [[314, "radiosender-abspielen"]], "2) Sonos Playlist abspielen": [[314, "sonos-playlist-abspielen"]], "3) Nutzung der is_initialized Eigenschaft": [[314, "nutzung-der-is-initialized-eigenschaft"]], "4a) Lautst\u00e4rke inkrementell verstellen (via KNX dpt3)": [[314, "a-lautstarke-inkrementell-verstellen-via-knx-dpt3"]], "4b) Erweitertes DPT3 Beispiel": [[314, "b-erweitertes-dpt3-beispiel"]], "5) Minimalbeispiel": [[314, "minimalbeispiel"]], "SmartVisu Widget": [[314, "smartvisu-widget"]], "Speech": [[315, "speech"]], "sp": [[315, "sp"], [505, "sp"]], "speech.py": [[315, "speech-py"]], "Links": [[315, "links"]], "speech": [[316, "speech"]], "Funktionsweise": [[316, "funktionsweise"]], "SQLite (for SmartVisu >= 2.8)": [[317, "sqlite-for-smartvisu-2-8"]], "cleanup()": [[317, "cleanup"], [396, "cleanup"], [506, "cleanup"]], "dump(filename)": [[317, "dump-filename"], [506, "dump-filename"]], "move(old, new)": [[317, "move-old-new"], [506, "move-old-new"]], "Squeezebox": [[318, "squeezebox"]], "New in version 1.4": [[318, "new-in-version-1-4"]], "New in version 1.3.2": [[318, "new-in-version-1-3-2"]], "New in version 1.3.1": [[318, "new-in-version-1-3-1"]], "New in version 1.3.0": [[318, "new-in-version-1-3-0"]], "squeezebox": [[319, "squeezebox"]], "stateengine": [[320, "stateengine"]], "Funktionalit\u00e4t": [[321, "funktionalitat"]], "Umstieg von Autoblind": [[321, "umstieg-von-autoblind"]], "Pluginkonfiguration": [[322, "pluginkonfiguration"]], "Aktivieren": [[322, "aktivieren"]], "Regelwerk-Item": [[323, "regelwerk-item"]], "Item-Definitionen": [[323, "item-definitionen"]], "Beispiel se_item": [[323, "beispiel-se-item"]], "Beispiel se_status": [[323, "beispiel-se-status"]], "Beispiel se_eval": [[323, "beispiel-se-eval"]], "Zustand-Item": [[324, "zustand-item"]], "Zust\u00e4nde": [[324, "zustande"]], "Bedingungen": [[324, "bedingungen"], [325, "bedingungen"]], "Aktionen": [[324, "aktionen"], [326, "aktionen"]], "Templates f\u00fcr Zust\u00e4nde": [[324, "templates-fur-zustande"]], "Name der Bedingung": [[325, "name-der-bedingung"]], "Referenzieren von Items": [[325, "referenzieren-von-items"]], "Bedingungsgruppen": [[325, "bedingungsgruppen"]], "Wertevergleich": [[325, "wertevergleich"]], "Templates f\u00fcr Bedingungsabfragen": [[325, "templates-fur-bedingungsabfragen"]], "Bedingungen mittels eval-Ausdr\u00fccken": [[325, "bedingungen-mittels-eval-ausdrucken"]], "Bedingungslisten": [[325, "bedingungslisten"]], "Vergleichsfunktion": [[325, "vergleichsfunktion"]], "\u201eBesondere\u201c Bedingungen": [[325, "besondere-bedingungen"]], "Beispiel zu Aktionen": [[326, "beispiel-zu-aktionen"], [332, "beispiel-zu-aktionen"]], "Aufbau von Aktionen": [[326, "aufbau-von-aktionen"]], "Auszuf\u00fchrende Aktionsart": [[326, "auszufuhrende-aktionsart"]], "Zus\u00e4tzliche Parameter": [[326, "zusatzliche-parameter"]], "Templates f\u00fcr Aktionen": [[326, "templates-fur-aktionen"]], "Ausf\u00fchrungszeitpunkt": [[327, "ausfuhrungszeitpunkt"]], "Aktionsausf\u00fchrung": [[327, "aktionsausfuhrung"]], "Items zum Pr\u00fcfen": [[328, "items-zum-prufen"]], "Trigger": [[328, "trigger"]], "Default-Konfiguration": [[328, "default-konfiguration"]], "Automatisierung Raffstore 1": [[328, "automatisierung-raffstore-1"]], "Testen der State Engine": [[328, "testen-der-state-engine"]], "Automatisierung Raffstore 2": [[328, "automatisierung-raffstore-2"]], "Settings f\u00fcr Itemwerte": [[328, "settings-fur-itemwerte"]], "Zustand-Templates": [[329, "zustand-templates"]], "general": [[329, "general"]], "lock": [[329, "lock"]], "suspend": [[329, "suspend"]], "suspend_dynamic": [[329, "suspend-dynamic"]], "release": [[329, "release"]], "standard": [[329, "standard"]], "Pluginspezifische Templates": [[329, "pluginspezifische-templates"]], "Funktionen und Variablen": [[330, "funktionen-und-variablen"]], "Vordefinierte Funktionen": [[330, "vordefinierte-funktionen"]], "Besondere Zust\u00e4nde": [[331, "besondere-zustande"]], "Sperren": [[331, "sperren"]], "\u201eSperr\u201c-Item": [[331, "sperr-item"]], "Der Sperr-Zustand": [[331, "der-sperr-zustand"]], "Aussetzen": [[331, "aussetzen"]], "Das \u201eSuspend\u201c-Item": [[331, "das-suspend-item"]], "Das \u201eManuell\u201c-Item": [[331, "das-manuell-item"]], "Der Suspend-Zustand": [[331, "der-suspend-zustand"]], "Dauer der zeitweisen Deaktivierung": [[331, "dauer-der-zeitweisen-deaktivierung"]], "Aktionen - einzeln": [[332, "aktionen-einzeln"]], "Definition der Aktion": [[332, "definition-der-aktion"]], "Weitere Einstellungen": [[332, "weitere-einstellungen"]], "Sonstiges": [[333, "sonstiges"]], "Einbinden anderer Zust\u00e4nde": [[333, "einbinden-anderer-zustande"]], "Neukonfiguration der Hierarchie": [[333, "neukonfiguration-der-hierarchie"]], "Aufl\u00f6sen von Zust\u00e4nden": [[333, "auflosen-von-zustanden"]], "Zustandsnamen": [[333, "zustandsnamen"]], "Systemair": [[334, "systemair"]], "Workarounds": [[334, "workarounds"]], "TankerKoenig": [[335, "tankerkoenig"]], "Example (for cheapest station and for one station that is requested via its id):": [[335, "example-for-cheapest-station-and-for-one-station-that-is-requested-via-its-id"]], "get_petrol_stations(lat, lon, type, sort, rad):": [[335, "get-petrol-stations-lat-lon-type-sort-rad"]], "get_petrol_station_detail_full(id)": [[335, "get-petrol-station-detail-full-id"]], "Fill items with cheapest petrol station data": [[335, "fill-items-with-cheapest-petrol-station-data"]], "Get data of one petrol station": [[335, "get-data-of-one-petrol-station"]], "Get prices of one petrol stations": [[335, "get-prices-of-one-petrol-stations"]], "tankerkoenig": [[336, "tankerkoenig"]], "Bekannte tasmota-Attribute": [[337, "bekannte-tasmota-attribute"]], "Tasmota Items": [[337, "tasmota-items"]], "Tasmota Devices": [[337, "tasmota-devices"]], "Tasmota Details": [[337, "tasmota-details"]], "Tasmota Zigbee Devices": [[337, "tasmota-zigbee-devices"]], "Tasmota Maintenance": [[337, "tasmota-maintenance"]], "telegram": [[338, "telegram"]], "Abh\u00e4ngigkeiten": [[338, "abhangigkeiten"]], "Konfiguration von Telegram": [[338, "konfiguration-von-telegram"]], "telegram_chat_ids": [[338, "telegram-chat-ids"], [512, "telegram-chat-ids"]], "telegram_message": [[338, "telegram-message"], [512, "telegram-message"]], "Einfaches Beispiel": [[338, "einfaches-beispiel"], [338, "id1"], [338, "id2"]], "Beispiel mit Platzhaltern": [[338, "beispiel-mit-platzhaltern"]], "telegram_condition": [[338, "telegram-condition"], [512, "telegram-condition"]], "telegram_value_match_regex": [[338, "telegram-value-match-regex"], [512, "telegram-value-match-regex"]], "telegram_message_chat_id": [[338, "telegram-message-chat-id"], [512, "telegram-message-chat-id"]], "telegram_info": [[338, "telegram-info"], [512, "telegram-info"]], "telegram_text": [[338, "telegram-text"], [512, "telegram-text"]], "telegram_control": [[338, "telegram-control"], [512, "telegram-control"]], "msg_broadcast": [[338, "msg-broadcast"]], "photo_broadcast": [[338, "photo-broadcast"]], "Menugest\u00fctzte Interaktion zwischen Telegram und SmartHomeNG": [[338, "menugestutzte-interaktion-zwischen-telegram-und-smarthomeng"]], "text_display": [[339, "text-display"], [340, "text-display"]], "Nachrichtensenke": [[339, "nachrichtensenke"], [340, "nachrichtensenke"]], "\u201eFenster auf\u201c Nachrichtenquelle": [[339, "fenster-auf-nachrichtenquelle"], [340, "fenster-auf-nachrichtenquelle"]], "Au\u00dfentemperatur abh\u00e4ngig von Fensterstatus:": [[339, "auszentemperatur-abhangig-von-fensterstatus"], [340, "auszentemperatur-abhangig-von-fensterstatus"]], "AB Pr\u00fcfen Nachrichtenquelle:": [[339, "ab-prufen-nachrichtenquelle"], [340, "ab-prufen-nachrichtenquelle"]], "Anrufer-Meldungen": [[339, "anrufer-meldungen"], [340, "anrufer-meldungen"]], "THZ": [[341, "thz"]], "Release history": [[341, "release-history"]], "Timmy Plugin for SmarthomeNG": [[342, "timmy-plugin-for-smarthomeng"]], "timmy": [[343, "timmy"]], "Traffic": [[344, "traffic"]], "get_route_info(origin, destination, alternatives, mode):": [[344, "get-route-info-origin-destination-alternatives-mode"]], "unifi": [[346, "unifi"]], "uzsu": [[347, "uzsu"]], "Standard Einstellungen": [[347, "standard-einstellungen"]], "Experteneinstellungen": [[347, "experteneinstellungen"]], "Zeitserie": [[347, "zeitserie"]], "Interpolation": [[347, "interpolation"]], "Datenformat": [[347, "datenformat"]], "vacations": [[348, "vacations"]], "vicare": [[349, "vicare"]], "Reiter": [[349, "reiter"]], "viessmann": [[350, "viessmann"], [351, "viessmann"]], "1.2.2": [[351, "id1"]], "1.2.0": [[351, "id2"]], "viess_read": [[351, "viess-read"], [522, "viess-read"]], "viess_send": [[351, "viess-send"], [522, "viess-send"]], "viess_read_afterwrite": [[351, "viess-read-afterwrite"], [522, "viess-read-afterwrite"]], "viess_read_cycle": [[351, "viess-read-cycle"], [522, "viess-read-cycle"]], "viess_init": [[351, "viess-init"], [522, "viess-init"]], "viess_trigger": [[351, "viess-trigger"], [522, "viess-trigger"]], "viess_trigger_afterwrite": [[351, "viess-trigger-afterwrite"], [522, "viess-trigger-afterwrite"]], "viess_update": [[351, "viess-update"], [522, "viess-update"]], "viess_timer": [[351, "viess-timer"], [522, "viess-timer"]], "viess_ba_list": [[351, "viess-ba-list"], [522, "viess-ba-list"]], "update_all_read_items()": [[351, "update-all-read-items"], [522, "update-all-read-items"]], "read_addr(addr)": [[351, "read-addr-addr"], [522, "read-addr-addr"]], "read_temp_addr(addr, length, unit)": [[351, "read-temp-addr-addr-length-unit"], [522, "read-temp-addr-addr-length-unit"]], "write_addr(addr, value)": [[351, "write-addr-addr-value"], [522, "write-addr-addr-value"]], "Standalone-Modus": [[351, "standalone-modus"]], "Visualisation (smartVISU support)": [[352, "visualisation-smartvisu-support"]], "visu_dir": [[352, "visu-dir"]], "smartvisu_dir": [[352, "smartvisu-dir"], [496, "smartvisu-dir"], [523, "smartvisu-dir"]], "handle_widgets": [[352, "handle-widgets"], [496, "handle-widgets"], [523, "handle-widgets"]], "visu_acl": [[352, "visu-acl"], [355, "visu-acl"], [496, "visu-acl"], [524, "visu-acl"]], "sv_page": [[352, "sv-page"], [496, "sv-page"], [523, "sv-page"], [686, "sv-page"]], "sv_overview": [[352, "sv-overview"], [496, "sv-overview"], [523, "sv-overview"], [686, "sv-overview"]], "sv_img": [[352, "sv-img"], [496, "sv-img"], [523, "sv-img"], [686, "sv-img"]], "sv_nav_aside": [[352, "sv-nav-aside"], [496, "sv-nav-aside"], [523, "sv-nav-aside"], [686, "sv-nav-aside"]], "sv_nav_aside2": [[352, "sv-nav-aside2"], [496, "sv-nav-aside2"], [523, "sv-nav-aside2"], [686, "sv-nav-aside2"]], "sv_widget": [[352, "sv-widget"], [496, "sv-widget"], [523, "sv-widget"], [686, "sv-widget"]], "sv_widget2": [[352, "sv-widget2"], [496, "sv-widget2"], [523, "sv-widget2"], [686, "sv-widget2"]], "sv_item_type": [[352, "sv-item-type"], [496, "sv-item-type"], [523, "sv-item-type"], [686, "sv-item-type"]], "sv_heading_left": [[352, "sv-heading-left"], [496, "sv-heading-left"], [523, "sv-heading-left"], [686, "sv-heading-left"]], "sv_heading_center": [[352, "sv-heading-center"], [496, "sv-heading-center"], [523, "sv-heading-center"], [686, "sv-heading-center"]], "sv_heading_right": [[352, "sv-heading-right"], [496, "sv-heading-right"], [523, "sv-heading-right"], [686, "sv-heading-right"]], "visu_smartvisu": [[353, "visu-smartvisu"], [354, "visu-smartvisu"]], "Visualisation plugin (smartVISU support) - for developers": [[353, "visualisation-plugin-smartvisu-support-for-developers"]], "Files of the Plugin": [[353, "files-of-the-plugin"]], "__ init __.py": [[353, "init-py"]], "sv_widgets subdirectory": [[353, "sv-widgets-subdirectory"]], "tplNG subdirectory": [[353, "tplng-subdirectory"]], "Handling of smartVISU widgets": [[353, "handling-of-smartvisu-widgets"]], "Add a widget to a plugin": [[353, "add-a-widget-to-a-plugin"]], "Modifications to smartVISU made by the visu plugin": [[353, "modifications-to-smartvisu-made-by-the-visu-plugin"]], "Empfohlenes Vorgehen f\u00fcr manuell erstellte Seiten": [[354, "empfohlenes-vorgehen-fur-manuell-erstellte-seiten"]], "Visualisation (Websocket Protocol)": [[355, "visualisation-websocket-protocol"]], "ip": [[355, "ip"], [378, "ip"], [379, "ip"], [386, "ip"], [389, "ip"], [391, "ip"], [436, "ip"], [457, "ip"], [466, "ip"], [478, "ip"], [479, "ip"], [524, "ip"], [526, "ip"], [533, "ip"]], "port": [[355, "port"], [377, "port"], [379, "port"], [380, "port"], [382, "port"], [386, "port"], [391, "port"], [393, "port"], [400, "port"], [405, "port"], [406, "port"], [408, "port"], [409, "port"], [433, "port"], [434, "port"], [435, "port"], [440, "port"], [441, "port"], [442, "port"], [443, "port"], [444, "port"], [445, "port"], [449, "port"], [449, "id2"], [449, "id3"], [449, "id4"], [449, "id5"], [449, "id6"], [451, "port"], [452, "port"], [453, "port"], [457, "port"], [457, "id2"], [459, "port"], [461, "port"], [464, "port"], [467, "port"], [470, "port"], [475, "port"], [478, "port"], [488, "port"], [494, "port"], [495, "port"], [497, "port"], [498, "port"], [499, "port"], [507, "port"], [524, "port"]], "tls": [[355, "tls"], [444, "tls"], [445, "tls"], [524, "tls"]], "wsproto": [[355, "wsproto"], [524, "wsproto"]], "acl": [[355, "acl"], [505, "acl"], [524, "acl"]], "querydef": [[355, "querydef"], [524, "querydef"]], "url(url)": [[355, "url-url"]], "url(url, ip)": [[355, "url-url-ip"]], "visu_websocket": [[356, "visu-websocket"], [357, "visu-websocket"]], "Visualisation plugin (Websocket Protocol) - for developers": [[356, "visualisation-plugin-websocket-protocol-for-developers"]], "WebSocket Interface": [[356, "websocket-interface"], [357, "websocket-interface"]], "Requests sent from the Visu to SmartHomeNG": [[356, "requests-sent-from-the-visu-to-smarthomeng"], [357, "requests-sent-from-the-visu-to-smarthomeng"]], "Requests sent from SmartHomeNG to the Visu": [[356, "requests-sent-from-smarthomeng-to-the-visu"], [357, "requests-sent-from-smarthomeng-to-the-visu"]], "Informationen f\u00fcr Entwickler": [[357, "informationen-fur-entwickler"]], "Volkszaehler Plugin": [[358, "volkszaehler-plugin"]], "vz_uuid": [[358, "vz-uuid"], [525, "vz-uuid"]], "webpush": [[359, "webpush"]], "Urgency Parameter": [[359, "id1"]], "webservices": [[360, "webservices"]], "Beispiele und Nutzungshinweise": [[360, "beispiele-und-nutzungshinweise"]], "wettercom Plugin": [[361, "wettercom-plugin"]], "Example wettercom.py": [[361, "example-wettercom-py"]], "search(location)": [[361, "search-location"]], "forecast(city_code)": [[361, "forecast-city-code"]], "withings_health": [[362, "withings-health"]], "Vorbereitung": [[362, "vorbereitung"]], "wol": [[363, "wol"]], "wunderground": [[364, "wunderground"], [366, "wunderground"]], "Important Note": [[364, "important-note"]], "Wunderground": [[365, "wunderground"]], "Version 1.2.5": [[365, "version-1-2-5"]], "Change History": [[365, "change-history"]], "Changes Since version 1.2.4": [[365, "changes-since-version-1-2-4"]], "Changes Since version 1.2.2": [[365, "changes-since-version-1-2-2"]], "Changes Since version 1.2.1": [[365, "changes-since-version-1-2-1"]], "apikey": [[365, "apikey"], [422, "apikey"], [471, "apikey"], [471, "id2"], [472, "apikey"], [472, "id3"], [472, "id5"], [472, "id7"], [472, "id11"], [472, "id15"], [510, "apikey"], [516, "apikey"], [529, "apikey"], [532, "apikey"]], "language": [[365, "language"], [516, "language"], [532, "language"]], "location": [[365, "location"], [532, "location"]], "item_subtree": [[365, "item-subtree"], [532, "item-subtree"]], "instance": [[365, "instance"]], "cycle": [[365, "cycle"], [377, "cycle"], [382, "cycle"], [383, "cycle"], [388, "cycle"], [394, "cycle"], [396, "cycle"], [397, "cycle"], [405, "cycle"], [406, "cycle"], [414, "cycle"], [416, "cycle"], [423, "cycle"], [425, "cycle"], [431, "cycle"], [436, "cycle"], [443, "cycle"], [444, "cycle"], [448, "cycle"], [449, "cycle"], [452, "cycle"], [453, "cycle"], [459, "cycle"], [460, "cycle"], [461, "cycle"], [462, "cycle"], [468, "cycle"], [470, "cycle"], [475, "cycle"], [478, "cycle"], [479, "cycle"], [480, "cycle"], [481, "cycle"], [482, "cycle"], [483, "cycle"], [492, "cycle"], [493, "cycle"], [494, "cycle"], [498, "cycle"], [499, "cycle"], [500, "cycle"], [501, "cycle"], [503, "cycle"], [517, "cycle"], [520, "cycle"], [526, "cycle"], [530, "cycle"], [532, "cycle"], [570, "cycle"], [592, "cycle"]], "items configuration": [[365, "items-configuration"]], "wug_matchstring": [[365, "wug-matchstring"], [532, "wug-matchstring"]], "wug_datatype": [[365, "wug-datatype"], [532, "wug-datatype"]], "Example: items.yaml": [[365, "example-items-yaml"]], "Methods / Functions": [[365, "methods-functions"]], "xiaomi_vac": [[367, "xiaomi-vac"]], "XMPP": [[368, "xmpp"]], "Requirements/Description": [[368, "requirements-description"]], "XEP supported": [[368, "xep-supported"]], "Example for an action/logic file": [[368, "example-for-an-action-logic-file"]], "yamaha": [[369, "yamaha"]], "yamahayxc": [[370, "yamahayxc"]], "Anmerkungen": [[370, "anmerkungen"]], "Beispiel der Nutzung per CLI-Plugin": [[370, "beispiel-der-nutzung-per-cli-plugin"]], "zigbee2mqtt": [[371, "zigbee2mqtt"]], "Plugin \u201aalexa\u2018 Konfiguration": [[374, "plugin-alexa-konfiguration"]], "Parameter": [[374, "parameter"], [375, "parameter"], [376, "parameter"], [377, "parameter"], [378, "parameter"], [379, "parameter"], [380, "parameter"], [381, "parameter"], [382, "parameter"], [383, "parameter"], [384, "parameter"], [385, "parameter"], [386, "parameter"], [387, "parameter"], [388, "parameter"], [389, "parameter"], [390, "parameter"], [391, "parameter"], [392, "parameter"], [393, "parameter"], [394, "parameter"], [395, "parameter"], [396, "parameter"], [397, "parameter"], [398, "parameter"], [399, "parameter"], [400, "parameter"], [401, "parameter"], [402, "parameter"], [403, "parameter"], [405, "parameter"], [406, "parameter"], [407, "parameter"], [408, "parameter"], [409, "parameter"], [410, "parameter"], [411, "parameter"], [412, "parameter"], [413, "parameter"], [414, "parameter"], [415, "parameter"], [416, "parameter"], [417, "parameter"], [418, "parameter"], [419, "parameter"], [420, "parameter"], [421, "parameter"], [422, "parameter"], [423, "parameter"], [424, "parameter"], [425, "parameter"], [426, "parameter"], [427, "parameter"], [428, "parameter"], [429, "parameter"], [430, "parameter"], [431, "parameter"], [432, "parameter"], [433, "parameter"], [434, "parameter"], [435, "parameter"], [436, "parameter"], [437, "parameter"], [438, "parameter"], [439, "parameter"], [440, "parameter"], [441, "parameter"], [442, "parameter"], [443, "parameter"], [444, "parameter"], [445, "parameter"], [446, "parameter"], [447, "parameter"], [448, "parameter"], [449, "parameter"], [450, "parameter"], [451, "parameter"], [452, "parameter"], [453, "parameter"], [454, "parameter"], [455, "parameter"], [456, "parameter"], [457, "parameter"], [458, "parameter"], [459, "parameter"], [460, "parameter"], [461, "parameter"], [462, "parameter"], [463, "parameter"], [464, "parameter"], [465, "parameter"], [466, "parameter"], [467, "parameter"], [468, "parameter"], [469, "parameter"], [470, "parameter"], [471, "parameter"], [472, "parameter"], [473, "parameter"], [474, "parameter"], [475, "parameter"], [476, "parameter"], [477, "parameter"], [478, "parameter"], [479, "parameter"], [480, "parameter"], [481, "parameter"], [482, "parameter"], [483, "parameter"], [484, "parameter"], [485, "parameter"], [486, "parameter"], [487, "parameter"], [488, "parameter"], [489, "parameter"], [490, "parameter"], [491, "parameter"], [492, "parameter"], [493, "parameter"], [494, "parameter"], [495, "parameter"], [496, "parameter"], [497, "parameter"], [498, "parameter"], [499, "parameter"], [500, "parameter"], [501, "parameter"], [502, "parameter"], [503, "parameter"], [504, "parameter"], [505, "parameter"], [506, "parameter"], [507, "parameter"], [508, "parameter"], [509, "parameter"], [510, "parameter"], [511, "parameter"], [512, "parameter"], [513, "parameter"], [514, "parameter"], [515, "parameter"], [516, "parameter"], [517, "parameter"], [518, "parameter"], [519, "parameter"], [520, "parameter"], [521, "parameter"], [522, "parameter"], [523, "parameter"], [524, "parameter"], [525, "parameter"], [526, "parameter"], [527, "parameter"], [528, "parameter"], [529, "parameter"], [530, "parameter"], [531, "parameter"], [532, "parameter"], [533, "parameter"], [534, "parameter"], [535, "parameter"], [536, "parameter"], [537, "parameter"], [538, "parameter"]], "service_host": [[374, "service-host"]], "service_port": [[374, "service-port"], [375, "service-port"]], "Logik Parameter": [[374, "logik-parameter"], [375, "logik-parameter"], [376, "logik-parameter"], [377, "logik-parameter"], [378, "logik-parameter"], [379, "logik-parameter"], [380, "logik-parameter"], [381, "logik-parameter"], [382, "logik-parameter"], [383, "logik-parameter"], [384, "logik-parameter"], [385, "logik-parameter"], [386, "logik-parameter"], [387, "logik-parameter"], [388, "logik-parameter"], [389, "logik-parameter"], [390, "logik-parameter"], [391, "logik-parameter"], [392, "logik-parameter"], [393, "logik-parameter"], [394, "logik-parameter"], [395, "logik-parameter"], [396, "logik-parameter"], [397, "logik-parameter"], [398, "logik-parameter"], [399, "logik-parameter"], [400, "logik-parameter"], [401, "logik-parameter"], [402, "logik-parameter"], [403, "logik-parameter"], [405, "logik-parameter"], [406, "logik-parameter"], [407, "logik-parameter"], [408, "logik-parameter"], [409, "logik-parameter"], [410, "logik-parameter"], [411, "logik-parameter"], [412, "logik-parameter"], [413, "logik-parameter"], [414, "logik-parameter"], [415, "logik-parameter"], [416, "logik-parameter"], [417, "logik-parameter"], [418, "logik-parameter"], [419, "logik-parameter"], [420, "logik-parameter"], [421, "logik-parameter"], [422, "logik-parameter"], [423, "logik-parameter"], [424, "logik-parameter"], [425, "logik-parameter"], [426, "logik-parameter"], [427, "logik-parameter"], [428, "logik-parameter"], [429, "logik-parameter"], [430, "logik-parameter"], [431, "logik-parameter"], [432, "logik-parameter"], [433, "logik-parameter"], [434, "logik-parameter"], [435, "logik-parameter"], [436, "logik-parameter"], [437, "logik-parameter"], [438, "logik-parameter"], [439, "logik-parameter"], [440, "logik-parameter"], [441, "logik-parameter"], [442, "logik-parameter"], [443, "logik-parameter"], [444, "logik-parameter"], [445, "logik-parameter"], [446, "logik-parameter"], [447, "logik-parameter"], [448, "logik-parameter"], [449, "logik-parameter"], [450, "logik-parameter"], [451, "logik-parameter"], [452, "logik-parameter"], [453, "logik-parameter"], [454, "logik-parameter"], [455, "logik-parameter"], [456, "logik-parameter"], [457, "logik-parameter"], [458, "logik-parameter"], [459, "logik-parameter"], [460, "logik-parameter"], [461, "logik-parameter"], [462, "logik-parameter"], [463, "logik-parameter"], [464, "logik-parameter"], [465, "logik-parameter"], [466, "logik-parameter"], [467, "logik-parameter"], [468, "logik-parameter"], [469, "logik-parameter"], [470, "logik-parameter"], [471, "logik-parameter"], [472, "logik-parameter"], [473, "logik-parameter"], [474, "logik-parameter"], [475, "logik-parameter"], [476, "logik-parameter"], [477, "logik-parameter"], [478, "logik-parameter"], [479, "logik-parameter"], [480, "logik-parameter"], [481, "logik-parameter"], [482, "logik-parameter"], [483, "logik-parameter"], [484, "logik-parameter"], [485, "logik-parameter"], [486, "logik-parameter"], [487, "logik-parameter"], [488, "logik-parameter"], [489, "logik-parameter"], [490, "logik-parameter"], [491, "logik-parameter"], [492, "logik-parameter"], [493, "logik-parameter"], [494, "logik-parameter"], [495, "logik-parameter"], [496, "logik-parameter"], [497, "logik-parameter"], [498, "logik-parameter"], [499, "logik-parameter"], [500, "logik-parameter"], [501, "logik-parameter"], [502, "logik-parameter"], [503, "logik-parameter"], [504, "logik-parameter"], [505, "logik-parameter"], [506, "logik-parameter"], [507, "logik-parameter"], [508, "logik-parameter"], [509, "logik-parameter"], [510, "logik-parameter"], [511, "logik-parameter"], [512, "logik-parameter"], [513, "logik-parameter"], [514, "logik-parameter"], [515, "logik-parameter"], [516, "logik-parameter"], [517, "logik-parameter"], [518, "logik-parameter"], [519, "logik-parameter"], [520, "logik-parameter"], [521, "logik-parameter"], [522, "logik-parameter"], [523, "logik-parameter"], [524, "logik-parameter"], [525, "logik-parameter"], [526, "logik-parameter"], [527, "logik-parameter"], [528, "logik-parameter"], [529, "logik-parameter"], [530, "logik-parameter"], [531, "logik-parameter"], [532, "logik-parameter"], [533, "logik-parameter"], [534, "logik-parameter"], [535, "logik-parameter"], [536, "logik-parameter"], [537, "logik-parameter"], [538, "logik-parameter"]], "Plugin Functions": [[374, "plugin-functions"], [375, "plugin-functions"], [376, "plugin-functions"], [377, "plugin-functions"], [378, "plugin-functions"], [379, "plugin-functions"], [380, "plugin-functions"], [381, "plugin-functions"], [382, "plugin-functions"], [383, "plugin-functions"], [384, "plugin-functions"], [385, "plugin-functions"], [386, "plugin-functions"], [387, "plugin-functions"], [388, "plugin-functions"], [389, "plugin-functions"], [390, "plugin-functions"], [391, "plugin-functions"], [392, "plugin-functions"], [393, "plugin-functions"], [394, "plugin-functions"], [395, "plugin-functions"], [396, "plugin-functions"], [397, "plugin-functions"], [398, "plugin-functions"], [399, "plugin-functions"], [400, "plugin-functions"], [401, "plugin-functions"], [402, "plugin-functions"], [403, "plugin-functions"], [405, "plugin-functions"], [406, "plugin-functions"], [407, "plugin-functions"], [408, "plugin-functions"], [409, "plugin-functions"], [410, "plugin-functions"], [411, "plugin-functions"], [412, "plugin-functions"], [413, "plugin-functions"], [414, "plugin-functions"], [415, "plugin-functions"], [416, "plugin-functions"], [417, "plugin-functions"], [418, "plugin-functions"], [419, "plugin-functions"], [420, "plugin-functions"], [421, "plugin-functions"], [422, "plugin-functions"], [423, "plugin-functions"], [424, "plugin-functions"], [425, "plugin-functions"], [426, "plugin-functions"], [427, "plugin-functions"], [428, "plugin-functions"], [429, "plugin-functions"], [430, "plugin-functions"], [431, "plugin-functions"], [432, "plugin-functions"], [433, "plugin-functions"], [434, "plugin-functions"], [435, "plugin-functions"], [436, "plugin-functions"], [437, "plugin-functions"], [438, "plugin-functions"], [439, "plugin-functions"], [440, "plugin-functions"], [441, "plugin-functions"], [442, "plugin-functions"], [443, "plugin-functions"], [444, "plugin-functions"], [445, "plugin-functions"], [446, "plugin-functions"], [447, "plugin-functions"], [448, "plugin-functions"], [449, "plugin-functions"], [450, "plugin-functions"], [451, "plugin-functions"], [452, "plugin-functions"], [453, "plugin-functions"], [454, "plugin-functions"], [455, "plugin-functions"], [456, "plugin-functions"], [457, "plugin-functions"], [458, "plugin-functions"], [459, "plugin-functions"], [460, "plugin-functions"], [461, "plugin-functions"], [462, "plugin-functions"], [463, "plugin-functions"], [464, "plugin-functions"], [465, "plugin-functions"], [466, "plugin-functions"], [467, "plugin-functions"], [468, "plugin-functions"], [469, "plugin-functions"], [470, "plugin-functions"], [471, "plugin-functions"], [472, "plugin-functions"], [473, "plugin-functions"], [474, "plugin-functions"], [475, "plugin-functions"], [476, "plugin-functions"], [477, "plugin-functions"], [478, "plugin-functions"], [479, "plugin-functions"], [480, "plugin-functions"], [481, "plugin-functions"], [482, "plugin-functions"], [483, "plugin-functions"], [484, "plugin-functions"], [485, "plugin-functions"], [486, "plugin-functions"], [487, "plugin-functions"], [488, "plugin-functions"], [489, "plugin-functions"], [490, "plugin-functions"], [491, "plugin-functions"], [492, "plugin-functions"], [493, "plugin-functions"], [494, "plugin-functions"], [495, "plugin-functions"], [496, "plugin-functions"], [497, "plugin-functions"], [498, "plugin-functions"], [499, "plugin-functions"], [500, "plugin-functions"], [501, "plugin-functions"], [502, "plugin-functions"], [503, "plugin-functions"], [504, "plugin-functions"], [505, "plugin-functions"], [506, "plugin-functions"], [507, "plugin-functions"], [508, "plugin-functions"], [509, "plugin-functions"], [510, "plugin-functions"], [511, "plugin-functions"], [512, "plugin-functions"], [513, "plugin-functions"], [514, "plugin-functions"], [515, "plugin-functions"], [516, "plugin-functions"], [517, "plugin-functions"], [518, "plugin-functions"], [519, "plugin-functions"], [520, "plugin-functions"], [521, "plugin-functions"], [522, "plugin-functions"], [523, "plugin-functions"], [524, "plugin-functions"], [525, "plugin-functions"], [526, "plugin-functions"], [527, "plugin-functions"], [528, "plugin-functions"], [529, "plugin-functions"], [530, "plugin-functions"], [531, "plugin-functions"], [532, "plugin-functions"], [533, "plugin-functions"], [534, "plugin-functions"], [535, "plugin-functions"], [536, "plugin-functions"], [537, "plugin-functions"], [538, "plugin-functions"]], "Plugin \u201aalexa4p3\u2018 Konfiguration": [[375, "plugin-alexa4p3-konfiguration"]], "alexa_actions": [[375, "alexa-actions"]], "alexa_alias": [[375, "alexa-alias"]], "alexa_auth_cred": [[375, "alexa-auth-cred"]], "alexa_camera_imageUri": [[375, "alexa-camera-imageuri"]], "alexa_color_temp_delta": [[375, "alexa-color-temp-delta"]], "alexa_color_value_type": [[375, "alexa-color-value-type"]], "alexa_csc_uri": [[375, "alexa-csc-uri"]], "alexa_description": [[375, "alexa-description"]], "alexa_device": [[375, "alexa-device"]], "alexa_icon": [[375, "alexa-icon"]], "alexa_item_range": [[375, "alexa-item-range"]], "alexa_item_turn_on": [[375, "alexa-item-turn-on"]], "alexa_name": [[375, "alexa-name"]], "alexa_proactivelyReported": [[375, "alexa-proactivelyreported"]], "alexa_range_delta": [[375, "alexa-range-delta"]], "alexa_retrievable": [[375, "alexa-retrievable"]], "alexa_stream_(1)1(2)(3)": [[375, "alexa-stream-1-1-2-3"]], "alexa_thermo_config": [[375, "alexa-thermo-config"]], "alexa_types": [[375, "alexa-types"]], "Plugin \u201aalexarc4shng\u2018 Konfiguration": [[376, "plugin-alexarc4shng-konfiguration"]], "alexa_credentials": [[376, "alexa-credentials"]], "cookiefile": [[376, "cookiefile"]], "host": [[376, "host"], [377, "host"], [380, "host"], [382, "host"], [383, "host"], [388, "host"], [393, "host"], [400, "host"], [405, "host"], [406, "host"], [408, "host"], [417, "host"], [427, "host"], [428, "host"], [432, "host"], [433, "host"], [434, "host"], [435, "host"], [440, "host"], [441, "host"], [442, "host"], [443, "host"], [444, "host"], [445, "host"], [451, "host"], [452, "host"], [453, "host"], [457, "host"], [459, "host"], [461, "host"], [464, "host"], [467, "host"], [470, "host"], [475, "host"], [488, "host"], [494, "host"], [495, "host"], [497, "host"], [498, "host"], [499, "host"], [500, "host"], [503, "host"], [507, "host"], [525, "host"]], "item_2_enable_alexa_rc": [[376, "item-2-enable-alexa-rc"]], "login_update_cycle": [[376, "login-update-cycle"]], "mfa_secret": [[376, "mfa-secret"]], "get_last_alexa()": [[376, "get-last-alexa"]], "get_list(type)": [[376, "get-list-type"]], "type": [[376, "type"], [508, "type"], [510, "type"], [517, "type"], [579, "type"]], "send_cmd(dvName, cmdName, mValue)": [[376, "send-cmd-dvname-cmdname-mvalue"]], "dvName": [[376, "dvname"]], "cmdName": [[376, "cmdname"]], "mValue": [[376, "mvalue"]], "Plugin \u201aapcups\u2018 Konfiguration": [[377, "plugin-apcups-konfiguration"]], "Plugin \u201aappletv\u2018 Konfiguration": [[378, "plugin-appletv-konfiguration"]], "scan_timeout": [[378, "scan-timeout"]], "is_on()": [[378, "is-on"]], "is_playing()": [[378, "is-playing"]], "pause()": [[378, "pause"], [399, "pause"]], "play()": [[378, "play"]], "Plugin \u201aartnet\u2018 Konfiguration": [[379, "plugin-artnet-konfiguration"]], "artnet_net": [[379, "artnet-net"]], "artnet_subnet": [[379, "artnet-subnet"]], "artnet_universe": [[379, "artnet-universe"]], "min_channels": [[379, "min-channels"]], "update_cycle": [[379, "update-cycle"], [401, "update-cycle"], [415, "update-cycle"], [424, "update-cycle"], [437, "update-cycle"], [438, "update-cycle"], [439, "update-cycle"], [509, "update-cycle"]], "artnet_address": [[379, "artnet-address"]], "send_frame(values)": [[379, "send-frame-values"]], "values": [[379, "values"], [379, "id2"]], "send_frame_starting_at(adr, values)": [[379, "send-frame-starting-at-adr-values"]], "adr": [[379, "adr"], [379, "id3"]], "send_single_value(adr, value)": [[379, "send-single-value-adr-value"]], "Plugin \u201aasterisk\u2018 Konfiguration": [[380, "plugin-asterisk-konfiguration"]], "password": [[380, "password"], [382, "password"], [383, "password"], [390, "password"], [399, "password"], [406, "password"], [411, "password"], [417, "password"], [421, "password"], [424, "password"], [429, "password"], [444, "password"], [445, "password"], [449, "password"], [451, "password"], [465, "password"], [478, "password"], [479, "password"], [492, "password"], [534, "password"]], "username": [[380, "username"], [382, "username"], [383, "username"], [406, "username"], [417, "username"], [429, "username"], [444, "username"], [445, "username"], [449, "username"], [451, "username"], [465, "username"]], "call(source, dest, context, callerid)": [[380, "call-source-dest-context-callerid"]], "source": [[380, "source"]], "dest": [[380, "dest"]], "context": [[380, "context"], [380, "id3"]], "callerid": [[380, "callerid"]], "key": [[380, "key"], [380, "id2"], [388, "key"], [394, "key"], [433, "key"], [462, "key"], [468, "key"]], "device": [[380, "device"], [392, "device"], [399, "device"], [403, "device"], [421, "device"], [422, "device"], [473, "device"], [497, "device"], [498, "device"], [499, "device"], [538, "device"]], "mailbox_count(mailbox, context)": [[380, "mailbox-count-mailbox-context"]], "mailbox": [[380, "mailbox"]], "Plugin \u201aavdevice\u2018 Konfiguration": [[381, "plugin-avdevice-konfiguration"]], "autoreconnect": [[381, "autoreconnect"], [400, "autoreconnect"], [408, "autoreconnect"], [435, "autoreconnect"], [440, "autoreconnect"], [441, "autoreconnect"], [464, "autoreconnect"], [467, "autoreconnect"], [507, "autoreconnect"]], "depend0_power0": [[381, "depend0-power0"]], "depend0_volume0": [[381, "depend0-volume0"]], "dependson_item": [[381, "dependson-item"]], "dependson_value": [[381, "dependson-value"]], "errorresponse": [[381, "errorresponse"]], "forcebuffer": [[381, "forcebuffer"]], "ignoreresponse": [[381, "ignoreresponse"]], "inputignoredisplay": [[381, "inputignoredisplay"]], "lineending_response": [[381, "lineending-response"]], "lineending_send": [[381, "lineending-send"]], "model": [[381, "model"], [400, "model"], [408, "model"], [464, "model"], [467, "model"]], "reconnectretries": [[381, "reconnectretries"]], "resendwait": [[381, "resendwait"]], "resetonerror": [[381, "resetonerror"]], "responsebuffer": [[381, "responsebuffer"]], "rs232_baudrate": [[381, "rs232-baudrate"]], "rs232_port": [[381, "rs232-port"]], "rs232_timeout": [[381, "rs232-timeout"]], "secondstokeep": [[381, "secondstokeep"]], "sendretries": [[381, "sendretries"]], "statusquery": [[381, "statusquery"]], "tcp_ip": [[381, "tcp-ip"]], "tcp_port": [[381, "tcp-port"]], "tcp_timeout": [[381, "tcp-timeout"]], "update_exclude": [[381, "update-exclude"]], "avdevice_depend": [[381, "avdevice-depend"]], "avdevice_init": [[381, "avdevice-init"]], "avdevice_speakers": [[381, "avdevice-speakers"]], "avdevice_zone0": [[381, "avdevice-zone0"]], "avdevice_zone0_depend": [[381, "avdevice-zone0-depend"]], "avdevice_zone0_init": [[381, "avdevice-zone0-init"]], "avdevice_zone0_speakers": [[381, "avdevice-zone0-speakers"]], "avdevice_zone1": [[381, "avdevice-zone1"]], "avdevice_zone1_depend": [[381, "avdevice-zone1-depend"]], "avdevice_zone1_init": [[381, "avdevice-zone1-init"]], "avdevice_zone1_speakers": [[381, "avdevice-zone1-speakers"]], "avdevice_zone2": [[381, "avdevice-zone2"]], "avdevice_zone2_depend": [[381, "avdevice-zone2-depend"]], "avdevice_zone2_init": [[381, "avdevice-zone2-init"]], "avdevice_zone2_speakers": [[381, "avdevice-zone2-speakers"]], "avdevice_zone3": [[381, "avdevice-zone3"]], "avdevice_zone3_depend": [[381, "avdevice-zone3-depend"]], "avdevice_zone3_init": [[381, "avdevice-zone3-init"]], "avdevice_zone3_speakers": [[381, "avdevice-zone3-speakers"]], "avdevice_zone4": [[381, "avdevice-zone4"]], "avdevice_zone4_depend": [[381, "avdevice-zone4-depend"]], "avdevice_zone4_init": [[381, "avdevice-zone4-init"]], "avdevice_zone4_speakers": [[381, "avdevice-zone4-speakers"]], "Plugin \u201aavm\u2018 Konfiguration": [[382, "plugin-avm-konfiguration"]], "avm_home_automation": [[382, "avm-home-automation"]], "call_monitor": [[382, "call-monitor"]], "call_monitor_incoming_filter": [[382, "call-monitor-incoming-filter"]], "log_entry_count": [[382, "log-entry-count"]], "ssl": [[382, "ssl"], [406, "ssl"], [429, "ssl"]], "tr064_item_blacklist": [[382, "tr064-item-blacklist"]], "verify": [[382, "verify"], [406, "verify"], [423, "verify"], [460, "verify"]], "avm_ain": [[382, "avm-ain"], [383, "avm-ain"]], "avm_data_cycle": [[382, "avm-data-cycle"]], "avm_data_type": [[382, "avm-data-type"]], "avm_deflection_index": [[382, "avm-deflection-index"]], "avm_incoming_allowed": [[382, "avm-incoming-allowed"]], "avm_mac": [[382, "avm-mac"]], "avm_read_after_write": [[382, "avm-read-after-write"]], "avm_tam_index": [[382, "avm-tam-index"]], "avm_target_number": [[382, "avm-target-number"]], "avm_wlan_index": [[382, "avm-wlan-index"]], "cancel_call()": [[382, "cancel-call"]], "get_call_origin()": [[382, "get-call-origin"]], "get_calllist(filter_incoming= \u201a\u2018, phonebook_id=0)": [[382, "get-calllist-filter-incoming-phonebook-id-0"]], "filter_incoming": [[382, "filter-incoming"]], "phonebook_id": [[382, "phonebook-id"], [382, "id2"], [382, "id5"]], "get_contact_name_by_phone_number(phone_number, phonebook_id=0)": [[382, "get-contact-name-by-phone-number-phone-number-phonebook-id-0"]], "phone_number": [[382, "phone-number"], [382, "id7"]], "get_deflection(deflection_id)": [[382, "get-deflection-deflection-id"]], "deflection_id": [[382, "deflection-id"], [382, "id6"]], "get_deflections()": [[382, "get-deflections"]], "get_device_log_from_lua()": [[382, "get-device-log-from-lua"]], "get_device_log_from_tr064()": [[382, "get-device-log-from-tr064"]], "get_host_details(index)": [[382, "get-host-details-index"]], "index": [[382, "index"], [382, "id4"], [479, "index"], [479, "id5"]], "get_hosts(only_active)": [[382, "get-hosts-only-active"]], "only_active": [[382, "only-active"], [382, "id3"]], "get_hosts_dict(only_active)": [[382, "get-hosts-dict-only-active"]], "get_hosts_list(identifier_list, filter_dict)": [[382, "get-hosts-list-identifier-list-filter-dict"]], "identifier_list": [[382, "identifier-list"]], "filter_dict": [[382, "filter-dict"]], "get_mesh_topology()": [[382, "get-mesh-topology"]], "get_number_of_deflections()": [[382, "get-number-of-deflections"]], "get_phone_name(index)": [[382, "get-phone-name-index"]], "get_phone_numbers_by_name(name, phonebook_id=0)": [[382, "get-phone-numbers-by-name-name-phonebook-id-0"]], "name": [[382, "name"], [396, "name"], [446, "name"], [463, "name"], [472, "name"], [479, "name"], [479, "id4"], [512, "name"]], "is_host_active(mac_address)": [[382, "is-host-active-mac-address"]], "mac_address": [[382, "mac-address"], [382, "id8"]], "reboot()": [[382, "reboot"]], "reconnect()": [[382, "reconnect"]], "set_call_origin(phone_name)": [[382, "set-call-origin-phone-name"]], "phone_name": [[382, "phone-name"]], "set_deflection_enable(deflection_id, enable)": [[382, "set-deflection-enable-deflection-id-enable"]], "enable": [[382, "enable"]], "start_call(phone_number)": [[382, "start-call-phone-number"]], "Plugin \u201aavm_smarthome\u2018 Konfiguration": [[383, "plugin-avm-smarthome-konfiguration"]], "avm_smarthome_data": [[383, "avm-smarthome-data"]], "Plugin \u201abeolink\u2018 Konfiguration": [[384, "plugin-beolink-konfiguration"]], "rescan_on_start": [[384, "rescan-on-start"]], "scan_fromip": [[384, "scan-fromip"]], "scan_toip": [[384, "scan-toip"]], "beo_command": [[384, "beo-command"]], "beo_id": [[384, "beo-id"]], "beo_status": [[384, "beo-status"]], "Plugin \u201ablockly\u2018 Konfiguration": [[385, "plugin-blockly-konfiguration"]], "section_prefix": [[385, "section-prefix"]], "Plugin \u201abose_soundtouch\u2018 Konfiguration": [[386, "plugin-bose-soundtouch-konfiguration"]], "cycle_time": [[386, "cycle-time"], [486, "cycle-time"]], "bose_soundtouch_action": [[386, "bose-soundtouch-action"]], "Plugin \u201absblan\u2018 Konfiguration": [[387, "plugin-bsblan-konfiguration"]], "bsblan_ip": [[387, "bsblan-ip"]], "Plugin \u201abuderus\u2018 Konfiguration": [[388, "plugin-buderus-konfiguration"]], "km_id": [[388, "km-id"]], "Plugin \u201abyd_bat\u2018 Konfiguration": [[389, "plugin-byd-bat-konfiguration"]], "diag_cycle": [[389, "diag-cycle"]], "imgpath": [[389, "imgpath"]], "log_age": [[389, "log-age"]], "log_data": [[389, "log-data"]], "byd_para": [[389, "byd-para"]], "byd_root": [[389, "byd-root"]], "Plugin \u201acasambi\u2018 Konfiguration": [[390, "plugin-casambi-konfiguration"]], "api_key": [[390, "api-key"], [430, "api-key"]], "email": [[390, "email"], [411, "email"]], "casambi_id": [[390, "casambi-id"]], "casambi_rx_key": [[390, "casambi-rx-key"]], "casambi_tx_key": [[390, "casambi-tx-key"]], "Plugin \u201acli\u2018 Konfiguration": [[391, "plugin-cli-konfiguration"]], "hashed_password": [[391, "hashed-password"]], "update": [[391, "update"]], "add_command(command, function, group, usage)": [[391, "add-command-command-function-group-usage"]], "function": [[391, "function"], [506, "function"]], "group": [[391, "group"], [398, "group"], [430, "group"], [527, "group"]], "usage": [[391, "usage"]], "remove_command(command)": [[391, "remove-command-command"]], "Plugin \u201aco2meter\u2018 Konfiguration": [[392, "plugin-co2meter-konfiguration"]], "time_sleep": [[392, "time-sleep"]], "Plugin \u201acomfoair\u2018 Konfiguration": [[393, "plugin-comfoair-konfiguration"]], "kwltype": [[393, "kwltype"]], "serialport": [[393, "serialport"], [400, "serialport"], [401, "serialport"], [402, "serialport"], [407, "serialport"], [408, "serialport"], [439, "serialport"], [464, "serialport"], [467, "serialport"], [497, "serialport"], [498, "serialport"], [499, "serialport"], [509, "serialport"], [522, "serialport"]], "Plugin \u201adarksky\u2018 Konfiguration": [[394, "plugin-darksky-konfiguration"]], "lang": [[394, "lang"], [462, "lang"], [468, "lang"]], "latitude": [[394, "latitude"], [462, "latitude"], [468, "latitude"], [502, "latitude"]], "longitude": [[394, "longitude"], [462, "longitude"], [468, "longitude"], [502, "longitude"]], "units": [[394, "units"], [462, "units"], [468, "units"]], "ds_matchstring": [[394, "ds-matchstring"]], "map_icon(icon)": [[394, "map-icon-icon"], [468, "map-icon-icon"]], "icon": [[394, "icon"], [430, "icon"], [468, "icon"], [527, "icon"]], "Plugin \u201adashbutton\u2018 Konfiguration": [[395, "plugin-dashbutton-konfiguration"]], "dashbutton_mac": [[395, "dashbutton-mac"]], "dashbutton_mode": [[395, "dashbutton-mode"]], "dashbutton_reset": [[395, "dashbutton-reset"]], "dashbutton_value": [[395, "dashbutton-value"]], "Plugin \u201adatabase\u2018 Konfiguration": [[396, "plugin-database-konfiguration"]], "connect": [[396, "connect"]], "copy_database": [[396, "copy-database"]], "copy_database_name": [[396, "copy-database-name"]], "count_logentries": [[396, "count-logentries"]], "default_maxage": [[396, "default-maxage"]], "driver": [[396, "driver"]], "max_delete_logentries": [[396, "max-delete-logentries"]], "precision": [[396, "precision"]], "prefix": [[396, "prefix"]], "removeold_cycle": [[396, "removeold-cycle"]], "database_maxage": [[396, "database-maxage"]], "db()": [[396, "db"]], "deleteItem(id)": [[396, "deleteitem-id"]], "id": [[396, "id"], [396, "id2"], [396, "id3"], [396, "id12"], [396, "id16"], [396, "id19"], [396, "id21"], [396, "id29"], [396, "id36"], [510, "id"], [510, "id2"]], "deleteLog(id, time, time_start, time_end, changed, changed_start, changed_end, cur)": [[396, "deletelog-id-time-time-start-time-end-changed-changed-start-changed-end-cur"]], "time": [[396, "time"], [396, "id4"], [396, "id13"], [396, "id20"], [396, "id22"], [396, "id30"], [396, "id37"]], "time_start": [[396, "time-start"], [396, "id5"], [396, "id23"]], "time_end": [[396, "time-end"], [396, "id6"], [396, "id24"]], "changed": [[396, "changed"], [396, "id7"], [396, "id14"], [396, "id25"], [396, "id34"], [396, "id41"]], "changed_start": [[396, "changed-start"], [396, "id8"], [396, "id26"]], "changed_end": [[396, "changed-end"], [396, "id9"], [396, "id27"]], "cur": [[396, "cur"], [396, "id10"], [396, "id11"], [396, "id15"], [396, "id17"], [396, "id18"], [396, "id28"], [396, "id35"], [396, "id42"]], "dump(dumpfile, id, time, time_start, time_end, changed, changed_start, changed_end, cur)": [[396, "dump-dumpfile-id-time-time-start-time-end-changed-changed-start-changed-end-cur"]], "dumpfile": [[396, "dumpfile"], [506, "dumpfile"]], "id(item)": [[396, "id-item"]], "insertItem(name, cur)": [[396, "insertitem-name-cur"]], "insertLog(id, time, duration, val, it, changed, cur)": [[396, "insertlog-id-time-duration-val-it-changed-cur"]], "duration": [[396, "duration"], [396, "id31"], [396, "id38"], [479, "duration"]], "val": [[396, "val"], [396, "id32"], [396, "id39"]], "it": [[396, "it"], [396, "id33"], [396, "id40"]], "readItem(id, cur)": [[396, "readitem-id-cur"]], "readItems(cur)": [[396, "readitems-cur"]], "readLog(id, time)": [[396, "readlog-id-time"]], "readLogs(id, time, time_start, time_end, changed, changed_start, changed_end, cur)": [[396, "readlogs-id-time-time-start-time-end-changed-changed-start-changed-end-cur"]], "updateItem(id, time, duration, val, it, changed, cur)": [[396, "updateitem-id-time-duration-val-it-changed-cur"]], "updateLog(id, time, duration, val, it, changed, cur)": [[396, "updatelog-id-time-duration-val-it-changed-cur"]], "Plugin \u201adatalog\u2018 Konfiguration": [[397, "plugin-datalog-konfiguration"]], "filepatterns": [[397, "filepatterns"]], "logpatterns": [[397, "logpatterns"]], "path": [[397, "path"], [506, "path"]], "Plugin \u201adb_addon\u2018 Konfiguration": [[398, "plugin-db-addon-konfiguration"]], "database_plugin_config": [[398, "database-plugin-config"]], "ignore_0": [[398, "ignore-0"]], "lock_db_for_query": [[398, "lock-db-for-query"]], "optimize_value_filter": [[398, "optimize-value-filter"]], "startup_run_delay": [[398, "startup-run-delay"]], "use_oldest_entry": [[398, "use-oldest-entry"]], "value_filter": [[398, "value-filter"]], "db_addon_database_item": [[398, "db-addon-database-item"]], "db_addon_ignore_value": [[398, "db-addon-ignore-value"]], "db_addon_ignore_value_list": [[398, "db-addon-ignore-value-list"]], "db_addon_params": [[398, "db-addon-params"]], "db_addon_params_dict": [[398, "db-addon-params-dict"]], "db_addon_startup": [[398, "db-addon-startup"]], "db_version()": [[398, "db-version"]], "fetch_log(func, item, timeframe, start, end, count, group, group2)": [[398, "fetch-log-func-item-timeframe-start-end-count-group-group2"]], "func": [[398, "func"]], "timeframe": [[398, "timeframe"]], "start": [[398, "start"], [479, "start"], [479, "id6"], [481, "start"], [506, "start"]], "end": [[398, "end"], [479, "end"], [479, "id7"], [506, "end"]], "count": [[398, "count"]], "group2": [[398, "group2"]], "suspend()": [[398, "suspend"], [484, "suspend"], [488, "suspend"]], "Plugin \u201adeebot_ozmo\u2018 Konfiguration": [[399, "plugin-deebot-ozmo-konfiguration"]], "account": [[399, "account"]], "continent": [[399, "continent"]], "country": [[399, "country"]], "interval": [[399, "interval"], [519, "interval"]], "charge()": [[399, "charge"]], "clean()": [[399, "clean"]], "clean_spot_area(area)": [[399, "clean-spot-area-area"]], "area": [[399, "area"]], "locate()": [[399, "locate"]], "resume()": [[399, "resume"]], "set_fan_speed(speed)": [[399, "set-fan-speed-speed"]], "speed": [[399, "speed"]], "set_water_level(level)": [[399, "set-water-level-level"]], "level": [[399, "level"]], "Plugin \u201adenon\u2018 Konfiguration": [[400, "plugin-denon-konfiguration"]], "autoconnect": [[400, "autoconnect"], [408, "autoconnect"], [435, "autoconnect"], [441, "autoconnect"], [464, "autoconnect"], [467, "autoconnect"]], "baudrate": [[400, "baudrate"], [401, "baudrate"], [408, "baudrate"], [439, "baudrate"], [464, "baudrate"], [467, "baudrate"], [514, "baudrate"]], "binary": [[400, "binary"], [408, "binary"], [464, "binary"], [467, "binary"]], "bytesize": [[400, "bytesize"], [408, "bytesize"], [464, "bytesize"], [467, "bytesize"]], "conn_type": [[400, "conn-type"], [408, "conn-type"], [467, "conn-type"]], "connect_cycle": [[400, "connect-cycle"], [408, "connect-cycle"], [435, "connect-cycle"], [440, "connect-cycle"], [441, "connect-cycle"], [464, "connect-cycle"], [467, "connect-cycle"], [507, "connect-cycle"]], "connect_retries": [[400, "connect-retries"], [408, "connect-retries"], [435, "connect-retries"], [440, "connect-retries"], [441, "connect-retries"], [464, "connect-retries"], [467, "connect-retries"], [507, "connect-retries"]], "delay_initial_read": [[400, "delay-initial-read"], [435, "delay-initial-read"], [441, "delay-initial-read"], [464, "delay-initial-read"], [467, "delay-initial-read"]], "parity": [[400, "parity"], [408, "parity"], [464, "parity"], [467, "parity"]], "resume_initial_read": [[400, "resume-initial-read"], [435, "resume-initial-read"], [441, "resume-initial-read"], [464, "resume-initial-read"], [467, "resume-initial-read"]], "retry_cycle": [[400, "retry-cycle"], [407, "retry-cycle"], [408, "retry-cycle"], [435, "retry-cycle"], [441, "retry-cycle"], [464, "retry-cycle"], [467, "retry-cycle"]], "retry_suspend": [[400, "retry-suspend"], [408, "retry-suspend"], [435, "retry-suspend"], [441, "retry-suspend"], [464, "retry-suspend"], [467, "retry-suspend"]], "send_retries": [[400, "send-retries"], [435, "send-retries"], [441, "send-retries"], [464, "send-retries"], [467, "send-retries"]], "sendretry_cycle": [[400, "sendretry-cycle"], [441, "sendretry-cycle"], [464, "sendretry-cycle"], [467, "sendretry-cycle"]], "stopbits": [[400, "stopbits"], [408, "stopbits"], [464, "stopbits"], [467, "stopbits"]], "suspend_item": [[400, "suspend-item"], [408, "suspend-item"], [435, "suspend-item"], [441, "suspend-item"], [464, "suspend-item"], [467, "suspend-item"]], "terminator": [[400, "terminator"], [408, "terminator"], [441, "terminator"], [464, "terminator"], [467, "terminator"]], "timeout": [[400, "timeout"], [401, "timeout"], [406, "timeout"], [408, "timeout"], [423, "timeout"], [435, "timeout"], [441, "timeout"], [459, "timeout"], [464, "timeout"], [467, "timeout"], [498, "timeout"], [499, "timeout"], [522, "timeout"]], "denon_command": [[400, "denon-command"]], "denon_lookup": [[400, "denon-lookup"]], "denon_read": [[400, "denon-read"]], "denon_read_cycle": [[400, "denon-read-cycle"]], "denon_read_group": [[400, "denon-read-group"]], "denon_read_group_trigger": [[400, "denon-read-group-trigger"]], "denon_read_initial": [[400, "denon-read-initial"]], "denon_readafterwrite": [[400, "denon-readafterwrite"]], "denon_write": [[400, "denon-write"]], "Plugin \u201adlms\u2018 Konfiguration": [[401, "plugin-dlms-konfiguration"]], "baudrate_fix": [[401, "baudrate-fix"]], "device_address": [[401, "device-address"]], "no_waiting": [[401, "no-waiting"]], "only_listen": [[401, "only-listen"]], "querycode": [[401, "querycode"]], "reset_baudrate": [[401, "reset-baudrate"]], "update_crontab": [[401, "update-crontab"]], "update_cycle_start_offset": [[401, "update-cycle-start-offset"]], "use_checksum": [[401, "use-checksum"]], "dlms_obis_code": [[401, "dlms-obis-code"]], "dlms_obis_readout": [[401, "dlms-obis-readout"]], "Plugin \u201admx\u2018 Konfiguration": [[402, "plugin-dmx-konfiguration"]], "interface": [[402, "interface"]], "Plugin \u201adrexelundweiss\u2018 Konfiguration": [[403, "plugin-drexelundweiss-konfiguration"]], "LU_ID": [[403, "lu-id"]], "PANEL_ID": [[403, "panel-id"]], "WP_ID": [[403, "wp-id"]], "busmonitor": [[403, "busmonitor"], [434, "busmonitor"]], "retrylimit": [[403, "retrylimit"]], "tty": [[403, "tty"], [414, "tty"]], "DuW_LU_register": [[403, "duw-lu-register"]], "DuW_PANEL_register": [[403, "duw-panel-register"]], "DuW_WP_register": [[403, "duw-wp-register"]], "Plugin \u201aebus\u2018 Konfiguration": [[405, "plugin-ebus-konfiguration"]], "ebus_cmd": [[405, "ebus-cmd"]], "ebus_type": [[405, "ebus-type"]], "Plugin \u201aenigma2\u2018 Konfiguration": [[406, "plugin-enigma2-konfiguration"]], "fast_cycle": [[406, "fast-cycle"]], "enigma2_data_type": [[406, "enigma2-data-type"]], "enigma2_page": [[406, "enigma2-page"]], "enigma2_remote_command_id": [[406, "enigma2-remote-command-id"]], "sref": [[406, "sref"]], "messagetext": [[406, "messagetext"]], "messagetype": [[406, "messagetype"]], "Plugin \u201aenocean\u2018 Konfiguration": [[407, "plugin-enocean-konfiguration"]], "log_unknown_messages": [[407, "log-unknown-messages"]], "retry": [[407, "retry"]], "tx_id": [[407, "tx-id"]], "block_dim_value": [[407, "block-dim-value"]], "block_switch": [[407, "block-switch"]], "color": [[407, "color"], [491, "color"]], "dim_speed": [[407, "dim-speed"]], "enocean_device": [[407, "enocean-device"]], "enocean_rocker_action": [[407, "enocean-rocker-action"]], "enocean_rocker_sequence": [[407, "enocean-rocker-sequence"]], "enocean_rtime": [[407, "enocean-rtime"]], "enocean_rx_eep": [[407, "enocean-rx-eep"]], "enocean_rx_id": [[407, "enocean-rx-id"]], "enocean_rx_key": [[407, "enocean-rx-key"]], "enocean_tx_eep": [[407, "enocean-tx-eep"]], "enocean_tx_id_offset": [[407, "enocean-tx-id-offset"]], "ref_level": [[407, "ref-level"]], "Plugin \u201aepson\u2018 Konfiguration": [[408, "plugin-epson-konfiguration"]], "command_class": [[408, "command-class"]], "epson_command": [[408, "epson-command"]], "epson_lookup": [[408, "epson-lookup"]], "epson_read": [[408, "epson-read"]], "epson_read_cycle": [[408, "epson-read-cycle"]], "epson_read_group": [[408, "epson-read-group"]], "epson_read_group_trigger": [[408, "epson-read-group-trigger"]], "epson_read_initial": [[408, "epson-read-initial"]], "epson_write": [[408, "epson-write"]], "Plugin \u201aeta_pu\u2018 Konfiguration": [[409, "plugin-eta-pu-konfiguration"]], "address": [[409, "address"], [472, "address"], [482, "address"]], "setname": [[409, "setname"]], "setpath": [[409, "setpath"]], "eta_pu_error": [[409, "eta-pu-error"]], "eta_pu_type": [[409, "eta-pu-type"]], "eta_pu_uri": [[409, "eta-pu-uri"]], "Plugin \u201aexecutor\u2018 Konfiguration": [[410, "plugin-executor-konfiguration"]], "script_entries": [[410, "script-entries"]], "scripts": [[410, "scripts"]], "Plugin \u201agarminconnect\u2018 Konfiguration": [[411, "plugin-garminconnect-konfiguration"]], "is_cn": [[411, "is-cn"]], "get_heart_rates(date)": [[411, "get-heart-rates-date"]], "date": [[411, "date"], [411, "id2"], [520, "date"], [520, "id2"], [520, "id4"]], "get_stats(date)": [[411, "get-stats-date"]], "Plugin \u201agpio\u2018 Konfiguration": [[412, "plugin-gpio-konfiguration"]], "bouncetime": [[412, "bouncetime"]], "initretries": [[412, "initretries"]], "mode": [[412, "mode"], [479, "mode"], [479, "id2"], [479, "id3"], [516, "mode"], [528, "mode"]], "pullupdown": [[412, "pullupdown"]], "gpio_in": [[412, "gpio-in"]], "gpio_init": [[412, "gpio-init"]], "gpio_invert": [[412, "gpio-invert"]], "gpio_out": [[412, "gpio-out"]], "gpio_pud": [[412, "gpio-pud"]], "Plugin \u201aharmony\u2018 Konfiguration": [[413, "plugin-harmony-konfiguration"]], "harmony_ip": [[413, "harmony-ip"]], "harmony_port": [[413, "harmony-port"]], "sleekxmpp_debug": [[413, "sleekxmpp-debug"]], "harmony_command_0": [[413, "harmony-command-0"]], "harmony_command_1": [[413, "harmony-command-1"]], "harmony_item": [[413, "harmony-item"]], "Plugin \u201ahelios\u2018 Konfiguration": [[414, "plugin-helios-konfiguration"]], "e0": [[414, "e0"]], "e1": [[414, "e1"]], "e10": [[414, "e10"]], "e2": [[414, "e2"]], "e3": [[414, "e3"]], "e4": [[414, "e4"]], "e5": [[414, "e5"]], "e6": [[414, "e6"]], "e7": [[414, "e7"]], "e8": [[414, "e8"]], "e9": [[414, "e9"]], "filter_warning": [[414, "filter-warning"]], "helios_var": [[414, "helios-var"]], "Plugin \u201ahelios_tcp\u2018 Konfiguration": [[415, "plugin-helios-tcp-konfiguration"]], "helios_ip": [[415, "helios-ip"]], "Plugin \u201ahomeconnect\u2018 Konfiguration": [[416, "plugin-homeconnect-konfiguration"]], "client_id": [[416, "client-id"], [530, "client-id"]], "client_secret": [[416, "client-secret"]], "simulate": [[416, "simulate"]], "ha_id": [[416, "ha-id"], [416, "id2"], [416, "id3"], [416, "id4"], [416, "id5"], [416, "id6"], [416, "id8"]], "homeconnect_data_type": [[416, "homeconnect-data-type"]], "get_hc()": [[416, "get-hc"]], "get_program_options(ha_id, program_key)": [[416, "get-program-options-ha-id-program-key"]], "program_key": [[416, "program-key"], [416, "id7"], [416, "id9"]], "get_programs_active(ha_id)": [[416, "get-programs-active-ha-id"]], "get_programs_available(ha_id)": [[416, "get-programs-available-ha-id"]], "get_programs_selected(ha_id)": [[416, "get-programs-selected-ha-id"]], "get_redirect_url()": [[416, "get-redirect-url"]], "start_program(ha_id, program_key, options)": [[416, "start-program-ha-id-program-key-options"]], "options": [[416, "options"], [416, "id10"]], "stop_program(ha_id, program_key, options)": [[416, "stop-program-ha-id-program-key-options"]], "Plugin \u201ahomematic\u2018 Konfiguration": [[417, "plugin-homematic-konfiguration"]], "callbackHost": [[417, "callbackhost"]], "callbackPort": [[417, "callbackport"]], "callbackPort_hmip": [[417, "callbackport-hmip"]], "customCallbackHost": [[417, "customcallbackhost"]], "learnmode_length": [[417, "learnmode-length"]], "proxyPort": [[417, "proxyport"]], "proxyPort_hmip": [[417, "proxyport-hmip"]], "hm_address": [[417, "hm-address"]], "hm_channel": [[417, "hm-channel"]], "hm_function": [[417, "hm-function"]], "Plugin \u201ahue\u2018 Konfiguration": [[418, "plugin-hue-konfiguration"]], "hue_bridge_id": [[418, "hue-bridge-id"]], "hue_lamp_id": [[418, "hue-lamp-id"]], "hue_listen_group": [[418, "hue-listen-group"]], "hue_send_group": [[418, "hue-send-group"]], "hue_transitiontime": [[418, "hue-transitiontime"]], "Plugin \u201ahue2\u2018 Konfiguration": [[419, "plugin-hue2-konfiguration"]], "bridge_ip": [[419, "bridge-ip"], [420, "bridge-ip"], [458, "bridge-ip"]], "bridge_port": [[419, "bridge-port"], [458, "bridge-port"]], "bridge_serial": [[419, "bridge-serial"], [420, "bridge-serial"]], "bridge_user": [[419, "bridge-user"], [420, "bridge-user"]], "polltime_bridge": [[419, "polltime-bridge"]], "polltime_lights": [[419, "polltime-lights"]], "polltime_sensors": [[419, "polltime-sensors"]], "dpt3_dim": [[419, "dpt3-dim"]], "hue2_function": [[419, "hue2-function"]], "hue2_id": [[419, "hue2-id"]], "hue2_reference_light_id": [[419, "hue2-reference-light-id"]], "hue2_resource": [[419, "hue2-resource"]], "hue2_transitionTime": [[419, "hue2-transitiontime"]], "Plugin \u201ahue3\u2018 Konfiguration": [[420, "plugin-hue3-konfiguration"]], "hue3_function": [[420, "hue3-function"]], "hue3_id": [[420, "hue3-id"]], "hue3_resource": [[420, "hue3-resource"]], "hue3_transition_time": [[420, "hue3-transition-time"]], "Plugin \u201ahusky\u2018 Konfiguration": [[421, "plugin-husky-konfiguration"]], "mapkey": [[421, "mapkey"]], "userid": [[421, "userid"]], "husky_control": [[421, "husky-control"], [422, "husky-control"]], "husky_info": [[421, "husky-info"], [422, "husky-info"]], "husky_operating": [[421, "husky-operating"]], "husky_state": [[421, "husky-state"], [422, "husky-state"]], "Plugin \u201ahusky2\u2018 Konfiguration": [[422, "plugin-husky2-konfiguration"]], "apisecret": [[422, "apisecret"]], "historylength": [[422, "historylength"]], "maxgpspoints": [[422, "maxgpspoints"]], "Plugin \u201aical\u2018 Konfiguration": [[423, "plugin-ical-konfiguration"]], "calendars": [[423, "calendars"]], "directory": [[423, "directory"]], "handle_login": [[423, "handle-login"]], "ical_calendar": [[423, "ical-calendar"]], "ical(ics= \u201aNone\u2018, delta=1, offset=0, prio=1, verify=True)": [[423, "ical-ics-none-delta-1-offset-0-prio-1-verify-true"]], "ics": [[423, "ics"]], "delta": [[423, "delta"]], "offset": [[423, "offset"]], "prio": [[423, "prio"], [592, "prio"]], "Plugin \u201aindego\u2018 Konfiguration": [[424, "plugin-indego-konfiguration"]], "img_pfad": [[424, "img-pfad"], [425, "img-pfad"]], "indego_url": [[424, "indego-url"], [425, "indego-url"]], "parent_item": [[424, "parent-item"], [425, "parent-item"]], "user": [[424, "user"], [436, "user"], [479, "user"], [526, "user"]], "indego_add_key": [[424, "indego-add-key"], [425, "indego-add-key"]], "indego_command": [[424, "indego-command"], [425, "indego-command"]], "indego_frequency": [[424, "indego-frequency"]], "indego_smart": [[424, "indego-smart"], [425, "indego-smart"]], "Plugin \u201aindego4shng\u2018 Konfiguration": [[425, "plugin-indego4shng-konfiguration"]], "indego_credentials": [[425, "indego-credentials"]], "path_2_weather_pics": [[425, "path-2-weather-pics"]], "indego_attr_name": [[425, "indego-attr-name"]], "indego_attr_type": [[425, "indego-attr-type"]], "indego_config": [[425, "indego-config"]], "indego_config_url": [[425, "indego-config-url"]], "indego_function_4_all": [[425, "indego-function-4-all"]], "indego_function_4_visu": [[425, "indego-function-4-visu"]], "indego_parse_2_attr": [[425, "indego-parse-2-attr"]], "indego_plugin_handled": [[425, "indego-plugin-handled"]], "send_command(payload= \u201a{\u201estate\u201c:\u201cmow\u201c}\u2018, trigger= \u201aLogic\u2018)": [[425, "send-command-payload-state-mow-trigger-logic"]], "payload": [[425, "payload"]], "trigger": [[425, "trigger"]], "Plugin \u201ainfluxdata\u2018 Konfiguration": [[426, "plugin-influxdata-konfiguration"]], "influx_host": [[426, "influx-host"]], "influx_keyword": [[426, "influx-keyword"]], "influx_port": [[426, "influx-port"]], "influx": [[426, "influx"]], "Plugin \u201ainfluxdb\u2018 Konfiguration": [[427, "plugin-influxdb-konfiguration"]], "fields": [[427, "fields"]], "http_port": [[427, "http-port"], [428, "http-port"]], "keyword": [[427, "keyword"]], "tags": [[427, "tags"], [428, "tags"]], "value_field": [[427, "value-field"], [428, "value-field"]], "write_http": [[427, "write-http"]], "influxdb_fields": [[427, "influxdb-fields"]], "influxdb_name": [[427, "influxdb-name"]], "influxdb_tags": [[427, "influxdb-tags"]], "Plugin \u201ainfluxdb2\u2018 Konfiguration": [[428, "plugin-influxdb2-konfiguration"]], "api_token": [[428, "api-token"]], "bucket": [[428, "bucket"]], "org": [[428, "org"]], "recognize_database": [[428, "recognize-database"]], "str_value_field": [[428, "str-value-field"]], "influxdb2_bucket": [[428, "influxdb2-bucket"]], "influxdb2_name": [[428, "influxdb2-name"]], "influxdb2_tags": [[428, "influxdb2-tags"]], "Plugin \u201aintercom_2n\u2018 Konfiguration": [[429, "plugin-intercom-2n-konfiguration"]], "auth_type": [[429, "auth-type"]], "intercom_ip": [[429, "intercom-ip"]], "Plugin \u201ajoin\u2018 Konfiguration": [[430, "plugin-join-konfiguration"]], "device_id": [[430, "device-id"], [430, "id2"]], "send(title= \u201aNone\u2018, text= \u201aNone\u2018, icon= \u201aNone\u2018, find= \u201aNone\u2018, smallicon= \u201aNone\u2018, device_id= \u201aNone\u2018, device_ids= \u201aNone\u2018, device_name= \u201aNone\u2018, url= \u201aNone\u2018, image= \u201aNone\u2018, sound= \u201aNone\u2018, group= \u201aNone\u2018, clipboard= \u201aNone\u2018, file= \u201aNone\u2018, callnumber= \u201aNone\u2018, smsnumber= \u201aNone\u2018, smstext= \u201aNone\u2018, mmsfile= \u201aNone\u2018, wallpaper= \u201aNone\u2018, lockwallpaper= \u201aNone\u2018, interruptionFilter= \u201aNone\u2018, mediaVolume= \u201aNone\u2018, ringVolume= \u201aNone\u2018, alarmVolume= \u201aNone\u2018)": [[430, "send-title-none-text-none-icon-none-find-none-smallicon-none-device-id-none-device-ids-none-device-name-none-url-none-image-none-sound-none-group-none-clipboard-none-file-none-callnumber-none-smsnumber-none-smstext-none-mmsfile-none-wallpaper-none-lockwallpaper-none-interruptionfilter-none-mediavolume-none-ringvolume-none-alarmvolume-none"]], "title": [[430, "title"], [469, "title"], [472, "title"], [472, "id9"], [472, "id12"], [527, "title"]], "text": [[430, "text"], [491, "text"]], "find": [[430, "find"]], "smallicon": [[430, "smallicon"]], "device_ids": [[430, "device-ids"]], "image": [[430, "image"], [469, "image"], [527, "image"]], "sound": [[430, "sound"]], "clipboard": [[430, "clipboard"]], "file": [[430, "file"]], "callnumber": [[430, "callnumber"]], "smsnumber": [[430, "smsnumber"]], "smstext": [[430, "smstext"]], "mmsfile": [[430, "mmsfile"]], "wallpaper": [[430, "wallpaper"]], "lockwallpaper": [[430, "lockwallpaper"]], "interruptionFilter": [[430, "interruptionfilter"]], "mediaVolume": [[430, "mediavolume"]], "ringVolume": [[430, "ringvolume"]], "alarmVolume": [[430, "alarmvolume"]], "Plugin \u201ajsonread\u2018 Konfiguration": [[431, "plugin-jsonread-konfiguration"]], "jsonread_filter": [[431, "jsonread-filter"]], "Plugin \u201ajvcproj\u2018 Konfiguration": [[432, "plugin-jvcproj-konfiguration"]], "gammaconf_dir": [[432, "gammaconf-dir"]], "jvcproj_cmd": [[432, "jvcproj-cmd"]], "jvcproj_gamma": [[432, "jvcproj-gamma"]], "Plugin \u201akathrein\u2018 Konfiguration": [[433, "plugin-kathrein-konfiguration"]], "push(key= \u201a1234\u2018)": [[433, "push-key-1234"]], "Plugin \u201aknx\u2018 Konfiguration": [[434, "plugin-knx-konfiguration"]], "date_ga": [[434, "date-ga"], [434, "id6"]], "enable_stats": [[434, "enable-stats"]], "log_own_packets": [[434, "log-own-packets"]], "loglevel_knxd_cache_problems": [[434, "loglevel-knxd-cache-problems"]], "project_file_password": [[434, "project-file-password"]], "projectpath": [[434, "projectpath"]], "provider": [[434, "provider"]], "readonly": [[434, "readonly"]], "send_time": [[434, "send-time"]], "time_ga": [[434, "time-ga"], [434, "id5"]], "use_project_file": [[434, "use-project-file"]], "knx_cache": [[434, "knx-cache"]], "knx_dpt": [[434, "knx-dpt"]], "knx_init": [[434, "knx-init"]], "knx_listen": [[434, "knx-listen"]], "knx_poll": [[434, "knx-poll"]], "knx_reply": [[434, "knx-reply"]], "knx_send": [[434, "knx-send"]], "knx_status": [[434, "knx-status"]], "encode(data, dpt)": [[434, "encode-data-dpt"]], "data": [[434, "data"], [434, "id3"], [457, "data"]], "dpt": [[434, "dpt"], [434, "id4"]], "groupread(ga, cache=False)": [[434, "groupread-ga-cache-false"]], "ga": [[434, "ga"], [434, "id2"]], "cache": [[434, "cache"], [463, "cache"]], "groupwrite(ga, data, dpt)": [[434, "groupwrite-ga-data-dpt"]], "send_time(time_ga, date_ga)": [[434, "send-time-time-ga-date-ga"]], "Plugin \u201akodi\u2018 Konfiguration": [[435, "plugin-kodi-konfiguration"]], "send_timeout": [[435, "send-timeout"]], "kodi_command": [[435, "kodi-command"]], "kodi_lookup": [[435, "kodi-lookup"]], "kodi_read": [[435, "kodi-read"]], "kodi_read_cycle": [[435, "kodi-read-cycle"]], "kodi_read_group": [[435, "kodi-read-group"]], "kodi_read_group_trigger": [[435, "kodi-read-group-trigger"]], "kodi_read_initial": [[435, "kodi-read-initial"]], "kodi_write": [[435, "kodi-write"]], "Plugin \u201akostal\u2018 Konfiguration": [[436, "plugin-kostal-konfiguration"]], "datastructure": [[436, "datastructure"]], "passwd": [[436, "passwd"], [526, "passwd"]], "Plugin \u201akostalmodbus\u2018 Konfiguration": [[437, "plugin-kostalmodbus-konfiguration"]], "inverter_ip": [[437, "inverter-ip"]], "modbus_port": [[437, "modbus-port"], [438, "modbus-port"], [517, "modbus-port"]], "kostal_06": [[437, "kostal-06"]], "kostal_100": [[437, "kostal-100"]], "kostal_104": [[437, "kostal-104"]], "kostal_1056": [[437, "kostal-1056"]], "kostal_1058": [[437, "kostal-1058"]], "kostal_106": [[437, "kostal-106"]], "kostal_1060": [[437, "kostal-1060"]], "kostal_1062": [[437, "kostal-1062"]], "kostal_1064": [[437, "kostal-1064"]], "kostal_1066": [[437, "kostal-1066"]], "kostal_108": [[437, "kostal-108"]], "kostal_110": [[437, "kostal-110"]], "kostal_112": [[437, "kostal-112"]], "kostal_114": [[437, "kostal-114"]], "kostal_116": [[437, "kostal-116"]], "kostal_118": [[437, "kostal-118"]], "kostal_120": [[437, "kostal-120"]], "kostal_122": [[437, "kostal-122"]], "kostal_124": [[437, "kostal-124"]], "kostal_14": [[437, "kostal-14"]], "kostal_144": [[437, "kostal-144"]], "kostal_150": [[437, "kostal-150"]], "kostal_152": [[437, "kostal-152"]], "kostal_154": [[437, "kostal-154"]], "kostal_156": [[437, "kostal-156"]], "kostal_158": [[437, "kostal-158"]], "kostal_160": [[437, "kostal-160"]], "kostal_162": [[437, "kostal-162"]], "kostal_164": [[437, "kostal-164"]], "kostal_166": [[437, "kostal-166"]], "kostal_168": [[437, "kostal-168"]], "kostal_170": [[437, "kostal-170"]], "kostal_172": [[437, "kostal-172"]], "kostal_174": [[437, "kostal-174"]], "kostal_178": [[437, "kostal-178"]], "kostal_190": [[437, "kostal-190"]], "kostal_194": [[437, "kostal-194"]], "kostal_200": [[437, "kostal-200"]], "kostal_202": [[437, "kostal-202"]], "kostal_208": [[437, "kostal-208"]], "kostal_210": [[437, "kostal-210"]], "kostal_214": [[437, "kostal-214"]], "kostal_216": [[437, "kostal-216"]], "kostal_218": [[437, "kostal-218"]], "kostal_220": [[437, "kostal-220"]], "kostal_222": [[437, "kostal-222"]], "kostal_224": [[437, "kostal-224"]], "kostal_226": [[437, "kostal-226"]], "kostal_228": [[437, "kostal-228"]], "kostal_230": [[437, "kostal-230"]], "kostal_232": [[437, "kostal-232"]], "kostal_234": [[437, "kostal-234"]], "kostal_236": [[437, "kostal-236"]], "kostal_238": [[437, "kostal-238"]], "kostal_240": [[437, "kostal-240"]], "kostal_242": [[437, "kostal-242"]], "kostal_244": [[437, "kostal-244"]], "kostal_246": [[437, "kostal-246"]], "kostal_248": [[437, "kostal-248"]], "kostal_250": [[437, "kostal-250"]], "kostal_252": [[437, "kostal-252"]], "kostal_254": [[437, "kostal-254"]], "kostal_256": [[437, "kostal-256"]], "kostal_258": [[437, "kostal-258"]], "kostal_260": [[437, "kostal-260"]], "kostal_266": [[437, "kostal-266"]], "kostal_268": [[437, "kostal-268"]], "kostal_270": [[437, "kostal-270"]], "kostal_276": [[437, "kostal-276"]], "kostal_278": [[437, "kostal-278"]], "kostal_280": [[437, "kostal-280"]], "kostal_286": [[437, "kostal-286"]], "kostal_30": [[437, "kostal-30"]], "kostal_32": [[437, "kostal-32"]], "kostal_320": [[437, "kostal-320"]], "kostal_322": [[437, "kostal-322"]], "kostal_324": [[437, "kostal-324"]], "kostal_326": [[437, "kostal-326"]], "kostal_34": [[437, "kostal-34"]], "kostal_36": [[437, "kostal-36"]], "kostal_38": [[437, "kostal-38"]], "kostal_384": [[437, "kostal-384"]], "kostal_420": [[437, "kostal-420"]], "kostal_428": [[437, "kostal-428"]], "kostal_436": [[437, "kostal-436"]], "kostal_446": [[437, "kostal-446"]], "kostal_454": [[437, "kostal-454"]], "kostal_46": [[437, "kostal-46"]], "kostal_512": [[437, "kostal-512"]], "kostal_514": [[437, "kostal-514"]], "kostal_515": [[437, "kostal-515"]], "kostal_517": [[437, "kostal-517"]], "kostal_525": [[437, "kostal-525"]], "kostal_529": [[437, "kostal-529"]], "kostal_531": [[437, "kostal-531"]], "kostal_535": [[437, "kostal-535"]], "kostal_54": [[437, "kostal-54"]], "kostal_559": [[437, "kostal-559"]], "kostal_56": [[437, "kostal-56"]], "kostal_575": [[437, "kostal-575"]], "kostal_577": [[437, "kostal-577"]], "kostal_582": [[437, "kostal-582"]], "kostal_586": [[437, "kostal-586"]], "kostal_588": [[437, "kostal-588"]], "kostal_768": [[437, "kostal-768"]], "kostal_800": [[437, "kostal-800"]], "kostal_98": [[437, "kostal-98"]], "Plugin \u201aksemmodbus\u2018 Konfiguration": [[438, "plugin-ksemmodbus-konfiguration"]], "ksem_ip": [[438, "ksem-ip"]], "ksem_0": [[438, "ksem-0"]], "ksem_16": [[438, "ksem-16"]], "ksem_18": [[438, "ksem-18"]], "ksem_2": [[438, "ksem-2"]], "ksem_24": [[438, "ksem-24"]], "ksem_4": [[438, "ksem-4"]], "ksem_512": [[438, "ksem-512"]], "ksem_516": [[438, "ksem-516"]], "ksem_520": [[438, "ksem-520"]], "ksem_524": [[438, "ksem-524"]], "ksem_544": [[438, "ksem-544"]], "ksem_548": [[438, "ksem-548"]], "ksem_6": [[438, "ksem-6"]], "Plugin \u201aleveljet\u2018 Konfiguration": [[439, "plugin-leveljet-konfiguration"]], "ljet_cmd": [[439, "ljet-cmd"]], "Plugin \u201alirc\u2018 Konfiguration": [[440, "plugin-lirc-konfiguration"]], "lirc_host": [[440, "lirc-host"]], "lirc_port": [[440, "lirc-port"]], "lirc_key": [[440, "lirc-key"]], "lirc_remote": [[440, "lirc-remote"]], "Plugin \u201alms\u2018 Konfiguration": [[441, "plugin-lms-konfiguration"]], "recursive_custom": [[441, "recursive-custom"]], "web_host": [[441, "web-host"]], "web_port": [[441, "web-port"], [507, "web-port"]], "sqb_command": [[441, "sqb-command"]], "sqb_custom1": [[441, "sqb-custom1"]], "sqb_lookup": [[441, "sqb-lookup"]], "sqb_read": [[441, "sqb-read"]], "sqb_read_cycle": [[441, "sqb-read-cycle"]], "sqb_read_group": [[441, "sqb-read-group"]], "sqb_read_group_trigger": [[441, "sqb-read-group-trigger"]], "sqb_read_initial": [[441, "sqb-read-initial"]], "sqb_write": [[441, "sqb-write"]], "Plugin \u201alogo\u2018 Konfiguration": [[442, "plugin-logo-konfiguration"]], "io_wait": [[442, "io-wait"], [461, "io-wait"]], "version": [[442, "version"], [500, "version"]], "logo_read": [[442, "logo-read"], [500, "logo-read"]], "logo_write": [[442, "logo-write"], [500, "logo-write"]], "Plugin \u201aluxtronic2\u2018 Konfiguration": [[443, "plugin-luxtronic2-konfiguration"]], "Plugin \u201amailrcv\u2018 Konfiguration": [[444, "plugin-mailrcv-konfiguration"]], "trashfolder": [[444, "trashfolder"]], "Plugin \u201amailsend\u2018 Konfiguration": [[445, "plugin-mailsend-konfiguration"]], "mail_from": [[445, "mail-from"]], "send(to, subject, message)": [[445, "send-to-subject-message"]], "to": [[445, "to"], [534, "to"]], "subject": [[445, "subject"]], "message": [[445, "message"], [469, "message"]], "Plugin \u201amemlog\u2018 Konfiguration": [[446, "plugin-memlog-konfiguration"]], "items": [[446, "items"], [463, "items"], [472, "items"]], "mappings": [[446, "mappings"]], "maxlen": [[446, "maxlen"], [463, "maxlen"]], "Plugin \u201amieleathome\u2018 Konfiguration": [[447, "plugin-mieleathome-konfiguration"]], "miele_client_country": [[447, "miele-client-country"]], "miele_client_id": [[447, "miele-client-id"]], "miele_client_secret": [[447, "miele-client-secret"]], "miele_cycle": [[447, "miele-cycle"]], "miele_pwd": [[447, "miele-pwd"]], "miele_user": [[447, "miele-user"]], "miele_command": [[447, "miele-command"]], "miele_deviceid": [[447, "miele-deviceid"]], "miele_parse_item": [[447, "miele-parse-item"]], "miele_visu_function": [[447, "miele-visu-function"]], "Plugin \u201amiflora\u2018 Konfiguration": [[448, "plugin-miflora-konfiguration"]], "bt_addr": [[448, "bt-addr"], [492, "bt-addr"]], "bt_library": [[448, "bt-library"]], "Plugin \u201amikrotik\u2018 Konfiguration": [[449, "plugin-mikrotik-konfiguration"]], "hostname": [[449, "hostname"]], "mikrotik_parameter": [[449, "mikrotik-parameter"]], "mikrotik_port": [[449, "mikrotik-port"]], "get_port_enabled(port)": [[449, "get-port-enabled-port"]], "get_port_poe(port)": [[449, "get-port-poe-port"]], "get_port_status(port)": [[449, "get-port-status-port"]], "set_port_enabled(port, state)": [[449, "set-port-enabled-port-state"]], "set_port_poe(port, state)": [[449, "set-port-poe-port-state"]], "Plugin \u201amilight\u2018 Konfiguration": [[450, "plugin-milight-konfiguration"]], "white_calibrate": [[450, "white-calibrate"]], "milight_disco_down": [[450, "milight-disco-down"]], "milight_disco_up": [[450, "milight-disco-up"]], "Plugin \u201amlgw\u2018 Konfiguration": [[451, "plugin-mlgw-konfiguration"]], "log_mlgwtelegrams": [[451, "log-mlgwtelegrams"]], "mlns": [[451, "mlns"]], "rooms": [[451, "rooms"]], "Plugin \u201amodbus_tcp\u2018 Konfiguration": [[452, "plugin-modbus-tcp-konfiguration"]], "crontab": [[452, "crontab"], [499, "crontab"]], "pause_item": [[452, "pause-item"], [488, "pause-item"], [512, "pause-item"], [537, "pause-item"]], "slaveUnit": [[452, "slaveunit"]], "modBusAddress": [[452, "modbusaddress"]], "modBusByteOrder": [[452, "modbusbyteorder"]], "modBusDataType": [[452, "modbusdatatype"]], "modBusDirection": [[452, "modbusdirection"]], "modBusFactor": [[452, "modbusfactor"]], "modBusObjectType": [[452, "modbusobjecttype"]], "modBusUnit": [[452, "modbusunit"]], "modBusWordOrder": [[452, "modbuswordorder"]], "Plugin \u201ampd\u2018 Konfiguration": [[453, "plugin-mpd-konfiguration"]], "mpd_command": [[453, "mpd-command"]], "mpd_database": [[453, "mpd-database"]], "mpd_localplaylist": [[453, "mpd-localplaylist"]], "mpd_rawcommand": [[453, "mpd-rawcommand"]], "mpd_songinfo": [[453, "mpd-songinfo"]], "mpd_statistic": [[453, "mpd-statistic"]], "mpd_status": [[453, "mpd-status"]], "mpd_url": [[453, "mpd-url"]], "Plugin \u201amqtt\u2018 Konfiguration": [[454, "plugin-mqtt-konfiguration"]], "mqtt_bool_values": [[454, "mqtt-bool-values"]], "mqtt_qos": [[454, "mqtt-qos"]], "mqtt_retain": [[454, "mqtt-retain"]], "mqtt_topic": [[454, "mqtt-topic"]], "mqtt_topic_in": [[454, "mqtt-topic-in"]], "mqtt_topic_init": [[454, "mqtt-topic-init"]], "mqtt_topic_out": [[454, "mqtt-topic-out"]], "Plugin \u201amvg_live\u2018 Konfiguration": [[455, "plugin-mvg-live-konfiguration"]], "get_station_departures(station)": [[455, "get-station-departures-station"]], "station": [[455, "station"]], "Plugin \u201aneato\u2018 Konfiguration": [[456, "plugin-neato-konfiguration"]], "account_email": [[456, "account-email"]], "account_pass": [[456, "account-pass"]], "robot_vendor": [[456, "robot-vendor"]], "token": [[456, "token"], [491, "token"], [512, "token"], [533, "token"]], "neato_attribute": [[456, "neato-attribute"]], "disable_schedule()": [[456, "disable-schedule"]], "dismiss_current_alert()": [[456, "dismiss-current-alert"]], "enable_schedule()": [[456, "enable-schedule"]], "get_map_boundaries(map_id)": [[456, "get-map-boundaries-map-id"]], "map_id": [[456, "map-id"], [456, "id2"]], "start_robot(boundary_id, map_id)": [[456, "start-robot-boundary-id-map-id"]], "boundary_id": [[456, "boundary-id"]], "Plugin \u201anetwork\u2018 Konfiguration": [[457, "plugin-network-konfiguration"]], "http": [[457, "http"]], "http_acl": [[457, "http-acl"]], "tcp": [[457, "tcp"]], "tcp_acl": [[457, "tcp-acl"]], "udp": [[457, "udp"]], "udp_acl": [[457, "udp-acl"]], "nw_http_listen": [[457, "nw-http-listen"]], "nw_tcp_listen": [[457, "nw-tcp-listen"]], "nw_udp_listen": [[457, "nw-udp-listen"]], "Plugin \u201anuki\u2018 Konfiguration": [[458, "plugin-nuki-konfiguration"]], "bridge_api_token": [[458, "bridge-api-token"]], "no_wait": [[458, "no-wait"]], "protocol": [[458, "protocol"], [522, "protocol"]], "Plugin \u201anut\u2018 Konfiguration": [[459, "plugin-nut-konfiguration"]], "ups": [[459, "ups"]], "nut_var": [[459, "nut-var"]], "Plugin \u201aodlinfo\u2018 Konfiguration": [[460, "plugin-odlinfo-konfiguration"]], "odl_data_type": [[460, "odl-data-type"]], "odl_station": [[460, "odl-station"]], "odlinfo_id": [[460, "odlinfo-id"]], "get_stations()": [[460, "get-stations"]], "get_stations_for_ids(odlinfo_ids)": [[460, "get-stations-for-ids-odlinfo-ids"]], "odlinfo_ids": [[460, "odlinfo-ids"]], "get_update_timestamp()": [[460, "get-update-timestamp"]], "Plugin \u201aonewire\u2018 Konfiguration": [[461, "plugin-onewire-konfiguration"]], "button_wait": [[461, "button-wait"]], "cycle_discovery": [[461, "cycle-discovery"]], "log_counter_cycle_discovery_time": [[461, "log-counter-cycle-discovery-time"]], "log_counter_cycle_time": [[461, "log-counter-cycle-time"]], "log_counter_io_loop_time": [[461, "log-counter-io-loop-time"]], "parasitic_power_wait": [[461, "parasitic-power-wait"]], "warn_after": [[461, "warn-after"]], "ow_addr": [[461, "ow-addr"]], "ow_sensor": [[461, "ow-sensor"]], "Plugin \u201aopenweathermap\u2018 Konfiguration": [[462, "plugin-openweathermap-konfiguration"]], "altitude": [[462, "altitude"]], "api_version": [[462, "api-version"]], "softfail_precipitation": [[462, "softfail-precipitation"]], "softfail_wind_gust": [[462, "softfail-wind-gust"]], "owm_coord_x": [[462, "owm-coord-x"]], "owm_coord_y": [[462, "owm-coord-y"]], "owm_coord_z": [[462, "owm-coord-z"]], "owm_match_prefix": [[462, "owm-match-prefix"]], "owm_matchstring": [[462, "owm-matchstring"], [462, "id2"]], "owm_raw_file": [[462, "owm-raw-file"]], "get_beaufort_description(speed_in_bft)": [[462, "get-beaufort-description-speed-in-bft"]], "speed_in_bft": [[462, "speed-in-bft"]], "get_beaufort_number(speed_in_mps)": [[462, "get-beaufort-number-speed-in-mps"]], "speed_in_mps": [[462, "speed-in-mps"]], "get_raw_data_file(data_source_key)": [[462, "get-raw-data-file-data-source-key"]], "data_source_key": [[462, "data-source-key"]], "get_value(owm_matchstring)": [[462, "get-value-owm-matchstring"]], "Plugin \u201aoperationlog\u2018 Konfiguration": [[463, "plugin-operationlog-konfiguration"]], "filepattern": [[463, "filepattern"]], "logdirectory": [[463, "logdirectory"]], "logger": [[463, "logger"]], "logtofile": [[463, "logtofile"]], "mapping": [[463, "mapping"]], "olog": [[463, "olog"]], "olog_level": [[463, "olog-level"]], "olog_rules": [[463, "olog-rules"]], "olog_txt": [[463, "olog-txt"]], "Plugin \u201aoppo\u2018 Konfiguration": [[464, "plugin-oppo-konfiguration"]], "oppo_command": [[464, "oppo-command"]], "oppo_lookup": [[464, "oppo-lookup"]], "oppo_read": [[464, "oppo-read"]], "oppo_read_cycle": [[464, "oppo-read-cycle"]], "oppo_read_group": [[464, "oppo-read-group"]], "oppo_read_group_trigger": [[464, "oppo-read-group-trigger"]], "oppo_read_initial": [[464, "oppo-read-initial"]], "oppo_write": [[464, "oppo-write"]], "Plugin \u201apanasonic_ac\u2018 Konfiguration": [[465, "plugin-panasonic-ac-konfiguration"]], "pcc_index": [[465, "pcc-index"]], "pcc_parameter": [[465, "pcc-parameter"]], "Plugin \u201aphilips_tv\u2018 Konfiguration": [[466, "plugin-philips-tv-konfiguration"]], "deviceID": [[466, "deviceid"]], "deviceKey": [[466, "devicekey"]], "philips_tv_rx_key": [[466, "philips-tv-rx-key"]], "philips_tv_tx_key": [[466, "philips-tv-tx-key"]], "Plugin \u201apioneer\u2018 Konfiguration": [[467, "plugin-pioneer-konfiguration"]], "pioneer_command": [[467, "pioneer-command"]], "pioneer_lookup": [[467, "pioneer-lookup"]], "pioneer_read": [[467, "pioneer-read"]], "pioneer_read_cycle": [[467, "pioneer-read-cycle"]], "pioneer_read_group": [[467, "pioneer-read-group"]], "pioneer_read_group_trigger": [[467, "pioneer-read-group-trigger"]], "pioneer_read_initial": [[467, "pioneer-read-initial"]], "pioneer_write": [[467, "pioneer-write"]], "Plugin \u201apiratewthr\u2018 Konfiguration": [[468, "plugin-piratewthr-konfiguration"]], "pw_matchstring": [[468, "pw-matchstring"]], "Plugin \u201aplex\u2018 Konfiguration": [[469, "plugin-plex-konfiguration"]], "displaytime": [[469, "displaytime"]], "plex_host": [[469, "plex-host"]], "plex_port": [[469, "plex-port"]], "notify(title, message, image= \u201ainfo\u2018)": [[469, "notify-title-message-image-info"]], "Plugin \u201apluggit\u2018 Konfiguration": [[470, "plugin-pluggit-konfiguration"]], "pluggit_convert": [[470, "pluggit-convert"]], "pluggit_read": [[470, "pluggit-read"]], "pluggit_write": [[470, "pluggit-write"]], "Plugin \u201aprowl\u2018 Konfiguration": [[471, "plugin-prowl-konfiguration"]], "prowl_event": [[471, "prowl-event"]], "prowl_swap": [[471, "prowl-swap"]], "prowl_text": [[471, "prowl-text"]], "prowl_url": [[471, "prowl-url"]], "prowl_values": [[471, "prowl-values"]], "notify(event= \u201a\u2018, description= \u201a\u2018, priority=None*, url= \u201aNone*\u2018, apikey= \u201aNone*\u2018, application= \u201aSmartHomeNG\u2018)": [[471, "notify-event-description-priority-none-url-none-apikey-none-application-smarthomeng"]], "event": [[471, "event"]], "description": [[471, "description"]], "priority": [[471, "priority"]], "application": [[471, "application"]], "Plugin \u201apushbullet\u2018 Konfiguration": [[472, "plugin-pushbullet-konfiguration"]], "deviceid": [[472, "deviceid"], [472, "id2"], [472, "id4"], [472, "id6"], [472, "id10"], [472, "id14"]], "address(name, address, deviceid, apikey)": [[472, "address-name-address-deviceid-apikey"]], "file(filepath, deviceid, apikey, body)": [[472, "file-filepath-deviceid-apikey-body"]], "filepath": [[472, "filepath"]], "body": [[472, "body"], [472, "id8"], [472, "id13"]], "link(title, url, deviceid, apikey, body)": [[472, "link-title-url-deviceid-apikey-body"]], "list(title, items, deviceid, apikey)": [[472, "list-title-items-deviceid-apikey"]], "note(title, body, deviceid, apikey)": [[472, "note-title-body-deviceid-apikey"]], "Plugin \u201apushover\u2018 Konfiguration": [[473, "plugin-pushover-konfiguration"]], "apiKey": [[473, "apikey"]], "userKey": [[473, "userkey"]], "Plugin \u201araumfeld\u2018 Konfiguration": [[474, "plugin-raumfeld-konfiguration"]], "Plugin \u201araumfeld_ng\u2018 Konfiguration": [[475, "plugin-raumfeld-ng-konfiguration"]], "rf_attr": [[475, "rf-attr"]], "rf_mode": [[475, "rf-mode"]], "rf_renderer_name": [[475, "rf-renderer-name"]], "rf_scope": [[475, "rf-scope"]], "Plugin \u201arcs1000n\u2018 Konfiguration": [[476, "plugin-rcs1000n-konfiguration"]], "rcs1000n_gpio": [[476, "rcs1000n-gpio"]], "rcs1000n_sendDuration": [[476, "rcs1000n-sendduration"]], "rcs_ButtonCode": [[476, "rcs-buttoncode"]], "rcs_SystemCode": [[476, "rcs-systemcode"]], "Plugin \u201arcswitch\u2018 Konfiguration": [[477, "plugin-rcswitch-konfiguration"]], "rcswitch_dir": [[477, "rcswitch-dir"]], "rcswitch_host": [[477, "rcswitch-host"]], "rcswitch_password": [[477, "rcswitch-password"]], "rcswitch_sendDuration": [[477, "rcswitch-sendduration"]], "rcswitch_user": [[477, "rcswitch-user"]], "rc_code": [[477, "rc-code"]], "rc_device": [[477, "rc-device"]], "Plugin \u201aresol\u2018 Konfiguration": [[478, "plugin-resol-konfiguration"]], "resol_bituse": [[478, "resol-bituse"]], "resol_command": [[478, "resol-command"]], "resol_destination": [[478, "resol-destination"]], "resol_factor": [[478, "resol-factor"]], "resol_isSigned": [[478, "resol-issigned"]], "resol_offset": [[478, "resol-offset"]], "resol_source": [[478, "resol-source"]], "Plugin \u201arobonect\u2018 Konfiguration": [[479, "plugin-robonect-konfiguration"]], "topic_prefix": [[479, "topic-prefix"]], "robonect_battery_index": [[479, "robonect-battery-index"]], "robonect_data_type": [[479, "robonect-data-type"]], "robonect_remote_index": [[479, "robonect-remote-index"]], "get_mode()": [[479, "get-mode"]], "get_mode_as_text(mode)": [[479, "get-mode-as-text-mode"]], "get_status()": [[479, "get-status"]], "get_status_as_text(status)": [[479, "get-status-as-text-status"]], "status": [[479, "status"]], "is_mower_offline()": [[479, "is-mower-offline"]], "set_mode_via_api(mode, remotestart, after, start, end, duration)": [[479, "set-mode-via-api-mode-remotestart-after-start-end-duration"]], "remotestart": [[479, "remotestart"]], "after": [[479, "after"]], "set_name_via_api(name)": [[479, "set-name-via-api-name"]], "set_remote_via_api(index, name, distance, visible, proportion)": [[479, "set-remote-via-api-index-name-distance-visible-proportion"]], "distance": [[479, "distance"]], "visible": [[479, "visible"]], "proportion": [[479, "proportion"]], "set_timer_via_api(index, enabled, start, end, mo, tu, we, th, fr, sa, su)": [[479, "set-timer-via-api-index-enabled-start-end-mo-tu-we-th-fr-sa-su"]], "enabled": [[479, "enabled"], [592, "enabled"]], "mo": [[479, "mo"]], "tu": [[479, "tu"]], "we": [[479, "we"]], "th": [[479, "th"]], "fr": [[479, "fr"]], "sa": [[479, "sa"]], "su": [[479, "su"]], "start_mower_via_api()": [[479, "start-mower-via-api"]], "stop_mower_via_api()": [[479, "stop-mower-via-api"]], "Plugin \u201aroomba\u2018 Konfiguration": [[480, "plugin-roomba-konfiguration"]], "socket_addr": [[480, "socket-addr"]], "socket_port": [[480, "socket-port"]], "socket_type": [[480, "socket-type"]], "roomba_cmd": [[480, "roomba-cmd"]], "roomba_get": [[480, "roomba-get"]], "roomba_raw": [[480, "roomba-raw"]], "Plugin \u201aroomba_980\u2018 Konfiguration": [[481, "plugin-roomba-980-konfiguration"]], "adress": [[481, "adress"]], "blid": [[481, "blid"], [482, "blid"]], "roombaPassword": [[481, "roombapassword"], [482, "roombapassword"]], "dock": [[481, "dock"]], "status_batterie": [[481, "status-batterie"]], "status_bin_full": [[481, "status-bin-full"]], "status_cleanMissionStatus_error": [[481, "status-cleanmissionstatus-error"]], "status_cleanMissionStatus_phase": [[481, "status-cleanmissionstatus-phase"]], "Plugin \u201aroombapysh\u2018 Konfiguration": [[482, "plugin-roombapysh-konfiguration"]], "Plugin \u201arpi1wire\u2018 Konfiguration": [[483, "plugin-rpi1wire-konfiguration"]], "dirname": [[483, "dirname"]], "rpi1wire_id": [[483, "rpi1wire-id"]], "rpi1wire_sys": [[483, "rpi1wire-sys"]], "Plugin \u201arpi_info\u2018 Konfiguration": [[484, "plugin-rpi-info-konfiguration"]], "poll_cycle": [[484, "poll-cycle"]], "rpiinfo_func": [[484, "rpiinfo-func"]], "rpiinfo_sys": [[484, "rpiinfo-sys"]], "cpu_temp()": [[484, "cpu-temp"]], "frequency()": [[484, "frequency"]], "frequency_capped()": [[484, "frequency-capped"]], "frequency_capped_last_reboot()": [[484, "frequency-capped-last-reboot"]], "temperature_limit()": [[484, "temperature-limit"]], "temperature_limit_last_reboot()": [[484, "temperature-limit-last-reboot"]], "throttled()": [[484, "throttled"]], "throttled_last_reboot()": [[484, "throttled-last-reboot"]], "under_voltage()": [[484, "under-voltage"]], "under_voltage_last_reboot()": [[484, "under-voltage-last-reboot"]], "uptime()": [[484, "uptime"]], "uptime_str()": [[484, "uptime-str"]], "Plugin \u201arrd\u2018 Konfiguration": [[485, "plugin-rrd-konfiguration"]], "rrd_dir": [[485, "rrd-dir"]], "step": [[485, "step"]], "rrd_ds_name": [[485, "rrd-ds-name"]], "rrd_max": [[485, "rrd-max"]], "rrd_min": [[485, "rrd-min"]], "rrd_no_series": [[485, "rrd-no-series"]], "rrd_step": [[485, "rrd-step"]], "rrd_type": [[485, "rrd-type"]], "Plugin \u201artr\u2018 Konfiguration": [[486, "plugin-rtr-konfiguration"]], "defaultBoostTime": [[486, "defaultboosttime"]], "defaultOnExpiredTimer": [[486, "defaultonexpiredtimer"]], "defaultValveProtect": [[486, "defaultvalveprotect"]], "default_Ki": [[486, "default-ki"], [487, "default-ki"]], "default_Kp": [[486, "default-kp"], [487, "default-kp"]], "rtr_Ki": [[486, "rtr-ki"]], "rtr_Kp": [[486, "rtr-kp"]], "rtr_temp_boost": [[486, "rtr-temp-boost"]], "rtr_temp_boost_time": [[486, "rtr-temp-boost-time"]], "rtr_temp_default": [[486, "rtr-temp-default"]], "rtr_temp_drop": [[486, "rtr-temp-drop"]], "rtr_valve_protect": [[486, "rtr-valve-protect"]], "Plugin \u201artr2\u2018 Konfiguration": [[487, "plugin-rtr2-konfiguration"]], "comfort_temp": [[487, "comfort-temp"]], "default_Kd": [[487, "default-kd"]], "fixed_reduction": [[487, "fixed-reduction"]], "frost_temp": [[487, "frost-temp"]], "hvac_mode": [[487, "hvac-mode"]], "max_output": [[487, "max-output"]], "min_output": [[487, "min-output"]], "night_reduction": [[487, "night-reduction"]], "standby_reduction": [[487, "standby-reduction"]], "valve_protect": [[487, "valve-protect"]], "rtr2_controller_settings": [[487, "rtr2-controller-settings"]], "rtr2_function": [[487, "rtr2-function"]], "rtr2_id": [[487, "rtr2-id"]], "rtr2_settings": [[487, "rtr2-settings"]], "Plugin \u201arussound\u2018 Konfiguration": [[488, "plugin-russound-konfiguration"]], "activate()": [[488, "activate"]], "Plugin \u201ashelly\u2018 Konfiguration": [[489, "plugin-shelly-konfiguration"]], "debuggen1devices": [[489, "debuggen1devices"]], "gen1debug": [[489, "gen1debug"]], "shelly_attr": [[489, "shelly-attr"]], "shelly_group": [[489, "shelly-group"]], "shelly_id": [[489, "shelly-id"]], "shelly_list_attrs": [[489, "shelly-list-attrs"]], "shelly_relay": [[489, "shelly-relay"]], "shelly_type": [[489, "shelly-type"]], "Plugin \u201asimulation\u2018 Konfiguration": [[490, "plugin-simulation-konfiguration"]], "callers": [[490, "callers"]], "data_file": [[490, "data-file"]], "sim": [[490, "sim"]], "Plugin \u201aslack\u2018 Konfiguration": [[491, "plugin-slack-konfiguration"]], "notify(channel, text, color= \u201anormal\u2018)": [[491, "notify-channel-text-color-normal"]], "channel": [[491, "channel"]], "Plugin \u201asma\u2018 Konfiguration": [[492, "plugin-sma-konfiguration"]], "allowed_timedelta": [[492, "allowed-timedelta"]], "sma": [[492, "sma"]], "Plugin \u201asma_em\u2018 Konfiguration": [[493, "plugin-sma-em-konfiguration"]], "serial": [[493, "serial"]], "sma_em_data_type": [[493, "sma-em-data-type"]], "Plugin \u201asma_mb\u2018 Konfiguration": [[494, "plugin-sma-mb-konfiguration"]], "smamb_datatype": [[494, "smamb-datatype"]], "smamb_register": [[494, "smamb-register"]], "Plugin \u201asmarttv\u2018 Konfiguration": [[495, "plugin-smarttv-konfiguration"]], "delay": [[495, "delay"]], "tv_version": [[495, "tv-version"]], "Plugin \u201asmartvisu\u2018 Konfiguration": [[496, "plugin-smartvisu-konfiguration"]], "create_masteritem_file": [[496, "create-masteritem-file"]], "default_acl": [[496, "default-acl"]], "generate_pages": [[496, "generate-pages"], [523, "generate-pages"]], "list_deprecated_warnings": [[496, "list-deprecated-warnings"]], "overwrite_templates": [[496, "overwrite-templates"], [523, "overwrite-templates"]], "visu_style": [[496, "visu-style"], [523, "visu-style"]], "sv_blocksize": [[496, "sv-blocksize"], [523, "sv-blocksize"]], "sv_name1": [[496, "sv-name1"], [523, "sv-name1"]], "sv_name2": [[496, "sv-name2"], [523, "sv-name2"]], "url(url, clientip= \u201a\u2018)": [[496, "url-url-clientip"], [524, "url-url-clientip"]], "clientip": [[496, "clientip"], [524, "clientip"]], "Plugin \u201asml\u2018 Konfiguration": [[497, "plugin-sml-konfiguration"]], "Plugin \u201asml2\u2018 Konfiguration": [[498, "plugin-sml2-konfiguration"]], "buffersize": [[498, "buffersize"], [499, "buffersize"]], "date_offset": [[498, "date-offset"], [499, "date-offset"]], "poly": [[498, "poly"], [499, "poly"]], "reflect_in": [[498, "reflect-in"], [499, "reflect-in"]], "reflect_out": [[498, "reflect-out"], [499, "reflect-out"]], "swap_crc_bytes": [[498, "swap-crc-bytes"], [499, "swap-crc-bytes"]], "use_polling": [[498, "use-polling"]], "xor_in": [[498, "xor-in"], [499, "xor-in"]], "xor_out": [[498, "xor-out"], [499, "xor-out"]], "Plugin \u201asmlx\u2018 Konfiguration": [[499, "plugin-smlx-konfiguration"]], "Plugin \u201asnap7_logo\u2018 Konfiguration": [[500, "plugin-snap7-logo-konfiguration"]], "tsap_client": [[500, "tsap-client"]], "tsap_server": [[500, "tsap-server"]], "Plugin \u201asnmp\u2018 Konfiguration": [[501, "plugin-snmp-konfiguration"]], "snmp_community": [[501, "snmp-community"]], "snmp_port": [[501, "snmp-port"]], "Plugin \u201asolarforecast\u2018 Konfiguration": [[502, "plugin-solarforecast-konfiguration"]], "azimuth": [[502, "azimuth"]], "declination": [[502, "declination"]], "kwp": [[502, "kwp"]], "service": [[502, "service"]], "solarforecast_attribute": [[502, "solarforecast-attribute"]], "is_power_available(power, hours=2)": [[502, "is-power-available-power-hours-2"]], "power": [[502, "power"]], "hours": [[502, "hours"]], "Plugin \u201asolarlog\u2018 Konfiguration": [[503, "plugin-solarlog-konfiguration"]], "fw2x": [[503, "fw2x"]], "Plugin \u201asonos\u2018 Konfiguration": [[504, "plugin-sonos-konfiguration"]], "discover_cycle": [[504, "discover-cycle"]], "local_webservice_path": [[504, "local-webservice-path"]], "local_webservice_path_snippet": [[504, "local-webservice-path-snippet"]], "snippet_duration_offset": [[504, "snippet-duration-offset"]], "speaker_ips": [[504, "speaker-ips"]], "tts": [[504, "tts"]], "webservice_ip": [[504, "webservice-ip"]], "webservice_port": [[504, "webservice-port"]], "sonos_attrib": [[504, "sonos-attrib"]], "sonos_dpt3_step": [[504, "sonos-dpt3-step"]], "sonos_dpt3_time": [[504, "sonos-dpt3-time"]], "sonos_recv": [[504, "sonos-recv"]], "sonos_send": [[504, "sonos-send"]], "sonos_uid": [[504, "sonos-uid"]], "play_all(alert_uri, speaker_list, alert_volume, alert_duration, fade_back)": [[504, "play-all-alert-uri-speaker-list-alert-volume-alert-duration-fade-back"]], "alert_uri": [[504, "alert-uri"]], "speaker_list": [[504, "speaker-list"]], "alert_volume": [[504, "alert-volume"]], "alert_duration": [[504, "alert-duration"]], "fade_back": [[504, "fade-back"]], "Plugin \u201aspeech\u2018 Konfiguration": [[505, "plugin-speech-konfiguration"]], "config_file": [[505, "config-file"]], "default_access": [[505, "default-access"]], "listen_ip": [[505, "listen-ip"]], "listen_port": [[505, "listen-port"]], "Plugin \u201asqlite_visu2_8\u2018 Konfiguration": [[506, "plugin-sqlite-visu2-8-konfiguration"]], "sqlite": [[506, "sqlite"]], "db(function, start, end= \u201anow\u2018)": [[506, "db-function-start-end-now"]], "filename": [[506, "filename"]], "old": [[506, "old"]], "new": [[506, "new"]], "Plugin \u201asqueezebox\u2018 Konfiguration": [[507, "plugin-squeezebox-konfiguration"]], "squeezebox_albumart": [[507, "squeezebox-albumart"]], "squeezebox_init": [[507, "squeezebox-init"]], "squeezebox_playerid": [[507, "squeezebox-playerid"]], "squeezebox_recv": [[507, "squeezebox-recv"]], "squeezebox_send": [[507, "squeezebox-send"]], "Plugin \u201astateengine\u2018 Konfiguration": [[508, "plugin-stateengine-konfiguration"]], "instant_leaveaction": [[508, "instant-leaveaction"]], "lamella_offset": [[508, "lamella-offset"]], "lamella_open_value": [[508, "lamella-open-value"]], "log_directory": [[508, "log-directory"]], "log_level": [[508, "log-level"]], "log_maxage": [[508, "log-maxage"]], "startup_delay_default": [[508, "startup-delay-default"]], "startup_log_level": [[508, "startup-log-level"]], "suspend_time_default": [[508, "suspend-time-default"]], "se_instant_leaveaction": [[508, "se-instant-leaveaction"]], "se_item_suspend_end": [[508, "se-item-suspend-end"]], "se_item_suspend_start": [[508, "se-item-suspend-start"]], "se_lastconditionset_item_id": [[508, "se-lastconditionset-item-id"]], "se_lastconditionset_item_name": [[508, "se-lastconditionset-item-name"]], "se_laststate_item_id": [[508, "se-laststate-item-id"]], "se_laststate_item_name": [[508, "se-laststate-item-name"]], "se_log_level": [[508, "se-log-level"]], "se_name": [[508, "se-name"]], "se_plugin": [[508, "se-plugin"]], "se_previousconditionset_item_id": [[508, "se-previousconditionset-item-id"]], "se_previousconditionset_item_name": [[508, "se-previousconditionset-item-name"]], "se_previousstate_conditionset_item_id": [[508, "se-previousstate-conditionset-item-id"]], "se_previousstate_conditionset_item_name": [[508, "se-previousstate-conditionset-item-name"]], "se_previousstate_item_id": [[508, "se-previousstate-item-id"]], "se_previousstate_item_name": [[508, "se-previousstate-item-name"]], "se_released_by": [[508, "se-released-by"]], "se_repeat_actions": [[508, "se-repeat-actions"]], "se_startup_delay": [[508, "se-startup-delay"]], "se_stateorder": [[508, "se-stateorder"]], "se_suspend_time": [[508, "se-suspend-time"]], "se_use": [[508, "se-use"]], "Plugin \u201asystemair\u2018 Konfiguration": [[509, "plugin-systemair-konfiguration"]], "slave_address": [[509, "slave-address"]], "coil_regaddr": [[509, "coil-regaddr"]], "systemair_regaddr": [[509, "systemair-regaddr"]], "Plugin \u201atankerkoenig\u2018 Konfiguration": [[510, "plugin-tankerkoenig-konfiguration"]], "details_update_cycle": [[510, "details-update-cycle"]], "price_update_cycle": [[510, "price-update-cycle"]], "tankerkoenig_admin": [[510, "tankerkoenig-admin"]], "tankerkoenig_attr": [[510, "tankerkoenig-attr"]], "tankerkoenig_id": [[510, "tankerkoenig-id"]], "get_petrol_station_detail(id)": [[510, "get-petrol-station-detail-id"]], "get_petrol_station_detail_reduced(id)": [[510, "get-petrol-station-detail-reduced-id"]], "get_petrol_station_prices(ids)": [[510, "get-petrol-station-prices-ids"]], "ids": [[510, "ids"]], "get_petrol_stations(lat, lon, type, sort, rad)": [[510, "get-petrol-stations-lat-lon-type-sort-rad"]], "lat": [[510, "lat"]], "lon": [[510, "lon"]], "sort": [[510, "sort"]], "rad": [[510, "rad"]], "Plugin \u201atasmota\u2018 Konfiguration": [[511, "plugin-tasmota-konfiguration"]], "full_topic": [[511, "full-topic"]], "telemetry_period": [[511, "telemetry-period"]], "tasmota_admin": [[511, "tasmota-admin"]], "tasmota_attr": [[511, "tasmota-attr"]], "tasmota_button": [[511, "tasmota-button"]], "tasmota_relay": [[511, "tasmota-relay"]], "tasmota_rf_details": [[511, "tasmota-rf-details"]], "tasmota_sml_attr": [[511, "tasmota-sml-attr"]], "tasmota_sml_device": [[511, "tasmota-sml-device"]], "tasmota_topic": [[511, "tasmota-topic"]], "tasmota_zb_attr": [[511, "tasmota-zb-attr"]], "tasmota_zb_cluster": [[511, "tasmota-zb-cluster"]], "tasmota_zb_device": [[511, "tasmota-zb-device"]], "tasmota_zb_group": [[511, "tasmota-zb-group"]], "Plugin \u201atelegram\u2018 Konfiguration": [[512, "plugin-telegram-konfiguration"]], "bye_msg": [[512, "bye-msg"]], "long_polling_timeout": [[512, "long-polling-timeout"]], "no_access_msg": [[512, "no-access-msg"]], "no_write_access_msg": [[512, "no-write-access-msg"]], "pretty_thread_names": [[512, "pretty-thread-names"]], "resend_attemps": [[512, "resend-attemps"]], "resend_delay": [[512, "resend-delay"]], "welcome_msg": [[512, "welcome-msg"]], "msg_broadcast(msg, chat_id)": [[512, "msg-broadcast-msg-chat-id"]], "msg": [[512, "msg"], [527, "msg"]], "chat_id": [[512, "chat-id"], [512, "id2"]], "photo_broadcast(photofile_or_url, caption, chat_id)": [[512, "photo-broadcast-photofile-or-url-caption-chat-id"]], "photofile_or_url": [[512, "photofile-or-url"]], "caption": [[512, "caption"]], "Plugin \u201atext_display\u2018 Konfiguration": [[513, "plugin-text-display-konfiguration"]], "text_display_content_source_item": [[513, "text-display-content-source-item"]], "text_display_cycle_time": [[513, "text-display-cycle-time"]], "text_display_default_message": [[513, "text-display-default-message"]], "text_display_sink_for_rings": [[513, "text-display-sink-for-rings"]], "text_display_sink_rings_with_prio": [[513, "text-display-sink-rings-with-prio"]], "text_display_target_ring": [[513, "text-display-target-ring"]], "Plugin \u201athz\u2018 Konfiguration": [[514, "plugin-thz-konfiguration"]], "max_update_period": [[514, "max-update-period"]], "min_update_period": [[514, "min-update-period"]], "poll_period": [[514, "poll-period"], [537, "poll-period"]], "serial_port": [[514, "serial-port"]], "server_host": [[514, "server-host"]], "server_port": [[514, "server-port"]], "thz": [[514, "thz"]], "Plugin \u201atimmy\u2018 Konfiguration": [[515, "plugin-timmy-konfiguration"]], "timmy_blink_cycles": [[515, "timmy-blink-cycles"]], "timmy_blink_loops": [[515, "timmy-blink-loops"]], "timmy_blink_pattern": [[515, "timmy-blink-pattern"]], "timmy_blink_target": [[515, "timmy-blink-target"]], "timmy_delay_off_delay_seconds": [[515, "timmy-delay-off-delay-seconds"]], "timmy_delay_on_delay_seconds": [[515, "timmy-delay-on-delay-seconds"]], "timmy_delay_target_item": [[515, "timmy-delay-target-item"]], "Plugin \u201atraffic\u2018 Konfiguration": [[516, "plugin-traffic-konfiguration"]], "get_route_info(origin, destination, alternatives, departure_time, mode)": [[516, "get-route-info-origin-destination-alternatives-departure-time-mode"]], "origin": [[516, "origin"]], "destination": [[516, "destination"]], "alternatives": [[516, "alternatives"]], "departure_time": [[516, "departure-time"]], "Plugin \u201atrovis557x\u2018 Konfiguration": [[517, "plugin-trovis557x-konfiguration"]], "modbus_debug": [[517, "modbus-debug"]], "modbus_mode": [[517, "modbus-mode"]], "modbus_speed": [[517, "modbus-speed"]], "modbus_timeout": [[517, "modbus-timeout"]], "modbus_trovis_address": [[517, "modbus-trovis-address"]], "desc": [[517, "desc"]], "invalid_to_zero": [[517, "invalid-to-zero"]], "liste": [[517, "liste"]], "trovis557x_var": [[517, "trovis557x-var"]], "werte": [[517, "werte"]], "Plugin \u201aunifi\u2018 Konfiguration": [[518, "plugin-unifi-konfiguration"]], "poll_cycle_time": [[518, "poll-cycle-time"]], "unifi_controller_url": [[518, "unifi-controller-url"]], "unifi_password": [[518, "unifi-password"]], "unifi_site_id": [[518, "unifi-site-id"]], "unifi_user": [[518, "unifi-user"]], "unifi_ap_mac": [[518, "unifi-ap-mac"]], "unifi_client_mac": [[518, "unifi-client-mac"]], "unifi_device_mac": [[518, "unifi-device-mac"]], "unifi_switch_mac": [[518, "unifi-switch-mac"]], "unifi_switch_port_no": [[518, "unifi-switch-port-no"]], "unifi_switch_port_profile_off": [[518, "unifi-switch-port-profile-off"]], "unifi_switch_port_profile_on": [[518, "unifi-switch-port-profile-on"]], "unifi_type": [[518, "unifi-type"]], "Plugin \u201auzsu\u2018 Konfiguration": [[519, "plugin-uzsu-konfiguration"]], "backintime": [[519, "backintime"], [519, "id3"]], "interpolation_interval": [[519, "interpolation-interval"]], "interpolation_precision": [[519, "interpolation-precision"]], "interpolation_type": [[519, "interpolation-type"]], "remove_duplicates": [[519, "remove-duplicates"]], "suncalculation_cron": [[519, "suncalculation-cron"]], "uzsu_item": [[519, "uzsu-item"]], "activate(activevalue, item)": [[519, "activate-activevalue-item"]], "activevalue": [[519, "activevalue"], [519, "id8"]], "clear(clear, item)": [[519, "clear-clear-item"]], "clear": [[519, "clear"], [519, "id4"]], "interpolation(intpl_type=None, interval=5, backintime=0)": [[519, "interpolation-intpl-type-none-interval-5-backintime-0"]], "intpl_type": [[519, "intpl-type"]], "itpl(clear=False, item)": [[519, "itpl-clear-false-item"]], "lastvalue(by= \u201aNone\u2018, item)": [[519, "lastvalue-by-none-item"]], "by": [[519, "by"]], "planned(item)": [[519, "planned-item"]], "resume(activevalue, item)": [[519, "resume-activevalue-item"]], "Plugin \u201avacations\u2018 Konfiguration": [[520, "plugin-vacations-konfiguration"]], "get_vacation(date, province)": [[520, "get-vacation-date-province"]], "province": [[520, "province"], [520, "id3"], [520, "id5"]], "get_vacation_name(date, province)": [[520, "get-vacation-name-date-province"]], "is_vacation(date, province)": [[520, "is-vacation-date-province"]], "Plugin \u201avicare\u2018 Konfiguration": [[521, "plugin-vicare-konfiguration"]], "accessToken": [[521, "accesstoken"]], "clientID": [[521, "clientid"]], "redirectUrl": [[521, "redirecturl"]], "refreshToken": [[521, "refreshtoken"]], "vicare_path": [[521, "vicare-path"]], "vicare_rx_key": [[521, "vicare-rx-key"]], "vicare_tx_key": [[521, "vicare-tx-key"]], "vicare_tx_path": [[521, "vicare-tx-path"]], "Plugin \u201aviessmann\u2018 Konfiguration": [[522, "plugin-viessmann-konfiguration"]], "heating_type": [[522, "heating-type"]], "addr": [[522, "addr"], [522, "id2"], [522, "id3"]], "length": [[522, "length"]], "unit": [[522, "unit"]], "Plugin \u201avisu_smartvisu\u2018 Konfiguration": [[523, "plugin-visu-smartvisu-konfiguration"]], "Plugin \u201avisu_websocket\u2018 Konfiguration": [[524, "plugin-visu-websocket-konfiguration"]], "Plugin \u201avolkszaehler\u2018 Konfiguration": [[525, "plugin-volkszaehler-konfiguration"]], "Plugin \u201awaterkotte\u2018 Konfiguration": [[526, "plugin-waterkotte-konfiguration"]], "waterkotte": [[526, "waterkotte"]], "Plugin \u201awebpush\u2018 Konfiguration": [[527, "plugin-webpush-konfiguration"]], "grouplist": [[527, "grouplist"]], "varpath": [[527, "varpath"]], "webpush_communication": [[527, "webpush-communication"]], "webpush_config": [[527, "webpush-config"]], "sendPushNotification(msg, group, title= \u201a\u2018, url= \u201a\u2018, requireInteraction=, icon= \u201a\u2018, badge= \u201a\u2018, image= \u201a\u2018, silent=False, vibrate=[], ttl=604800, highpriority=True, returnval=True, timestamp=True)": [[527, "sendpushnotification-msg-group-title-url-requireinteraction-icon-badge-image-silent-false-vibrate-ttl-604800-highpriority-true-returnval-true-timestamp-true"]], "requireInteraction": [[527, "requireinteraction"]], "badge": [[527, "badge"]], "silent": [[527, "silent"]], "vibrate": [[527, "vibrate"]], "ttl": [[527, "ttl"]], "highpriority": [[527, "highpriority"]], "returnval": [[527, "returnval"]], "timestamp": [[527, "timestamp"]], "Plugin \u201awebservices\u2018 Konfiguration": [[528, "plugin-webservices-konfiguration"]], "use_service_auth": [[528, "use-service-auth"]], "webservices_data": [[528, "webservices-data"]], "webservices_set": [[528, "webservices-set"]], "Plugin \u201awettercom\u2018 Konfiguration": [[529, "plugin-wettercom-konfiguration"]], "project": [[529, "project"]], "Plugin \u201awithings_health\u2018 Konfiguration": [[530, "plugin-withings-health-konfiguration"]], "consumer_secret": [[530, "consumer-secret"]], "user_id": [[530, "user-id"]], "withings_type": [[530, "withings-type"]], "get_callback_url()": [[530, "get-callback-url"]], "Plugin \u201awol\u2018 Konfiguration": [[531, "plugin-wol-konfiguration"]], "wol_ip": [[531, "wol-ip"]], "wol_mac": [[531, "wol-mac"]], "wake_on_lan(mac_adr, ip_adr)": [[531, "wake-on-lan-mac-adr-ip-adr"]], "mac_adr": [[531, "mac-adr"]], "ip_adr": [[531, "ip-adr"]], "Plugin \u201awunderground\u2018 Konfiguration": [[532, "plugin-wunderground-konfiguration"]], "wug_xmlstring": [[532, "wug-xmlstring"]], "Plugin \u201axiaomi_vac\u2018 Konfiguration": [[533, "plugin-xiaomi-vac-konfiguration"]], "read_cycle": [[533, "read-cycle"]], "robvac": [[533, "robvac"]], "Plugin \u201axmpp\u2018 Konfiguration": [[534, "plugin-xmpp-konfiguration"]], "jid": [[534, "jid"]], "plugins": [[534, "plugins"]], "server": [[534, "server"]], "use_ipv6": [[534, "use-ipv6"]], "send(to, msgsend, mt= \u201achat\u2018)": [[534, "send-to-msgsend-mt-chat"]], "msgsend": [[534, "msgsend"]], "mt": [[534, "mt"]], "Plugin \u201ayamaha\u2018 Konfiguration": [[535, "plugin-yamaha-konfiguration"]], "yamaha_cmd": [[535, "yamaha-cmd"]], "yamaha_host": [[535, "yamaha-host"]], "Plugin \u201ayamahayxc\u2018 Konfiguration": [[536, "plugin-yamahayxc-konfiguration"]], "yamahayxc_cmd": [[536, "yamahayxc-cmd"]], "yamahayxc_host": [[536, "yamahayxc-host"]], "yamahayxc_zone": [[536, "yamahayxc-zone"]], "Plugin \u201azigbee2mqtt\u2018 Konfiguration": [[537, "plugin-zigbee2mqtt-konfiguration"]], "base_topic": [[537, "base-topic"]], "read_at_init": [[537, "read-at-init"]], "z2m_gui": [[537, "z2m-gui"]], "z2m_attr": [[537, "z2m-attr"]], "z2m_bool_values": [[537, "z2m-bool-values"]], "z2m_readonly": [[537, "z2m-readonly"]], "z2m_topic": [[537, "z2m-topic"]], "z2m_writeonly": [[537, "z2m-writeonly"]], "Plugin \u201azwave\u2018 Konfiguration": [[538, "plugin-zwave-konfiguration"]], "config_path": [[538, "config-path"]], "logfile": [[538, "logfile"]], "loglevel": [[538, "loglevel"]], "sec_strategy": [[538, "sec-strategy"]], "zlogging": [[538, "zlogging"]], "zwave_node": [[538, "zwave-node"]], "zwave_value": [[538, "zwave-value"]], "Alle Plugins": [[545, "alle-plugins"], [546, "alle-plugins"]], "Anmerkungen f\u00fcr die obige Liste:": [[545, null], [547, null], [548, null], [550, null], [552, null], [554, null], [558, null]], "Gateway Plugins": [[548, "gateway-plugins"], [549, "gateway-plugins"]], "Interface Plugins": [[550, "interface-plugins"], [551, "interface-plugins"]], "Protokoll Plugins": [[552, "protokoll-plugins"], [553, "protokoll-plugins"]], "System Plugins": [[554, "system-plugins"], [555, "system-plugins"]], "Nicht klassifizierte Plugins": [[556, "nicht-klassifizierte-plugins"], [557, "nicht-klassifizierte-plugins"]], "Web/Cloud Plugins": [[558, "web-cloud-plugins"], [559, "web-cloud-plugins"]], "APIs von SmartHomeNG": [[560, "apis-von-smarthomeng"]], "Relative Item Referenzen": [[561, "relative-item-referenzen"]], "Syntax der relativen Referenzen": [[561, "syntax-der-relativen-referenzen"]], "Nutzung in eval_trigger und eval": [[561, "nutzung-in-eval-trigger-und-eval"]], "Nutzung im Zusammenhang mit Item-Attributen": [[561, null]], "Nutzung relativer Item Referenzen in Plugins": [[561, "nutzung-relativer-item-referenzen-in-plugins"]], "Funktionen eines Items": [[562, "funktionen-eines-items"]], "Beispiele f\u00fcr die Nutzung von Funktionen": [[562, "beispiele-fur-die-nutzung-von-funktionen"]], "Zugriff auf die Werte von Items": [[563, "zugriff-auf-die-werte-von-items"]], "Lesen einer Item Wertes": [[563, "lesen-einer-item-wertes"]], "Zugriff auf ein Listen-Element neu": [[563, "zugriff-auf-ein-listen-element-neu"]], "Zugriff auf ein Dict-Element neu": [[563, "zugriff-auf-ein-dict-element-neu"]], "Schreiben eines Item Wertes": [[563, "schreiben-eines-item-wertes"]], "Schreiben eines Listen-Elements neu": [[563, "schreiben-eines-listen-elements-neu"]], "Schreiben eines Dict-Elements neu": [[563, "schreiben-eines-dict-elements-neu"]], "Weitere Parameter Item Zugriff": [[563, "weitere-parameter-item-zugriff"]], "Erweiterter Zugriff auf List- und Dict-Items neu": [[563, "erweiterter-zugriff-auf-list-und-dict-items-neu"]], "List-Items": [[563, "list-items"]], "Dict-Items": [[563, "dict-items"]], "Methoden zum Zugriff auf Items": [[565, "methoden-zum-zugriff-auf-items"], [591, "methoden-zum-zugriff-auf-items"]], "return_item(path)": [[565, "return-item-path"], [591, "return-item-path"]], "return_items()": [[565, "return-items"], [591, "return-items"]], "match_items(regex)": [[565, "match-items-regex"], [591, "match-items-regex"]], "find_items(configattribute)": [[565, "find-items-configattribute"], [591, "find-items-configattribute"]], "find_children(parentitem, configattribute)": [[565, "find-children-parentitem-configattribute"], [591, "find-children-parentitem-configattribute"]], "Plugin-spezifische Attribute": [[566, "plugin-spezifische-attribute"]], "Vererbung von Attributen update": [[566, "vererbung-von-attributen-update"]], "Zugriff auf Attribute anderer Items update": [[566, "zugriff-auf-attribute-anderer-items-update"]], "Platzhalter in Attributwerten neu": [[566, "platzhalter-in-attributwerten-neu"]], "Properties eines Items": [[567, "properties-eines-items"], [591, "properties-eines-items"]], "autotimer": [[568, "autotimer"]], "crontab Update": [[569, "crontab-update"], [592, "crontab-update"]], "enforce_change": [[571, "enforce-change"]], "enforce_updates": [[572, "enforce-updates"]], "Attribut eval": [[573, "attribut-eval"]], "zus\u00e4tzliche Funktionen in eval Ausdr\u00fccken": [[573, "zusatzliche-funktionen-in-eval-ausdrucken"]], "Nutzung von Userfunctions": [[573, "nutzung-von-userfunctions"]], "Eval Syntax": [[573, "eval-syntax"]], "Attribut eval_trigger": [[573, "attribut-eval-trigger"]], "Attribut eval_on_trigger_only": [[573, "attribut-eval-on-trigger-only"]], "Gemeinsame Verwendung von eval und on_... Item Attributen": [[573, "gemeinsame-verwendung-von-eval-und-on-item-attributen"], [576, "gemeinsame-verwendung-von-eval-und-on-item-attributen"]], "Abfrage des Ausl\u00f6sers eines eval Ausdrucks": [[573, "abfrage-des-auslosers-eines-eval-ausdrucks"]], "Hysterese": [[574, "hysterese"]], "hysteresis_input": [[574, "hysteresis-input"]], "Oberhalb des oberen Schwellwertes": [[574, "oberhalb-des-oberen-schwellwertes"]], "zwischen den Schwellwerten": [[574, "zwischen-den-schwellwerten"]], "Unterhalb des unteren Schwellwertes": [[574, "unterhalb-des-unteren-schwellwertes"]], "hysteresis_upper_threshold": [[574, "hysteresis-upper-threshold"]], "hysteresis_lower_threshold": [[574, "hysteresis-lower-threshold"]], "zus\u00e4tzliche Statusinformationen": [[574, "zusatzliche-statusinformationen"]], "Stati eines Hysteresis Items": [[574, "id1"]], "log_change und log_text": [[575, "log-change-und-log-text"]], "Attribut log_change": [[575, "attribut-log-change"]], "Attribut log_level": [[575, "attribut-log-level"]], "eval-Ausduck in log_level": [[575, "eval-ausduck-in-log-level"]], "Attribut log_text": [[575, "attribut-log-text"]], "Variablen in log_text": [[575, "variablen-in-log-text"]], "eval-Ausdr\u00fccke in log_text": [[575, "eval-ausdrucke-in-log-text"]], "Attribut log_mapping": [[575, "attribut-log-mapping"]], "Attribut log_rules": [[575, "attribut-log-rules"]], "lowlimit": [[575, "lowlimit"]], "highlimit": [[575, "highlimit"]], "filter": [[575, "filter"]], "exclude": [[575, "exclude"]], "itemvalue": [[575, "itemvalue"]], "on_update und on_change": [[576, "on-update-und-on-change"]], "Attribut on_update": [[576, "attribut-on-update"]], "Attribut on_change": [[576, "attribut-on-change"]], "Standard Attribute Update": [[577, "standard-attribute-update"]], "struct": [[578, "struct"]], "SmartHomeNG Items": [[580, "smarthomeng-items"]], "Umgebungsbezogene Items": [[580, "umgebungsbezogene-items"]], "Tag/Nacht": [[580, "tag-nacht"]], "Mondlicht / -stand": [[580, "mondlicht-stand"]], "Sonnenaufgang / Sonnenstand": [[580, "sonnenaufgang-sonnenstand"]], "System Items": [[580, "system-items"]], "Libraries f\u00fcr Plugins und Logiken": [[581, "libraries-fur-plugins-und-logiken"]], "CherryPyFilter": [[583, "cherrypyfilter"]], "Benutzung des Filters": [[583, "benutzung-des-filters"], [583, "id1"], [583, "id2"]], "DuplicateFilter": [[583, "duplicatefilter"]], "Filter": [[583, "filter"]], "Logging Formatter": [[584, "logging-formatter"]], "Logging Handler": [[585, "logging-handler"]], "ShngTimedRotatingFileHandler": [[585, "shngtimedrotatingfilehandler"]], "Benutzung des Handlers": [[585, "benutzung-des-handlers"], [585, "id1"]], "DateTimeRotatingFileHandler": [[585, "datetimerotatingfilehandler"]], "ShngMemLogHandler": [[585, "shngmemloghandler"]], "Text Formatierung beim Logging": [[586, "text-formatierung-beim-logging"]], "Exceptions": [[588, "exceptions"]], "Exception LeaveLogic": [[588, "exception-leavelogic"]], "Funktionen und Klassen in Logiken": [[589, "funktionen-und-klassen-in-logiken"]], "Funktionen in Logiken": [[589, "funktionen-in-logiken"]], "bis SmartHomeNG v1.9.2": [[589, "bis-smarthomeng-v1-9-2"], [589, "id1"]], "ab SmartHomeNG v1.9.3": [[589, "ab-smarthomeng-v1-9-3"], [589, "id2"]], "Klassen in Logiken": [[589, "klassen-in-logiken"]], "Grundstruktur einer Logik": [[590, "grundstruktur-einer-logik"]], "Zugriff auf Items": [[591, "zugriff-auf-items"]], "Zugriff auf den Wert eines Items": [[591, "zugriff-auf-den-wert-eines-items"]], "Logik Konfiguration": [[592, "logik-konfiguration"]], "watch_item": [[592, "watch-item"]], "User Parameter": [[592, "user-parameter"]], "Logging in Logiken": [[593, "logging-in-logiken"]], "Logger Konfiguration": [[593, "logger-konfiguration"]], "Logging im Code": [[593, "logging-im-code"]], "Die Objekte logic und logics": [[594, "die-objekte-logic-und-logics"]], "Das logic Objekt": [[594, "das-logic-objekt"]], "Das trigger Dictionary": [[594, "das-trigger-dictionary"]], "Das logics Objekt": [[594, "das-logics-objekt"]], "Nutzung von MQTT in Logiken": [[595, "nutzung-von-mqtt-in-logiken"]], "Das mqtt Objekt": [[595, "das-mqtt-objekt"]], "mqtt.publish_topic()": [[595, "mqtt-publish-topic"]], "mqtt.subscribe_topic()": [[595, "mqtt-subscribe-topic"]], "mqtt.unsubscribe_topic()": [[595, "mqtt-unsubscribe-topic"]], "Persistente Variablen und Objekte": [[596, "persistente-variablen-und-objekte"]], "Existenz einer Variablen sicherstellen": [[596, "existenz-einer-variablen-sicherstellen"]], "Nutzung selbst definierter Parameter": [[596, "nutzung-selbst-definierter-parameter"]], "Einrichtung (Logik \u00fcbergreifend)": [[596, "einrichtung-logik-ubergreifend"]], "Unterschiede zu lokalen persistenten Variablen": [[596, "unterschiede-zu-lokalen-persistenten-variablen"]], "Nutzung von Plugin Funktionen": [[597, "nutzung-von-plugin-funktionen"]], "Dokumentation der Plugin Funktion(en)": [[597, "dokumentation-der-plugin-funktion-en"]], "Aufruf der Plugin Funktion(en)": [[597, "aufruf-der-plugin-funktion-en"]], "Bereits geladene Python Module": [[598, "bereits-geladene-python-module"]], "Import weiterer Python Module": [[598, "import-weiterer-python-module"]], "SmartHomeNG Methoden": [[599, "smarthomeng-methoden"]], "Feiertage, Daten und Zeiten": [[599, "feiertage-daten-und-zeiten"], [634, "feiertage-daten-und-zeiten"]], "Astronomie (Sonne und Mond)": [[599, "astronomie-sonne-und-mond"], [636, "astronomie-sonne-und-mond"]], "sh.sun": [[599, "sh-sun"], [636, "sh-sun"]], "sh.sun.pos()": [[599, "sh-sun-pos"], [636, "sh-sun-pos"]], "sh.sun.set()": [[599, "sh-sun-set"], [636, "sh-sun-set"]], "sh.sun.rise()": [[599, "sh-sun-rise"], [636, "sh-sun-rise"]], "sh.moon": [[599, "sh-moon"], [636, "sh-moon"]], "sh.moon.pos()": [[599, "sh-moon-pos"], [636, "sh-moon-pos"]], "sh.moon.set()": [[599, "sh-moon-set"], [636, "sh-moon-set"]], "sh.moon.rise()": [[599, "sh-moon-rise"], [636, "sh-moon-rise"]], "sh.moon.light()": [[599, "sh-moon-light"], [636, "sh-moon-light"]], "sh.moon.phase()": [[599, "sh-moon-phase"], [636, "sh-moon-phase"]], "sh.tools Objekt": [[599, "sh-tools-objekt"]], "sh.tools.ping()": [[599, "sh-tools-ping"]], "sh.tools.dewpoint()": [[599, "sh-tools-dewpoint"]], "sh.tools.fetch_url()": [[599, "sh-tools-fetch-url"]], "sh.tools.dt2ts(dt)": [[599, "sh-tools-dt2ts-dt"]], "sh.tools.dt2js(dt)": [[599, "sh-tools-dt2js-dt"]], "sh.tools.rel2abs(temp, hum)": [[599, "sh-tools-rel2abs-temp-hum"]], "sh.tools.runtime()": [[599, "sh-tools-runtime"]], "item_attribute_prefixes": [[601, "item-attribute-prefixes"]], "Plugins ohne Attribut-Pr\u00e4fixe": [[601, "plugins-ohne-attribut-prafixe"]], "Metadaten f\u00fcr Module": [[605, "metadaten-fur-module"], [614, "metadaten-fur-module"]], "Metadaten f\u00fcr Plugins": [[605, "metadaten-fur-plugins"], [619, "metadaten-fur-plugins"]], "Modul admin": [[612, "modul-admin"]], "API des Moduls admin.rest": [[612, "api-des-moduls-admin-rest"]], "API des Moduls api_plugins": [[612, "module-modules.admin.api_plugins"]], "API des Moduls api_plugin": [[612, "module-modules.admin.api_plugin"]], "API des Moduls (WebApi)": [[612, "api-des-moduls-webapi"]], "Modul http": [[613, "modul-http"]], "Modul mqtt": [[615, "modul-mqtt"]], "Module websocket": [[616, "module-websocket"]], "Netzwerk": [[617, "netzwerk"]], "Ports": [[617, "ports"]], "Port Nutzung durch SmartHomeNG": [[617, "id1"]], "Port Nutzung durch weitere Dienste": [[617, "id2"]], "asyncio Unterst\u00fctzung in Plugins Neu": [[618, "asyncio-unterstutzung-in-plugins-neu"]], "Methoden zur Unterst\u00fctzung von asyncio": [[618, "methoden-zur-unterstutzung-von-asyncio"]], "Plugin Typen": [[621, "plugin-typen"]], "Classic Plugin": [[621, "classic-plugin"]], "SmartPlugin": [[621, "smartplugin"]], "MqttPlugin": [[621, "mqttplugin"]], "SmartDevicePlugin": [[621, "smartdeviceplugin"]], "Plugin": [[622, "plugin"]], "Protokoll": [[622, "protokoll"]], "Verbindung": [[622, "verbindung"]], "DataTypes": [[622, "datatypes"]], "Class SmartDevicePlugin": [[623, "class-smartdeviceplugin"]], "Dokumentation des Plugins": [[625, "dokumentation-des-plugins"]], "Python Environment Update": [[627, "python-environment-update"]], "Python Version Installieren Neu": [[628, "python-version-installieren-neu"]], "Installation von ben\u00f6tigten Paketen": [[628, "installation-von-benotigten-paketen"]], "Download des Source Codes": [[628, "download-des-source-codes"]], "Das Archiv auspacken": [[628, "das-archiv-auspacken"]], "Source Code konfigurieren": [[628, "source-code-konfigurieren"]], "Den Build-Prozess starten": [[628, "den-build-prozess-starten"]], "Support Skripte f\u00fcr SmartHomeNG": [[629, "support-skripte-fur-smarthomeng"]], "make_venv Skript": [[629, "make-venv-skript"]], "act Skript": [[629, "act-skript"]], "Virtuelle Python Environments Update": [[630, "virtuelle-python-environments-update"]], "Installation von venv bzw. virtualenv": [[630, "installation-von-venv-bzw-virtualenv"]], "Erstellung von virtuellen Environments": [[630, "erstellung-von-virtuellen-environments"]], "L\u00f6schen eines virtuellen Environment": [[630, "loschen-eines-virtuellen-environment"]], "Virtuelle Environements als Dienst": [[630, "virtuelle-environements-als-dienst"]], "Referenz Update": [[631, "referenz-update"]], "Ablauf des Starts von SmartHomeNG": [[632, "ablauf-des-starts-von-smarthomeng"]], "Erste Schritte der Initialisierung": [[632, "erste-schritte-der-initialisierung"]], "Initialisierung des smarthome Objektes": [[632, "initialisierung-des-smarthome-objektes"]], "0 - Initialisierung": [[632, "initialisierung"]], "1 - Initialisierung: Logging initialisiert": [[632, "initialisierung-logging-initialisiert"]], "2 - Initialisierung: Voraussetzungen \u00fcberpr\u00fcft": [[632, "initialisierung-voraussetzungen-uberpruft"]], "3 - Initialisierung: Pr\u00fcfung der Prozessor-Geschwindigkeit": [[632, "initialisierung-prufung-der-prozessor-geschwindigkeit"]], "10 - Startet": [[632, "startet"]], "11 - Startet: Initialisiert und startet ladbare Module": [[632, "startet-initialisiert-und-startet-ladbare-module"]], "12 - Startet: Initialisiert Plugins": [[632, "startet-initialisiert-plugins"]], "13 - Startet: L\u00e4dt Item Definitionen": [[632, "startet-ladt-item-definitionen"]], "14 - Startet: Geladene Items vorbereiten": [[632, "startet-geladene-items-vorbereiten"]], "15 - Startet: Initialisiert Logiken": [[632, "startet-initialisiert-logiken"]], "16 - Startet: Startet Plugins": [[632, "startet-startet-plugins"]], "Laufzeit von SmartHomeNG": [[632, "laufzeit-von-smarthomeng"]], "20 - Aktiv": [[632, "aktiv"]], "Beendigung von SmartHomeNG": [[632, "beendigung-von-smarthomeng"]], "30 - Startet neu": [[632, "startet-neu"]], "31 - Stoppen": [[632, "stoppen"]], "32 - Stoppen: Threads beenden": [[632, "stoppen-threads-beenden"]], "33 - Angehalten": [[632, "angehalten"]], "Das shng_status dict": [[632, "das-shng-status-dict"]], "Feiertage": [[633, "feiertage"]], "Kommandozeilen-Optionen": [[635, "kommandozeilen-optionen"]], "SmartHomeNG (der Core)": [[637, "smarthomeng-der-core"]], "Erstellung und Speicherung": [[638, "erstellung-und-speicherung"]], "Verwendung der Admin GUI": [[638, "verwendung-der-admin-gui"]], "Initialisierung der Userfunctions": [[638, "initialisierung-der-userfunctions"]], "Aufruf einer Userfunction": [[638, "aufruf-einer-userfunction"]], "Logging aus Userfunctions": [[638, "logging-aus-userfunctions"]], "Nutzung von Item Werten": [[638, "nutzung-von-item-werten"]], "\u00dcbergabe als Parameter": [[638, "ubergabe-als-parameter"]], "durch das Smarthome-Objekt": [[638, "durch-das-smarthome-objekt"]], "Reload von Userfunctions": [[638, "reload-von-userfunctions"]], "Release 1.0 und davor": [[639, "release-1-0-und-davor"]], "Release 1.1 bis 1.5": [[640, "release-1-1-bis-1-5"]], "Release 1.6 - 11. Mai 2019": [[641, "release-1-6-11-mai-2019"]], "Absolute minimum Python Version": [[641, "absolute-minimum-python-version"]], "Bugfixes im CORE": [[641, "bugfixes-im-core"], [656, "bugfixes-im-core"], [675, "bugfixes-im-core"]], "Updates im CORE": [[641, "updates-im-core"], [655, "updates-im-core"], [675, "updates-im-core"]], "Neue Plugins": [[641, "neue-plugins"], [642, "neue-plugins"], [652, "neue-plugins"], [653, "neue-plugins"], [654, "neue-plugins"], [655, "neue-plugins"], [656, "neue-plugins"]], "Plugin Erweiterungen": [[641, "plugin-erweiterungen"], [642, "plugin-erweiterungen"]], "Veraltete Plugins": [[641, "veraltete-plugins"]], "Release 1.6.1 - 10. August 2019": [[642, "release-1-6-1-10-august-2019"]], "Release 1.7 - 6. April 2020": [[643, "release-1-7-6-april-2020"]], "Absolute Minimum Python Version": [[643, "absolute-minimum-python-version"], [644, "absolute-minimum-python-version"], [645, "absolute-minimum-python-version"], [691, "absolute-minimum-python-version"]], "\u00c4nderungen am Core": [[643, "anderungen-am-core"], [644, "anderungen-am-core"], [645, "anderungen-am-core"], [646, "anderungen-am-core"], [647, "anderungen-am-core"], [648, "anderungen-am-core"], [649, "anderungen-am-core"], [650, "anderungen-am-core"], [651, "anderungen-am-core"], [652, "anderungen-am-core"], [653, "anderungen-am-core"], [654, "anderungen-am-core"], [655, "anderungen-am-core"], [656, "anderungen-am-core"]], "Bugfixes in the CORE": [[643, "bugfixes-in-the-core"], [644, "bugfixes-in-the-core"], [645, "bugfixes-in-the-core"], [646, "bugfixes-in-the-core"], [647, "bugfixes-in-the-core"], [648, "bugfixes-in-the-core"], [649, "bugfixes-in-the-core"], [691, "bugfixes-in-the-core"]], "Updates in the CORE": [[643, "updates-in-the-core"], [644, "updates-in-the-core"], [645, "updates-in-the-core"], [646, "updates-in-the-core"], [647, "updates-in-the-core"], [649, "updates-in-the-core"], [651, "updates-in-the-core"], [653, "updates-in-the-core"], [654, "updates-in-the-core"], [656, "updates-in-the-core"], [691, "updates-in-the-core"]], "\u00c4nderungen bei Plugins": [[643, "anderungen-bei-plugins"], [644, "anderungen-bei-plugins"], [645, "anderungen-bei-plugins"], [646, "anderungen-bei-plugins"], [647, "anderungen-bei-plugins"], [648, "anderungen-bei-plugins"], [649, "anderungen-bei-plugins"], [650, "anderungen-bei-plugins"], [651, "anderungen-bei-plugins"], [652, "anderungen-bei-plugins"], [653, "anderungen-bei-plugins"], [654, "anderungen-bei-plugins"], [655, "anderungen-bei-plugins"], [656, "anderungen-bei-plugins"]], "New Plugins": [[643, "new-plugins"], [644, "new-plugins"], [645, "new-plugins"], [646, "new-plugins"], [649, "new-plugins"], [650, "new-plugins"], [651, "new-plugins"], [665, "new-plugins"], [666, "new-plugins"], [667, "new-plugins"], [669, "new-plugins"], [670, "new-plugins"], [691, "new-plugins"]], "Plugin Updates": [[643, "plugin-updates"], [644, "plugin-updates"], [645, "plugin-updates"], [647, "plugin-updates"], [648, "plugin-updates"], [649, "plugin-updates"], [650, "plugin-updates"], [651, "plugin-updates"], [652, "plugin-updates"], [653, "plugin-updates"], [654, "plugin-updates"], [655, "plugin-updates"], [656, "plugin-updates"], [691, "plugin-updates"]], "Outdated Plugins": [[643, "outdated-plugins"], [644, "outdated-plugins"], [645, "outdated-plugins"], [646, "outdated-plugins"], [649, "outdated-plugins"], [650, "outdated-plugins"], [651, "outdated-plugins"], [652, "outdated-plugins"], [653, "outdated-plugins"], [654, "outdated-plugins"], [655, "outdated-plugins"], [656, "outdated-plugins"], [691, "outdated-plugins"]], "Documentation": [[643, "documentation"], [644, "documentation"], [645, "documentation"], [646, "documentation"], [647, "documentation"], [648, "documentation"], [649, "documentation"], [650, "documentation"], [651, "documentation"], [691, "documentation"]], "Release 1.7.1 - 14. April 2020": [[644, "release-1-7-1-14-april-2020"]], "Release 1.7.2 - 23. Juni 2020": [[645, "release-1-7-2-23-juni-2020"]], "Release 1.8 - 15. Januar 2021": [[646, "release-1-8-15-januar-2021"]], "Plugin Updates and Bugfixes": [[646, "plugin-updates-and-bugfixes"]], "Retired Plugins": [[646, "retired-plugins"], [649, "retired-plugins"], [650, "retired-plugins"], [652, "retired-plugins"], [653, "retired-plugins"], [655, "retired-plugins"], [656, "retired-plugins"]], "Weitere \u00c4nderungen": [[646, "weitere-anderungen"], [647, "weitere-anderungen"], [648, "weitere-anderungen"], [649, "weitere-anderungen"], [650, "weitere-anderungen"], [651, "weitere-anderungen"], [652, "weitere-anderungen"], [653, "weitere-anderungen"], [654, "weitere-anderungen"], [655, "weitere-anderungen"], [656, "weitere-anderungen"]], "Release 1.8.1 - 24. Januar 2021": [[647, "release-1-8-1-24-januar-2021"]], "Release 1.8.2 - 21. Februar 2021": [[648, "release-1-8-2-21-februar-2021"]], "Release 1.9 - 28. Dezember 2021": [[649, "release-1-9-28-dezember-2021"]], "Release 1.9.1 - 13. Feb 2022": [[650, "release-1-9-1-13-feb-2022"]], "Updates to the CORE": [[650, "updates-to-the-core"]], "Release 1.9.2 - 2. Mai 2022": [[651, "release-1-9-2-2-mai-2022"]], "Release 1.9.3 - 31. Okt 2022": [[652, "release-1-9-3-31-okt-2022"]], "Allgemeine \u00c4nderungen": [[652, "allgemeine-anderungen"]], "Release 1.9.4 - 14. M\u00e4rz 2023": [[653, "release-1-9-4-14-marz-2023"]], "Allgmein": [[653, "allgmein"], [653, "id1"], [654, "allgmein"], [654, "id1"], [655, "allgmein"], [655, "id2"], [656, "allgmein"], [656, "id1"]], "Release 1.9.5 - 31. M\u00e4rz 2023": [[654, "release-1-9-5-31-marz-2023"]], "Release 1.10 - 29. Jan 2024": [[655, "release-1-10-29-jan-2024"]], "Release 1.10.x - tt. mmm 2024": [[656, "release-1-10-x-tt-mmm-2024"]], "Release Notes": [[657, "release-notes"]], "Release 0.1 - April 09th, 2011": [[658, "release-0-1-april-09th-2011"]], "Release 0.2 - June 21st, 2011": [[659, "release-0-2-june-21st-2011"]], "Features": [[659, "features"], [660, "features"], [662, "features"], [663, "features"], [664, "features"], [665, "features"], [666, "features"]], "Bug Fixes": [[659, "bug-fixes"], [660, "bug-fixes"], [662, "bug-fixes"], [663, "bug-fixes"], [664, "bug-fixes"], [665, "bug-fixes"], [666, "bug-fixes"]], "Release 0.3 - August 14th, 2011": [[660, "release-0-3-august-14th-2011"]], "Nonfunctional changes": [[660, "nonfunctional-changes"], [663, "nonfunctional-changes"]], "Release 0.4 - October 10th, 2011": [[661, "release-0-4-october-10th-2011"]], "Feature": [[661, "feature"]], "Release 0.5 - July 12th, 2012": [[662, "release-0-5-july-12th-2012"]], "Release 0.6 - June 21th, 2012": [[663, "release-0-6-june-21th-2012"]], "Release 0.7 - September 27th 2012": [[664, "release-0-7-september-27th-2012"]], "Release 0.8 - January 31st, 2013": [[665, "release-0-8-january-31st-2013"]], "Release 0.9 - June 6th 2013": [[666, "release-0-9-june-6th-2013"]], "Release 1.0 - November 14th, 2013": [[667, "release-1-0-november-14th-2013"]], "With Contributions from:": [[667, "with-contributions-from"]], "Base Features": [[667, "base-features"]], "Plugin Features": [[667, "plugin-features"]], "Changes:": [[667, "changes"]], "Migrate:": [[667, "migrate"]], "Release 1.1 - 13. April 2016": [[668, "release-1-1-13-april-2016"]], "Release 1.2 - 16. Mai 2016": [[669, "release-1-2-16-mai-2016"]], "New CORE features": [[669, "new-core-features"], [670, "new-core-features"]], "Removed CORE Libs": [[669, "removed-core-libs"], [670, "removed-core-libs"]], "Removed Plugins": [[669, "removed-plugins"], [670, "removed-plugins"]], "Release 1.3 - 5. August 2017": [[670, "release-1-3-5-august-2017"]], "Changes to existing Plugins": [[670, "changes-to-existing-plugins"]], "Release 1.4 - 17. Dezember 2017": [[671, "release-1-4-17-dezember-2017"]], "Absolute minimum Python Versionen auf 3.3 angehoben": [[671, "absolute-minimum-python-versionen-auf-3-3-angehoben"], [672, "absolute-minimum-python-versionen-auf-3-3-angehoben"]], "Neue Funktionen": [[671, "neue-funktionen"], [672, "neue-funktionen"], [673, "neue-funktionen"], [674, "neue-funktionen"]], "Neue Funktionen im CORE": [[671, "neue-funktionen-im-core"], [672, "neue-funktionen-im-core"], [673, "neue-funktionen-im-core"], [674, "neue-funktionen-im-core"]], "Entfernte CORE Bibliotheken": [[671, "entfernte-core-bibliotheken"], [674, "entfernte-core-bibliotheken"]], "Neue Plugins und Plugin-Erweiterungen": [[671, "neue-plugins-und-plugin-erweiterungen"], [672, "neue-plugins-und-plugin-erweiterungen"], [673, "neue-plugins-und-plugin-erweiterungen"], [674, "neue-plugins-und-plugin-erweiterungen"]], "Entfernte Plugins": [[671, "entfernte-plugins"], [674, "entfernte-plugins"]], "Release 1.4.1 - 23. Dezember 2017": [[672, "release-1-4-1-23-dezember-2017"]], "Release 1.4.2 - 2. Januar 2018": [[673, "release-1-4-2-2-januar-2018"]], "Release 1.5 - 8. Juli 2018": [[674, "release-1-5-8-juli-2018"]], "Absolute minimum Python Versionen auf 3.4 angehoben": [[674, "absolute-minimum-python-versionen-auf-3-4-angehoben"]], "Release 1.5.1 - 15. Juli 2018": [[675, "release-1-5-1-15-juli-2018"]], "Neue Plugin Versionen": [[675, "neue-plugin-versionen"]], "backup_restore.py": [[677, "backup-restore-py"]], "build_requirements.py": [[678, "build-requirements-py"]], "conf_to_yaml_converter.py": [[679, "conf-to-yaml-converter-py"]], "getshngpid": [[680, "getshngpid"]], "plugin_metadata_checker.py": [[681, "plugin-metadata-checker-py"]], "Automatische Generierung": [[682, "automatische-generierung"]], "Features der Generierung": [[682, "features-der-generierung"]], "Zus\u00e4tzliche Infos in der Navigation anzeigen": [[682, "zusatzliche-infos-in-der-navigation-anzeigen"]], "Generierung einer Konfigurations-Navigation": [[682, "generierung-einer-konfigurations-navigation"]], "Trenner in der Navigation": [[682, "trenner-in-der-navigation"]], "Unterschiedliche Visu-Styles": [[682, "unterschiedliche-visu-styles"]], "Unterschiedliche Blockgr\u00f6\u00dfen": [[682, "unterschiedliche-blockgroszen"]], "Unterschiedliche Blocktypen": [[682, "unterschiedliche-blocktypen"]], "Manuell erstellte Seiten": [[682, "manuell-erstellte-seiten"]], "Deprecated Widget Warnings": [[682, "deprecated-widget-warnings"]], "Navigation Structure Definition": [[682, "navigation-structure-definition"]], "Seiten aus mehreren Sub-Trees": [[682, "seiten-aus-mehreren-sub-trees"]], "Vollst\u00e4ndiges Beispiel": [[683, "vollstandiges-beispiel"]], "\u00c4nderungen ab v1.8": [[684, "anderungen-ab-v1-8"]], "Installation von Widgets": [[685, "installation-von-widgets"]], "smartVISU Widget-Handling": [[685, "smartvisu-widget-handling"]], "Beispiele f\u00fcr Plugins, welche Widgets mitbringen": [[685, "beispiele-fur-plugins-welche-widgets-mitbringen"]], "Nutzung der Widgets": [[685, "nutzung-der-widgets"]], "Einbindung von Widgets in Plugins": [[685, "einbindung-von-widgets-in-plugins"]], "Item Attribute zur Generierung": [[686, "item-attribute-zur-generierung"]], "Widgets f\u00fcr Plugins": [[687, "widgets-fur-plugins"]], "Ein Widget zu einem Plugin hinzuf\u00fcgen": [[687, "ein-widget-zu-einem-plugin-hinzufugen"]], "Notwendige Modifikationen der smartVISU vor v2.9": [[687, "notwendige-modifikationen-der-smartvisu-vor-v2-9"]], "Durchgef\u00fchrte Modifikationen": [[687, "durchgefuhrte-modifikationen"]], "NGINX als ReverseProxy": [[688, "nginx-als-reverseproxy"]], "Annahmen": [[688, "annahmen"]], "Basiskonfiguration": [[688, "basiskonfiguration"]], "NGINX installieren:": [[688, "nginx-installieren"]], "GeoIP installieren:": [[688, "geoip-installieren"]], "Let\u2019s Encrypt Server-Zertifikate": [[688, "lets-encrypt-server-zertifikate"]], "NGINX Konfiguration": [[688, "nginx-konfiguration"]], "/etc/nginx/conf.d/...conf erstellen": [[688, "etc-nginx-conf-d-mydomain-myds-me-conf-erstellen"]], "Passwort-Files f\u00fcr unterschiedliche User f\u00fcr smartVISU, Alexa, Network Plugin erstellen": [[688, "passwort-files-fur-unterschiedliche-user-fur-smartvisu-alexa-network-plugin-erstellen"]], "Nacharbeiten: Port 80 in NGINX deaktivieren": [[688, "nacharbeiten-port-80-in-nginx-deaktivieren"]], "Client Zertifikate erstellen (optional)": [[688, "client-zertifikate-erstellen-optional"]], "openssl.cnf editieren": [[688, "openssl-cnf-editieren"]], "Client Zertifikate in NGINX nutzen (optional)": [[688, "client-zertifikate-in-nginx-nutzen-optional"]], "Erweiterung: LUA Script f\u00fcr Apple Ger\u00e4te": [[688, "erweiterung-lua-script-fur-apple-gerate"]], "Erweiterung: St\u00e4rkere Diffie-Hellman-Parameter": [[688, "erweiterung-starkere-diffie-hellman-parameter"]], "Wartung: Zertifikat nach 3 Monaten erneuern": [[688, "wartung-zertifikat-nach-3-monaten-erneuern"]], "Visualisierung mit smartVISU Update": [[689, "visualisierung-mit-smartvisu-update"]], "Generierung der Visu Seiten": [[689, "generierung-der-visu-seiten"]], "Optionale Definition der Navigationsstruktur": [[689, "optionale-definition-der-navigationsstruktur"]], "Kommunikation mit der Visu": [[689, "kommunikation-mit-der-visu"]], "Websocket Kommunikation": [[690, "websocket-kommunikation"]], "Release 1.x - tt. mmm 2020": [[691, "release-1-x-tt-mmm-2020"]], "Neuerungen im Release v1.11": [[692, "neuerungen-im-release-v1-11"]], "Neuerungen der letzten Releases": [[693, "neuerungen-der-letzten-releases"]], "Neuerungen im Release v1.10": [[693, "neuerungen-im-release-v1-10"]], "Neuerungen bei Plugins": [[693, "neuerungen-bei-plugins"]], "Neuerungen f\u00fcr Plugin Entwickler": [[693, "neuerungen-fur-plugin-entwickler"]], "Tipps & Tricks": [[693, "tipps-tricks"]]}, "indexentries": {"admin gui": [[0, "index-0"], [1, "index-0"], [1, "index-1"], [1, "index-3"], [1, "index-4"], [1, "index-6"], [1, "index-7"], [2, "index-0"], [2, "index-1"], [3, "index-0"], [3, "index-1"], [4, "index-3"], [4, "index-4"], [5, "index-0"], [5, "index-1"], [6, "index-0"], [6, "index-1"], [7, "index-0"], [7, "index-1"], [8, "index-0"], [8, "index-1"], [9, "index-0"], [9, "index-1"]], "administrations gui": [[0, "index-2"]], "administrations-interface": [[0, "index-1"], [0, "index-3"]], "webinterfaces": [[0, "index-2"], [0, "index-3"], [120, "index-3"]], "backup": [[1, "index-3"], [1, "index-4"], [102, "index-1"], [102, "index-3"]], "conf-yaml konverter": [[1, "index-12"], [1, "index-13"]], "cache pr\u00fcfung": [[1, "index-14"], [1, "index-15"]], "dienste": [[1, "index-0"], [1, "index-1"], [1, "index-11"], [1, "index-13"], [1, "index-15"], [1, "index-9"]], "restore": [[1, "index-6"], [1, "index-7"], [102, "index-4"], [102, "index-6"]], "sicherung der konfiguration": [[1, "index-2"]], "wiederherstellen der konfiguration": [[1, "index-5"]], "yaml syntax-pr\u00fcfer": [[1, "index-10"], [1, "index-11"]], "eval syntax-pr\u00fcfer": [[1, "index-8"], [1, "index-9"]], "item baum": [[2, "index-4"]], "items": [[2, "index-0"], [2, "index-1"], [2, "index-3"], [2, "index-4"], [2, "index-6"], [11, "index-0"], [11, "index-1"], [13, "index-0"], [13, "index-1"], [13, "index-4"], [94, "index-0"], [105, "index-0"], [561, "index-0"], [562, "index-0"], [562, "index-1"], [563, "index-0"], [563, "index-1"], [564, "index-0"], [564, "index-1"], [566, "index-0"], [566, "index-3"], [566, "index-5"], [566, "index-7"], [567, "index-0"], [567, "index-1"], [571, "index-0"], [572, "index-0"], [574, "index-0"], [577, "index-0"], [578, "index-2"], [578, "index-3"], [578, "index-4"], [579, "index-2"], [591, "index-4"], [591, "index-5"]], "itemtree": [[2, "index-2"], [2, "index-3"]], "struktur templates": [[2, "index-5"], [2, "index-6"]], "editor": [[3, "index-2"]], "logiken": [[3, "index-0"], [3, "index-1"], [3, "index-2"], [21, "index-0"], [21, "index-1"], [42, "index-0"], [108, "index-0"], [117, "index-0"], [117, "index-1"], [117, "index-2"], [153, "index-0"], [587, "index-0"], [587, "index-1"], [588, "index-0"], [588, "index-1"], [588, "index-2"], [589, "index-0"], [589, "index-1"], [589, "index-2"], [589, "index-3"], [590, "index-0"], [590, "index-1"], [591, "index-0"], [591, "index-1"], [591, "index-2"], [591, "index-3"], [592, "index-0"], [592, "index-1"], [592, "index-2"], [592, "index-3"], [593, "index-1"], [594, "index-0"], [594, "index-1"], [594, "index-2"], [594, "index-3"], [594, "index-4"], [594, "index-5"], [595, "index-0"], [595, "index-1"], [596, "index-0"], [596, "index-1"], [597, "index-0"], [598, "index-0"], [598, "index-1"], [599, "index-0"], [599, "index-1"], [599, "index-2"], [599, "index-3"], [599, "index-4"], [599, "index-5"], [599, "index-6"], [600, "index-0"], [600, "index-1"], [634, "index-0"], [634, "index-1"], [634, "index-2"], [634, "index-3"], [634, "index-4"]], "konfiguration": [[4, "index-6"], [8, "index-11"], [8, "index-13"], [8, "index-14"], [8, "index-15"], [8, "index-16"], [101, "index-0"], [102, "index-0"], [102, "index-3"], [102, "index-6"], [104, "index-1"], [104, "index-2"], [117, "index-0"], [118, "index-0"], [120, "index-2"], [120, "index-3"], [120, "index-4"], [121, "index-2"], [122, "index-2"], [125, "index-0"], [125, "index-1"], [125, "index-2"], [125, "index-3"], [226, "index-0"], [322, "index-0"], [592, "index-0"], [592, "index-1"], [633, "index-0"]], "liste der logger": [[4, "index-5"]], "logging": [[4, "index-1"], [4, "index-2"], [4, "index-5"], [4, "index-6"], [115, "index-0"], [582, "index-0"], [582, "index-1"], [585, "index-0"], [585, "index-1"], [586, "index-0"], [586, "index-1"], [593, "index-0"]], "logs": [[4, "index-0"], [4, "index-4"]], "logs anzeige": [[4, "index-2"]], "logs anzeigen": [[4, "index-3"]], "plugin konfiguration": [[5, "index-2"], [111, "index-0"]], "plugins": [[5, "index-0"], [5, "index-1"], [23, "index-0"], [23, "index-1"], [31, "index-0"], [32, "index-0"], [65, "index-0"], [95, "index-0"], [163, "index-0"], [164, "index-0"], [165, "index-0"], [166, "index-0"], [167, "index-0"], [168, "index-0"], [169, "index-0"], [170, "index-0"], [171, "index-1"], [172, "index-0"], [174, "index-0"], [178, "index-0"], [179, "index-0"], [181, "index-0"], [184, "index-0"], [187, "index-0"], [188, "index-0"], [189, "index-0"], [191, "index-0"], [192, "index-0"], [194, "index-0"], [196, "index-0"], [197, "index-0"], [200, "index-0"], [201, "index-0"], [203, "index-0"], [204, "index-0"], [210, "index-0"], [212, "index-0"], [213, "index-0"], [217, "index-0"], [220, "index-0"], [222, "index-0"], [223, "index-0"], [228, "index-0"], [229, "index-0"], [230, "index-0"], [232, "index-0"], [233, "index-0"], [237, "index-0"], [238, "index-0"], [241, "index-0"], [242, "index-0"], [243, "index-0"], [244, "index-0"], [246, "index-0"], [249, "index-1"], [250, "index-0"], [252, "index-0"], [255, "index-0"], [256, "index-0"], [259, "index-0"], [261, "index-0"], [262, "index-0"], [263, "index-0"], [264, "index-0"], [265, "index-0"], [266, "index-0"], [267, "index-0"], [268, "index-0"], [271, "index-0"], [276, "index-0"], [277, "index-0"], [279, "index-0"], [284, "index-0"], [286, "index-0"], [287, "index-0"], [289, "index-0"], [291, "index-1"], [295, "index-0"], [300, "index-0"], [302, "index-0"], [306, "index-0"], [311, "index-0"], [313, "index-0"], [314, "index-0"], [316, "index-0"], [319, "index-0"], [320, "index-0"], [336, "index-0"], [337, "index-1"], [338, "index-0"], [346, "index-0"], [347, "index-0"], [348, "index-0"], [349, "index-0"], [351, "index-0"], [354, "index-0"], [357, "index-0"], [359, "index-0"], [360, "index-0"], [362, "index-0"], [363, "index-0"], [366, "index-0"], [367, "index-0"], [369, "index-0"], [374, "index-0"], [375, "index-0"], [376, "index-0"], [377, "index-0"], [378, "index-0"], [379, "index-0"], [380, "index-0"], [381, "index-0"], [382, "index-0"], [383, "index-0"], [384, "index-0"], [385, "index-0"], [386, "index-0"], [387, "index-0"], [388, "index-0"], [389, "index-0"], [390, "index-0"], [391, "index-0"], [392, "index-0"], [393, "index-0"], [394, "index-0"], [395, "index-0"], [396, "index-0"], [397, "index-0"], [398, "index-0"], [399, "index-0"], [400, "index-0"], [401, "index-0"], [402, "index-0"], [403, "index-0"], [405, "index-0"], [406, "index-0"], [407, "index-0"], [408, "index-0"], [409, "index-0"], [410, "index-0"], [411, "index-0"], [412, "index-0"], [413, "index-0"], [414, "index-0"], [415, "index-0"], [416, "index-0"], [417, "index-0"], [418, "index-0"], [419, "index-0"], [420, "index-0"], [421, "index-0"], [422, "index-0"], [423, "index-0"], [424, "index-0"], [425, "index-0"], [426, "index-0"], [427, "index-0"], [428, "index-0"], [429, "index-0"], [430, "index-0"], [431, "index-0"], [432, "index-0"], [433, "index-0"], [434, "index-0"], [435, "index-0"], [436, "index-0"], [437, "index-0"], [438, "index-0"], [439, "index-0"], [440, "index-0"], [441, "index-0"], [442, "index-0"], [443, "index-0"], [444, "index-0"], [445, "index-0"], [446, "index-0"], [447, "index-0"], [448, "index-0"], [449, "index-0"], [450, "index-0"], [451, "index-0"], [452, "index-0"], [453, "index-0"], [454, "index-0"], [455, "index-0"], [456, "index-0"], [457, "index-0"], [458, "index-0"], [459, "index-0"], [460, "index-0"], [461, "index-0"], [462, "index-0"], [463, "index-0"], [464, "index-0"], [465, "index-0"], [466, "index-0"], [467, "index-0"], [468, "index-0"], [469, "index-0"], [470, "index-0"], [471, "index-0"], [472, "index-0"], [473, "index-0"], [474, "index-0"], [475, "index-0"], [476, "index-0"], [477, "index-0"], [478, "index-0"], [479, "index-0"], [480, "index-0"], [481, "index-0"], [482, "index-0"], [483, "index-0"], [484, "index-0"], [485, "index-0"], [486, "index-0"], [487, "index-0"], [488, "index-0"], [489, "index-0"], [490, "index-0"], [491, "index-0"], [492, "index-0"], [493, "index-0"], [494, "index-0"], [495, "index-0"], [496, "index-0"], [497, "index-0"], [498, "index-0"], [499, "index-0"], [500, "index-0"], [501, "index-0"], [502, "index-0"], [503, "index-0"], [504, "index-0"], [505, "index-0"], [506, "index-0"], [507, "index-0"], [508, "index-0"], [509, "index-0"], [510, "index-0"], [511, "index-0"], [512, "index-0"], [513, "index-0"], [514, "index-0"], [515, "index-0"], [516, "index-0"], [517, "index-0"], [518, "index-0"], [519, "index-0"], [520, "index-0"], [521, "index-0"], [522, "index-0"], [523, "index-0"], [524, "index-0"], [525, "index-0"], [526, "index-0"], [527, "index-0"], [528, "index-0"], [529, "index-0"], [530, "index-0"], [531, "index-0"], [532, "index-0"], [533, "index-0"], [534, "index-0"], [535, "index-0"], [536, "index-0"], [537, "index-0"], [538, "index-0"], [618, "index-2"], [626, "index-0"]], "szenen": [[6, "index-0"], [6, "index-1"]], "szenen konfiguration": [[6, "index-2"]], "scheduler": [[7, "index-0"], [7, "index-1"]], "konfiguration (admin gui)": [[8, "index-12"]], "konfiguraton": [[8, "index-10"]], "pypi check": [[8, "index-5"], [8, "index-6"]], "ressource graphen": [[8, "index-3"], [8, "index-4"]], "system": [[8, "index-0"], [8, "index-1"], [8, "index-10"], [96, "index-0"], [554, "index-0"]], "system konfiguration": [[8, "index-9"]], "systemeigenschaften": [[8, "index-4"], [8, "index-6"], [8, "index-8"]], "systeminformation": [[8, "index-2"]], "urheberrechtshinweise": [[8, "index-7"], [8, "index-8"]], "admin modul": [[8, "index-13"], [8, "index-14"], [119, "index-2"], [612, "index-1"]], "allgemein": [[8, "index-10"], [321, "index-0"]], "http modul": [[8, "index-11"], [8, "index-12"], [613, "index-1"]], "mqtt modul": [[8, "index-15"], [8, "index-16"], [615, "index-1"]], "\u00fcbersicht": [[8, "index-2"], [577, "index-1"]], "threads": [[9, "index-0"], [9, "index-1"]], "beispiele": [[10, "index-0"], [11, "index-0"], [11, "index-1"], [12, "index-0"], [12, "index-1"], [12, "index-2"], [12, "index-3"], [14, "index-0"], [14, "index-1"], [21, "index-0"], [21, "index-1"], [24, "index-0"], [24, "index-1"], [26, "index-0"], [26, "index-1"]], "tipps & tricks": [[10, "index-1"], [13, "index-0"], [13, "index-1"], [13, "index-5"], [13, "index-6"], [13, "index-7"], [22, "index-0"], [23, "index-0"], [23, "index-1"], [25, "index-0"], [26, "index-2"], [26, "index-3"], [27, "index-0"], [27, "index-1"], [27, "index-2"]], "eval": [[12, "index-2"], [12, "index-3"], [14, "index-1"], [573, "index-0"], [573, "index-1"]], "eval_trigger": [[12, "index-0"], [12, "index-1"], [14, "index-0"], [573, "index-2"], [573, "index-3"]], "items: erstellen eines zeitgiedes": [[13, "index-5"]], "items: erstellung von tag-/nacht-items f\u00fcr knx": [[13, "index-7"]], "items: wert invertieren": [[13, "index-6"]], "timer": [[13, "index-3"]], "zeitglied": [[13, "index-2"], [13, "index-4"]], "plugins: ein plugin aus develop installieren": [[22, "index-0"]], "structs": [[24, "index-0"], [24, "index-1"], [26, "index-0"], [26, "index-1"], [26, "index-2"], [26, "index-3"], [53, "index-12"], [53, "index-14"], [97, "index-0"], [114, "index-0"], [603, "index-1"], [603, "index-3"]], "structs bequem kopieren": [[25, "index-0"]], "smarthomeng umziehen": [[27, "index-0"], [27, "index-1"]], "umzug": [[27, "index-2"]], "mqtt-pluginname (in kleinbuchstaben)": [[31, "index-0"], [31, "index-1"]], "pluginname (in kleinbuchstaben)": [[32, "index-0"], [32, "index-1"]], "core": [[38, "index-0"]], "entwicklung": [[38, "index-0"], [41, "index-0"], [42, "index-0"], [43, "index-0"], [65, "index-0"], [620, "index-2"], [623, "index-2"], [624, "index-2"]], "base (attribut von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.BASE"]], "modul": [[40, "module-lib.smarthome"], [43, "index-2"], [119, "index-0"], [120, "index-0"], [121, "index-0"], [122, "index-0"], [126, "module-lib.config"], [127, "module-lib.connection"], [128, "module-lib.constants"], [129, "module-lib.daemon"], [130, "module-lib.db"], [131, "module-lib.env"], [132, "module-lib.item"], [135, "module-lib.item_conversion"], [136, "module-lib.log"], [137, "module-lib.logic"], [138, "module-lib.logutils"], [139, "module-lib.metadata"], [140, "module-lib.module"], [141, "module-lib.network"], [142, "module-lib.orb"], [143, "module-lib.plugin"], [146, "module-lib.scene"], [147, "module-lib.scheduler"], [148, "module-lib.shtime"], [149, "module-lib.shyaml"], [150, "module-lib.tools"], [151, "module-lib.translation"], [152, "module-lib.utils"], [606, "index-1"], [612, "module-modules.admin.api_plugin"], [612, "module-modules.admin.api_plugins"], [613, "module-modules.http"], [615, "module-modules.mqtt"]], "smarthome (klasse in lib.smarthome)": [[40, "lib.smarthome.SmartHome"]], "add_event_listener() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.add_event_listener"]], "add_item() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.add_item"]], "checkconfigfiles() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.checkConfigFiles"]], "create_directories() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.create_directories"]], "find_children() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.find_children"]], "find_items() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.find_items"]], "getbasedir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.getBaseDir"]], "get_basedir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_basedir"]], "get_confdir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_confdir"]], "get_config_dir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_config_dir"]], "get_config_file() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_config_file"]], "get_defaultlanguage() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_defaultlanguage"]], "get_etcdir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_etcdir"]], "get_instance() (statische methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_instance"]], "get_module() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_module"]], "get_structsdir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_structsdir"]], "get_vardir() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.get_vardir"]], "init_logging() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.init_logging"]], "initialize_dir_vars() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.initialize_dir_vars"]], "initialize_vars() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.initialize_vars"]], "lat (lib.smarthome.smarthome property)": [[40, "lib.smarthome.SmartHome.lat"]], "lib.smarthome": [[40, "module-lib.smarthome"]], "list_threads() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.list_threads"]], "lon (lib.smarthome.smarthome property)": [[40, "lib.smarthome.SmartHome.lon"]], "match_items() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.match_items"]], "now() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.now"]], "object_refcount() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.object_refcount"]], "reload_logics() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.reload_logics"]], "restart() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.restart"]], "return_event_listeners() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_event_listeners"]], "return_item() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_item"]], "return_items() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_items"]], "return_logic() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_logic"]], "return_logics() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_logics"]], "return_modules() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_modules"]], "return_plugins() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.return_plugins"]], "runtime() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.runtime"]], "set_defaultlanguage() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.set_defaultlanguage"]], "start() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.start"]], "stop() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.stop"]], "string2bool() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.string2bool"]], "tzinfo() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.tzinfo"]], "utcinfo() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.utcinfo"]], "utcnow() (methode von lib.smarthome.smarthome)": [[40, "lib.smarthome.SmartHome.utcnow"]], "globale metadaten": [[43, "index-3"], [53, "index-4"], [606, "index-2"], [610, "index-2"]], "metadaten": [[43, "index-2"], [53, "index-3"], [605, "index-0"], [605, "index-1"], [606, "index-1"], [610, "index-1"]], "modul metadaten": [[43, "index-1"], [43, "index-3"], [43, "index-4"], [43, "index-5"], [53, "index-5"], [53, "index-6"], [606, "index-0"], [606, "index-2"], [608, "index-0"], [608, "index-1"]], "module": [[43, "index-0"], [110, "index-0"], [118, "index-0"], [119, "index-1"], [120, "index-1"], [121, "index-1"], [122, "index-1"], [611, "index-0"], [611, "index-1"], [612, "index-0"], [613, "index-0"]], "parameter": [[43, "index-4"], [43, "index-5"], [43, "index-6"], [43, "index-7"], [53, "index-5"], [53, "index-6"], [53, "index-7"], [53, "index-8"], [608, "index-0"], [608, "index-1"], [608, "index-2"], [608, "index-3"]], "plugin metadaten": [[43, "index-6"], [43, "index-7"], [53, "index-10"], [53, "index-11"], [53, "index-12"], [53, "index-13"], [53, "index-14"], [53, "index-15"], [53, "index-16"], [53, "index-17"], [53, "index-18"], [53, "index-2"], [53, "index-4"], [53, "index-7"], [53, "index-8"], [53, "index-9"], [601, "index-0"], [601, "index-1"], [602, "index-0"], [602, "index-1"], [603, "index-0"], [603, "index-1"], [603, "index-2"], [603, "index-3"], [604, "index-0"], [604, "index-1"], [608, "index-2"], [608, "index-3"], [609, "index-0"], [609, "index-1"], [610, "index-0"], [610, "index-2"]], "modules": [[44, "index-0"], [45, "index-0"], [616, "index-0"]], "http": [[44, "index-0"], [44, "index-1"], [120, "index-0"], [120, "index-1"], [120, "index-2"], [613, "index-0"], [613, "index-1"]], "http module": [[44, "index-1"]], "mqtt": [[45, "index-1"], [45, "index-0"], [54, "index-2"], [63, "index-2"], [121, "index-0"], [121, "index-1"], [121, "index-2"], [252, "index-1"], [291, "index-2"], [337, "index-2"], [595, "index-0"], [595, "index-1"], [615, "index-1"], [620, "index-3"]], "mqtt module": [[45, "index-1"]], "asyncio": [[46, "index-1"]], "asyncio in plugins": [[46, "index-0"], [618, "index-0"], [618, "index-1"], [618, "index-2"]], "plugin": [[46, "index-1"], [53, "index-3"], [54, "index-1"], [55, "index-1"], [63, "index-1"], [66, "index-1"], [610, "index-1"], [620, "index-1"], [623, "index-1"], [624, "index-1"]], "multi-language support": [[50, "index-0"]], "translations": [[50, "index-1"]], "metadata": [[53, "index-0"]], "plugin metadata": [[53, "index-1"], [681, "index-1"]], "item_attributes": [[53, "index-10"], [53, "index-9"], [602, "index-0"], [602, "index-1"]], "item_structs": [[53, "index-11"], [53, "index-13"], [603, "index-0"], [603, "index-2"]], "logic_parameters": [[53, "index-15"], [53, "index-16"], [604, "index-0"], [604, "index-1"]], "plugin_functions": [[53, "index-17"], [53, "index-18"], [609, "index-0"], [609, "index-1"]], "sample mqtt plugin": [[54, "index-0"], [54, "index-1"], [54, "index-2"]], "sample plugin": [[55, "index-0"], [55, "index-1"]], "new": [[56, "index-0"], [61, "index-0"]], "webinterface": [[56, "index-0"]], "drittanbieterkomponenten": [[57, "index-0"]], "web interface": [[57, "index-0"], [58, "index-0"], [59, "index-0"], [60, "index-0"], [61, "index-0"], [62, "index-0"]], "automatische updates": [[58, "index-0"]], "interaktion mit dem plugin": [[62, "index-0"]], "class": [[63, "index-0"], [66, "index-0"], [620, "index-0"], [623, "index-0"], [624, "index-0"]], "class mqttplugin": [[63, "index-1"], [63, "index-2"], [620, "index-1"], [620, "index-2"], [620, "index-3"]], "mqttplugin": [[63, "index-0"], [620, "index-0"], [621, "index-2"]], "plugin checker": [[64, "index-0"]], "check_plugin.py": [[64, "index-1"]], "class smartplugin": [[66, "index-1"], [624, "index-1"], [624, "index-2"]], "smartplugin": [[66, "index-0"], [621, "index-0"], [624, "index-0"]], "fehlersuche": [[70, "index-0"], [71, "index-0"], [71, "index-1"], [71, "index-2"], [71, "index-3"], [71, "index-4"]], "checkliste": [[71, "index-0"]], "l\u00e4uft smarthomeng?": [[71, "index-1"]], "smarthomeng im debugmodus starten": [[71, "index-2"]], "zugriff auf den knx via eibd": [[71, "index-3"]], "zugriff auf den knx via knxd": [[71, "index-4"]], "admonition arten": [[72, "index-0"]], "doku erstellung": [[72, "index-0"], [74, "index-0"]], "verwendung von tabs": [[74, "index-0"]], "hardware anforderungen": [[79, "index-1"]], "linux": [[79, "index-0"], [82, "index-0"]], "macos": [[79, "index-0"]], "software anforderungen": [[79, "index-2"]], "unix": [[79, "index-0"]], "windows": [[79, "index-0"]], "debian installieren": [[82, "index-0"]], "smarthomeng installieren": [[83, "index-0"]], "mqtt broker installieren": [[84, "index-0"]], "mosquitto installieren": [[84, "index-1"]], "installation": [[85, "index-0"], [225, "index-0"]], "smartvisu": [[85, "index-0"], [156, "index-0"], [302, "index-1"], [303, "index-0"], [304, "index-0"], [354, "index-2"], [682, "index-0"], [682, "index-8"], [683, "index-0"], [683, "index-1"], [685, "index-0"], [689, "index-1"], [689, "index-2"], [689, "index-3"]], "knxd installieren": [[86, "index-0"]], "onewire installieren": [[87, "index-0"]], "samba installieren": [[88, "index-0"]], "smarthomeng als dienst": [[89, "index-0"]], "esphome": [[90, "index-0"]], "esphome dashboard installation": [[90, "index-0"]], "komplettanleitung": [[91, "index-0"]], "konfiguration \u00fcber die gui": [[93, "index-0"], [94, "index-0"], [95, "index-0"], [96, "index-0"]], "kommandozeile": [[102, "index-1"], [102, "index-2"], [102, "index-4"], [102, "index-5"]], "sichern": [[102, "index-2"]], "sichern und wiederherstellen": [[102, "index-0"]], "wiederherstellen": [[102, "index-5"]], "/etc/holidays.yaml": [[104, "index-0"]], "feiertage": [[104, "index-2"], [599, "index-4"], [599, "index-6"], [599, "index-7"], [599, "index-9"], [633, "index-0"], [633, "index-1"], [634, "index-2"], [634, "index-4"], [634, "index-5"], [634, "index-7"]], "konfigurationsdateien": [[104, "index-0"], [105, "index-1"], [108, "index-1"], [111, "index-1"], [119, "index-3"], [120, "index-5"], [121, "index-3"], [122, "index-3"], [679, "index-3"]], "holidays": [[104, "index-1"], [599, "index-3"], [599, "index-5"], [599, "index-8"], [634, "index-1"], [634, "index-3"], [634, "index-6"]], "/items/*.yaml": [[105, "index-1"]], "konfigurationsdateien /items/*.yaml": [[105, "index-0"]], "yaml syntax": [[106, "index-0"]], "/etc/logic.yaml": [[108, "index-1"]], "konfigurationsdatei /etc/logic.yaml": [[108, "index-0"]], "konfigurationsdatei": [[110, "index-0"], [119, "index-2"]], "/etc/plugin.yaml": [[111, "index-1"]], "konfigurationsdatei /etc/plugin.yaml": [[111, "index-0"]], "struct.yaml": [[114, "index-0"]], "standardparameter": [[117, "index-1"], [117, "index-2"], [592, "index-2"], [592, "index-3"], [600, "index-0"], [600, "index-1"]], "/etc/module.yaml (admin)": [[119, "index-3"]], "admin": [[119, "index-0"], [119, "index-1"], [612, "index-0"]], "/etc/module.yaml (http)": [[120, "index-5"]], "webservices": [[120, "index-4"], [360, "index-1"]], "/etc/module.yaml (mqtt)": [[121, "index-3"]], "/etc/module.yaml (websocket)": [[122, "index-3"]], "websocket": [[122, "index-0"], [122, "index-1"], [122, "index-2"], [156, "index-1"], [303, "index-1"], [304, "index-1"], [616, "index-0"], [616, "index-1"]], "functions": [[125, "index-2"]], "userfunctions": [[125, "index-0"], [125, "index-3"]], "uf": [[125, "index-1"]], "add_struct_to_item_template() (im modul lib.config)": [[126, "lib.config.add_struct_to_item_template"]], "lib.config": [[126, "module-lib.config"]], "merge() (im modul lib.config)": [[126, "lib.config.merge"]], "merge_structlists() (im modul lib.config)": [[126, "lib.config.merge_structlists"]], "nested_get() (im modul lib.config)": [[126, "lib.config.nested_get"]], "nested_put() (im modul lib.config)": [[126, "lib.config.nested_put"]], "parse() (im modul lib.config)": [[126, "lib.config.parse"]], "parse_basename() (im modul lib.config)": [[126, "lib.config.parse_basename"]], "parse_conf() (im modul lib.config)": [[126, "lib.config.parse_conf"]], "parse_itemsdir() (im modul lib.config)": [[126, "lib.config.parse_itemsdir"]], "parse_yaml() (im modul lib.config)": [[126, "lib.config.parse_yaml"]], "remove_comments() (im modul lib.config)": [[126, "lib.config.remove_comments"]], "remove_digits() (im modul lib.config)": [[126, "lib.config.remove_digits"]], "remove_invalid() (im modul lib.config)": [[126, "lib.config.remove_invalid"]], "remove_keys() (im modul lib.config)": [[126, "lib.config.remove_keys"]], "remove_keyword() (im modul lib.config)": [[126, "lib.config.remove_keyword"]], "remove_reserved() (im modul lib.config)": [[126, "lib.config.remove_reserved"]], "remove_special_listentries() (im modul lib.config)": [[126, "lib.config.remove_special_listentries"]], "replace_struct_instance() (im modul lib.config)": [[126, "lib.config.replace_struct_instance"]], "sanitize_items() (im modul lib.config)": [[126, "lib.config.sanitize_items"]], "search_for_struct_in_items() (im modul lib.config)": [[126, "lib.config.search_for_struct_in_items"]], "set_attr_for_subtree() (im modul lib.config)": [[126, "lib.config.set_attr_for_subtree"]], "strip_quotes() (im modul lib.config)": [[126, "lib.config.strip_quotes"]], "base (klasse in lib.connection)": [[127, "lib.connection.Base"]], "client (klasse in lib.connection)": [[127, "lib.connection.Client"]], "connections (klasse in lib.connection)": [[127, "lib.connection.Connections"]], "server (klasse in lib.connection)": [[127, "lib.connection.Server"]], "stream (klasse in lib.connection)": [[127, "lib.connection.Stream"]], "accept() (methode von lib.connection.server)": [[127, "lib.connection.Server.accept"]], "balance() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.balance"]], "check() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.check"]], "close() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.close"]], "close() (methode von lib.connection.server)": [[127, "lib.connection.Server.close"]], "close() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.close"]], "connect() (methode von lib.connection.client)": [[127, "lib.connection.Client.connect"]], "connect() (methode von lib.connection.server)": [[127, "lib.connection.Server.connect"]], "discard_buffers() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.discard_buffers"]], "found_balance() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.found_balance"]], "found_terminator() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.found_terminator"]], "handle_close() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.handle_close"]], "handle_connect() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.handle_connect"]], "handle_connection() (methode von lib.connection.server)": [[127, "lib.connection.Server.handle_connection"]], "lib.connection": [[127, "module-lib.connection"]], "monitor() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.monitor"]], "poll() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.poll"]], "register_connection() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.register_connection"]], "register_server() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.register_server"]], "send() (methode von lib.connection.stream)": [[127, "lib.connection.Stream.send"]], "trigger() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.trigger"]], "unregister_connection() (methode von lib.connection.connections)": [[127, "lib.connection.Connections.unregister_connection"]], "lib.constants": [[128, "module-lib.constants"]], "check_sh_is_running() (im modul lib.daemon)": [[129, "lib.daemon.check_sh_is_running"]], "daemonize() (im modul lib.daemon)": [[129, "lib.daemon.daemonize"]], "kill() (im modul lib.daemon)": [[129, "lib.daemon.kill"]], "lib.daemon": [[129, "module-lib.daemon"]], "read_pidfile() (im modul lib.daemon)": [[129, "lib.daemon.read_pidfile"]], "remove_pidfile() (im modul lib.daemon)": [[129, "lib.daemon.remove_pidfile"]], "write_pidfile() (im modul lib.daemon)": [[129, "lib.daemon.write_pidfile"]], "database (klasse in lib.db)": [[130, "lib.db.Database"]], "close() (methode von lib.db.database)": [[130, "lib.db.Database.close"]], "commit() (methode von lib.db.database)": [[130, "lib.db.Database.commit"]], "connect() (methode von lib.db.database)": [[130, "lib.db.Database.connect"]], "connected() (methode von lib.db.database)": [[130, "lib.db.Database.connected"]], "cursor() (methode von lib.db.database)": [[130, "lib.db.Database.cursor"]], "execute() (methode von lib.db.database)": [[130, "lib.db.Database.execute"]], "fetchall() (methode von lib.db.database)": [[130, "lib.db.Database.fetchall"]], "fetchone() (methode von lib.db.database)": [[130, "lib.db.Database.fetchone"]], "lib.db": [[130, "module-lib.db"]], "lock() (methode von lib.db.database)": [[130, "lib.db.Database.lock"]], "release() (methode von lib.db.database)": [[130, "lib.db.Database.release"]], "rollback() (methode von lib.db.database)": [[130, "lib.db.Database.rollback"]], "setup() (methode von lib.db.database)": [[130, "lib.db.Database.setup"]], "verify() (methode von lib.db.database)": [[130, "lib.db.Database.verify"]], "bft_to_text() (im modul lib.env)": [[131, "lib.env.bft_to_text"]], "c_to_f() (im modul lib.env)": [[131, "lib.env.c_to_f"]], "degrees_to_direction_16() (im modul lib.env)": [[131, "lib.env.degrees_to_direction_16"]], "degrees_to_direction_8() (im modul lib.env)": [[131, "lib.env.degrees_to_direction_8"]], "f_to_c() (im modul lib.env)": [[131, "lib.env.f_to_c"]], "kmh_to_bft() (im modul lib.env)": [[131, "lib.env.kmh_to_bft"]], "kmh_to_kn() (im modul lib.env)": [[131, "lib.env.kmh_to_kn"]], "kmh_to_mph() (im modul lib.env)": [[131, "lib.env.kmh_to_mph"]], "kmh_to_mps() (im modul lib.env)": [[131, "lib.env.kmh_to_mps"]], "kmh_to_ms() (im modul lib.env)": [[131, "lib.env.kmh_to_ms"]], "kn_to_kmh() (im modul lib.env)": [[131, "lib.env.kn_to_kmh"]], "lib.env": [[131, "module-lib.env"]], "location_address() (im modul lib.env)": [[131, "lib.env.location_address"]], "location_name() (im modul lib.env)": [[131, "lib.env.location_name"]], "meter_to_miles() (im modul lib.env)": [[131, "lib.env.meter_to_miles"]], "meter_to_nauticalmiles() (im modul lib.env)": [[131, "lib.env.meter_to_nauticalmiles"]], "miles_to_meter() (im modul lib.env)": [[131, "lib.env.miles_to_meter"]], "mph_to_kmh() (im modul lib.env)": [[131, "lib.env.mph_to_kmh"]], "mps_to_kmh() (im modul lib.env)": [[131, "lib.env.mps_to_kmh"]], "ms_to_bft() (im modul lib.env)": [[131, "lib.env.ms_to_bft"]], "ms_to_kmh() (im modul lib.env)": [[131, "lib.env.ms_to_kmh"]], "nauticalmiles_to_meter() (im modul lib.env)": [[131, "lib.env.nauticalmiles_to_meter"]], "lib.item": [[132, "module-lib.item"]], "item (klasse in lib.item.item)": [[133, "lib.item.item.Item"]], "item.dicthandler (klasse in lib.item.item)": [[133, "lib.item.item.Item.DictHandler"]], "item.listhandler (klasse in lib.item.item)": [[133, "lib.item.item.Item.ListHandler"]], "item.typehandler (klasse in lib.item.item)": [[133, "lib.item.item.Item.TypeHandler"]], "add_logic_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.add_logic_trigger"]], "add_method_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.add_method_trigger"]], "age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.age"]], "append() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.append"]], "autotimer() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.autotimer"]], "changed_by() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.changed_by"]], "clear() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.clear"]], "clear() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.clear"]], "delete() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.delete"]], "delete() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.delete"]], "expand_relativepathes() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.expand_relativepathes"]], "extend() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.extend"]], "fade() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.fade"]], "find_attribute() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.find_attribute"]], "get() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.get"]], "get_absolutepath() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_absolutepath"]], "get_calling_item_from_frame() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_calling_item_from_frame"]], "get_children_path() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_children_path"]], "get_class_from_frame() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_class_from_frame"]], "get_hysteresis_item_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_hysteresis_item_triggers"]], "get_item_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_item_triggers"]], "get_logic_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_logic_triggers"]], "get_method_triggers() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_method_triggers"]], "get_stack_info() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_stack_info"]], "get_stringwithabsolutepathes() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.get_stringwithabsolutepathes"]], "hysteresis_data() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.hysteresis_data"]], "hysteresis_state() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.hysteresis_state"]], "id() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.id"]], "insert() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.insert"]], "item_functions (attribut von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.item_functions"]], "item_functions (attribut von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.item_functions"]], "item_functions (attribut von lib.item.item.item.typehandler)": [[133, "lib.item.item.Item.TypeHandler.item_functions"]], "jsonvars() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.jsonvars"]], "last_change() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.last_change"]], "last_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.last_trigger"]], "last_update() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.last_update"]], "path() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.path"]], "pop() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.pop"]], "pop() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.pop"]], "popitem() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.popitem"]], "prepend() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.prepend"]], "prev_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_age"]], "prev_change() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_change"]], "prev_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_trigger"]], "prev_trigger_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_trigger_age"]], "prev_update() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_update"]], "prev_update_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_update_age"]], "prev_value() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.prev_value"]], "remove() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove"]], "remove() (methode von lib.item.item.item.listhandler)": [[133, "lib.item.item.Item.ListHandler.remove"]], "remove_logic_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove_logic_trigger"]], "remove_method_trigger() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove_method_trigger"]], "remove_timer() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.remove_timer"]], "return_children() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.return_children"]], "return_parent() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.return_parent"]], "set() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.set"]], "timer() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.timer"]], "to_json() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.to_json"]], "trigger_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.trigger_age"]], "triggered_by() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.triggered_by"]], "type() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.type"]], "update() (methode von lib.item.item.item.dicthandler)": [[133, "lib.item.item.Item.DictHandler.update"]], "update_age() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.update_age"]], "updated_by() (methode von lib.item.item.item)": [[133, "lib.item.item.Item.updated_by"]], "items (klasse in lib.item)": [[134, "lib.item.Items"]], "add_item() (methode von lib.item.items)": [[134, "lib.item.Items.add_item"]], "add_plugin_attribute() (methode von lib.item.items)": [[134, "lib.item.Items.add_plugin_attribute"]], "add_plugin_attribute_prefix() (methode von lib.item.items)": [[134, "lib.item.Items.add_plugin_attribute_prefix"]], "add_struct_definition() (methode von lib.item.items)": [[134, "lib.item.Items.add_struct_definition"]], "find_children() (methode von lib.item.items)": [[134, "lib.item.Items.find_children"]], "find_items() (methode von lib.item.items)": [[134, "lib.item.Items.find_items"]], "get_instance() (statische methode von lib.item.items)": [[134, "lib.item.Items.get_instance"]], "get_plugin_attribute_type() (methode von lib.item.items)": [[134, "lib.item.Items.get_plugin_attribute_type"]], "get_toplevel_items() (methode von lib.item.items)": [[134, "lib.item.Items.get_toplevel_items"]], "item_count() (methode von lib.item.items)": [[134, "lib.item.Items.item_count"]], "load_itemdefinitions() (methode von lib.item.items)": [[134, "lib.item.Items.load_itemdefinitions"]], "match_items() (methode von lib.item.items)": [[134, "lib.item.Items.match_items"]], "plugin_attribute_exists() (methode von lib.item.items)": [[134, "lib.item.Items.plugin_attribute_exists"]], "plugin_attribute_prefixes (attribut von lib.item.items)": [[134, "lib.item.Items.plugin_attribute_prefixes"]], "plugin_attributes (attribut von lib.item.items)": [[134, "lib.item.Items.plugin_attributes"]], "plugin_prefixes_tuple (attribut von lib.item.items)": [[134, "lib.item.Items.plugin_prefixes_tuple"]], "remove_item() (methode von lib.item.items)": [[134, "lib.item.Items.remove_item"]], "return_item() (methode von lib.item.items)": [[134, "lib.item.Items.return_item"]], "return_items() (methode von lib.item.items)": [[134, "lib.item.Items.return_items"]], "return_struct_definitions() (methode von lib.item.items)": [[134, "lib.item.Items.return_struct_definitions"]], "stop() (methode von lib.item.items)": [[134, "lib.item.Items.stop"]], "structs (attribut von lib.item.items)": [[134, "lib.item.Items.structs"]], "convert_yaml() (im modul lib.item_conversion)": [[135, "lib.item_conversion.convert_yaml"]], "is_ruamelyaml_installed() (im modul lib.item_conversion)": [[135, "lib.item_conversion.is_ruamelyaml_installed"]], "lib.item_conversion": [[135, "module-lib.item_conversion"]], "parse_for_convert() (im modul lib.item_conversion)": [[135, "lib.item_conversion.parse_for_convert"]], "yaml_save() (im modul lib.item_conversion)": [[135, "lib.item_conversion.yaml_save"]], "dbghigh_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.DBGHIGH_level"]], "dbglow_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.DBGLOW_level"]], "dbgmed_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.DBGMED_level"]], "datetimerotatingfilehandler (klasse in lib.log)": [[136, "lib.log.DateTimeRotatingFileHandler"]], "log (klasse in lib.log)": [[136, "lib.log.Log"]], "logs (klasse in lib.log)": [[136, "lib.log.Logs"]], "notice_level (attribut von lib.log.logs)": [[136, "lib.log.Logs.NOTICE_level"]], "shngmemloghandler (klasse in lib.log)": [[136, "lib.log.ShngMemLogHandler"]], "shngtimedrotatingfilehandler (klasse in lib.log)": [[136, "lib.log.ShngTimedRotatingFileHandler"]], "add() (methode von lib.log.log)": [[136, "lib.log.Log.add"]], "add_all_handlers_logger() (methode von lib.log.logs)": [[136, "lib.log.Logs.add_all_handlers_logger"]], "add_log() (methode von lib.log.logs)": [[136, "lib.log.Logs.add_log"]], "add_logging_level() (methode von lib.log.logs)": [[136, "lib.log.Logs.add_logging_level"]], "clean() (methode von lib.log.log)": [[136, "lib.log.Log.clean"]], "close() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.close"]], "configure_logging() (methode von lib.log.logs)": [[136, "lib.log.Logs.configure_logging"]], "dorollover() (methode von lib.log.shngtimedrotatingfilehandler)": [[136, "lib.log.ShngTimedRotatingFileHandler.doRollover"]], "do_rollover() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.do_rollover"]], "emit() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.emit"]], "emit() (methode von lib.log.shngmemloghandler)": [[136, "lib.log.ShngMemLogHandler.emit"]], "export() (methode von lib.log.log)": [[136, "lib.log.Log.export"]], "getfilestodelete() (methode von lib.log.shngtimedrotatingfilehandler)": [[136, "lib.log.ShngTimedRotatingFileHandler.getFilesToDelete"]], "get_all_handlernames() (methode von lib.log.logs)": [[136, "lib.log.Logs.get_all_handlernames"]], "get_filename() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.get_filename"]], "get_files_to_delete() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.get_files_to_delete"]], "get_handler_by_name() (methode von lib.log.logs)": [[136, "lib.log.Logs.get_handler_by_name"]], "get_shng_logging_levels() (methode von lib.log.logs)": [[136, "lib.log.Logs.get_shng_logging_levels"]], "initmemlog() (methode von lib.log.logs)": [[136, "lib.log.Logs.initMemLog"]], "last() (methode von lib.log.log)": [[136, "lib.log.Log.last"]], "lib.log": [[136, "module-lib.log"]], "load() (methode von lib.log.shngmemloghandler)": [[136, "lib.log.ShngMemLogHandler.load"]], "load_logging_config() (methode von lib.log.logs)": [[136, "lib.log.Logs.load_logging_config"]], "load_logging_config_for_edit() (methode von lib.log.logs)": [[136, "lib.log.Logs.load_logging_config_for_edit"]], "logging_levels (attribut von lib.log.logs)": [[136, "lib.log.Logs.logging_levels"]], "next_rollover_time() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.next_rollover_time"]], "parsefilename() (methode von lib.log.datetimerotatingfilehandler)": [[136, "lib.log.DateTimeRotatingFileHandler.parseFilename"]], "return_logs() (methode von lib.log.logs)": [[136, "lib.log.Logs.return_logs"]], "root_handler_name (attribut von lib.log.logs)": [[136, "lib.log.Logs.root_handler_name"]], "save_logging_config() (methode von lib.log.logs)": [[136, "lib.log.Logs.save_logging_config"]], "logic (klasse in lib.logic)": [[137, "lib.logic.Logic"]], "logics (klasse in lib.logic)": [[137, "lib.logic.Logics"]], "add_method_trigger() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.add_method_trigger"]], "conf (lib.logic.logic property)": [[137, "lib.logic.Logic.conf"]], "crontab (lib.logic.logic property)": [[137, "lib.logic.Logic.crontab"]], "cycle (lib.logic.logic property)": [[137, "lib.logic.Logic.cycle"]], "delete_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.delete_logic"]], "description (lib.logic.logic property)": [[137, "lib.logic.Logic.description"]], "disable() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.disable"]], "disable_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.disable_logic"]], "enable() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.enable"]], "enable_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.enable_logic"]], "filename (lib.logic.logic property)": [[137, "lib.logic.Logic.filename"]], "filename_used_count() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.filename_used_count"]], "get_instance() (statische methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_instance"]], "get_loaded_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_loaded_logics"]], "get_logic_info() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_logic_info"]], "get_logiccrontab() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_logiccrontab"]], "get_logics_dir() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.get_logics_dir"]], "get_method_triggers() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.get_method_triggers"]], "groupnames (lib.logic.logic property)": [[137, "lib.logic.Logic.groupnames"]], "id() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.id"]], "is_enabled() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.is_enabled"]], "is_logic_enabled() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.is_logic_enabled"]], "is_logic_loaded() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.is_logic_loaded"]], "is_userlogic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.is_userlogic"]], "last_run() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.last_run"]], "lib.logic": [[137, "module-lib.logic"]], "lname (lib.logic.logic property)": [[137, "lib.logic.Logic.lname"]], "load_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.load_logic"]], "log_readonly_warning() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.log_readonly_warning"]], "name (lib.logic.logic property)": [[137, "lib.logic.Logic.name"]], "pathname (lib.logic.logic property)": [[137, "lib.logic.Logic.pathname"]], "plugins (attribut von lib.logic.logics)": [[137, "lib.logic.Logics.plugins"]], "prio (lib.logic.logic property)": [[137, "lib.logic.Logic.prio"]], "read_config_section() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.read_config_section"]], "reload_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.reload_logics"]], "return_config_type() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_config_type"]], "return_defined_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_defined_logics"]], "return_loaded_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_loaded_logics"]], "return_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_logic"]], "return_logics() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_logics"]], "return_logictype() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.return_logictype"]], "scheduler (attribut von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler"]], "scheduler_add() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler_add"]], "scheduler_change() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler_change"]], "scheduler_remove() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.scheduler_remove"]], "set_config_section_key() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.set_config_section_key"]], "set_last_run() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.set_last_run"]], "toggle_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.toggle_logic"]], "trigger() (methode von lib.logic.logic)": [[137, "lib.logic.Logic.trigger"]], "trigger_dict (lib.logic.logic property)": [[137, "lib.logic.Logic.trigger_dict"]], "trigger_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.trigger_logic"]], "unload_logic() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.unload_logic"]], "update_config_section() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.update_config_section"]], "visu_access() (methode von lib.logic.logics)": [[137, "lib.logic.Logics.visu_access"]], "watch_item (lib.logic.logic property)": [[137, "lib.logic.Logic.watch_item"]], "duplicatefilter (klasse in lib.logutils)": [[138, "lib.logutils.DuplicateFilter"]], "filter (klasse in lib.logutils)": [[138, "lib.logutils.Filter"]], "filter() (methode von lib.logutils.duplicatefilter)": [[138, "lib.logutils.DuplicateFilter.filter"]], "filter() (methode von lib.logutils.filter)": [[138, "lib.logutils.Filter.filter"]], "lib.logutils": [[138, "module-lib.logutils"]], "metadata (klasse in lib.metadata)": [[139, "lib.metadata.Metadata"]], "check_itemattribute() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.check_itemattribute"]], "check_parameters() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.check_parameters"]], "get_bool() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_bool"]], "get_global_plugin_parameters() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_global_plugin_parameters"]], "get_itemdefinition() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition"]], "get_itemdefinition_listlen() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_listlen"]], "get_itemdefinition_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_subtype"]], "get_itemdefinition_type() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_type"]], "get_itemdefinition_type_with_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinition_type_with_subtype"]], "get_itemdefinitionlist() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_itemdefinitionlist"]], "get_mlstring() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_mlstring"]], "get_parameter_defaultvalue() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_defaultvalue"]], "get_parameter_listlen() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_listlen"]], "get_parameter_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_subtype"]], "get_parameter_type() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_type"]], "get_parameter_type_with_subtype() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameter_type_with_subtype"]], "get_parameterdefinition() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameterdefinition"]], "get_parameterlist() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_parameterlist"]], "get_plugin_function_defstrings() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_plugin_function_defstrings"]], "get_string() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_string"]], "get_version() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.get_version"]], "lib.metadata": [[139, "module-lib.metadata"]], "test_pythoncompatibility() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_pythoncompatibility"]], "test_sdpcompatibility() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_sdpcompatibility"]], "test_shngcompatibility() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_shngcompatibility"]], "test_version() (methode von lib.metadata.metadata)": [[139, "lib.metadata.Metadata.test_version"]], "modules (klasse in lib.module)": [[140, "lib.module.Modules"]], "get_instance() (statische methode von lib.module.modules)": [[140, "lib.module.Modules.get_instance"]], "get_module() (methode von lib.module.modules)": [[140, "lib.module.Modules.get_module"]], "lib.module": [[140, "module-lib.module"]], "return_modules() (methode von lib.module.modules)": [[140, "lib.module.Modules.return_modules"]], "start() (methode von lib.module.modules)": [[140, "lib.module.Modules.start"]], "stop() (methode von lib.module.modules)": [[140, "lib.module.Modules.stop"]], "connectionclient (klasse in lib.network)": [[141, "lib.network.ConnectionClient"]], "connections (klasse in lib.network)": [[141, "lib.network.Connections"]], "httpdigestauth() (methode von lib.network.http)": [[141, "lib.network.Http.HTTPDigestAuth"]], "http (klasse in lib.network)": [[141, "lib.network.Http"]], "mode_binary (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_BINARY"]], "mode_fixed_length (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_FIXED_LENGTH"]], "mode_text (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_TEXT"]], "mode_text_line (attribut von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.MODE_TEXT_LINE"]], "network (klasse in lib.network)": [[141, "lib.network.Network"]], "tcp_client (klasse in lib.network)": [[141, "lib.network.Tcp_client"]], "tcp_server (klasse in lib.network)": [[141, "lib.network.Tcp_server"]], "udp_server (klasse in lib.network)": [[141, "lib.network.Udp_server"]], "check() (methode von lib.network.connections)": [[141, "lib.network.Connections.check"]], "clean_uri() (statische methode von lib.network.network)": [[141, "lib.network.Network.clean_uri"]], "close() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.close"]], "close() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.close"]], "close() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.close"]], "close() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.close"]], "connect() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.connect"]], "connected() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.connected"]], "disconnect() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.disconnect"]], "download() (methode von lib.network.http)": [[141, "lib.network.Http.download"]], "family_to_string() (statische methode von lib.network.network)": [[141, "lib.network.Network.family_to_string"]], "get_binary() (methode von lib.network.http)": [[141, "lib.network.Http.get_binary"]], "get_json() (methode von lib.network.http)": [[141, "lib.network.Http.get_json"]], "get_text() (methode von lib.network.http)": [[141, "lib.network.Http.get_text"]], "ip_port_to_socket() (statische methode von lib.network.network)": [[141, "lib.network.Network.ip_port_to_socket"]], "lib.network": [[141, "module-lib.network"]], "listening() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.listening"]], "listening() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.listening"]], "monitor() (methode von lib.network.connections)": [[141, "lib.network.Connections.monitor"]], "open() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.open"]], "ping() (statische methode von lib.network.network)": [[141, "lib.network.Network.ping"]], "ping_port() (statische methode von lib.network.network)": [[141, "lib.network.Network.ping_port"]], "post_json() (methode von lib.network.http)": [[141, "lib.network.Http.post_json"]], "response_cookies() (methode von lib.network.http)": [[141, "lib.network.Http.response_cookies"]], "response_headers() (methode von lib.network.http)": [[141, "lib.network.Http.response_headers"]], "response_object() (methode von lib.network.http)": [[141, "lib.network.Http.response_object"]], "response_status() (methode von lib.network.http)": [[141, "lib.network.Http.response_status"]], "send() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.send"]], "send() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.send"]], "send() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.send"]], "send_echo_off() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.send_echo_off"]], "send_echo_on() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.send_echo_on"]], "send_wol() (statische methode von lib.network.network)": [[141, "lib.network.Network.send_wol"]], "set_callbacks() (methode von lib.network.connectionclient)": [[141, "lib.network.ConnectionClient.set_callbacks"]], "set_callbacks() (methode von lib.network.tcp_client)": [[141, "lib.network.Tcp_client.set_callbacks"]], "set_callbacks() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.set_callbacks"]], "set_callbacks() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.set_callbacks"]], "socket (lib.network.connectionclient property)": [[141, "lib.network.ConnectionClient.socket"]], "start() (methode von lib.network.tcp_server)": [[141, "lib.network.Tcp_server.start"]], "start() (methode von lib.network.udp_server)": [[141, "lib.network.Udp_server.start"]], "unmonitor() (methode von lib.network.connections)": [[141, "lib.network.Connections.unmonitor"]], "validate_inet_addr() (statische methode von lib.network.network)": [[141, "lib.network.Network.validate_inet_addr"]], "orb (klasse in lib.orb)": [[142, "lib.orb.Orb"]], "get_observer_and_orb() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.get_observer_and_orb"]], "lib.orb": [[142, "module-lib.orb"]], "midnight() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.midnight"]], "noon() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.noon"]], "pos() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.pos"]], "rise() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.rise"]], "set() (methode von lib.orb.orb)": [[142, "lib.orb.Orb.set"]], "lib.plugin": [[143, "module-lib.plugin"]], "plugins (klasse in lib.plugin)": [[144, "lib.plugin.Plugins"]], "plugins.pyobject (klasse in lib.plugin)": [[144, "lib.plugin.Plugins.PyObject"]], "get() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get"]], "get_instance() (statische methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_instance"]], "get_loaded_plugin_instances() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_loaded_plugin_instances"]], "get_loaded_plugins() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_loaded_plugins"]], "get_logic_parameters() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_logic_parameters"]], "get_pluginthread() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.get_pluginthread"]], "refcnt (attribut von lib.plugin.plugins.pyobject)": [[144, "lib.plugin.Plugins.PyObject.refcnt"]], "return_plugin() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.return_plugin"]], "return_plugins() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.return_plugins"]], "start() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.start"]], "stop() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.stop"]], "unload_plugin() (methode von lib.plugin.plugins)": [[144, "lib.plugin.Plugins.unload_plugin"]], "pluginwrapper (klasse in lib.plugin)": [[145, "lib.plugin.PluginWrapper"]], "get_ident() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.get_ident"]], "get_implementation() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.get_implementation"]], "get_name() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.get_name"]], "run() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.run"]], "stop() (methode von lib.plugin.pluginwrapper)": [[145, "lib.plugin.PluginWrapper.stop"]], "scenes (klasse in lib.scene)": [[146, "lib.scene.Scenes"]], "get_instance() (statische methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_instance"]], "get_loaded_scenes() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_loaded_scenes"]], "get_scene_action_name() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_scene_action_name"]], "get_scene_actions() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.get_scene_actions"]], "lib.scene": [[146, "module-lib.scene"]], "reload_scenes() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.reload_scenes"]], "return_scene_value_actions() (methode von lib.scene.scenes)": [[146, "lib.scene.Scenes.return_scene_value_actions"]], "leavelogic": [[147, "lib.scheduler.LeaveLogic"], [588, "index-2"]], "scheduler (klasse in lib.scheduler)": [[147, "lib.scheduler.Scheduler"]], "add() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.add"]], "change() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.change"]], "check_caller() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.check_caller"]], "get() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get"]], "get_idle_worker_count() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_idle_worker_count"]], "get_instance() (statische methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_instance"]], "get_worker_count() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_worker_count"]], "get_worker_names() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.get_worker_names"]], "lib.scheduler": [[147, "module-lib.scheduler"]], "remove() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.remove"]], "return_next() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.return_next"]], "run() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.run"]], "set_worker_warn_count() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.set_worker_warn_count"]], "stop() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.stop"]], "trigger() (methode von lib.scheduler.scheduler)": [[147, "lib.scheduler.Scheduler.trigger"]], "shtime (klasse in lib.shtime)": [[148, "lib.shtime.Shtime"]], "add_custom_holiday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.add_custom_holiday"]], "add_custom_holiday_range() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.add_custom_holiday_range"]], "beginning_of_month() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.beginning_of_month"]], "beginning_of_week() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.beginning_of_week"]], "beginning_of_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.beginning_of_year"]], "calendar_week() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.calendar_week"]], "current_day() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_day"]], "current_month() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_month"]], "current_monthname() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_monthname"]], "current_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.current_year"]], "date_transform() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.date_transform"]], "datetime_transform() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.datetime_transform"]], "day_of_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.day_of_year"]], "get_instance() (statische methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.get_instance"]], "holiday_list() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.holiday_list"]], "holiday_name() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.holiday_name"]], "holidays (attribut von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.holidays"]], "is_holiday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.is_holiday"]], "is_public_holiday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.is_public_holiday"]], "is_weekend() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.is_weekend"]], "length_of_month() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.length_of_month"]], "length_of_year() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.length_of_year"]], "lib.shtime": [[148, "module-lib.shtime"]], "now() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.now"]], "public_holiday_list() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.public_holiday_list"]], "public_holidays (attribut von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.public_holidays"]], "runtime() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.runtime"]], "runtime_as_dict() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.runtime_as_dict"]], "seconds_to_displaystring() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.seconds_to_displaystring"]], "set_tz() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.set_tz"]], "set_tzinfo() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.set_tzinfo"]], "time_diff() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.time_diff"]], "time_since() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.time_since"]], "time_until() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.time_until"]], "to_seconds() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.to_seconds"]], "today() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.today"]], "tomorrow() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tomorrow"]], "translate() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.translate"]], "tz() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tz"]], "tzinfo() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tzinfo"]], "tzlocal() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tzlocal"]], "tzname() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tzname"]], "tznamedst() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tznameDST"]], "tznamest() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.tznameST"]], "utcinfo() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.utcinfo"]], "utcnow() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.utcnow"]], "weekday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.weekday"]], "weekday_name() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.weekday_name"]], "yesterday() (methode von lib.shtime.shtime)": [[148, "lib.shtime.Shtime.yesterday"]], "convert_linenumber() (im modul lib.shyaml)": [[149, "lib.shyaml.convert_linenumber"]], "data (attribut von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.data"]], "editing_is_enabled() (im modul lib.shyaml)": [[149, "lib.shyaml.editing_is_enabled"]], "filename (attribut von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.filename"]], "get_commentedseq() (im modul lib.shyaml)": [[149, "lib.shyaml.get_commentedseq"]], "get_emptynode() (im modul lib.shyaml)": [[149, "lib.shyaml.get_emptynode"]], "get_key() (im modul lib.shyaml)": [[149, "lib.shyaml.get_key"]], "get_parent() (im modul lib.shyaml)": [[149, "lib.shyaml.get_parent"]], "getnode() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getnode"]], "getnodetype() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getnodetype"]], "getvalue() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getvalue"]], "getvaluetype() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.getvaluetype"]], "lib.shyaml": [[149, "module-lib.shyaml"]], "load() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.load"]], "save() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.save"]], "setindict() (im modul lib.shyaml)": [[149, "lib.shyaml.setInDict"]], "setleafvalue() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.setleafvalue"]], "setvalue() (methode von lib.shyaml.yamlfile)": [[149, "lib.shyaml.yamlfile.setvalue"]], "writebacktofile() (im modul lib.shyaml)": [[149, "lib.shyaml.writeBackToFile"]], "yaml_dump_roundtrip() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_dump_roundtrip"]], "yaml_load() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_load"]], "yaml_load_fromstring() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_load_fromstring"]], "yaml_load_roundtrip() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_load_roundtrip"]], "yaml_save() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_save"]], "yaml_save_roundtrip() (im modul lib.shyaml)": [[149, "lib.shyaml.yaml_save_roundtrip"]], "yamlfile (klasse in lib.shyaml)": [[149, "lib.shyaml.yamlfile"]], "tools (klasse in lib.tools)": [[150, "lib.tools.Tools"]], "abs2rel() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.abs2rel"]], "dewpoint() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.dewpoint"]], "dt2js() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.dt2js"]], "dt2ts() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.dt2ts"]], "fetch_url() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.fetch_url"]], "lib.tools": [[150, "module-lib.tools"]], "ping() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.ping"]], "rel2abs() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.rel2abs"]], "runtime() (methode von lib.tools.tools)": [[150, "lib.tools.Tools.runtime"]], "initialize_translations() (im modul lib.translation)": [[151, "lib.translation.initialize_translations"]], "lib.translation": [[151, "module-lib.translation"]], "load_translations() (im modul lib.translation)": [[151, "lib.translation.load_translations"]], "reload_translations() (im modul lib.translation)": [[151, "lib.translation.reload_translations"]], "set_default_language() (im modul lib.translation)": [[151, "lib.translation.set_default_language"]], "set_fallback_language_order() (im modul lib.translation)": [[151, "lib.translation.set_fallback_language_order"]], "translate() (im modul lib.translation)": [[151, "lib.translation.translate"]], "utils (klasse in lib.utils)": [[152, "lib.utils.Utils"]], "version (klasse in lib.utils)": [[152, "lib.utils.Version"]], "check_hashed_password() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.check_hashed_password"]], "check_list() (statische methode von lib.utils.version)": [[152, "lib.utils.Version.check_list"]], "compare() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.compare"]], "create_hash() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.create_hash"]], "execute_subprocess() (im modul lib.utils)": [[152, "lib.utils.execute_subprocess"]], "execute_subprocess() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.execute_subprocess"]], "format() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.format"]], "get_all_addresses_for_addressfamily() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_all_addresses_for_addressfamily"]], "get_all_local_ipv4_addresses() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_all_local_ipv4_addresses"]], "get_all_local_ipv6_addresses() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_all_local_ipv6_addresses"]], "get_local_ipv4_address() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_local_ipv4_address"]], "get_local_ipv6_address() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_local_ipv6_address"]], "get_python_version() (im modul lib.utils)": [[152, "lib.utils.get_python_version"]], "get_type() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.get_type"]], "is_float() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_float"]], "is_hash() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_hash"]], "is_hostname() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_hostname"]], "is_int() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_int"]], "is_ip() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_ip"]], "is_ipv4() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_ipv4"]], "is_ipv6() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_ipv6"]], "is_knx_groupaddress() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_knx_groupaddress"]], "is_mac() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_mac"]], "is_timeframe() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.is_timeframe"]], "lib.utils": [[152, "module-lib.utils"]], "running_virtual() (im modul lib.utils)": [[152, "lib.utils.running_virtual"]], "string_to_list() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.string_to_list"]], "strip_quotes() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.strip_quotes"]], "strip_quotes_fromlist() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.strip_quotes_fromlist"]], "strip_square_brackets() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.strip_square_brackets"]], "to_bool() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.to_bool"]], "to_list() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.to_list"]], "to_string() (klassenmethode von lib.utils.version)": [[152, "lib.utils.Version.to_string"]], "to_timeframe() (statische methode von lib.utils.utils)": [[152, "lib.utils.Utils.to_timeframe"]], "nutzdaten protokoll - server (smarthomeng) requests": [[156, "index-0"], [303, "index-0"]], "smartvisu nutzdaten protokoll - server (smarthomeng) requests": [[156, "index-1"], [303, "index-1"]], "alexa": [[163, "index-1"], [164, "index-1"]], "alexa4p3 (amazon echo/alexa unterst\u00fctzung)": [[163, "index-0"]], "alexa4p3 plugin": [[163, "index-1"]], "alexarc4shng (remote control for alexa devices)": [[164, "index-0"]], "alexarc4shng plugin": [[164, "index-1"]], "apcups": [[165, "index-0"], [165, "index-1"]], "appletv": [[166, "index-0"], [166, "index-1"]], "artnet": [[167, "index-0"], [167, "index-1"]], "asterisk": [[168, "index-0"], [168, "index-1"]], "avdevice": [[169, "index-0"], [169, "index-1"]], "avm": [[170, "index-0"], [170, "index-1"]], "avm_smarthome": [[171, "index-1"]], "avm_smarthome plugin": [[171, "index-0"]], "blockly": [[172, "index-0"], [172, "index-1"]], "bose_soundtouch": [[174, "index-0"], [174, "index-1"]], "byd_bat": [[178, "index-0"], [178, "index-1"]], "casambi": [[179, "index-0"], [179, "index-1"]], "cli": [[181, "index-1"]], "cli (commandline interface)": [[181, "index-0"]], "wetter": [[184, "index-2"], [262, "index-2"], [268, "index-3"], [366, "index-2"]], "darksky": [[184, "index-1"], [184, "index-2"], [184, "index-3"]], "darksky (darksky.net / forecast.io wetterdaten)": [[184, "index-0"]], "struct": [[184, "index-3"], [262, "index-3"], [268, "index-4"], [578, "index-0"], [578, "index-1"], [578, "index-3"]], "database": [[187, "index-1"]], "database (datenbank unterst\u00fctzung)": [[187, "index-0"]], "datalog": [[188, "index-0"], [188, "index-1"]], "db_addon": [[189, "index-1"]], "db_addon (datenbank unterst\u00fctzung)": [[189, "index-0"]], "denon": [[191, "index-0"], [191, "index-1"]], "dlms": [[192, "index-1"]], "dlms (auslesen von smartmetern via dlms)": [[192, "index-0"]], "dmx": [[194, "index-0"], [194, "index-1"]], "drexelundweiss": [[196, "index-0"], [196, "index-1"]], "ebus": [[197, "index-0"], [197, "index-1"]], "enocean": [[200, "index-0"], [200, "index-1"]], "epson": [[201, "index-0"], [201, "index-1"]], "executor": [[203, "index-0"], [203, "index-1"]], "gpio": [[204, "index-0"], [204, "index-1"]], "homematic (homematic unterst\u00fctzung)": [[210, "index-0"]], "homematic homematicip": [[210, "index-1"]], "hue2 (philips hue v2)": [[212, "index-0"]], "hue2 hue": [[212, "index-1"]], "hue3": [[213, "index-0"]], "hue3 hue": [[213, "index-1"]], "ical": [[217, "index-0"], [217, "index-1"]], "indego (anbindung der bosch-indego connect m\u00e4her)": [[220, "index-0"]], "indego4shng": [[220, "index-1"]], "influxdb": [[222, "index-0"], [222, "index-1"], [223, "index-2"], [225, "index-0"], [226, "index-0"]], "influxdb2": [[223, "index-0"], [223, "index-1"]], "influxdb2 plugin": [[223, "index-2"]], "join": [[228, "index-0"], [228, "index-1"]], "jsonread": [[229, "index-0"], [229, "index-1"]], "jvcproj": [[230, "index-0"], [230, "index-1"]], "knx": [[232, "index-1"]], "knx (knx bus unterst\u00fctzung)": [[232, "index-0"]], "kodi": [[233, "index-0"], [233, "index-1"]], "lirc": [[237, "index-0"], [237, "index-1"]], "lms": [[238, "index-0"], [238, "index-1"]], "mailrcv": [[241, "index-0"], [241, "index-1"]], "mailsend": [[242, "index-0"], [242, "index-1"]], "memlog": [[243, "index-0"], [243, "index-1"]], "mieleathome": [[244, "index-0"], [244, "index-1"]], "mikrotik": [[246, "index-0"], [246, "index-1"]], "modbus_tcp": [[249, "index-1"]], "modbus_tcp plugin": [[249, "index-0"]], "mpd": [[250, "index-0"]], "mqtt (mqtt protokoll implementierung)": [[252, "index-0"]], "mqtt plugin": [[252, "index-1"]], "neato": [[255, "index-0"], [255, "index-1"]], "network": [[256, "index-0"], [256, "index-1"]], "nut": [[259, "index-0"], [259, "index-1"]], "onewire": [[261, "index-0"], [261, "index-1"]], "openweathermap": [[262, "index-1"], [262, "index-2"], [262, "index-3"]], "openweathermap (openweathermap.org wetterdaten)": [[262, "index-0"]], "operationlog": [[263, "index-0"], [263, "index-1"]], "oppo": [[264, "index-0"], [264, "index-1"]], "panasonic_ac": [[265, "index-0"], [265, "index-1"]], "philips_tv": [[266, "index-0"], [266, "index-1"]], "pioneer": [[267, "index-0"], [267, "index-1"]], "pirateweather.net": [[268, "index-2"]], "piratewthr": [[268, "index-1"], [268, "index-3"], [268, "index-4"]], "piratewthr (pirateweather.net / forecast.io wetterdaten)": [[268, "index-0"]], "pluggit": [[271, "index-0"]], "pluggit plugin": [[271, "index-1"]], "raumfeld_ng": [[276, "index-0"], [276, "index-1"]], "rcs1000n": [[277, "index-1"]], "rcs1000n (brennenstuhl rcs 1000 n)": [[277, "index-0"]], "resol": [[279, "index-1"]], "resol (resol unterst\u00fctzung)": [[279, "index-0"]], "roombapysh": [[284, "index-0"], [284, "index-1"]], "rpi_info": [[286, "index-0"], [286, "index-1"]], "rrd": [[287, "index-0"], [287, "index-1"]], "rtr2 (raumtemperatur regler v2)": [[289, "index-0"]], "rtr2 rtr": [[289, "index-1"]], "shelly": [[291, "index-0"], [291, "index-1"]], "shelly plugin": [[291, "index-2"]], "simulation": [[295, "index-0"], [295, "index-1"]], "sma_mb": [[300, "index-1"]], "sma_mb (sma-modbus)": [[300, "index-0"]], "smartvisu (smartvisu unterst\u00fctzung)": [[302, "index-0"]], "smartvisu plugin": [[302, "index-1"]], "nutzdaten protokoll - client requests": [[304, "index-0"]], "smartvisu nutzdaten protokoll - client requests": [[304, "index-1"]], "sml2": [[306, "index-0"], [306, "index-1"]], "solarforecast": [[311, "index-1"]], "solarforecast (solarforecast rest api unterst\u00fctzung)": [[311, "index-0"]], "solarlog": [[313, "index-0"], [313, "index-1"]], "sonos": [[314, "index-0"], [314, "index-1"]], "speech": [[316, "index-0"], [316, "index-1"]], "squeezebox": [[319, "index-0"], [319, "index-1"]], "stateengine": [[320, "index-0"], [320, "index-1"], [321, "index-0"], [322, "index-0"], [323, "index-0"], [324, "index-0"], [325, "index-0"], [326, "index-0"], [327, "index-0"], [328, "index-0"], [329, "index-0"], [330, "index-0"], [331, "index-0"], [332, "index-0"], [333, "index-0"]], "regelwerk-item": [[323, "index-0"]], "zustand-item": [[324, "index-0"]], "bedingungen": [[325, "index-0"]], "aktionen": [[326, "index-0"]], "ausf\u00fchrungszeitpunkt": [[327, "index-0"]], "beispiel": [[328, "index-0"], [683, "index-0"]], "zustand-templates": [[329, "index-0"]], "funktionen und variablen": [[330, "index-0"]], "besondere zust\u00e4nde": [[331, "index-0"]], "aktionen - einzeln": [[332, "index-0"]], "sonstiges": [[333, "index-0"]], "tankerkoenig": [[336, "index-0"], [336, "index-1"]], "tasmota": [[337, "index-0"], [337, "index-1"]], "tasmota plugin": [[337, "index-2"]], "telegram": [[338, "index-0"], [338, "index-1"]], "unifi": [[346, "index-0"], [346, "index-1"]], "uzsu": [[347, "index-0"], [347, "index-1"]], "ferien": [[348, "index-2"]], "vacations": [[348, "index-1"]], "vacations (deutsche schulferien)": [[348, "index-0"]], "vactions": [[348, "index-2"]], "vicare": [[349, "index-0"], [349, "index-1"]], "viessmann": [[351, "index-0"], [351, "index-1"]], "visu_smartvisu": [[354, "index-1"]], "visu_smartvisu (smartvisu unterst\u00fctzung)": [[354, "index-0"]], "visu_smartvisu plugin": [[354, "index-2"]], "visu_websocket": [[357, "index-1"]], "visu_websocket (websocket protokoll unterst\u00fctzung)": [[357, "index-0"]], "webpush": [[359, "index-0"], [359, "index-1"]], "rest interface": [[360, "index-2"]], "webservices (rest interface)": [[360, "index-0"]], "withings_health": [[362, "index-0"], [362, "index-1"]], "wol": [[363, "index-1"]], "wol (wake on lan)": [[363, "index-0"]], "wunderground": [[366, "index-1"], [366, "index-2"]], "wunderground (wunderground wetterdaten)": [[366, "index-0"]], "xiaomi_vac": [[367, "index-0"], [367, "index-1"]], "yamaha": [[369, "index-1"]], "yamaha (raumtemperatur regler v2)": [[369, "index-0"]], "alexa konfiguration": [[374, "index-0"]], "alexa4p3 konfiguration": [[375, "index-0"]], "alexarc4shng konfiguration": [[376, "index-0"]], "apcups konfiguration": [[377, "index-0"]], "appletv konfiguration": [[378, "index-0"]], "artnet konfiguration": [[379, "index-0"]], "asterisk konfiguration": [[380, "index-0"]], "avdevice konfiguration": [[381, "index-0"]], "avm konfiguration": [[382, "index-0"]], "avm_smarthome konfiguration": [[383, "index-0"]], "beolink konfiguration": [[384, "index-0"]], "blockly konfiguration": [[385, "index-0"]], "bose_soundtouch konfiguration": [[386, "index-0"]], "bsblan konfiguration": [[387, "index-0"]], "buderus konfiguration": [[388, "index-0"]], "byd_bat konfiguration": [[389, "index-0"]], "casambi konfiguration": [[390, "index-0"]], "cli konfiguration": [[391, "index-0"]], "co2meter konfiguration": [[392, "index-0"]], "comfoair konfiguration": [[393, "index-0"]], "darksky konfiguration": [[394, "index-0"]], "dashbutton konfiguration": [[395, "index-0"]], "database konfiguration": [[396, "index-0"]], "datalog konfiguration": [[397, "index-0"]], "db_addon konfiguration": [[398, "index-0"]], "deebot_ozmo konfiguration": [[399, "index-0"]], "denon konfiguration": [[400, "index-0"]], "dlms konfiguration": [[401, "index-0"]], "dmx konfiguration": [[402, "index-0"]], "drexelundweiss konfiguration": [[403, "index-0"]], "ebus konfiguration": [[405, "index-0"]], "enigma2 konfiguration": [[406, "index-0"]], "enocean konfiguration": [[407, "index-0"]], "epson konfiguration": [[408, "index-0"]], "eta_pu konfiguration": [[409, "index-0"]], "executor konfiguration": [[410, "index-0"]], "garminconnect konfiguration": [[411, "index-0"]], "gpio konfiguration": [[412, "index-0"]], "harmony konfiguration": [[413, "index-0"]], "helios konfiguration": [[414, "index-0"]], "helios_tcp konfiguration": [[415, "index-0"]], "homeconnect konfiguration": [[416, "index-0"]], "homematic konfiguration": [[417, "index-0"]], "hue konfiguration": [[418, "index-0"]], "hue2 konfiguration": [[419, "index-0"]], "hue3 konfiguration": [[420, "index-0"]], "husky konfiguration": [[421, "index-0"]], "husky2 konfiguration": [[422, "index-0"]], "ical konfiguration": [[423, "index-0"]], "indego konfiguration": [[424, "index-0"]], "indego4shng konfiguration": [[425, "index-0"]], "influxdata konfiguration": [[426, "index-0"]], "influxdb konfiguration": [[427, "index-0"]], "influxdb2 konfiguration": [[428, "index-0"]], "intercom_2n konfiguration": [[429, "index-0"]], "join konfiguration": [[430, "index-0"]], "jsonread konfiguration": [[431, "index-0"]], "jvcproj konfiguration": [[432, "index-0"]], "kathrein konfiguration": [[433, "index-0"]], "knx konfiguration": [[434, "index-0"]], "kodi konfiguration": [[435, "index-0"]], "kostal konfiguration": [[436, "index-0"]], "kostalmodbus konfiguration": [[437, "index-0"]], "ksemmodbus konfiguration": [[438, "index-0"]], "leveljet konfiguration": [[439, "index-0"]], "lirc konfiguration": [[440, "index-0"]], "lms konfiguration": [[441, "index-0"]], "logo konfiguration": [[442, "index-0"]], "luxtronic2 konfiguration": [[443, "index-0"]], "mailrcv konfiguration": [[444, "index-0"]], "mailsend konfiguration": [[445, "index-0"]], "memlog konfiguration": [[446, "index-0"]], "mieleathome konfiguration": [[447, "index-0"]], "miflora konfiguration": [[448, "index-0"]], "mikrotik konfiguration": [[449, "index-0"]], "milight konfiguration": [[450, "index-0"]], "mlgw konfiguration": [[451, "index-0"]], "modbus_tcp konfiguration": [[452, "index-0"]], "mpd konfiguration": [[453, "index-0"]], "mqtt konfiguration": [[454, "index-0"]], "mvg_live konfiguration": [[455, "index-0"]], "neato konfiguration": [[456, "index-0"]], "network konfiguration": [[457, "index-0"]], "nuki konfiguration": [[458, "index-0"]], "nut konfiguration": [[459, "index-0"]], "odlinfo konfiguration": [[460, "index-0"]], "onewire konfiguration": [[461, "index-0"]], "openweathermap konfiguration": [[462, "index-0"]], "operationlog konfiguration": [[463, "index-0"]], "oppo konfiguration": [[464, "index-0"]], "panasonic_ac konfiguration": [[465, "index-0"]], "philips_tv konfiguration": [[466, "index-0"]], "pioneer konfiguration": [[467, "index-0"]], "piratewthr konfiguration": [[468, "index-0"]], "plex konfiguration": [[469, "index-0"]], "pluggit konfiguration": [[470, "index-0"]], "prowl konfiguration": [[471, "index-0"]], "pushbullet konfiguration": [[472, "index-0"]], "pushover konfiguration": [[473, "index-0"]], "raumfeld konfiguration": [[474, "index-0"]], "raumfeld_ng konfiguration": [[475, "index-0"]], "rcs1000n konfiguration": [[476, "index-0"]], "rcswitch konfiguration": [[477, "index-0"]], "resol konfiguration": [[478, "index-0"]], "robonect konfiguration": [[479, "index-0"]], "roomba konfiguration": [[480, "index-0"]], "roomba_980 konfiguration": [[481, "index-0"]], "roombapysh konfiguration": [[482, "index-0"]], "rpi1wire konfiguration": [[483, "index-0"]], "rpi_info konfiguration": [[484, "index-0"]], "rrd konfiguration": [[485, "index-0"]], "rtr konfiguration": [[486, "index-0"]], "rtr2 konfiguration": [[487, "index-0"]], "russound konfiguration": [[488, "index-0"]], "shelly konfiguration": [[489, "index-0"]], "simulation konfiguration": [[490, "index-0"]], "slack konfiguration": [[491, "index-0"]], "sma konfiguration": [[492, "index-0"]], "sma_em konfiguration": [[493, "index-0"]], "sma_mb konfiguration": [[494, "index-0"]], "smarttv konfiguration": [[495, "index-0"]], "smartvisu konfiguration": [[496, "index-0"]], "sml konfiguration": [[497, "index-0"]], "sml2 konfiguration": [[498, "index-0"]], "smlx konfiguration": [[499, "index-0"]], "snap7_logo konfiguration": [[500, "index-0"]], "snmp konfiguration": [[501, "index-0"]], "solarforecast konfiguration": [[502, "index-0"]], "solarlog konfiguration": [[503, "index-0"]], "sonos konfiguration": [[504, "index-0"]], "speech konfiguration": [[505, "index-0"]], "sqlite_visu2_8 konfiguration": [[506, "index-0"]], "squeezebox konfiguration": [[507, "index-0"]], "stateengine konfiguration": [[508, "index-0"]], "systemair konfiguration": [[509, "index-0"]], "tankerkoenig konfiguration": [[510, "index-0"]], "tasmota konfiguration": [[511, "index-0"]], "telegram konfiguration": [[512, "index-0"]], "text_display konfiguration": [[513, "index-0"]], "thz konfiguration": [[514, "index-0"]], "timmy konfiguration": [[515, "index-0"]], "traffic konfiguration": [[516, "index-0"]], "trovis557x konfiguration": [[517, "index-0"]], "unifi konfiguration": [[518, "index-0"]], "uzsu konfiguration": [[519, "index-0"]], "vacations konfiguration": [[520, "index-0"]], "vicare konfiguration": [[521, "index-0"]], "viessmann konfiguration": [[522, "index-0"]], "visu_smartvisu konfiguration": [[523, "index-0"]], "visu_websocket konfiguration": [[524, "index-0"]], "volkszaehler konfiguration": [[525, "index-0"]], "waterkotte konfiguration": [[526, "index-0"]], "webpush konfiguration": [[527, "index-0"]], "webservices konfiguration": [[528, "index-0"]], "wettercom konfiguration": [[529, "index-0"]], "withings_health konfiguration": [[530, "index-0"]], "wol konfiguration": [[531, "index-0"]], "wunderground konfiguration": [[532, "index-0"]], "xiaomi_vac konfiguration": [[533, "index-0"]], "xmpp konfiguration": [[534, "index-0"]], "yamaha konfiguration": [[535, "index-0"]], "yamahayxc konfiguration": [[536, "index-0"]], "zigbee2mqtt konfiguration": [[537, "index-0"]], "zwave konfiguration": [[538, "index-0"]], "alle plugins": [[545, "index-0"]], "plugin type": [[545, "index-0"], [548, "index-0"], [550, "index-0"], [552, "index-0"], [554, "index-0"], [558, "index-0"]], "gateway": [[548, "index-0"]], "interface": [[550, "index-0"]], "protokoll": [[552, "index-0"]], "web/cloud": [[558, "index-0"]], "relative referenzen": [[561, "index-0"], [561, "index-1"]], "funktionen": [[562, "index-0"], [562, "index-1"], [589, "index-0"], [589, "index-1"], [599, "index-10"], [599, "index-7"], [599, "index-8"], [599, "index-9"], [634, "index-5"], [634, "index-6"], [634, "index-7"], [634, "index-8"]], "wert lesen": [[563, "index-0"]], "wert schreiben": [[563, "index-1"]], "referenz": [[564, "index-0"], [564, "index-1"], [582, "index-0"], [582, "index-1"], [583, "index-0"], [583, "index-1"], [584, "index-0"], [584, "index-1"], [585, "index-0"], [585, "index-1"], [586, "index-0"], [586, "index-1"], [587, "index-0"], [587, "index-1"], [605, "index-0"], [605, "index-1"], [611, "index-0"], [611, "index-1"], [617, "index-0"], [617, "index-1"], [618, "index-0"], [621, "index-0"], [621, "index-2"], [621, "index-4"], [621, "index-5"], [625, "index-0"], [625, "index-1"], [626, "index-0"], [627, "index-0"], [627, "index-1"], [631, "index-0"], [637, "index-0"], [637, "index-1"]], "platzhalter in attributwerten": [[566, "index-6"], [566, "index-7"]], "vererbung von attributen": [[566, "index-2"], [566, "index-3"]], "zugriff auf attribute anderer items": [[566, "index-4"], [566, "index-5"]], "plugin-spezifische attribute": [[566, "index-0"], [566, "index-1"]], "properties": [[567, "index-0"], [567, "index-1"], [591, "index-4"], [591, "index-5"]], "standard-attribute": [[568, "index-0"], [569, "index-0"], [570, "index-0"], [571, "index-1"], [572, "index-1"], [573, "index-0"], [573, "index-2"], [574, "index-3"], [574, "index-6"], [574, "index-9"], [575, "index-0"], [576, "index-0"], [576, "index-2"], [577, "index-0"], [577, "index-1"], [577, "index-10"], [577, "index-12"], [577, "index-14"], [577, "index-16"], [577, "index-18"], [577, "index-2"], [577, "index-4"], [577, "index-6"], [577, "index-8"], [578, "index-0"], [579, "index-0"]], "autotimer": [[568, "index-0"], [568, "index-1"]], "crontab": [[569, "index-0"], [569, "index-1"]], "cycle": [[570, "index-0"], [570, "index-1"]], "enforce_change": [[571, "index-0"], [571, "index-1"], [571, "index-2"]], "enforce_updates": [[572, "index-0"], [572, "index-1"], [572, "index-2"]], "hysterese": [[574, "index-0"], [574, "index-1"]], "item standardattribute": [[574, "index-2"], [574, "index-5"], [574, "index-8"]], "hysteresis_input": [[574, "index-2"], [574, "index-3"], [574, "index-4"]], "hysteresis_lower_threshold": [[574, "index-10"], [574, "index-8"], [574, "index-9"]], "hysteresis_upper_threshold": [[574, "index-5"], [574, "index-6"], [574, "index-7"]], "log_change": [[575, "index-0"], [575, "index-1"], [577, "index-8"], [577, "index-9"]], "on_change": [[576, "index-2"], [576, "index-3"]], "on_update": [[576, "index-0"], [576, "index-1"]], "cache": [[577, "index-2"], [577, "index-3"]], "initial_value": [[577, "index-4"], [577, "index-5"]], "log_level": [[577, "index-10"], [577, "index-11"]], "log_text": [[577, "index-12"], [577, "index-13"]], "name": [[577, "index-14"], [577, "index-15"]], "remark": [[577, "index-16"], [577, "index-17"]], "threshold": [[577, "index-18"], [577, "index-19"]], "value": [[577, "index-6"], [577, "index-7"]], "item-struktur template": [[578, "index-1"], [578, "index-2"], [578, "index-5"]], "template": [[578, "index-4"]], "datentypen": [[579, "index-2"], [579, "index-3"]], "type": [[579, "index-0"], [579, "index-1"]], "logging filter": [[583, "index-0"], [583, "index-1"]], "logging formatter": [[584, "index-0"], [584, "index-1"]], "text formatierung": [[586, "index-0"], [586, "index-1"]], "struktur": [[588, "index-0"], [588, "index-1"], [590, "index-0"], [590, "index-1"]], "klassen": [[589, "index-2"], [589, "index-3"]], "item wert": [[591, "index-2"], [591, "index-3"]], "zugriff auf items": [[591, "index-0"], [591, "index-1"]], "logging in logiken": [[593, "index-0"], [593, "index-1"]], "logic objekt": [[594, "index-0"], [594, "index-1"]], "logics objekt": [[594, "index-4"], [594, "index-5"]], "trigger dict": [[594, "index-2"], [594, "index-3"]], "persistente variablen": [[596, "index-0"], [596, "index-1"]], "plugin funktionen": [[597, "index-0"]], "python module": [[598, "index-0"], [598, "index-1"]], "datum und zeit": [[599, "index-10"], [599, "index-2"], [634, "index-0"], [634, "index-8"]], "smarthomeng methoden": [[599, "index-0"], [599, "index-1"]], "item_attribute_prefixes": [[601, "index-0"], [601, "index-1"]], "administration interface": [[612, "index-1"]], "plugincontroller (klasse in modules.admin.api_plugin)": [[612, "modules.admin.api_plugin.PluginController"]], "pluginsapicontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsAPIController"]], "pluginsconfigcontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsConfigController"]], "pluginscontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsController"]], "pluginsinfocontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsInfoController"]], "pluginsinstalledcontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsInstalledController"]], "pluginslogicparameterscontroller (klasse in modules.admin.api_plugins)": [[612, "modules.admin.api_plugins.PluginsLogicParametersController"]], "add() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.add"]], "blog_urls (attribut von modules.admin.api_plugins.pluginsinfocontroller)": [[612, "modules.admin.api_plugins.PluginsInfoController.blog_urls"]], "delete() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.delete"]], "get_body() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.get_body"]], "get_config_filename() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.get_config_filename"]], "handle_plugin_action() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.handle_plugin_action"]], "modules.admin.api_plugin": [[612, "module-modules.admin.api_plugin"]], "modules.admin.api_plugins": [[612, "module-modules.admin.api_plugins"]], "read() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.read"]], "read() (methode von modules.admin.api_plugins.pluginsapicontroller)": [[612, "modules.admin.api_plugins.PluginsAPIController.read"]], "read() (methode von modules.admin.api_plugins.pluginsconfigcontroller)": [[612, "modules.admin.api_plugins.PluginsConfigController.read"]], "read() (methode von modules.admin.api_plugins.pluginscontroller)": [[612, "modules.admin.api_plugins.PluginsController.read"]], "read() (methode von modules.admin.api_plugins.pluginsinfocontroller)": [[612, "modules.admin.api_plugins.PluginsInfoController.read"]], "read() (methode von modules.admin.api_plugins.pluginsinstalledcontroller)": [[612, "modules.admin.api_plugins.PluginsInstalledController.read"]], "read() (methode von modules.admin.api_plugins.pluginslogicparameterscontroller)": [[612, "modules.admin.api_plugins.PluginsLogicParametersController.read"]], "stop() (methode von modules.admin.api_plugins.pluginsinfocontroller)": [[612, "modules.admin.api_plugins.PluginsInfoController.stop"]], "test_for_old_config() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.test_for_old_config"]], "update() (methode von modules.admin.api_plugin.plugincontroller)": [[612, "modules.admin.api_plugin.PluginController.update"]], "cherrypyfilter (klasse in modules.http)": [[613, "modules.http.CherryPyFilter"]], "http (klasse in modules.http)": [[613, "modules.http.Http"]], "moduleapp (klasse in modules.http)": [[613, "modules.http.ModuleApp"]], "filter() (methode von modules.http.cherrypyfilter)": [[613, "modules.http.CherryPyFilter.filter"]], "get_local_hostname() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_hostname"]], "get_local_ip_address() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_ip_address"]], "get_local_port() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_port"]], "get_local_servicesport() (methode von modules.http.http)": [[613, "modules.http.Http.get_local_servicesport"]], "get_service_password() (methode von modules.http.http)": [[613, "modules.http.Http.get_service_password"]], "get_service_user() (methode von modules.http.http)": [[613, "modules.http.Http.get_service_user"]], "get_services_for_plugin() (methode von modules.http.http)": [[613, "modules.http.Http.get_services_for_plugin"]], "get_user_dict() (methode von modules.http.http)": [[613, "modules.http.Http.get_user_dict"]], "get_webifs_for_plugin() (methode von modules.http.http)": [[613, "modules.http.Http.get_webifs_for_plugin"]], "gstatic_dir (attribut von modules.http.http)": [[613, "modules.http.Http.gstatic_dir"]], "gtemplates_dir (attribut von modules.http.http)": [[613, "modules.http.Http.gtemplates_dir"]], "index() (methode von modules.http.moduleapp)": [[613, "modules.http.ModuleApp.index"]], "init_template_environment() (methode von modules.http.http)": [[613, "modules.http.Http.init_template_environment"]], "is_port_in_use() (methode von modules.http.http)": [[613, "modules.http.Http.is_port_in_use"]], "is_staticfile() (methode von modules.http.http)": [[613, "modules.http.Http.is_staticfile"]], "log_server_info() (methode von modules.http.http)": [[613, "modules.http.Http.log_server_info"]], "modules.http": [[613, "module-modules.http"]], "register_service() (methode von modules.http.http)": [[613, "modules.http.Http.register_service"]], "register_visu() (methode von modules.http.http)": [[613, "modules.http.Http.register_visu"]], "register_webif() (methode von modules.http.http)": [[613, "modules.http.Http.register_webif"]], "start() (methode von modules.http.http)": [[613, "modules.http.Http.start"]], "stop() (methode von modules.http.http)": [[613, "modules.http.Http.stop"]], "validate_password() (methode von modules.http.http)": [[613, "modules.http.Http.validate_password"]], "validate_service_password() (methode von modules.http.http)": [[613, "modules.http.Http.validate_service_password"]], "version (attribut von modules.http.http)": [[613, "modules.http.Http.version"]], "webif_mount_prefix (attribut von modules.http.http)": [[613, "modules.http.Http.webif_mount_prefix"]], "modules mqtt": [[615, "index-0"]], "mqtt (klasse in modules.mqtt)": [[615, "modules.mqtt.Mqtt"]], "broker_uptime() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.broker_uptime"]], "cast_from_mqtt() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.cast_from_mqtt"]], "cast_to_mqtt() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.cast_to_mqtt"]], "get_broker_config() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.get_broker_config"]], "get_broker_info() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.get_broker_info"]], "longname (attribut von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.longname"]], "modules.mqtt": [[615, "module-modules.mqtt"]], "publish_topic() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.publish_topic"]], "scheduler (attribut von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.scheduler"]], "start() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.start"]], "stop() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.stop"]], "subscribe_topic() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.subscribe_topic"]], "unsubscribe_topic() (methode von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.unsubscribe_topic"]], "version (attribut von modules.mqtt.mqtt)": [[615, "modules.mqtt.Mqtt.version"]], "websocket module": [[616, "index-1"]], "netzwerk": [[617, "index-0"], [617, "index-1"]], "smartplugin (klasse in lib.model.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin"], [624, "lib.model.smartplugin.SmartPlugin"]], "asyncio_state() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.asyncio_state"], [624, "lib.model.smartplugin.SmartPlugin.asyncio_state"]], "get_command_from_run_queue() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.get_command_from_run_queue"], [624, "lib.model.smartplugin.SmartPlugin.get_command_from_run_queue"]], "list_asyncio_tasks() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.list_asyncio_tasks"], [624, "lib.model.smartplugin.SmartPlugin.list_asyncio_tasks"]], "put_command_to_run_queue() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.put_command_to_run_queue"], [624, "lib.model.smartplugin.SmartPlugin.put_command_to_run_queue"]], "run_asyncio_coro() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.run_asyncio_coro"], [624, "lib.model.smartplugin.SmartPlugin.run_asyncio_coro"]], "start_asyncio() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.start_asyncio"], [624, "lib.model.smartplugin.SmartPlugin.start_asyncio"]], "stop_asyncio() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.stop_asyncio"], [624, "lib.model.smartplugin.SmartPlugin.stop_asyncio"]], "wait_for_asyncio_termination() (methode von lib.model.smartplugin.smartplugin)": [[618, "lib.model.smartplugin.SmartPlugin.wait_for_asyncio_termination"], [624, "lib.model.smartplugin.SmartPlugin.wait_for_asyncio_termination"]], "mqttplugin (klasse in lib.model.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin"]], "add_subscription() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.add_subscription"]], "broker_config (attribut von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.broker_config"]], "broker_monitoring (attribut von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.broker_monitoring"]], "broker_uptime() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.broker_uptime"]], "get_broker_info() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.get_broker_info"]], "mqtt_init() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.mqtt_init"]], "publish_topic() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.publish_topic"]], "start_subscriptions() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.start_subscriptions"]], "stop_subscriptions() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.stop_subscriptions"]], "translate() (methode von lib.model.mqttplugin.mqttplugin)": [[620, "lib.model.mqttplugin.MqttPlugin.translate"]], "mqttplugin referenz": [[621, "index-3"]], "sdp": [[621, "index-5"]], "sdp referenz": [[621, "index-7"]], "smartdeviceplugin": [[621, "index-4"], [623, "index-0"]], "smartdeviceplugin referenz": [[621, "index-6"]], "smartplugin referenz": [[621, "index-1"]], "class smartdeviceplugin": [[623, "index-1"], [623, "index-2"]], "allow_multiinstance (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.ALLOW_MULTIINSTANCE"]], "plugin_version (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.PLUGIN_VERSION"]], "stop_on_item_change (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.STOP_ON_ITEM_CHANGE"]], "add_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.add_item"]], "alive (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.alive"]], "callerinfo() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.callerinfo"]], "deinit() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.deinit"]], "get_classname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_classname"]], "get_configname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_configname"]], "get_fullname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_fullname"]], "get_iattr_value() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_iattr_value"]], "get_info() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_info"]], "get_instance_name() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_instance_name"]], "get_item_config() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_config"]], "get_item_list() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_list"]], "get_item_mapping() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_mapping"]], "get_item_mapping_list() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_mapping_list"]], "get_item_path_list() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_item_path_list"]], "get_items_for_mapping() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_items_for_mapping"]], "get_loginstance() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_loginstance"]], "get_mappings() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_mappings"]], "get_module() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_module"]], "get_parameter_value() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_parameter_value"]], "get_parameter_value_for_display() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_parameter_value_for_display"]], "get_plugin_dir() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_plugin_dir"]], "get_sh() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_sh"]], "get_shortname() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_shortname"]], "get_trigger_items() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_trigger_items"]], "get_version() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.get_version"]], "has_iattr() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.has_iattr"]], "init_webinterface() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.init_webinterface"]], "is_multi_instance_capable() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.is_multi_instance_capable"]], "logger (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.logger"]], "now() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.now"]], "parse_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.parse_item"]], "parse_logic() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.parse_logic"]], "path_join() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.path_join"]], "poll_device() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.poll_device"]], "register_updating() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.register_updating"]], "remove_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.remove_item"]], "run() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.run"]], "scheduler_add() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_add"]], "scheduler_change() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_change"]], "scheduler_get() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_get"]], "scheduler_get_all() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_get_all"]], "scheduler_remove() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_remove"]], "scheduler_remove_all() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_remove_all"]], "scheduler_return_next() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_return_next"]], "scheduler_trigger() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.scheduler_trigger"]], "set_attr_value() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.set_attr_value"]], "shtime (attribut von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.shtime"]], "stop() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.stop"]], "translate() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.translate"]], "unparse_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.unparse_item"]], "update_config_section() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.update_config_section"]], "update_item() (methode von lib.model.smartplugin.smartplugin)": [[624, "lib.model.smartplugin.SmartPlugin.update_item"]], "dokumentation f\u00fcr plugins": [[625, "index-0"]], "plugins referenz": [[625, "index-2"], [626, "index-1"]], "user_doc": [[625, "index-1"], [625, "index-2"]], "python": [[627, "index-0"], [627, "index-1"]], "python installieren": [[628, "index-0"]], "support skripte": [[629, "index-0"], [629, "index-1"]], "virtual python environments": [[629, "index-0"], [630, "index-0"]], "virtuelle umgebungen": [[629, "index-1"], [630, "index-1"]], "virtuelle environements als dienst": [[630, "index-2"]], "ablauf des startups": [[632, "index-0"]], "smarthomeng initialisierung": [[632, "index-1"]], "smarthomeng status": [[632, "index-3"]], "shng_status": [[632, "index-2"]], "smarthomeng": [[637, "index-0"], [637, "index-1"]], "backup und restore tool": [[677, "index-0"], [677, "index-1"]], "tools": [[677, "index-1"], [678, "index-1"], [679, "index-2"], [680, "index-1"], [681, "index-2"]], "build tool f\u00fcr python requirements": [[678, "index-0"], [678, "index-1"]], "conf zu yaml konverter": [[679, "index-0"], [679, "index-1"], [679, "index-2"], [679, "index-3"]], "yaml": [[679, "index-1"]], "getshngpid": [[680, "index-0"], [680, "index-1"]], "metadata checker": [[681, "index-0"], [681, "index-2"]], "plugin_metadata_checker": [[681, "index-1"]], "automatische generierung": [[682, "index-0"]], "konfigurationsseiten": [[682, "index-2"]], "manuell erstellte visu seiten": [[682, "index-7"], [682, "index-8"]], "trenner in der navigation": [[682, "index-3"]], "unterschiedliche blockgr\u00f6\u00dfen": [[682, "index-5"]], "unterschiedliche blocktypen": [[682, "index-6"]], "unterschiedliche visu-styles": [[682, "index-4"]], "zus\u00e4tzliche infos in der navigation anzeigen": [[682, "index-1"]], "smartvisu autogenerierung": [[682, "index-1"], [682, "index-2"], [682, "index-3"], [682, "index-4"], [682, "index-5"], [682, "index-6"], [682, "index-7"]], "hello world beispiel": [[683, "index-1"]], "installation von widgets": [[685, "index-0"]], "nginx als reverseproxy": [[688, "index-0"]], "definition der navigationsstruktur": [[689, "index-2"]], "kommunikation mit der visu": [[689, "index-3"]], "visualisierung mit smartvisu": [[689, "index-0"], [689, "index-1"]]}}) \ No newline at end of file diff --git a/tools/tools.html b/tools/tools.html index 31e3d151cd..3dc438ae75 100644 --- a/tools/tools.html +++ b/tools/tools.html @@ -4,7 +4,7 @@ - Tools — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Tools — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/tools/tools_backup_restore.html b/tools/tools_backup_restore.html index 0e4e6ba1ef..9da6ae77ee 100644 --- a/tools/tools_backup_restore.html +++ b/tools/tools_backup_restore.html @@ -4,7 +4,7 @@ - backup_restore.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + backup_restore.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/tools/tools_build_requirements.html b/tools/tools_build_requirements.html index 65ee2402f5..a6c52f1aeb 100644 --- a/tools/tools_build_requirements.html +++ b/tools/tools_build_requirements.html @@ -4,7 +4,7 @@ - build_requirements.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + build_requirements.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/tools/tools_conf_to_yaml_converter.html b/tools/tools_conf_to_yaml_converter.html index 861444f530..46776a2620 100644 --- a/tools/tools_conf_to_yaml_converter.html +++ b/tools/tools_conf_to_yaml_converter.html @@ -4,7 +4,7 @@ - conf_to_yaml_converter.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + conf_to_yaml_converter.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/tools/tools_getshngpid.html b/tools/tools_getshngpid.html index f2705f9572..07bb51f919 100644 --- a/tools/tools_getshngpid.html +++ b/tools/tools_getshngpid.html @@ -4,7 +4,7 @@ - getshngpid — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + getshngpid — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/tools/tools_plugin_metadata_checker.html b/tools/tools_plugin_metadata_checker.html index f4c2b27430..dc9a8dc4ca 100644 --- a/tools/tools_plugin_metadata_checker.html +++ b/tools/tools_plugin_metadata_checker.html @@ -4,7 +4,7 @@ - plugin_metadata_checker.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + plugin_metadata_checker.py — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/automatic_generation.html b/visualisierung/automatic_generation.html index 0408a84edb..8368e79265 100644 --- a/visualisierung/automatic_generation.html +++ b/visualisierung/automatic_generation.html @@ -4,7 +4,7 @@ - Automatische Generierung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Automatische Generierung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/beispiel.html b/visualisierung/beispiel.html index c73ea055bf..62d3127ae6 100644 --- a/visualisierung/beispiel.html +++ b/visualisierung/beispiel.html @@ -4,7 +4,7 @@ - Vollständiges Beispiel — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Vollständiges Beispiel — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/changes_in_1.8.html b/visualisierung/changes_in_1.8.html index ca19bac391..c2b5486c91 100644 --- a/visualisierung/changes_in_1.8.html +++ b/visualisierung/changes_in_1.8.html @@ -4,7 +4,7 @@ - Änderungen ab v1.8 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Änderungen ab v1.8 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/install_widgets.html b/visualisierung/install_widgets.html index b975aad9e7..4202c7e349 100644 --- a/visualisierung/install_widgets.html +++ b/visualisierung/install_widgets.html @@ -4,7 +4,7 @@ - Installation von Widgets — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Installation von Widgets — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/item_attributes.html b/visualisierung/item_attributes.html index b4c3ed013a..641a6d8424 100644 --- a/visualisierung/item_attributes.html +++ b/visualisierung/item_attributes.html @@ -4,7 +4,7 @@ - Item Attribute zur Generierung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Item Attribute zur Generierung — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/plugin_widgets.html b/visualisierung/plugin_widgets.html index a8f75291b7..5011b8dc48 100644 --- a/visualisierung/plugin_widgets.html +++ b/visualisierung/plugin_widgets.html @@ -4,7 +4,7 @@ - Widgets für Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Widgets für Plugins — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/reverse_proxy.html b/visualisierung/reverse_proxy.html index 4086434933..084976f2dc 100644 --- a/visualisierung/reverse_proxy.html +++ b/visualisierung/reverse_proxy.html @@ -4,7 +4,7 @@ - NGINX als ReverseProxy — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + NGINX als ReverseProxy — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/visualisierung.html b/visualisierung/visualisierung.html index b26f6acb1d..3b95d7f804 100644 --- a/visualisierung/visualisierung.html +++ b/visualisierung/visualisierung.html @@ -4,7 +4,7 @@ - Visualisierung mit smartVISU Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Visualisierung mit smartVISU Update — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/visualisierung/websocket_communication.html b/visualisierung/websocket_communication.html index 5593c92364..d062beb07b 100644 --- a/visualisierung/websocket_communication.html +++ b/visualisierung/websocket_communication.html @@ -4,7 +4,7 @@ - Websocket Kommunikation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Websocket Kommunikation — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/vorlagen/1_x_vorlage_Release_Notes.html b/vorlagen/1_x_vorlage_Release_Notes.html index c2521dfa20..8df71bda2c 100644 --- a/vorlagen/1_x_vorlage_Release_Notes.html +++ b/vorlagen/1_x_vorlage_Release_Notes.html @@ -4,7 +4,7 @@ - Release 1.x - tt. mmm 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Release 1.x - tt. mmm 2020 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/was_ist_neu.html b/was_ist_neu.html index d74d4d628b..f2bb0061e0 100644 --- a/was_ist_neu.html +++ b/was_ist_neu.html @@ -4,7 +4,7 @@ - Neuerungen im Release v1.11 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Neuerungen im Release v1.11 — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation diff --git a/was_war_neu.html b/was_war_neu.html index f62420cee2..ff613250cc 100644 --- a/was_war_neu.html +++ b/was_war_neu.html @@ -4,7 +4,7 @@ - Neuerungen der letzten Releases — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 16. Oktober 2024, commit d8d808f) Dokumentation + Neuerungen der letzten Releases — Dokumentation v1.10.0.3 v1.10.0.3 develop (Stand 17. Oktober 2024, commit 11bb17b) Dokumentation