Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

  1. ioBroker Community Home
  2. Deutsch
  3. Praktische Anwendungen (Showcase)
  4. E-INK Display OpenEPaperLink - Displayanzeige mit Batterie

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.2k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.9k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.2k

E-INK Display OpenEPaperLink - Displayanzeige mit Batterie

Geplant Angeheftet Gesperrt Verschoben Praktische Anwendungen (Showcase)
1.0k Beiträge 48 Kommentatoren 344.0k Aufrufe 52 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • O oxident

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

    BananaJoeB Online
    BananaJoeB Online
    BananaJoe
    Most Active
    schrieb am zuletzt editiert von
    #621

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

    ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

    O B 2 Antworten Letzte Antwort
    1
    • BananaJoeB BananaJoe

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

      O Offline
      O Offline
      oxident
      schrieb am zuletzt editiert von
      #622

      @bananajoe Wohl wahr. Guter Workaround auf jeden Fall!

      1 Antwort Letzte Antwort
      0
      • BananaJoeB BananaJoe

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

        B Offline
        B Offline
        Beowolf
        schrieb am zuletzt editiert von Beowolf
        #623

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

        Die Natur braucht nicht unseren Schutz, sie braucht unsere Abwesenheit.

        ? O 2 Antworten Letzte Antwort
        0
        • B Beowolf

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

          ? Offline
          ? Offline
          Ein ehemaliger Benutzer
          schrieb am zuletzt editiert von
          #624

          @beowolf

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

          1 Antwort Letzte Antwort
          0
          • B Beowolf

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

            O Offline
            O Offline
            oxident
            schrieb am zuletzt editiert von oxident
            #625

            @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 ;-)

            ? 1 Antwort Letzte Antwort
            0
            • O 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 ;-)

              ? Offline
              ? Offline
              Ein ehemaliger Benutzer
              schrieb am zuletzt editiert von
              #626

              @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 BananaJoeB 2 Antworten Letzte Antwort
              1
              • ? Ein ehemaliger Benutzer

                @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 Offline
                O Offline
                oxident
                schrieb am zuletzt editiert von
                #627

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

                1 Antwort Letzte Antwort
                0
                • ? Ein ehemaliger Benutzer

                  @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

                  BananaJoeB Online
                  BananaJoeB Online
                  BananaJoe
                  Most Active
                  schrieb am zuletzt editiert von
                  #628

                  @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

                  ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                  O 1 Antwort Letzte Antwort
                  0
                  • BananaJoeB BananaJoe

                    @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 Offline
                    O Offline
                    oxident
                    schrieb am zuletzt editiert von
                    #629

                    @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 Antwort Letzte Antwort
                    0
                    • B Beowolf

                      @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. :blush:

                      Grüße
                      Manfred

                      G Offline
                      G Offline
                      glitzi
                      schrieb am zuletzt editiert von
                      #630

                      @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. :blush:

                      Grüße
                      Manfred

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

                      1 Antwort Letzte Antwort
                      0
                      • B Offline
                        B Offline
                        Beowolf
                        schrieb am zuletzt editiert von
                        #631

                        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
                        

                        Die Natur braucht nicht unseren Schutz, sie braucht unsere Abwesenheit.

                        BananaJoeB 1 Antwort Letzte Antwort
                        0
                        • B Beowolf

                          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
                          
                          BananaJoeB Online
                          BananaJoeB Online
                          BananaJoe
                          Most Active
                          schrieb am zuletzt editiert von BananaJoe
                          #632

                          @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

                          ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                          1 Antwort Letzte Antwort
                          1
                          • B Offline
                            B Offline
                            Beowolf
                            schrieb am zuletzt editiert von
                            #633

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

                            Die Natur braucht nicht unseren Schutz, sie braucht unsere Abwesenheit.

                            1 Antwort Letzte Antwort
                            0
                            • B Offline
                              B Offline
                              Beowolf
                              schrieb am zuletzt editiert von Beowolf
                              #634

                              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.

                              Die Natur braucht nicht unseren Schutz, sie braucht unsere Abwesenheit.

                              ? 1 Antwort Letzte Antwort
                              0
                              • B 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.

                                ? Offline
                                ? Offline
                                Ein ehemaliger Benutzer
                                schrieb am zuletzt editiert von
                                #635

                                @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 Antworten Letzte Antwort
                                0
                                • ? Ein ehemaliger Benutzer

                                  @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 Offline
                                  B Offline
                                  Beowolf
                                  schrieb am zuletzt editiert von
                                  #636

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

                                  Die Natur braucht nicht unseren Schutz, sie braucht unsere Abwesenheit.

                                  1 Antwort Letzte Antwort
                                  0
                                  • B Offline
                                    B Offline
                                    Beowolf
                                    schrieb am zuletzt editiert von
                                    #637

                                    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

                                    Die Natur braucht nicht unseren Schutz, sie braucht unsere Abwesenheit.

                                    1 Antwort Letzte Antwort
                                    0
                                    • EisbaeeerE Offline
                                      EisbaeeerE Offline
                                      Eisbaeeer
                                      Developer
                                      schrieb am zuletzt editiert von Eisbaeeer
                                      #638

                                      Hat jemand Interesse für den Access-Point mit Zigbee und 868MHz "Multi-Band-Monster"?

                                      Infos hier:
                                      https://github.com/OpenEPaperLink/OpenEPaperLink/tree/master/Hardware/Yellow AP by ATC1441

                                      Ich werde eine Sammelbestellung machen.

                                      a7a37706-b435-4bb6-a61a-6d1cdec169ad-Complete_Yellow_AP.jpg
                                      5cb06c69-2dc1-411c-a5c0-5f0770624e3a-case_complete.jpg

                                      Das Gehäuse wird definitiv nicht Lila! ;-)

                                      Kosten:

                                      Bausatz: Alle Bauteile (Display, Platine, 868MHz Sender, Gehäuse ABS (inlc. Optional) 30€ + Versand. (ihr müsst selbst löten!)

                                      Fertiggerät: 40€ (Mit Firmware und getestet)

                                      Wer einen möchte bitte per PN. Bestellt wird spätestens am 30.6.2024 oder wenn sich 6 Leute finden.
                                      Grüße

                                      Der erste läuft schon.
                                      20240626_154206.jpg

                                      Kein support per PM. Bitte im Forum Fragen stellen!

                                      EisbaeeerE 1 Antwort Letzte Antwort
                                      2
                                      • EisbaeeerE Eisbaeeer

                                        Hat jemand Interesse für den Access-Point mit Zigbee und 868MHz "Multi-Band-Monster"?

                                        Infos hier:
                                        https://github.com/OpenEPaperLink/OpenEPaperLink/tree/master/Hardware/Yellow AP by ATC1441

                                        Ich werde eine Sammelbestellung machen.

                                        a7a37706-b435-4bb6-a61a-6d1cdec169ad-Complete_Yellow_AP.jpg
                                        5cb06c69-2dc1-411c-a5c0-5f0770624e3a-case_complete.jpg

                                        Das Gehäuse wird definitiv nicht Lila! ;-)

                                        Kosten:

                                        Bausatz: Alle Bauteile (Display, Platine, 868MHz Sender, Gehäuse ABS (inlc. Optional) 30€ + Versand. (ihr müsst selbst löten!)

                                        Fertiggerät: 40€ (Mit Firmware und getestet)

                                        Wer einen möchte bitte per PN. Bestellt wird spätestens am 30.6.2024 oder wenn sich 6 Leute finden.
                                        Grüße

                                        Der erste läuft schon.
                                        20240626_154206.jpg

                                        EisbaeeerE Offline
                                        EisbaeeerE Offline
                                        Eisbaeeer
                                        Developer
                                        schrieb am zuletzt editiert von
                                        #639

                                        20240626_223939.jpg

                                        Kein support per PM. Bitte im Forum Fragen stellen!

                                        1 Antwort Letzte Antwort
                                        3
                                        • B Offline
                                          B Offline
                                          bimmi
                                          schrieb am zuletzt editiert von bimmi
                                          #640

                                          Ich hab mir ein JavaScript erstellt, welches die aktuelle Wetterlage für meinen Heimatort abruft. Daraufhin erstellt chatgtp ein passendes bild und lädt es in ein seperates Verzeichnis herunter. Ihr findet es in meinem OpenEPaperLink repo auf Github:

                                          https://github.com/slimline33/OpenEPaperLink-IOBROKER-JavaScript

                                          1223a109-f3ac-4dab-9d14-163f0f7e9e48-image.png

                                          Ich musste das Script nochmal ändern, da mir die Qualität der erstellten Bilder überhaupt nicht gefallen hat.

                                          Gruß Bimmi

                                          iobroker in einer Proxmox Umgebung auf einem ausrangierten DELL OptiPlex 3080 24GB i5 in der VM auf SSD. Nutze den slaeh zigbee Router mit Tür- und Temperatursensoren von Aqara, viele Tasmota Devices, Unifi AP, Sprinklecontrol, günstige E-INK Displays, Adguard und noch vieles mehr 😬

                                          O 1 Antwort Letzte Antwort
                                          4
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          323

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe