Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Praktische Anwendungen (Showcase)
    4. E-INK Display OpenEPaperLink - Displayanzeige mit Batterie

    NEWS

    • ioBroker goes Matter ... Matter Adapter in Stable

    • 15. 05. Wartungsarbeiten am ioBroker Forum

    • Monatsrückblick - April 2025

    E-INK Display OpenEPaperLink - Displayanzeige mit Batterie

    This topic has been deleted. Only users with topic management privileges can see it.
    • Neuschwansteini
      Neuschwansteini @oxident last edited by

      @oxident

      ich hab 20 Tags an einem AP zur Zeit, nutze aber keine Bilder mehr, hab mir das mit json die vom iobroker gepushed werden, zusammen gebaut.

      Allerdings ist mein AP mit den 20 Tags etwas ueberfordert, ist ein Mini AP V4, hab noch 2 andere, da muss ich aber noch die Tests mit den Tags fertig stellen und dann die location aendern, sonst kommen die sich ins Gehege..

      Ich muss den AP alle 2h rebooten lassen, sonst schafft er das nicht..

      1 Reply Last reply Reply Quote 1
      • BananaJoe
        BananaJoe Most Active @oxident last edited by

        @oxident ich habe 2 Mini AP V3 und lasse die ebenfalls im Wechsel alle 2h rebooten (alle geraden Stunden der eine, alle ungeraden Stunden den anderen), mit der Lösung sind alle Probleme weg.

        Ob die Probleme haben wegen dem PSRAM kann ich gar nicht sagen, mein Monitoring meldet sonst mal gerne das diese nicht mehr erreichbar sind (Ping) und dann hilft nur noch Ein- und Ausschalten. Das mit dem Speicherverbrauch haben eher zufällig gesehen

        1 Reply Last reply Reply Quote 1
        • O
          oxident last edited by

          Verstehe... dann bin ich ja sogar noch ganz gut dran. Danke für die Infos!

          BananaJoe 1 Reply Last reply Reply Quote 0
          • BananaJoe
            BananaJoe Most Active @oxident last edited by

            @oxident das mit dem alle 2h rebooten klingt zwar dramatisch ... aber davon bekommt man ja nichts mit 🙂

            O B 2 Replies Last reply Reply Quote 1
            • O
              oxident @BananaJoe last edited by

              @bananajoe Wohl wahr. Guter Workaround auf jeden Fall!

              1 Reply Last reply Reply Quote 0
              • B
                Beowolf @BananaJoe last edited by Beowolf

                @bananajoe
                Funktioniert der Befehl "reboot" mit 2.6b nicht mehr? Ich kann das ruhig im Browser eingeben, der AP rebootet aber nicht.

                Neuschwansteini O 2 Replies Last reply Reply Quote 0
                • Neuschwansteini
                  Neuschwansteini @Beowolf last edited by

                  @beowolf

                  geht hier einwandfrei.. gerade im browser probiert... und mit httpget auch ohne probleme mit dem script...

                  1 Reply Last reply Reply Quote 0
                  • O
                    oxident @Beowolf last edited by oxident

                    @beowolf Ich hatte da gerade auch etwas Stress und bekam 404-Fehler zurück. Komischerweise scheint es aber mit dem "POST"-Befehl zu klappen. Nutze jetzt folgende Funktion:

                    function rebootAP(IPofAP) {
                    
                        var sUrl = "http://" + IPofAP + "/reboot";
                    
                        httpPost(sUrl, { }, { timeout: 10000}, (error, response) => {
                            if (!error) {
                                
                                //console.log(response);
                                
                            } else {
                                log("ePaper-Fehler: " + error, "error");
                            }
                        });
                    
                    }
                    

                    Als Übergabe halt die IP-Adresse des APs als Argument (also z. B. "192.168.178.11")
                    Komischerweise klappt es auch immer erst beim zweiten Anlauf. Vorher gibt's einen Timeout.
                    Spendiere der Funktion jetzt 10s Zeit. Dann klappt's immer.

                    Aber es funktioniert so bei mir 😉

                    Neuschwansteini 1 Reply Last reply Reply Quote 0
                    • Neuschwansteini
                      Neuschwansteini @oxident last edited by

                      @oxident

                      bei mir so:
                      3aff3864-afa9-44a5-abd5-30024ae4c0f2-image.png

                      vielleicht macht die Auslastung oder der Empfang was aus... ich bekomme kein timeout bei 2000ms..
                      hab aber auch die wifi power hoch:

                      67fa4964-0223-4452-8cfe-a14677ef1207-image.png

                      O BananaJoe 2 Replies Last reply Reply Quote 1
                      • O
                        oxident @Neuschwansteini last edited by

                        @ilovegym Ja, ist eigentlich genau das, was das Javascript auch macht. Wer weiß, vielleicht ist mein JS-Adapter auch einfach nur überlastet 😉

                        1 Reply Last reply Reply Quote 0
                        • BananaJoe
                          BananaJoe Most Active @Neuschwansteini last edited by

                          @ilovegym sagte in E-INK Display OpenEPaperLink - Displayanzeige mit Batterie:

                          hab aber auch die wifi power hoch:

                          Ob da gut oder schlecht ist kommt ja auf den AP an. Mein MiniAP tilt dann aus

                          O 1 Reply Last reply Reply Quote 0
                          • O
                            oxident @BananaJoe last edited by

                            @bananajoe Ja, meiner auch. Bin aber auch recht nah am Wifi-AP und konnte daher weit runter gehen. Mal sehen, ob es mit den Reboots jetzt "stabil" läuft...

                            1 Reply Last reply Reply Quote 0
                            • G
                              glitzi @Beowolf last edited by

                              @beowolf sagte in E-INK Display OpenEPaperLink - Displayanzeige mit Batterie:

                              @bananajoe

                              So, ich habe jetzt das Skript mal ein wenig umgebaut.

                              sendTo('puppeteer.0', 'screenshot', { 
                                  url: urlOfVISView,                     
                                  path: imageSaveToFilenameWithPath,     
                                  width: viewWidth,                      
                                  height: viewHeight,                    
                                  quality: jpgQuality,                   
                              
                                  waitOption: {
                                      waitForSelector: waitForSelector,  
                                      waitForTimeout: 20000              
                                  },
                              
                                  fullPage: false,                       
                              
                                  clip: {         
                                      x: cutoutX,                        
                                      y: cutoutY,                        
                                      width: cutoutWidth,                
                                      height: cutoutHeight               
                                  }
                              }, obj => {
                                  if (obj.error) {
                                      console.warn("Fehler beim Aufruf der View: " + urlOfVISView + " => " + obj.error.message);
                                  } else {
                                      const http = require('http'); 
                                      const https = require('https');
                                      const { URL } = require('url');
                              
                                      const boundary = '--------------------------' + Date.now().toString(16);
                                      const CRLF = '\r\n';
                              
                                      // Payload-Erstellung
                                      const payload = Buffer.concat([
                                          Buffer.from(`--${boundary}${CRLF}Content-Disposition: form-data; name="dither"${CRLF}${CRLF}0${CRLF}`),
                                          Buffer.from(`--${boundary}${CRLF}Content-Disposition: form-data; name="mac"${CRLF}${CRLF}${ePaperMAC}${CRLF}`),
                                          Buffer.from(`--${boundary}${CRLF}Content-Disposition: form-data; name="image"; filename="screenshot.jpg"${CRLF}Content-Type: image/jpeg${CRLF}${CRLF}`),
                                          Buffer.from(obj.result, 'binary'),
                                          Buffer.from(`${CRLF}--${boundary}--${CRLF}`)
                                      ]);
                              
                                      // URL Parsing
                                      const url = new URL(imageUploadURL);
                                      const options = {
                                          hostname: url.hostname,
                                          port: url.port || (url.protocol === 'https:' ? 443 : 80),
                                          path: url.pathname + (url.search || ''),
                                          method: 'POST',
                                          headers: {
                                              'Content-Type': 'multipart/form-data; boundary=' + boundary,
                                              'Content-Length': payload.length
                                          }
                                      };
                              
                                      // Protokollwahl
                                      const protocol = url.protocol === 'https:' ? https : http;
                              
                                      // HTTP Request
                                      const req = protocol.request(options, function(res) {
                                          console.log('ImageUploadStatusCode:', res.statusCode);
                                          res.on('data', function(chunk) {
                                              console.log('Response:', chunk.toString());
                                          });
                                      });
                              
                                      req.on('error', function(e) {
                                          console.error('Fehler beim Hochladen:', e.message);
                                      });
                              
                                      req.write(payload);
                                      req.end();
                                  }
                              });
                              

                              Na ja, ich bin jetzt mal ehrlich. Ich habe ChatGPT solange damit gernervt bis ich eine Version hatte die jetzt funktioniert.

                              Ich habe keine Ahnung was da wie gemacht wird, aber es läuft. Die TAG werden sehr schnell aktualisiert und alles ohne Fehlermeldungen. 😊

                              Grüße
                              Manfred

                              Haben wir hier jemanden der noch die Funktion groß/klein Skalieren für die bessere Bildqualität einbauen kann?

                              1 Reply Last reply Reply Quote 0
                              • B
                                Beowolf last edited by

                                Wie kann das sein?

                                Filesystem FULL!

                                Es kein TAG an dem AP.

                                free heap: 192.73 kB ┇ free PSRAM: 7.97 MB ┇ db size: 0 bytes ┇ db record count: 0 ┇ filesystem FULL! 4.00 kB ┇ uptime: 12m 24s
                                
                                BananaJoe 1 Reply Last reply Reply Quote 0
                                • BananaJoe
                                  BananaJoe Most Active @Beowolf last edited by BananaJoe

                                  @beowolf schon geschaut was da im Filesystem liegt? Symbol oben rechts.
                                  Da kann alte Firmware liegen oder alte Bilder falls du über diesen mal hochgeladen hast und es schief ging usw.

                                  Schau in den /temp und /current Ordnern nach. Im Hauptverzeichnis wird alte Tag-Firmware liegen

                                  1 Reply Last reply Reply Quote 1
                                  • B
                                    Beowolf last edited by

                                    Ich flash den mal komplett neu. Ich kann nicht auf das TMP-Verzeichnis zugreifen.

                                    1 Reply Last reply Reply Quote 0
                                    • B
                                      Beowolf last edited by Beowolf

                                      Ist das normal?

                                      javascript.0
                                      	2024-06-07 10:24:23.448	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:23.448	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:22.635	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:22.635	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:22.171	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:22.170	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:22.129	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:22.129	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:18.606	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:18.606	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:18.069	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:18.068	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:17.157	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:17.157	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:17.151	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:17.151	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:17.127	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:17.127	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:17.008	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:17.008	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:14.501	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:14.501	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:12.126	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:12.126	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:12.119	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:12.118	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:08.407	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:08.407	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:07.599	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:07.599	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:07.123	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:07.123	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:03.658	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:03.657	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:02.123	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:02.123	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:02.115	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:02.114	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:24:02.066	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:24:02.066	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:59.315	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:59.314	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:58.811	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:58.811	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:57.337	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:57.336	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:57.120	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:57.120	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:57.061	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:57.061	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:54.503	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:54.503	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:52.418	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:52.417	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:51.941	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:51.941	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:50.860	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:50.860	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:48.023	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:48.023	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:47.053	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:47.053	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:46.920	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:46.920	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:43.713	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:43.713	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:43.037	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:43.036	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:42.051	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:42.051	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:41.897	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:41.897	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:41.125	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:41.125	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:41.118	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:41.118	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:39.358	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:39.358	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:38.714	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:38.714	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:38.366	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:38.366	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:37.900	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:37.899	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:37.050	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:37.049	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:36.968	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:36.968	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:36.870	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:36.870	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:34.406	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:34.406	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:33.333	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:33.333	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:32.518	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:32.517	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:32.321	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:32.321	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:32.048	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:32.047	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:31.244	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:31.244	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:31.240	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:31.240	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:30.360	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:30.360	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:28.433	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:28.433	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:27.045	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:27.044	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:26.996	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:26.996	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:26.993	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:26.992	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:26.780	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:26.780	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:22.007	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:22.007	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:21.765	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:21.764	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:19.072	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:19.071	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:18.463	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:18.463	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:18.459	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:18.459	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:17.304	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:17.304	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:17.249	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:17.248	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:16.737	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:16.737	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:11.943	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:11.943	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:11.719	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:11.719	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:09.587	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:09.586	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:06.944	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:06.943	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:06.702	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:06.702	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:03.991	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:03.990	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:01.939	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:01.939	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:01.680	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:01.679	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:23:01.030	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:23:01.030	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:59.223	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:59.223	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:58.821	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:58.820	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:57.116	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:57.116	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:56.937	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:56.937	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:56.928	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:56.928	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:55.210	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:55.210	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:54.619	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:54.618	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:54.315	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:54.314	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:53.700	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:53.699	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:53.478	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:53.478	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:53.284	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:53.284	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:51.936	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:51.936	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:51.531	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:51.531	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:50.517	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:50.517	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:48.459	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:48.458	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:46.933	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:46.933	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:46.444	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:46.443	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:42.853	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:42.853	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:42.846	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:42.846	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:42.404	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:42.404	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:42.401	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:42.401	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:42.231	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:42.231	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:41.846	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:41.846	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:41.437	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:41.436	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:40.943	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:40.943	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:39.334	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:39.334	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:38.279	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:38.278	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:36.870	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:36.870	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:36.415	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:36.414	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:33.725	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:33.725	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:31.868	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:31.868	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:31.391	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:31.391	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:26.866	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:26.866	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:26.375	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:26.374	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:24.671	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:24.671	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:24.259	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:24.259	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:22.413	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:22.412	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:21.864	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:21.864	info	script.js.common.EPaper-Displays.Dachgeschoss.Buttons_der_Dachgeschoss_TAGs: Daten empfangen:
                                      javascript.0
                                      	2024-06-07 10:22:21.853	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Verarbeitete Daten:
                                      javascript.0
                                      	2024-06-07 10:22:21.853	info	script.js.common.EPaper-Displays.Erdgeschoss.Buttons_der_Erdgeschoss_TAGs: Daten empfangen:
                                      

                                      Ich habe den javascript-Adapter mal auf debug gestellt. Obwohl alle Skripte die mit den TAGs zu tun haben auf Pause stehen, ist das eine Menge los.

                                      Erst jetzt nach einem reboot ist Ruhe.

                                      Starte und Stoppe ich die Skripte wieder. Ist wieder erst nach einem Reboot wieder Ruhe.

                                      Neuschwansteini 1 Reply Last reply Reply Quote 0
                                      • Neuschwansteini
                                        Neuschwansteini @Beowolf last edited by

                                        @beowolf

                                        ja, ist mir letzt auch aufgefallen, ich dachte, dass sich nur bei mir der javascript adapter aufgehangen hatte... aber wenn du das auch hast.. dann ist das Script recht hartnaeckig und kann so nicht beendet werden...

                                        B 2 Replies Last reply Reply Quote 0
                                        • B
                                          Beowolf @Neuschwansteini last edited by

                                          @ilovegym
                                          Ich hatte das Gefühl, das der javascript Adapter zu nicht anderem mehr kommt als sich um die Buttons zu kümmern. 😊

                                          1 Reply Last reply Reply Quote 0
                                          • B
                                            Beowolf last edited by

                                            Gibt es eine Möglichkeit die "Microsoft ToDo-Listen" sich auf einem grossen Display anzeigen zu lassen?

                                            Also so ähnlich wie der Google-Kalender?

                                            Grüße
                                            Manfred

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            710
                                            Online

                                            31.6k
                                            Users

                                            79.5k
                                            Topics

                                            1.3m
                                            Posts

                                            41
                                            987
                                            214112
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo