Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Betatest NSPanel-lovelace-ui v0.2.x

    NEWS

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker goes Matter ... Matter Adapter in Stable

    Betatest NSPanel-lovelace-ui v0.2.x

    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      ticaki Developer @hm_krause last edited by

      Zeig mal den kompletten oberen Teil vom Skript.

      H 1 Reply Last reply Reply Quote 0
      • T
        ticaki Developer last edited by ticaki

        Hab in der aktuellen Github version mal etwas mehr Log eingebaut damit das mit Topics besser zu sehen ist einmal beim startup:

        ... Configured panels: name#topic -> [ns_panel4#nspanel/ns_panel4], [nspanel6#nspanel/ns_panel6]
        ... Found 2 script configs for topics: nspanel/ns_panel4, nspanel/ns_panel6
        

        Beim übertragen des Skripts gibts noch zusätzlich:
        Bildschirmfoto 2025-08-14 um 21.10.52.png

        Im log steht dann:

        2025-08-14 21:06:18.038  - error: nspanel-lovelace-ui.0 (99753) [config-manager] Panel for Topic: nspanel/ns_panel67 not found in adapter config!
        
        1 Reply Last reply Reply Quote 0
        • H
          hm_krause @ticaki last edited by

          @ticaki
          hier bitte

          async function configuration(): Promise<void> {
          
              const overrideConfig: Partial<ScriptConfig.Config> = {
                  // hier kann man die Werte von unten überschreiben bzw nicht ewig im Skript suchen wo nochmal die Farbe steht :)
                  // pages und subpages geht hier nicht, weil die Seiten ja erst später angelegt werden. Bei const gehts nach Reihenfolge.
                  // panelTopic: 'nspanel/ns_panel4',
                  weatherEntity: 'pirate-weather.0.',
                  defaultOffColor: Off,
                  defaultOnColor: On,
                  weatherAddDefaultItems: false,
              }
          
                  /**************************************************************************************
                   **                                                                                  **
                   ** https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki/Adapter-Installation **
                   **                                                                                  **
                   *************************************************************************************/
                  
                   
          
                  /***********************************************************************
                   **                                                                   **
                   **                       Page Configuration                          **
                   **                                                                   **
                   ***********************************************************************/
          
              // Diese Konfiguration für den Fahrplan ist ein Beispiel was die interne Adapterkonfiguration benutzt, diese 
              // ist recht komplex und wird nicht weiter erläutert. Da gibts später fertige Templates die man hier verwenden kann.
              // wie am Fahrplan Beispiel zu sehen ist.
          
              /* const fahrplan: any = {
                  heading: 'Fahrplan Script',
                  native: {
                      card: 'cardEntities',
                      dpInit: 'fahrplan.0.0',
                      uniqueID: 'fahrplanrouten',
                      template: 'entities.fahrplan.routes',
                  }
              }; */
          
              // Konfiguration findet im Admin statt, uniqueName muß gleich dem namen in der Adminkonfiguration sein.
          
              /* const qrCode: ScriptConfig.PageQR = {
                  type: 'cardQR',
                  uniqueName: 'qrCode'
              }; */
          
              // Konfiguration findet im Admin statt, uniqueName muß gleich dem namen in der Adminkonfiguration sein.
          
              /* const chartHeizung: ScriptConfig.PageChart = {
                  type: 'cardChart',
                  uniqueName: 'temperatur'
              }; */
          
              // Ein Beispiel für eine Gridseite mit verschiedenen Farbskalen
          
              /* const irgendeinName: ScriptConfig.PageGrid = {
                  type: 'cardGrid',
                  uniqueName: 'main',
                  heading: 'Wohnzimmer',
                  useColor: true,
                  items: [
                      {id: 'alias.0.Temperatur', name: 'standard', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40}},
                      {id: 'alias.0.Temperatur', name: 'hue', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue'}},
                      {id: 'alias.0.Temperatur', name: 'cie', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie'}},
                      {id: 'alias.0.Temperatur', name: 'standard log min', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, log10: 'min'}},
                      {id: 'alias.0.Temperatur', name: 'hue log min', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue', log10: 'min'}},
                      {id: 'alias.0.Temperatur', name: 'cie log min', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie', log10: 'min'}},
                      {id: 'alias.0.Temperatur', name: 'standard', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40}},
                      {id: 'alias.0.Temperatur', name: 'hue', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue'}},
                      {id: 'alias.0.Temperatur', name: 'cie', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie'}},
                      {id: 'alias.0.Temperatur', name: 'standard log max', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, log10: 'max'}},
                      {id: 'alias.0.Temperatur', name: 'hue log max', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue', log10: 'max'}},
                      {id: 'alias.0.Temperatur', name: 'cie log max', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie', log10: 'max'}},
                  ]
              }; */
          
              /* const grid1: ScriptConfig.PageGrid = {
                  uniqueName: 'grid1', // keine Navigation, am besten uniqueName von config.ts übernehmen
                  heading: 'Grid 1',
                  items: [
                      {id: 'alias.0.Licht.lights.Gerät_1'},
                      {id: 'alias.0.Licht.lights.Gerät_2'},
                      {id: '0_userdata.0.Einzelne_Geräte.dimmer'},
                      {id: 'alias.0.NSPanel.allgemein.hue', },
                      {navigate: true, targetPage: 'fahrplanrouten'},
                      {id: 'alias.0.NSPanel.allgemein.shutter'}
                  ],
                  type: 'cardGrid',
                  useColor: true
              } */ 
          
              const config: ScriptConfig.Config = {
                  panelTopic: 'nspanel_1',
                  weatherEntity: 'pirate-weather.0',
                  defaultOffColor: Off,
                  defaultOnColor: On,
                  defaultBackgroundColor: HMIDark,
                  weatherAddDefaultItems: false,
          
                  // Als Gedankenstütze, die Hauptseite muß main heißen!
                  //panelName: 'NSPanel', //unique name for the panel
          
          
                  // Seiteneinteilung / Page division
                  // Hauptseiten / Mainpages
                  pages: [
                      //irgendeinName,
                      //grid1,
                      //qrCode,
                      //chartHeizung,
                  ],
                  // Unterseiten / Subpages
                  subPages: [
                      //fahrplan
                  ],
          
                  /***********************************************************************
                   **                                                                   **
                   **                    Screensaver Configuration                      **
                   **                                                                   **
                   ***********************************************************************/
          
          
                  favoritScreensaverEntity: [
                      {
                          type: 'template',
                          template: 'text.openweathermap.favorit',
                          dpInit: `/^openweathermap\\.0.+/`,
                          modeScr: 'favorit',
                      }
                  ],
                  alternateScreensaverEntity: [
                      // only used with alternate Screensaver
                  ],
          
                  indicatorScreensaverEntity: [
                      // indicatorScreensaverEntity 1 (only Advanced Screensaver)
                      {
                          type: 'script',
                          ScreensaverEntity: 'alias.0.NSPanel.allgemein.Status_offene_Fenster.ACTUAL',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 0,
                          ScreensaverEntityIconOn: 'window-open-variant',
                          ScreensaverEntityIconOff: 'window-closed-variant',
                          ScreensaverEntityText: 'Fenster',
                          ScreensaverEntityUnitText: '%',
                          ScreensaverEntityIconColor: {val_min: 0, val_max: 1},
                      },
                      // indicatorScreensaverEntity 2 (only Advanced Screensaver)
                      {
                          type: 'script',
                          ScreensaverEntity: 'alias.0.NSPanel.allgemein.Status_offene_Tuer.ACTUAL',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 0,
                          ScreensaverEntityIconOn: 'door-open',
                          ScreensaverEntityIconOff: 'door-closed',
                          ScreensaverEntityText: 'Tür',
                          ScreensaverEntityUnitText: '',
                          ScreensaverEntityIconColor: {val_min: 0, val_max: 1},
                      },
                      // indicatorScreensaverEntity 3 (only Advanced Screensaver)
                      {
                          type: 'script',
                          ScreensaverEntity: 'alias.0.NSPanel.allgemein.Status_Licht_An.ACTUAL',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 0,
                          ScreensaverEntityIconOn: 'lightbulb',
                          ScreensaverEntityIconOff: null,
                          ScreensaverEntityText: 'Licht',
                          ScreensaverEntityUnitText: '',
                          ScreensaverEntityIconColor: {val_min: 0, val_max: 1},
                      },
                      // indicatorScreensaverEntity 4 (only Advanced Screensaver)
                      {
                          type: 'script',
                          ScreensaverEntity: 'alias.0.Türschloss.ACTUAL',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 0,
                          ScreensaverEntityIconOn: 'lock',
                          ScreensaverEntityIconOff: 'lock-open',
                          ScreensaverEntityText: 'Türschloss',
                          ScreensaverEntityUnitText: '',
                          ScreensaverEntityIconColor: {val_min: 0, val_max: 1, val_best: 1},
                      },
                      // indicatorScreensaverEntity 5 (only Advanced Screensaver)
                      {
                          type: 'script',
                          ScreensaverEntity: 'alias.0.NSPanel.allgemein.Auto.Safety.ACTUAL',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 0,
                          ScreensaverEntityIconOn: 'car-key',
                          ScreensaverEntityIconOff: null,
                          ScreensaverEntityText: 'Auto',
                          ScreensaverEntityUnitText: '',
                          ScreensaverEntityIconColor: {val_min: 0, val_max: 1, val_best: 1},
                      },
                  ],
          
                  bottomScreensaverEntity: [
                      // bottomScreensaverEntity 1
                      {
                          type: 'template',
                          template: 'text.openweathermap.sunriseset',
                          dpInit: `/^openweathermap\\.0\\.forecast\\.current.+/`,
                          modeScr: 'bottom',
                      },
                      // bottomScreensaverEntity 2
                      /*{
                          type: 'template',
                          template: 'text.hmip.windcombo',
                          dpInit: 'hmip.0.devices.3014F711A000185F2999676C',
                          modeScr: 'bottom',
                          //readOptions: {directionOfPanel: 81}
                      },*/ 
                      {
                          type: 'script',
                          ScreensaverEntity: 'openweathermap.0.forecast.current.windSpeed',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 1,
                          ScreensaverEntityIconOn: 'weather-windy',
                          ScreensaverEntityIconOff: null,
                          ScreensaverEntityText: "Wind",
                          ScreensaverEntityUnitText: 'm/s',
                          ScreensaverEntityIconColor: {'val_min': 0, 'val_max': 120}
                      },
                      // bottomScreensaverEntity 3
                      {
                          type: 'script',
                          ScreensaverEntity: 'openweathermap.0.forecast.current.windGust',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 1,
                          ScreensaverEntityIconOn: 'weather-tornado',
                          ScreensaverEntityIconOff: null,
                          ScreensaverEntityText: 'Böen',
                          ScreensaverEntityUnitText: 'm/s',
                          ScreensaverEntityIconColor: {'val_min': 0, 'val_max': 120}
                      },
                      // bottomScreensaverEntity 4
                      {
                          type: 'template',
                          template: 'text.openweathermap.winddirection',
                          dpInit: `/^openweathermap\\.0./`,
                          modeScr: 'bottom',
                      },
                      // bottomScreensaverEntity 5 (Advanced Screensaver)
                      {
                          type: 'script',
                          ScreensaverEntity: 'openweathermap.0.forecast.current.humidity',
                          ScreensaverEntityFactor: 1,
                          ScreensaverEntityDecimalPlaces: 0,
                          ScreensaverEntityIconOn: 'water-percent',
                          ScreensaverEntityIconOff: null,
                          ScreensaverEntityText: 'Feuchte',
                          ScreensaverEntityUnitText: '%',
                          ScreensaverEntityIconColor: {'val_min': 0, 'val_max': 100, 'val_best': 60}
                      },
                      // bottomScreensaverEntity 6 (for Advanced Screensaver)
                      // the 6th day from dasWetter
                      {
                          type: 'native',
                          native: dasWetterBottomScreensaverEntity6
                      },
                      // Examples for Advanced-Screensaver: https://github.com/joBr99/nspanel-lovelace-ui/wiki/ioBroker-Config-Screensaver#entity-status-icons-ab-v400 
          
                      // Some templates for the screensaver uncomment the lines to use them
                      // If u use an other instance for the weather data, change the instance in the following lines
                      // If you want to have them all, set weatherAddDefaultItems=true in the config and leave the following lines as they are!
          
          H T 2 Replies Last reply Reply Quote 0
          • H
            hm_krause @hm_krause last edited by

            und

            javascript.0	21:19:50.614	info	
            
            Compiling TypeScript source script.js.nspanel-lovelace-ui_0.Panel_1
            
            javascript.0	21:19:50.697	info	
            
            source code did not change, using cached compilation result...
            
            javascript.0	21:19:50.709	info	
            
            registered 0 subscriptions, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
            
            javascript.0	21:19:50.767	info	
            
            [
              'Panel for Topic: nspanel_1 Script version 0.9.1 is correct!',
              'No navigation items found! This needs to be fixed!',
              'done'
            ]
            
            javascript.0	21:19:50.992	info	
            
            Stopping script script.js.nspanel-lovelace-ui_0.Panel_1
            
            1 Reply Last reply Reply Quote 0
            • T
              ticaki Developer @hm_krause last edited by ticaki

              @hm_krause
              Du hast alles auskommentiert - kein Wunder das da nix läuft.

              Wenn keine Seite mit dem uniqueName: 'main' vorhanden ist, ist das Verhalten des Adapter undefiniert. Kommentiere "irgendeinName" wieder ein entferne alle pageItems und kommentiere es auch in pages wieder ein - dann sollte zumindest was angezeigt werden... wobei hab noch net ausprobiert ob cardGrid mit 0 items geht.

              EDIT: zu dem undefinierten Verhalten - ich muß vor dem Screensaver irgendwas anzeigen und das Skript funktioniert, auch wenn du die Datenpunkte nicht hast - ich dachte dann passen die User das an.

              H 1 Reply Last reply Reply Quote 0
              • H
                hm_krause @ticaki last edited by

                @ticaki
                Danke erstmal,
                werde das morgen nochmal in Ruhe angehen.
                Ich habe von Scripte leider überhaupt keine Ahnung.
                Bisher lief das mit anderen Sachen per Copy/Paste
                Melde mich dann wieder...

                T 2 Replies Last reply Reply Quote 0
                • T
                  ticaki Developer @hm_krause last edited by ticaki

                  @hm_krause
                  Sry ich sehe gerade das TT-Tom das auskommentiert hat nicht du. Ich muß das jetzt mal selbst durch probieren. Ich teste halt sehr selten das neuerstellen - glaube ist schon 2 Monate her

                  Ok, bis auf die Fehlermeldungen gehts doch... ist echt zu warm heute 😄

                  Egal machen wir morgen weiter - im Bespielskript sollte aber ne funktionierende Hauptseite sein - mal gucken wo ich states finde die jeder hat 🙂

                  1 Reply Last reply Reply Quote 0
                  • T
                    ticaki Developer @hm_krause last edited by

                    @hm_krause
                    Füge im Skript unterhalb von

                             /***********************************************************************
                             **                                                                   **
                             **                       Page Configuration                          **
                             **                                                                   **
                             ***********************************************************************/
                    

                    das hier

                        const Hauptseite: ScriptConfig.PageGrid = {
                            type: 'cardGrid',
                            uniqueName: 'main',
                            heading: 'Die Leere',
                            items: []
                        };
                    

                    ein und und füge in pages Hauptseite ein damit das so aussieht:

                            pages: [
                                Hauptseite
                                //irgendeinName,
                                //grid1,
                                //qrCode,
                                //chartHeizung,
                            ],
                    
                    1 Reply Last reply Reply Quote 0
                    • T
                      ticaki Developer last edited by ticaki

                      Mal ein paar Vorlagen mit Erklärung dazu wo sie benutzt werden können und wie. (Das nächste glaube ich)Screensaver Vorlagen funktionieren nicht für cardGrid/cardEntites und umgedreht (muß das mal testen 🙂 ).

                      modeScr ist immer variable - obs Sinn macht ist was anderes -> ein Bottomicon für wind im indicator anzuzeigen macht keinen Sinn.

                      Allgemeines

                      dpInit: 'sainlogic.0', bezeichnet immer den Datenpfad unter dem man die dazu gehörigen Datenpunkte finden kann. Das muß zu eindeutigen Ergenissen führen. Wenn es also sainlogic.0 und sainlogic.1 mal gibt muß dort sainlogic.0 oder sainlogic.1stehen

                      Screensaver: Windrichtung/-geschwindigkeit für sainlogic

                                  {
                                      type: 'template',
                                      template: 'text.sainlogic.windarrow',
                                      dpInit: 'sainlogic.0',
                                      modeScr: 'bottom',
                                      readOptions: {directionOfPanel: 0} //0-360
                                  },
                      

                      readOptions ist optional und die darin enthaltende Eigenschaft directionOfPanel bestimmt in welche Richtung die Person schaut, wenn sie auf das Panel sieht. Wenn dort nichts oder 0 steht ist der Pfeil genordet - also oben ist norden. Wenn man es anpasst wie beschrieben ist oben die Richtung relativ zur Person die drauf guckt zu sehen.

                      Aussehen:
                      image.jpg

                      Screensaver: Windrichtung/-geschwindigkeit generisch

                                  {
                                      type: 'template',
                                      template: 'text.generic.windarrow',
                                      dpInit: 'Bitte anpassen',
                                      modeScr: 'bottom',
                                      readOptions: {directionOfPanel: 0} //0-360
                                  },
                      

                      dpinit muß hier angepasst werden und auf einen Order zeigen in dem 2 Datenpunkte mit folgenden Rolen und Typen zu finden sind.

                      // Datenpunkt 1 für Richtung
                      type: 'number',
                      role: 'value.direction.wind',
                      
                      // Datenpunkt 2 für Geschwindigkeit
                      type: 'number',
                      role: 'value.speed.wind',
                      unit:'km/h', // oder m/s oder was auch immer
                      

                      Screensaver: Batterieanzeige für bydhvs

                      Zeigt Ladestand in 10er Schritten an, ändert die Farbe wenn sie leer wird. Laden und entladen sind unterschiedliche Icons - werden ca. 20 verschiedene Icons verwendet.

                                   {
                                      type: 'template',
                                      template: 'text.battery.bydhvs',
                                      dpInit: 'bydhvs.0',
                                      modeScr: 'bottom',
                                  }
                      

                      sieht so aus:
                      IMG_0995.png

                      Screensaver: Wetterdaten anzeigen für Pirate-Weather oder Openweathermap

                      Dazu findet man viel Beispiele für Wetterdaten im Konfigskript - Da der Adapter aber nichts im Nutzercode ändert, muß man für aktuelle Beispiele auf Github schauen: https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/blob/main/script/example_sendTo_script_iobroker.ts - ich kopiere die mal hier mit dazu:

                      OPENWEATHERMAP

                                  //OPENWEATHERMAP
                      
                                  // Bottom 1 - sunrise/set
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.favorit',
                                      dpInit: `/^openweathermap\\.0.+/`,
                                      modeScr: 'favorit',
                                  },
                                  // Bottom 2 -  Forecast Day 1
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.bot2values',
                                      dpInit: `/^openweathermap\\.0.+?day0/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 3 - Forecast Day 2
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.bot2values',
                                      dpInit: `/^openweathermap\\.0.+?day1/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 4 - Forecast Day 3
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.bot2values',
                                      dpInit: `/^openweathermap\\.0.+?day2/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 5 - Forecast Day 4
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.bot2values',
                                      dpInit: `/^openweathermap\\.0.+?day3/`,
                                      modeScr: 'bottom',
                                  },
                                  // Bottom 6 - Forecast Day 5
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.bot2values',
                                      dpInit: `/^openweathermap\\.0.+?day4/`,
                                      modeScr: 'bottom',
                                  },
                                  // Bottom 7 -  Forecast Day 6
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.bot2values',
                                      dpInit: `/^openweathermap\\.0.+?day5/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 8 - Windgeschwindigkeit
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.windspeed',
                                      dpInit: `/^openweathermap\\.0./`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 9 - Böen
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.windgust',
                                      dpInit: `/^openweathermap\\.0./`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 10 - Windrichtung
                                  {
                                      type: 'template',
                                      template: 'text.openweathermap.winddirection',
                                      dpInit: `/^openweathermap\\.0./`,
                                      modeScr: 'bottom',
                                  },
                                  
                      

                      PIRATE-WEATHER

                                  // PIRATE-WEATHER
                      
                                  // Bottom 1 - sunrise/set
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.sunriseset',
                                      dpInit: `/^pirate-weather\\.0\\.weather\\.daily\\.00.+/`,
                                      modeScr: 'bottom',
                                  },
                                  // Bottom 2 -  Forecast Day 1
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.bot2values',
                                      dpInit: `/^pirate-weather\\.0.+?\\.daily\\.01/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 3 - Forecast Day 2
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.bot2values',
                                      dpInit: `/^pirate-weather\\.0.+?\\.daily\\.02/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 4 - Forecast Day 3
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.bot2values',
                                      dpInit: `/^pirate-weather\\.0.+?\\.daily\\.03/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 5 - Forecast Day 4
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.bot2values',
                                      dpInit: `/^pirate-weather\\.0.+?\\.daily\\.04/`,
                                      modeScr: 'bottom',
                                  },
                                  // Bottom 6 - Forecast Day 5
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.bot2values',
                                      dpInit: `/^pirate-weather\\.0.+?\\.daily\\.05/`,
                                      modeScr: 'bottom',
                                  },
                                  // Bottom 7 -  Forecast Day 6
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.bot2values',
                                      dpInit: `/^pirate-weather\\.0.+?\\.daily\\.06/`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 8 - Windgeschwindigkeit
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.windspeed',
                                      dpInit: `/^pirate-weather\\.0\\.weather\\.currently./`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 9 - Böen
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.windgust',
                                      dpInit: `/^pirate-weather\\.0\\.weather\\.currently./`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 10 - Windrichtung
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.winddirection',
                                      dpInit: `/^pirate-weather\\.0\\.weather\\.currently./`,
                                      modeScr: 'bottom',
                                  },
                      
                                  // Bottom 11 - UV-Index
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.uvindex',
                                      dpInit: `/^pirate-weather\\.0\\.weather\\.currently./`,
                                      modeScr: 'bottom',
                                  },
                      
                      // hier mit kann man dann eine Stundenübersicht erzeugen durch anpassen der 02 bzw. 04
                      {
                                      type: 'template',
                                      template: 'text.pirate-weather.hourlyweather',
                                      dpInit: `/^pirate-weather\\.0.+?\\.hourly\\.02/`,
                                      modeScr: 'bottom',
                                  },
                                  {
                                      type: 'template',
                                      template: 'text.pirate-weather.hourlyweather',
                                      dpInit: `/^pirate-weather\\.0.+?\\.hourly\\.04/`,
                                      modeScr: 'bottom',
                                  },
                      
                      

                      Da kann man sich einzelne Rauspicken und die dort anzeigen wo man möchte - also bottom geht als favorit und left als bottom usw. wie man möchte.

                      1 Reply Last reply Reply Quote 3
                      • T
                        ticaki Developer last edited by

                        Pirate-Weather

                        Ist in der aktuellen Githubversion implementiert

                        H 1 Reply Last reply Reply Quote 2
                        • H
                          hm_krause @ticaki last edited by

                          @ticaki
                          Hallo,
                          leider immer noch der gleiche, nicht funktionende Stand.
                          Script:

                          async function configuration(): Promise<void> {
                          
                              const overrideConfig: Partial<ScriptConfig.Config> = {
                                  // hier kann man die Werte von unten überschreiben bzw nicht ewig im Skript suchen wo nochmal die Farbe steht :)
                                  // pages und subpages geht hier nicht, weil die Seiten ja erst später angelegt werden. Bei const gehts nach Reihenfolge.
                                  // panelTopic: 'nspanel/ns_panel4',
                                  weatherEntity: 'openweathermap.0.',
                                  defaultOffColor: Off,
                                  defaultOnColor: On,
                                  weatherAddDefaultItems: false,
                              }
                          
                                  /**************************************************************************************
                                   **                                                                                  **
                                   ** https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki/Adapter-Installation **
                                   **                                                                                  **
                                   *************************************************************************************/
                                  
                                   
                          
                                  /***********************************************************************
                                   **                                                                   **
                                   **                       Page Configuration                          **
                                   **                                                                   **
                                   ***********************************************************************/
                          
                          
                              // Beispiel Hauptseite / Mainpage
                              // Diese Seite ist die Hauptseite, sie wird immer als erstes angezeigt und hat den uniqueName 'main'.
                              // uniqueName 'main' muß mindestens einmal vorkommen, damit die Navigation funktioniert.
                              const Hauptseite: ScriptConfig.PageGrid = {
                                  type: 'cardGrid',
                                  uniqueName: 'main',
                                  heading: 'Die Leere',
                                  items: []
                              };
                          
                              // Diese Konfiguration für den Fahrplan ist ein Beispiel was die interne Adapterkonfiguration benutzt, diese 
                              // ist recht komplex und wird nicht weiter erläutert. Da gibts später fertige Templates die man hier verwenden kann.
                              // wie am Fahrplan Beispiel zu sehen ist.
                          
                              /* const fahrplan: any = {
                                  heading: 'Fahrplan Script',
                                  native: {
                                      card: 'cardEntities',
                                      dpInit: 'fahrplan.0.0',
                                      uniqueID: 'fahrplanrouten',
                                      template: 'entities.fahrplan.routes',
                                  }
                              }; */
                          
                              // Konfiguration findet im Admin statt, uniqueName muß gleich dem namen in der Adminkonfiguration sein.
                          
                              /* const qrCode: ScriptConfig.PageQR = {
                                  type: 'cardQR',
                                  uniqueName: 'qrCode'
                              }; */
                          
                              // Konfiguration findet im Admin statt, uniqueName muß gleich dem namen in der Adminkonfiguration sein.
                          
                              /* const chartHeizung: ScriptConfig.PageChart = {
                                  type: 'cardChart',
                                  uniqueName: 'temperatur'
                              }; */
                          
                              // Ein Beispiel für eine Gridseite mit verschiedenen Farbskalen
                          
                              /* const irgendeinName: ScriptConfig.PageGrid = {
                                  type: 'cardGrid',
                                  uniqueName: 'main',
                                  heading: 'Wohnzimmer',
                                  items: [
                                      {id: 'alias.0.Temperatur', name: 'standard', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40}},
                                      {id: 'alias.0.Temperatur', name: 'hue', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue'}},
                                      {id: 'alias.0.Temperatur', name: 'cie', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie'}},
                                      {id: 'alias.0.Temperatur', name: 'standard log min', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, log10: 'min'}},
                                      {id: 'alias.0.Temperatur', name: 'hue log min', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue', log10: 'min'}},
                                      {id: 'alias.0.Temperatur', name: 'cie log min', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie', log10: 'min'}},
                                      {id: 'alias.0.Temperatur', name: 'standard', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40}},
                                      {id: 'alias.0.Temperatur', name: 'hue', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue'}},
                                      {id: 'alias.0.Temperatur', name: 'cie', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie'}},
                                      {id: 'alias.0.Temperatur', name: 'standard log max', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, log10: 'max'}},
                                      {id: 'alias.0.Temperatur', name: 'hue log max', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'hue', log10: 'max'}},
                                      {id: 'alias.0.Temperatur', name: 'cie log max', onColor: Red, offColor: Blue, colorScale: {'val_min': 0, 'val_max': 40, mode: 'cie', log10: 'max'}},
                                  ]
                              }; */
                          
                              /* const grid1: ScriptConfig.PageGrid = {
                                  uniqueName: 'grid1', // keine Navigation, am besten uniqueName von config.ts übernehmen
                                  heading: 'Grid 1',
                                  items: [
                                      {id: 'alias.0.Licht.lights.Gerät_1'},
                                      {id: 'alias.0.Licht.lights.Gerät_2'},
                                      {id: '0_userdata.0.Einzelne_Geräte.dimmer'},
                                      {id: 'alias.0.NSPanel.allgemein.hue', },
                                      {navigate: true, targetPage: 'fahrplanrouten'},
                                      {id: 'alias.0.NSPanel.allgemein.shutter'}
                                  ],
                                  type: 'cardGrid',
                              } */ 
                          
                              const config: ScriptConfig.Config = {
                                  panelTopic: 'topic',
                                  weatherEntity: 'openweathermap.0.',
                                  defaultOffColor: Off,
                                  defaultOnColor: On,
                                  defaultBackgroundColor: HMIDark,
                                  weatherAddDefaultItems: false,
                          
                                  // Als Gedankenstütze, die Hauptseite muß main heißen!
                                  //panelName: 'NSPanel', //unique name for the panel
                          
                          
                                  // Seiteneinteilung / Page division
                                  // Hauptseiten / Mainpages
                                  pages: [
                                      Hauptseite
                                      //irgendeinName,
                                      //grid1,
                                      //qrCode,
                                      //chartHeizung,
                                  ],
                                  // Unterseiten / Subpages
                                  subPages: [
                                      //fahrplan
                                  ],
                          
                          

                          Script Log:

                          javascript.0	13:54:46.322	info	
                          
                          Compiling TypeScript source script.js.nspanel-lovelace-ui_0.Panel_1
                          
                          javascript.0	13:54:46.399	info	
                          
                          source code did not change, using cached compilation result...
                          
                          javascript.0	13:54:46.420	info	
                          
                          registered 0 subscriptions, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                          
                          javascript.0	13:54:46.538	info	
                          
                          [ 'Panel for Topic: topic Script version 0.9.1 is correct!', 'done' ]
                          
                          javascript.0	13:54:46.673	info	
                          
                          Stopping script script.js.nspanel-lovelace-ui_0.Panel_1
                          

                          Adapter:

                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:54.566	info	[Panel_1] Panel startup finished!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:54.566	debug	[Panel_1] Set screeensaver timeout to 2s.
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:54.465	debug	[Panel_1] Set screeensaver timeout to 15s.
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:54.455	debug	[main] Switch page to visible!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:54.024	debug	[controller] Panel E4_65_B8_48_80_70 created
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.715	warn	[Panel_1] is offline!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.707	info	[Panel_1] is online!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.549	debug	[system-notifications] Received notifications from "system.host.iob-huawei": {"system":{"categories":{},"description":{"en":"These notifications are collected by the ioBroker system and point to issues you should check and fix.","de":"Diese Benachrichtigungen werden vom ioBroker-System erfasst und weisen auf Probleme hin, die überprüft und behoben werden sollten.","ru":"Эти уведомления собираются системой ioBroker и указывают на проблемы, которые вы должны проверить и исправить.","pt":"Essas notificações são coletadas pelo sistema ioBroker e apontam para problemas que você deve verificar e corrigir.","nl":"Deze meldingen worden verzameld door het ioBroker-systeem en wijzen op problemen die u moet controleren en oplossen.","fr":"Ces notifications sont collectées par le système ioBroker et indiquent des problèmes que vous devez vérifier et résoudre.","it":"Queste notifiche vengono raccolte dal sistema ioBroker e indicano problemi che dovresti controllare e correggere.","es":"Estas notificaciones son recopiladas por el sistema ioBroker y señalan problemas que debe verificar y solucionar.","pl":"Te powiadomienia są zbierane przez system ioBroker i wskazują problemy, które należy sprawdzić i naprawić.","uk":"Ці сповіщення збираються системою ioBroker і вказують на проблеми, які ви повинні перевірити та виправити.","zh-cn":"这些通知由ioBroker系统收集,并指出您应检查并修复的问题"},"name":{"en":"System Notifications","de":"System-Benachrichtigungen","ru":"Системные уведомления","pt":"Notificações do sistema","nl":"Systeemmeldingen","fr":"Notifications système","it":"Notifiche di sistema","es":"Notificaciones del sistema","pl":"Powiadomienia systemowe","uk":"Системні сповіщення","zh-cn":"系统通知"}}}
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.539	debug	[system-notifications] Request notifications from "system.host.iob-huawei"
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.538	debug	[system-notifications] Received notifications from "system.host.Iobroker": {}
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.534	debug	[system-notifications] Request notifications from "system.host.Iobroker"
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.503	debug	[mqttClient] subscripe to: nspanel_1/stat/#
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.501	debug	[mqttClient] subscripe to: nspanel_1/tele/#
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.501	debug	[Panel_1] Panel E4_65_B8_48_80_70 is initialised!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.451	debug	[controller] Set current Date with time: Fri Aug 15 2025 13:55:51 GMT+0200 (Central European Summer Time)
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.395	debug	[mqttClient] subscripe to: nspanel_1/stat/RESULT
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.343	debug	[controller] controller created
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.342	debug	46401.5234375k
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.340	info	[mqttClient] Connection is active.
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:51.295	debug	Check configuration!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.263	info	Force an MQTT reconnect from the Nspanel with the ip 192.168.178.56 in 10 seconds!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.166	debug	[library] Load language de
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.165	info	Raw script config found for nspanel_1
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.161	debug	[config-manager] Screensaver pageItems count: 17
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.158	warn	Invalid color value: "0_userdata.0.Abfallkalender.1.color"
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.088	info	[config-manager] Start converting configuration for nspanel_1
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:49.035	info	starting. Version 0.2.4 (non-npm: ticaki/ioBroker.nspanel-lovelace-ui#955fb48e830b9ffc2f648d9d50adbbde0e5318ba) in /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui, node: v20.19.4, js-controller: 7.0.6
                          host.Iobroker
                          	2025-08-15 13:55:47.616	info	instance system.adapter.nspanel-lovelace-ui.0 in version "0.2.4" (non-npm: ticaki/ioBroker.nspanel-lovelace-ui#955fb48e830b9ffc2f648d9d50adbbde0e5318ba) started with pid 45081
                          host.Iobroker
                          	2025-08-15 13:55:44.162	info	instance system.adapter.nspanel-lovelace-ui.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:44.054	info	terminating
                          host.Iobroker
                          	2025-08-15 13:55:43.614	info	stopInstance system.adapter.nspanel-lovelace-ui.0 send kill signal
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:43.569	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:43.568	info	terminating
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:43.567	info	[mqttClient] Connection is closed.
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:43.564	debug	[main] Switch page to invisible!
                          nspanel-lovelace-ui.0
                          	2025-08-15 13:55:43.553	info	Got terminate signal TERMINATE_YOURSELF
                          host.Iobroker
                          	2025-08-15 13:55:43.550	info	stopInstance system.adapter.nspanel-lovelace-ui.0 (force=false, process=true)
                          
                          T 1 Reply Last reply Reply Quote 0
                          • T
                            ticaki Developer @hm_krause last edited by ticaki

                            @hm_krause

                            Definiere bitte "nicht funktionende Stand." was genau funktioniert nicht? Bin zuhause - und klimatisiert - heißt ich hab zeit und bin nicht kurz vorm ausflippen wegen hitze 😄

                            H 1 Reply Last reply Reply Quote 0
                            • H
                              hm_krause @ticaki last edited by

                              @ticaki
                              Panel sagt:
                              waiting for content.....

                              T 1 Reply Last reply Reply Quote 0
                              • T
                                ticaki Developer @hm_krause last edited by

                                @hm_krause

                                Ist das alles an log was kommt für den adapter?

                                H teletapi 2 Replies Last reply Reply Quote 0
                                • H
                                  hm_krause @ticaki last edited by

                                  @ticaki
                                  nochmal:

                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:32.642	info	[Panel_1] Panel startup finished!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:32.641	debug	[Panel_1] Set screeensaver timeout to 2s.
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:32.541	debug	[Panel_1] Set screeensaver timeout to 15s.
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:32.474	debug	[main] Switch page to visible!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:31.942	debug	[controller] Panel E4_65_B8_48_80_70 created
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.324	warn	[Panel_1] is offline!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.315	info	[Panel_1] is online!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.134	debug	[system-notifications] Received notifications from "system.host.iob-huawei": {"system":{"categories":{},"description":{"en":"These notifications are collected by the ioBroker system and point to issues you should check and fix.","de":"Diese Benachrichtigungen werden vom ioBroker-System erfasst und weisen auf Probleme hin, die überprüft und behoben werden sollten.","ru":"Эти уведомления собираются системой ioBroker и указывают на проблемы, которые вы должны проверить и исправить.","pt":"Essas notificações são coletadas pelo sistema ioBroker e apontam para problemas que você deve verificar e corrigir.","nl":"Deze meldingen worden verzameld door het ioBroker-systeem en wijzen op problemen die u moet controleren en oplossen.","fr":"Ces notifications sont collectées par le système ioBroker et indiquent des problèmes que vous devez vérifier et résoudre.","it":"Queste notifiche vengono raccolte dal sistema ioBroker e indicano problemi che dovresti controllare e correggere.","es":"Estas notificaciones son recopiladas por el sistema ioBroker y señalan problemas que debe verificar y solucionar.","pl":"Te powiadomienia są zbierane przez system ioBroker i wskazują problemy, które należy sprawdzić i naprawić.","uk":"Ці сповіщення збираються системою ioBroker і вказують на проблеми, які ви повинні перевірити та виправити.","zh-cn":"这些通知由ioBroker系统收集,并指出您应检查并修复的问题"},"name":{"en":"System Notifications","de":"System-Benachrichtigungen","ru":"Системные уведомления","pt":"Notificações do sistema","nl":"Systeemmeldingen","fr":"Notifications système","it":"Notifiche di sistema","es":"Notificaciones del sistema","pl":"Powiadomienia systemowe","uk":"Системні сповіщення","zh-cn":"系统通知"}}}
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.122	debug	[system-notifications] Request notifications from "system.host.iob-huawei"
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.121	debug	[system-notifications] Received notifications from "system.host.Iobroker": {}
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.117	debug	[system-notifications] Request notifications from "system.host.Iobroker"
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.112	debug	[mqttClient] subscripe to: nspanel_1/stat/#
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.110	debug	[mqttClient] subscripe to: nspanel_1/tele/#
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.109	debug	[Panel_1] Panel E4_65_B8_48_80_70 is initialised!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.065	debug	[controller] Set current Date with time: Fri Aug 15 2025 14:06:29 GMT+0200 (Central European Summer Time)
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:29.003	debug	[mqttClient] subscripe to: nspanel_1/stat/RESULT
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:28.955	debug	[controller] controller created
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:28.954	debug	42802.5078125k
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:28.952	info	[mqttClient] Connection is active.
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:28.901	debug	Check configuration!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.865	info	Force an MQTT reconnect from the Nspanel with the ip 192.168.178.56 in 10 seconds!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.774	debug	[library] Load language de
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.774	info	Raw script config found for nspanel_1
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.769	debug	[config-manager] Screensaver pageItems count: 17
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.765	warn	Invalid color value: "0_userdata.0.Abfallkalender.1.color"
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.686	info	[config-manager] Start converting configuration for nspanel_1
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:26.623	info	starting. Version 0.2.4 (non-npm: ticaki/ioBroker.nspanel-lovelace-ui#955fb48e830b9ffc2f648d9d50adbbde0e5318ba) in /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui, node: v20.19.4, js-controller: 7.0.6
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:21.536	info	terminating
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:21.250	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:21.249	info	terminating
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:21.249	info	[mqttClient] Connection is closed.
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:21.245	debug	[main] Switch page to invisible!
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:21.035	info	Got terminate signal TERMINATE_YOURSELF
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:09.678	debug	[config-manager] Screensaver pageItems count: 17
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:09.669	warn	Invalid color value: "0_userdata.0.Abfallkalender.1.color"
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:09.498	info	[config-manager] Start converting configuration for topic
                                  nspanel-lovelace-ui.0
                                  	2025-08-15 14:06:09.497	debug	{"command":"ScriptConfig","message":{"panelTopic":"topic","weatherEntity":"openweathermap.0.","defaultOffColor":{"red":253,"green":128,"blue":0},"defaultOnColor":{"red":253,"green":216,"blue":53},"defaultBackgroundColor":{"red":29,"green":29,"blue":29},"weatherAddDefaultItems":false,"pages":[{"type":"cardGrid","uniqueName":"main","heading":"Die Leere","items":[]}],"subPages":[],"favoritScreensaverEntity":[{"type":"template","template":"text.openweathermap.favorit","dpInit":"/^openweathermap\\.0.+/","modeScr":"favorit"}],"alternateScreensaverEntity":[],"indicatorScreensaverEntity":[{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Status_offene_Fenster.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"window-open-variant","ScreensaverEntityIconOff":"window-closed-variant","ScreensaverEntityText":"Fenster","ScreensaverEntityUnitText":"%","ScreensaverEntityIconColor":{"val_min":0,"val_max":1}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Status_offene_Tuer.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"door-open","ScreensaverEntityIconOff":"door-closed","ScreensaverEntityText":"Tür","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Status_Licht_An.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"lightbulb","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Licht","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1}},{"type":"script","ScreensaverEntity":"alias.0.Türschloss.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"lock","ScreensaverEntityIconOff":"lock-open","ScreensaverEntityText":"Türschloss","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1,"val_best":1}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Auto.Safety.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"car-key","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Auto","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1,"val_best":1}}],"bottomScreensaverEntity":[{"type":"template","template":"text.openweathermap.sunriseset","dpInit":"/^openweathermap\\.0\\.forecast\\.current.+/","modeScr":"bottom"},{"type":"script","ScreensaverEntity":"openweathermap.0.forecast.current.windSpeed","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"weather-windy","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Wind","ScreensaverEntityUnitText":"m/s","ScreensaverEntityIconColor":{"val_min":0,"val_max":120}},{"type":"script","ScreensaverEntity":"openweathermap.0.forecast.current.windGust","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"weather-tornado","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Böen","ScreensaverEntityUnitText":"m/s","ScreensaverEntityIconColor":{"val_min":0,"val_max":120}},{"type":"template","template":"text.openweathermap.winddirection","dpInit":"/^openweathermap\\.0./","modeScr":"bottom"},{"type":"script","ScreensaverEntity":"openweathermap.0.forecast.current.humidity","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"water-percent","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Feuchte","ScreensaverEntityUnitText":"%","ScreensaverEntityIconColor":{"val_min":0,"val_max":100,"val_best":60}},{"type":"native","native":{"type":"native","native":{"role":"2values","dpInit":"","type":"text","modeScr":"bottom","data":{"entity1":{"value":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Minimale_Temperatur_value"},"decimal":{"type":"const","constVal":0},"unit":{"type":"const","constVal":"° "}},"entity2":{"value":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Maximale_Temperatur_value"},"decimal":{"type":"const","constVal":0},"unit":{"type":"const","constVal":"°"}},"icon":{"true":{"value":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Wetter_Symbol_id","read":"{\n switch (val) {\n case 1: // Sonnig\n return 'weather-sunny'; // sunny\n\n case 2: // Teils bewölkt\n case 3: // Bewölkt\n return 'weather-partly-cloudy'; // partlycloudy\n \n case 4: // Bedeckt\n return 'weather-cloudy'; // cloudy\n \n case 5: // Teils bewölkt mit leichtem Regen\n case 6: // Bewölkt mit leichtem Regen\n case 8: // Teils bewölkt mit mäßigem Regen\n case 9: // Bewölkt mit mäßigem Regen\n return 'weather-partly-rainy'; // partly-rainy\n \n case 7: // Bedeckt mit leichtem Regen\n return 'weather-rainy'; // rainy\n \n case 10: // Bedeckt mit mäßigem Regen\n return 'weather-pouring'; // pouring\n \n case 11: // Teils bewölkt mit starken Regenschauern\n case 12: // Bewölkt mit stürmischen Regenschauern\n return 'weather-partly-lightning'; // partlylightning\n \n case 13: // Bedeckt mit stürmischen Regenschauern\n return 'weather-lightning'; // lightning\n \n case 14: // Teils bewölkt mit stürmischen Regenschauern und Hagel\n case 15: // Bewölkt mit stürmischen Regenschauern und Hagel\n case 16: // Bedeckt mit stürmischen Regenschauern und Hagel\n return 'weather-hail'; // Hail\n\n case 17: // Teils bewölkt mit Schnee\n case 18: // Bewölkt mit Schnee\n return 'weather-partly-snowy'; // partlysnowy\n\n case 19: // Bedeckt mit Schneeschauern\n return 'weather-snowy'; // snowy\n\n case 20: // Teils bewölkt mit Schneeregen\n case 21: // Bewölkt mit Schneeregen\n return 'weather-partly-snowy-rainy';\n\n case 22: // Bedeckt mit Schneeregen\n return 'weather-snowy-rainy'; // snowy-rainy\n\n default:\n return 'alert-circle-outline';\n }\n }"},"color":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Wetter_Symbol_id","read":"{\n switch (val) {\n case 1: // Sonnig\n return Color.swSunny;\n\n case 2: // Teils bewölkt\n case 3: // Bewölkt\n return Color.swPartlycloudy;\n\n case 4: // Bedeckt\n return Color.swCloudy;\n\n case 5: // Teils bewölkt mit leichtem Regen\n case 6: // Bewölkt mit leichtem Regen\n case 8: // Teils bewölkt mit mäßigem Regen\n case 9: // Bewölkt mit mäßigem Regen\n return Color.swRainy;\n\n case 7: // Bedeckt mit leichtem Regen\n return Color.swRainy;\n\n case 10: // Bedeckt mit mäßigem Regen\n return Color.swPouring;\n\n case 11: // Teils bewölkt mit starken Regenschauern\n case 12: // Bewölkt mit stürmischen Regenschauern\n return Color.swLightningRainy;\n\n case 13: // Bedeckt mit stürmischen Regenschauern\n return Color.swLightning;\n\n case 14: // Teils bewölkt mit stürmischen Regenschauern und Hagel\n case 15: // Bewölkt mit stürmischen Regenschauern und Hagel\n case 16: // Bedeckt mit stürmischen Regenschauern und Hagel\n return Color.swHail;\n\n case 17: // Teils bewölkt mit Schnee\n case 18: // Bewölkt mit Schnee\n return Color.swSnowy;\n\n case 19: // Bedeckt mit Schneeschauern\n return Color.swSnowy;\n\n case 20: // Teils bewölkt mit Schneeregen\n case 21: // Bewölkt mit Schneeregen\n return Color.swSnowyRainy; // snowy-rainy\n\n case 22: // Bedeckt mit Schneeregen\n return Color.swSnowyRainy;\n\n default:\n return Color.White;\n }\n }"}},"false":{}},"text":{"true":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Tag_value","read":"{\n return (val).substring(0,2);\n }"}}}}}}],"leftScreensaverEntity":[{"type":"script","ScreensaverEntity":"alias.0.NSPanel.Flur.Sensor.ANALOG.Temperature.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"thermometer","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Temperatur","ScreensaverEntityUnitText":"°C","ScreensaverEntityIconColor":{"val_min":0,"val_max":35,"val_best":22}},{"type":"script","ScreensaverEntity":"alias.0.Heizung.WärmeTagesVerbrauch.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"counter","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Wärme","ScreensaverEntityUnitText":" kWh","ScreensaverEntityIconColor":{"red":255,"green":235,"blue":156}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Abfall.event1.INFO","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityDateFormat":{"year":"numeric","month":"2-digit","day":"2-digit"},"ScreensaverEntityIconOn":"trash-can","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Abfall","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":"0_userdata.0.Abfallkalender.1.color"}],"mrIcon1ScreensaverEntity":{"type":"script","ScreensaverEntity":"Relay.1","ScreensaverEntityIconOn":"lightbulb","ScreensaverEntityIconOff":null,"ScreensaverEntityValue":null,"ScreensaverEntityValueDecimalPlace":0,"ScreensaverEntityValueUnit":null,"ScreensaverEntityOnColor":{"red":253,"green":216,"blue":53},"ScreensaverEntityOffColor":{"red":68,"green":115,"blue":158}},"mrIcon2ScreensaverEntity":{"type":"script","ScreensaverEntity":"Relay.2","ScreensaverEntityIconOn":"lightbulb","ScreensaverEntityIconOff":null,"ScreensaverEntityValue":null,"ScreensaverEntityValueDecimalPlace":0,"ScreensaverEntityValueUnit":null,"ScreensaverEntityOnColor":{"red":253,"green":216,"blue":53},"ScreensaverEntityOffColor":{"red":68,"green":115,"blue":158}},"buttonLeft":{"mode":"page","page":"main"},"buttonRight":null,"version":"0.9.1"},"from":"system.adapter.javascript.0","callback":{"message":{"panelTopic":"topic","weatherEntity":"openweathermap.0.","defaultOffColor":{"red":253,"green":128,"blue":0},"defaultOnColor":{"red":253,"green":216,"blue":53},"defaultBackgroundColor":{"red":29,"green":29,"blue":29},"weatherAddDefaultItems":false,"pages":[{"type":"cardGrid","uniqueName":"main","heading":"Die Leere","items":[]}],"subPages":[],"favoritScreensaverEntity":[{"type":"template","template":"text.openweathermap.favorit","dpInit":"/^openweathermap\\.0.+/","modeScr":"favorit"}],"alternateScreensaverEntity":[],"indicatorScreensaverEntity":[{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Status_offene_Fenster.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"window-open-variant","ScreensaverEntityIconOff":"window-closed-variant","ScreensaverEntityText":"Fenster","ScreensaverEntityUnitText":"%","ScreensaverEntityIconColor":{"val_min":0,"val_max":1}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Status_offene_Tuer.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"door-open","ScreensaverEntityIconOff":"door-closed","ScreensaverEntityText":"Tür","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Status_Licht_An.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"lightbulb","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Licht","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1}},{"type":"script","ScreensaverEntity":"alias.0.Türschloss.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"lock","ScreensaverEntityIconOff":"lock-open","ScreensaverEntityText":"Türschloss","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1,"val_best":1}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Auto.Safety.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"car-key","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Auto","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":{"val_min":0,"val_max":1,"val_best":1}}],"bottomScreensaverEntity":[{"type":"template","template":"text.openweathermap.sunriseset","dpInit":"/^openweathermap\\.0\\.forecast\\.current.+/","modeScr":"bottom"},{"type":"script","ScreensaverEntity":"openweathermap.0.forecast.current.windSpeed","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"weather-windy","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Wind","ScreensaverEntityUnitText":"m/s","ScreensaverEntityIconColor":{"val_min":0,"val_max":120}},{"type":"script","ScreensaverEntity":"openweathermap.0.forecast.current.windGust","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"weather-tornado","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Böen","ScreensaverEntityUnitText":"m/s","ScreensaverEntityIconColor":{"val_min":0,"val_max":120}},{"type":"template","template":"text.openweathermap.winddirection","dpInit":"/^openweathermap\\.0./","modeScr":"bottom"},{"type":"script","ScreensaverEntity":"openweathermap.0.forecast.current.humidity","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityIconOn":"water-percent","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Feuchte","ScreensaverEntityUnitText":"%","ScreensaverEntityIconColor":{"val_min":0,"val_max":100,"val_best":60}},{"type":"native","native":{"type":"native","native":{"role":"2values","dpInit":"","type":"text","modeScr":"bottom","data":{"entity1":{"value":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Minimale_Temperatur_value"},"decimal":{"type":"const","constVal":0},"unit":{"type":"const","constVal":"° "}},"entity2":{"value":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Maximale_Temperatur_value"},"decimal":{"type":"const","constVal":0},"unit":{"type":"const","constVal":"°"}},"icon":{"true":{"value":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Wetter_Symbol_id","read":"{\n switch (val) {\n case 1: // Sonnig\n return 'weather-sunny'; // sunny\n\n case 2: // Teils bewölkt\n case 3: // Bewölkt\n return 'weather-partly-cloudy'; // partlycloudy\n \n case 4: // Bedeckt\n return 'weather-cloudy'; // cloudy\n \n case 5: // Teils bewölkt mit leichtem Regen\n case 6: // Bewölkt mit leichtem Regen\n case 8: // Teils bewölkt mit mäßigem Regen\n case 9: // Bewölkt mit mäßigem Regen\n return 'weather-partly-rainy'; // partly-rainy\n \n case 7: // Bedeckt mit leichtem Regen\n return 'weather-rainy'; // rainy\n \n case 10: // Bedeckt mit mäßigem Regen\n return 'weather-pouring'; // pouring\n \n case 11: // Teils bewölkt mit starken Regenschauern\n case 12: // Bewölkt mit stürmischen Regenschauern\n return 'weather-partly-lightning'; // partlylightning\n \n case 13: // Bedeckt mit stürmischen Regenschauern\n return 'weather-lightning'; // lightning\n \n case 14: // Teils bewölkt mit stürmischen Regenschauern und Hagel\n case 15: // Bewölkt mit stürmischen Regenschauern und Hagel\n case 16: // Bedeckt mit stürmischen Regenschauern und Hagel\n return 'weather-hail'; // Hail\n\n case 17: // Teils bewölkt mit Schnee\n case 18: // Bewölkt mit Schnee\n return 'weather-partly-snowy'; // partlysnowy\n\n case 19: // Bedeckt mit Schneeschauern\n return 'weather-snowy'; // snowy\n\n case 20: // Teils bewölkt mit Schneeregen\n case 21: // Bewölkt mit Schneeregen\n return 'weather-partly-snowy-rainy';\n\n case 22: // Bedeckt mit Schneeregen\n return 'weather-snowy-rainy'; // snowy-rainy\n\n default:\n return 'alert-circle-outline';\n }\n }"},"color":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Wetter_Symbol_id","read":"{\n switch (val) {\n case 1: // Sonnig\n return Color.swSunny;\n\n case 2: // Teils bewölkt\n case 3: // Bewölkt\n return Color.swPartlycloudy;\n\n case 4: // Bedeckt\n return Color.swCloudy;\n\n case 5: // Teils bewölkt mit leichtem Regen\n case 6: // Bewölkt mit leichtem Regen\n case 8: // Teils bewölkt mit mäßigem Regen\n case 9: // Bewölkt mit mäßigem Regen\n return Color.swRainy;\n\n case 7: // Bedeckt mit leichtem Regen\n return Color.swRainy;\n\n case 10: // Bedeckt mit mäßigem Regen\n return Color.swPouring;\n\n case 11: // Teils bewölkt mit starken Regenschauern\n case 12: // Bewölkt mit stürmischen Regenschauern\n return Color.swLightningRainy;\n\n case 13: // Bedeckt mit stürmischen Regenschauern\n return Color.swLightning;\n\n case 14: // Teils bewölkt mit stürmischen Regenschauern und Hagel\n case 15: // Bewölkt mit stürmischen Regenschauern und Hagel\n case 16: // Bedeckt mit stürmischen Regenschauern und Hagel\n return Color.swHail;\n\n case 17: // Teils bewölkt mit Schnee\n case 18: // Bewölkt mit Schnee\n return Color.swSnowy;\n\n case 19: // Bedeckt mit Schneeschauern\n return Color.swSnowy;\n\n case 20: // Teils bewölkt mit Schneeregen\n case 21: // Bewölkt mit Schneeregen\n return Color.swSnowyRainy; // snowy-rainy\n\n case 22: // Bedeckt mit Schneeregen\n return Color.swSnowyRainy;\n\n default:\n return Color.White;\n }\n }"}},"false":{}},"text":{"true":{"type":"triggered","dp":"daswetter.0.NextDays.Location_1.Day_6.Tag_value","read":"{\n return (val).substring(0,2);\n }"}}}}}}],"leftScreensaverEntity":[{"type":"script","ScreensaverEntity":"alias.0.NSPanel.Flur.Sensor.ANALOG.Temperature.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"thermometer","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Temperatur","ScreensaverEntityUnitText":"°C","ScreensaverEntityIconColor":{"val_min":0,"val_max":35,"val_best":22}},{"type":"script","ScreensaverEntity":"alias.0.Heizung.WärmeTagesVerbrauch.ACTUAL","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":1,"ScreensaverEntityIconOn":"counter","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Wärme","ScreensaverEntityUnitText":" kWh","ScreensaverEntityIconColor":{"red":255,"green":235,"blue":156}},{"type":"script","ScreensaverEntity":"alias.0.NSPanel.allgemein.Abfall.event1.INFO","ScreensaverEntityFactor":1,"ScreensaverEntityDecimalPlaces":0,"ScreensaverEntityDateFormat":{"year":"numeric","month":"2-digit","day":"2-digit"},"ScreensaverEntityIconOn":"trash-can","ScreensaverEntityIconOff":null,"ScreensaverEntityText":"Abfall","ScreensaverEntityUnitText":"","ScreensaverEntityIconColor":"0_userdata.0.Abfallkalender.1.color"}],"mrIcon1ScreensaverEntity":{"type":"script","ScreensaverEntity":"Relay.1","ScreensaverEntityIconOn":"lightbulb","ScreensaverEntityIconOff":null,"ScreensaverEntityValue":null,"ScreensaverEntityValueDecimalPlace":0,"ScreensaverEntityValueUnit":null,"ScreensaverEntityOnColor":{"red":253,"green":216,"blue":53},"ScreensaverEntityOffColor":{"red":68,"green":115,"blue":158}},"mrIcon2ScreensaverEntity":{"type":"script","ScreensaverEntity":"Relay.2","ScreensaverEntityIconOn":"lightbulb","ScreensaverEntityIconOff":null,"ScreensaverEntityValue":null,"ScreensaverEntityValueDecimalPlace":0,"ScreensaverEntityValueUnit":null,"ScreensaverEntityOnColor":{"red":253,"green":216,"blue":53},"ScreensaverEntityOffColor":{"red":68,"green":115,"blue":158}},"buttonLeft":{"mode":"page","page":"main"},"buttonRight":null,"version":"0.9.1"},"id":15,"ack":false,"time":1755259569487},"_id":94552161}
                                  
                                  T 1 Reply Last reply Reply Quote 0
                                  • T
                                    ticaki Developer @hm_krause last edited by

                                    @hm_krause

                                    Das hier gibt jetzt ein ziemlich großes log 🙂

                                    gehe auf die Adminkonfiguration für den Adapter - schalte den expert mode anBildschirmfoto 2025-08-15 um 14.11.25.png das grüne da
                                    Dann gehe auf den Tab developer und aktiviere debugLogMqtt.

                                    Dann anschließend das log bitte über log herunterladen anzeigen lassen und von dort hier in code tags posten - die sind dann schöner formatiert - bei der menge ist das nötig.

                                    Danke.

                                    H 1 Reply Last reply Reply Quote 0
                                    • teletapi
                                      teletapi @ticaki last edited by teletapi

                                      @ticaki

                                      Morjen, ich hab da mal wieder ein kleines Problem ich hab heute mal das neue NSPanel US ausgepackt und fertig gemacht zunächst war für mich das größte problem überhaupt mal eine TFT drauf zu flashen entweder kam der Balken zum flashen und machte nix oder No Match. Bis ich irgendwann die Berry treiber 9 händisch und die Firmware für 9.9.4 US_L geflasht habe
                                      ( FlashNextionAdv0 http://nspanel.de/nspanel-us-l-v4.9.5.tft geändert auf 4.9.4) (die 4.95 lies sich nur bis 99% flashen)
                                      mit dem script vom ersten EU Model (Meine daten eingefügt in das script was man per Button laden kann).

                                      Jetzt läuft das US Teil,
                                      aber zum einen wird mir im Adapter jetzt angezeigt das das erste EU modell ein Update der TFT braucht auf die 4.9.4, auf dem EU Model ist aber bereits die 4.9.4 drauf .

                                      Weiß.jpg

                                      WhatsApp Bild 2025-08-15 um 14.15.57_80e43974.jpg

                                      Auf dem US Model wird mir die 4.9.3 im System angezeigt im Adapter jdeoch wird die 4.9.3 angezeigt aber kein Update zur 4.9.4 und im Panel System wird mir ein EU Model angezeigt und kein US. Und das obwohl ich ja die 4.9.4 als US_l geflasht habe. (http://nspanel.de/nspanel-us-l-v4.9.4.tft)

                                      US.jpg

                                      WhatsApp Bild 2025-08-15 um 14.17.27_7f8eeb88.jpg

                                      Armilar T 2 Replies Last reply Reply Quote 0
                                      • H
                                        hm_krause @ticaki last edited by

                                        @ticaki
                                        na dann:

                                        2025-08-15 14:16:32.187 - debug: nspanel-lovelace-ui.0 (46096) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:16:32.187 - debug: nspanel-lovelace-ui.0 (46096) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:16:38.778 - info: host.Iobroker stopInstance system.adapter.nspanel-lovelace-ui.0 (force=false, process=true)
                                        2025-08-15 14:16:38.782 - info: nspanel-lovelace-ui.0 (46096) Got terminate signal TERMINATE_YOURSELF
                                        2025-08-15 14:16:38.796 - debug: nspanel-lovelace-ui.0 (46096) [main] Switch page to invisible!
                                        2025-08-15 14:16:38.799 - info: nspanel-lovelace-ui.0 (46096) [mqttClient] Connection is closed.
                                        2025-08-15 14:16:38.800 - info: nspanel-lovelace-ui.0 (46096) terminating
                                        2025-08-15 14:16:38.801 - info: nspanel-lovelace-ui.0 (46096) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                        2025-08-15 14:16:38.851 - info: host.Iobroker stopInstance system.adapter.nspanel-lovelace-ui.0 send kill signal
                                        2025-08-15 14:16:39.282 - info: nspanel-lovelace-ui.0 (46096) terminating
                                        2025-08-15 14:16:39.399 - info: host.Iobroker instance system.adapter.nspanel-lovelace-ui.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                        2025-08-15 14:16:42.802 - info: host.Iobroker instance system.adapter.nspanel-lovelace-ui.0 in version "0.2.4" (non-npm: ticaki/ioBroker.nspanel-lovelace-ui#955fb48e830b9ffc2f648d9d50adbbde0e5318ba) started with pid 46153
                                        2025-08-15 14:16:43.734 - debug: nspanel-lovelace-ui.0 (46153) Redis Objects: Use Redis connection: 0.0.0.0:9001
                                        2025-08-15 14:16:43.786 - debug: nspanel-lovelace-ui.0 (46153) Objects client ready ... initialize now
                                        2025-08-15 14:16:43.787 - debug: nspanel-lovelace-ui.0 (46153) Objects create System PubSub Client
                                        2025-08-15 14:16:43.788 - debug: nspanel-lovelace-ui.0 (46153) Objects create User PubSub Client
                                        2025-08-15 14:16:43.894 - debug: nspanel-lovelace-ui.0 (46153) Objects client initialize lua scripts
                                        2025-08-15 14:16:43.898 - debug: nspanel-lovelace-ui.0 (46153) Objects connected to redis: 0.0.0.0:9001
                                        2025-08-15 14:16:43.963 - debug: nspanel-lovelace-ui.0 (46153) Redis States: Use Redis connection: 0.0.0.0:9000
                                        2025-08-15 14:16:43.997 - debug: nspanel-lovelace-ui.0 (46153) States create System PubSub Client
                                        2025-08-15 14:16:43.998 - debug: nspanel-lovelace-ui.0 (46153) States create User PubSub Client
                                        2025-08-15 14:16:44.100 - debug: nspanel-lovelace-ui.0 (46153) States connected to redis: 0.0.0.0:9000
                                        2025-08-15 14:16:44.213 - info: nspanel-lovelace-ui.0 (46153) starting. Version 0.2.4 (non-npm: ticaki/ioBroker.nspanel-lovelace-ui#955fb48e830b9ffc2f648d9d50adbbde0e5318ba) in /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui, node: v20.19.4, js-controller: 7.0.6
                                        2025-08-15 14:16:44.276 - info: nspanel-lovelace-ui.0 (46153) [config-manager] Start converting configuration for nspanel_1
                                        2025-08-15 14:16:44.348 - warn: nspanel-lovelace-ui.0 (46153) Invalid color value: "0_userdata.0.Abfallkalender.1.color"
                                        2025-08-15 14:16:44.352 - debug: nspanel-lovelace-ui.0 (46153) [config-manager] Screensaver pageItems count: 17
                                        2025-08-15 14:16:44.356 - info: nspanel-lovelace-ui.0 (46153) Raw script config found for nspanel_1
                                        2025-08-15 14:16:44.357 - debug: nspanel-lovelace-ui.0 (46153) [library] Load language de
                                        2025-08-15 14:16:44.497 - info: nspanel-lovelace-ui.0 (46153) Force an MQTT reconnect from the Nspanel with the ip 192.168.178.56 in 10 seconds!
                                        2025-08-15 14:16:46.530 - debug: nspanel-lovelace-ui.0 (46153) Check configuration!
                                        2025-08-15 14:16:46.582 - info: nspanel-lovelace-ui.0 (46153) [mqttClient] Connection is active.
                                        2025-08-15 14:16:46.584 - debug: nspanel-lovelace-ui.0 (46153) 42876.6484375k
                                        2025-08-15 14:16:46.585 - debug: nspanel-lovelace-ui.0 (46153) [controller] controller created
                                        2025-08-15 14:16:46.632 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] subscripe to: nspanel_1/stat/RESULT
                                        2025-08-15 14:16:46.744 - debug: nspanel-lovelace-ui.0 (46153) [controller] Set current Date with time: Fri Aug 15 2025 14:16:46 GMT+0200 (Central European Summer Time)
                                        2025-08-15 14:16:46.747 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Panel E4_65_B8_48_80_70 is initialised!
                                        2025-08-15 14:16:46.747 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] subscripe to: nspanel_1/tele/#
                                        2025-08-15 14:16:46.749 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] subscripe to: nspanel_1/stat/#
                                        2025-08-15 14:16:46.811 - debug: nspanel-lovelace-ui.0 (46153) [system-notifications] Request notifications from "system.host.Iobroker"
                                        2025-08-15 14:16:46.814 - debug: nspanel-lovelace-ui.0 (46153) [system-notifications] Received notifications from "system.host.Iobroker": {}
                                        2025-08-15 14:16:46.814 - debug: nspanel-lovelace-ui.0 (46153) [system-notifications] Request notifications from "system.host.iob-huawei"
                                        2025-08-15 14:16:46.819 - debug: nspanel-lovelace-ui.0 (46153) [system-notifications] Received notifications from "system.host.iob-huawei": {"system":{"categories":{},"description":{"en":"These notifications are collected by the ioBroker system and point to issues you should check and fix.","de":"Diese Benachrichtigungen werden vom ioBroker-System erfasst und weisen auf Probleme hin, die überprüft und behoben werden sollten.","ru":"Эти уведомления собираются системой ioBroker и указывают на проблемы, которые вы должны проверить и исправить.","pt":"Essas notificações são coletadas pelo sistema ioBroker e apontam para problemas que você deve verificar e corrigir.","nl":"Deze meldingen worden verzameld door het ioBroker-systeem en wijzen op problemen die u moet controleren en oplossen.","fr":"Ces notifications sont collectées par le système ioBroker et indiquent des problèmes que vous devez vérifier et résoudre.","it":"Queste notifiche vengono raccolte dal sistema ioBroker e indicano problemi che dovresti controllare e correggere.","es":"Estas notificaciones son recopiladas por el sistema ioBroker y señalan problemas que debe verificar y solucionar.","pl":"Te powiadomienia są zbierane przez system ioBroker i wskazują problemy, które należy sprawdzić i naprawić.","uk":"Ці сповіщення збираються системою ioBroker і вказують на проблеми, які ви повинні перевірити та виправити.","zh-cn":"这些通知由ioBroker系统收集,并指出您应检查并修复的问题"},"name":{"en":"System Notifications","de":"System-Benachrichtigungen","ru":"Системные уведомления","pt":"Notificações do sistema","nl":"Systeemmeldingen","fr":"Notifications système","it":"Notifiche di sistema","es":"Notificaciones del sistema","pl":"Powiadomienia systemowe","uk":"Системні сповіщення","zh-cn":"系统通知"}}}
                                        2025-08-15 14:16:46.839 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 2 subproceses. topic: nspanel_1/stat/RESULT message: {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.839 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] Receive command nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.840 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.953 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 2 subproceses. topic: nspanel_1/stat/RESULT message: {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.953 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] Receive command nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.954 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/LWT message: Offline
                                        2025-08-15 14:16:46.954 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO1 message: {"Info1":{"Module":"Panel_1","Version":"15.0.1(release-nspanel)","FallbackTopic":"cmnd/Panel_1-488070_fb/","GroupTopic":"nspanel_1/cmnd/"}}
                                        2025-08-15 14:16:46.954 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO2 message: {"Info2":{"WebServerMode":"Admin","Hostname":"Panel-1","IPAddress":"192.168.178.56","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1"}}
                                        2025-08-15 14:16:46.955 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/INFO2 with {"Info2":{"WebServerMode":"Admin","Hostname":"Panel-1","IPAddress":"192.168.178.56","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1"}}
                                        2025-08-15 14:16:46.955 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO3 message: {"Info3":{"RestartReason":"Software reset CPU","BootCount":85}}
                                        2025-08-15 14:16:46.955 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/INFO3 with {"Info3":{"RestartReason":"Software reset CPU","BootCount":85}}
                                        2025-08-15 14:16:46.955 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/POWER1 message: OFF
                                        2025-08-15 14:16:46.955 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/POWER2 message: OFF
                                        2025-08-15 14:16:46.956 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/RESULT message: {"CustomRecv":"event,startup,58,eu,4.9.3"}
                                        2025-08-15 14:16:46.956 - info: nspanel-lovelace-ui.0 (46153) [Panel_1] is online!
                                        2025-08-15 14:16:46.957 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/STATUS0","payload":""} to panel.
                                        2025-08-15 14:16:46.957 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/STATUS0 with message: .
                                        2025-08-15 14:16:46.958 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/STATE message: {"Time":"2025-08-15T14:15:48","Uptime":"0T00:00:10","UptimeSec":10,"Heap":169,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":328,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}
                                        2025-08-15 14:16:46.958 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/STATE with {"Time":"2025-08-15T14:15:48","Uptime":"0T00:00:10","UptimeSec":10,"Heap":169,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":328,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}
                                        2025-08-15 14:16:46.959 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/SENSOR message: {"Time":"2025-08-15T14:15:48","ANALOG":{"Temperature1":4.2},"ESP32":{"Temperature":52.8},"TempUnit":"C"}
                                        2025-08-15 14:16:46.959 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/SENSOR with {"Time":"2025-08-15T14:15:48","ANALOG":{"Temperature1":4.2},"ESP32":{"Temperature":52.8},"TempUnit":"C"}
                                        2025-08-15 14:16:46.959 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS0 message: {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["Panel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0},"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:00:06","StartupUTC":"2025-08-15T12:14:32","Sleep":0,"CfgHolder":4617,"BootCount":83,"BCResetTime":"2025-08-11T14:17:51","SaveCount":164},"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"442/699"},"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]},"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2025,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"},"StatusNET":{"Hostname":"Panel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0},"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"Panel_1-488070","MqttClient":"Panel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4},"StatusTIM":{"UTC":"2025-08-15T12:14:39Z","Local":"2025-08-15T14:14:39","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:43","Sunset":"21:05"},"StatusSNS":{"Time":"2025-08-15T14:14:39","ANALOG":{"Temperature1":4.1},"ESP32":{"Temperature":52.8},"TempUnit":"C"},"StatusSTS":{"Time":"2025-08-15T14:14:39","Uptime":"0T00:00:07","UptimeSec":7,"Heap":162,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":313,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:46.960 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS5 message: {"StatusNET":{"Hostname":"NSPanel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0}}
                                        2025-08-15 14:16:46.960 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS5 with {"StatusNET":{"Hostname":"NSPanel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0}}
                                        2025-08-15 14:16:46.960 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS message: {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["NSPanel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0}}
                                        2025-08-15 14:16:46.960 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS with {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["NSPanel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0}}
                                        2025-08-15 14:16:46.960 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS1 message: {"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:03:09","StartupUTC":"2025-08-14T16:01:05","Sleep":0,"CfgHolder":4617,"BootCount":50,"BCResetTime":"2025-08-11T14:17:51","SaveCount":127}}
                                        2025-08-15 14:16:46.960 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS1 with {"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:03:09","StartupUTC":"2025-08-14T16:01:05","Sleep":0,"CfgHolder":4617,"BootCount":50,"BCResetTime":"2025-08-11T14:17:51","SaveCount":127}}
                                        2025-08-15 14:16:46.961 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS2 message: {"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"450/699"}}
                                        2025-08-15 14:16:46.961 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS2 with {"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"450/699"}}
                                        2025-08-15 14:16:46.961 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS3 message: {"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]}}
                                        2025-08-15 14:16:46.961 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS3 with {"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]}}
                                        2025-08-15 14:16:46.961 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS4 message: {"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2013,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"}}
                                        2025-08-15 14:16:46.961 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS4 with {"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2013,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS6 message: {"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"NSPanel_1-488070","MqttClient":"NSPanel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS6 with {"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"NSPanel_1-488070","MqttClient":"NSPanel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS7 message: {"StatusTIM":{"UTC":"2025-08-14T16:04:15Z","Local":"2025-08-14T18:04:15","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:42","Sunset":"21:07"}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS7 with {"StatusTIM":{"UTC":"2025-08-14T16:04:15Z","Local":"2025-08-14T18:04:15","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:42","Sunset":"21:07"}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS10 message: {"StatusSNS":{"Time":"2025-08-14T18:04:15","ANALOG":{"Temperature1":3.5},"ESP32":{"Temperature":53.3},"TempUnit":"C"}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS10 with {"StatusSNS":{"Time":"2025-08-14T18:04:15","ANALOG":{"Temperature1":3.5},"ESP32":{"Temperature":53.3},"TempUnit":"C"}}
                                        2025-08-15 14:16:46.962 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS11 message: {"StatusSTS":{"Time":"2025-08-14T18:04:15","Uptime":"0T00:03:10","UptimeSec":190,"Heap":161,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":692,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-43,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:46.963 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS11 with {"StatusSTS":{"Time":"2025-08-14T18:04:15","Uptime":"0T00:03:10","UptimeSec":190,"Heap":161,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":692,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-43,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:46.963 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.969 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 2 subproceses. topic: nspanel_1/stat/RESULT message: {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.969 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] Receive command nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:46.970 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/LWT message: Offline
                                        2025-08-15 14:16:46.970 - warn: nspanel-lovelace-ui.0 (46153) [Panel_1] is offline!
                                        2025-08-15 14:16:46.971 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO1 message: {"Info1":{"Module":"Panel_1","Version":"15.0.1(release-nspanel)","FallbackTopic":"cmnd/Panel_1-488070_fb/","GroupTopic":"nspanel_1/cmnd/"}}
                                        2025-08-15 14:16:46.971 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO2 message: {"Info2":{"WebServerMode":"Admin","Hostname":"Panel-1","IPAddress":"192.168.178.56","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1"}}
                                        2025-08-15 14:16:46.971 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/INFO2 with {"Info2":{"WebServerMode":"Admin","Hostname":"Panel-1","IPAddress":"192.168.178.56","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1"}}
                                        2025-08-15 14:16:46.972 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO3 message: {"Info3":{"RestartReason":"Software reset CPU","BootCount":85}}
                                        2025-08-15 14:16:46.972 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/INFO3 with {"Info3":{"RestartReason":"Software reset CPU","BootCount":85}}
                                        2025-08-15 14:16:46.972 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/POWER1 message: OFF
                                        2025-08-15 14:16:46.972 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/POWER2 message: OFF
                                        2025-08-15 14:16:46.973 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/RESULT message: {"CustomRecv":"event,startup,58,eu,4.9.3"}
                                        2025-08-15 14:16:46.973 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/STATE message: {"Time":"2025-08-15T14:15:48","Uptime":"0T00:00:10","UptimeSec":10,"Heap":169,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":328,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}
                                        2025-08-15 14:16:46.973 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/STATE with {"Time":"2025-08-15T14:15:48","Uptime":"0T00:00:10","UptimeSec":10,"Heap":169,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":328,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}
                                        2025-08-15 14:16:46.973 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/SENSOR message: {"Time":"2025-08-15T14:15:48","ANALOG":{"Temperature1":4.2},"ESP32":{"Temperature":52.8},"TempUnit":"C"}
                                        2025-08-15 14:16:46.973 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/SENSOR with {"Time":"2025-08-15T14:15:48","ANALOG":{"Temperature1":4.2},"ESP32":{"Temperature":52.8},"TempUnit":"C"}
                                        2025-08-15 14:16:46.974 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS0 message: {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["Panel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0},"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:00:06","StartupUTC":"2025-08-15T12:14:32","Sleep":0,"CfgHolder":4617,"BootCount":83,"BCResetTime":"2025-08-11T14:17:51","SaveCount":164},"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"442/699"},"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]},"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2025,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"},"StatusNET":{"Hostname":"Panel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0},"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"Panel_1-488070","MqttClient":"Panel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4},"StatusTIM":{"UTC":"2025-08-15T12:14:39Z","Local":"2025-08-15T14:14:39","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:43","Sunset":"21:05"},"StatusSNS":{"Time":"2025-08-15T14:14:39","ANALOG":{"Temperature1":4.1},"ESP32":{"Temperature":52.8},"TempUnit":"C"},"StatusSTS":{"Time":"2025-08-15T14:14:39","Uptime":"0T00:00:07","UptimeSec":7,"Heap":162,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":313,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:46.974 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS5 message: {"StatusNET":{"Hostname":"NSPanel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0}}
                                        2025-08-15 14:16:46.974 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS5 with {"StatusNET":{"Hostname":"NSPanel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0}}
                                        2025-08-15 14:16:46.974 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS message: {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["NSPanel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0}}
                                        2025-08-15 14:16:46.974 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS with {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["NSPanel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0}}
                                        2025-08-15 14:16:46.975 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS1 message: {"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:03:09","StartupUTC":"2025-08-14T16:01:05","Sleep":0,"CfgHolder":4617,"BootCount":50,"BCResetTime":"2025-08-11T14:17:51","SaveCount":127}}
                                        2025-08-15 14:16:46.975 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS1 with {"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:03:09","StartupUTC":"2025-08-14T16:01:05","Sleep":0,"CfgHolder":4617,"BootCount":50,"BCResetTime":"2025-08-11T14:17:51","SaveCount":127}}
                                        2025-08-15 14:16:46.975 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS2 message: {"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"450/699"}}
                                        2025-08-15 14:16:46.975 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS2 with {"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"450/699"}}
                                        2025-08-15 14:16:46.975 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS3 message: {"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]}}
                                        2025-08-15 14:16:46.975 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS3 with {"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS4 message: {"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2013,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS4 with {"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2013,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS6 message: {"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"NSPanel_1-488070","MqttClient":"NSPanel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS6 with {"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"NSPanel_1-488070","MqttClient":"NSPanel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS7 message: {"StatusTIM":{"UTC":"2025-08-14T16:04:15Z","Local":"2025-08-14T18:04:15","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:42","Sunset":"21:07"}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS7 with {"StatusTIM":{"UTC":"2025-08-14T16:04:15Z","Local":"2025-08-14T18:04:15","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:42","Sunset":"21:07"}}
                                        2025-08-15 14:16:46.976 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS10 message: {"StatusSNS":{"Time":"2025-08-14T18:04:15","ANALOG":{"Temperature1":3.5},"ESP32":{"Temperature":53.3},"TempUnit":"C"}}
                                        2025-08-15 14:16:46.977 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS10 with {"StatusSNS":{"Time":"2025-08-14T18:04:15","ANALOG":{"Temperature1":3.5},"ESP32":{"Temperature":53.3},"TempUnit":"C"}}
                                        2025-08-15 14:16:46.977 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS11 message: {"StatusSTS":{"Time":"2025-08-14T18:04:15","Uptime":"0T00:03:10","UptimeSec":190,"Heap":161,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":692,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-43,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:46.977 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS11 with {"StatusSTS":{"Time":"2025-08-14T18:04:15","Uptime":"0T00:03:10","UptimeSec":190,"Heap":161,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":692,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-43,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:46.977 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:47.019 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/POWER1","payload":""} to panel.
                                        2025-08-15 14:16:47.019 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/POWER1 with message: .
                                        2025-08-15 14:16:47.041 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/POWER2","payload":""} to panel.
                                        2025-08-15 14:16:47.041 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/POWER2 with message: .
                                        2025-08-15 14:16:47.063 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/GetDriverVersion","payload":""} to panel.
                                        2025-08-15 14:16:47.064 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/GetDriverVersion with message: .
                                        2025-08-15 14:16:47.087 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/Rule3","payload":"ON CustomSend DO RuleTimer3 120 ENDON ON Rules#Timer=3 DO CustomSend pageType~pageStartup ENDON"} to panel.
                                        2025-08-15 14:16:47.087 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/Rule3 with message: ON CustomSend DO RuleTimer3 120 ENDON ON Rules#Timer=3 DO CustomSend pageType~pageStartup ENDON.
                                        2025-08-15 14:16:47.115 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/Rule3","payload":"1"} to panel.
                                        2025-08-15 14:16:47.115 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/Rule3 with message: 1.
                                        2025-08-15 14:16:47.136 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:16:47.136 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:16:48.855 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 2 subproceses. topic: nspanel_1/stat/RESULT message: {"POWER2":"OFF"}
                                        2025-08-15 14:16:48.855 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] Receive command nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:48.856 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/RESULT with {"POWER2":"OFF"}
                                        2025-08-15 14:16:48.875 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/LWT message: Offline
                                        2025-08-15 14:16:48.897 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO1 message: {"Info1":{"Module":"Panel_1","Version":"15.0.1(release-nspanel)","FallbackTopic":"cmnd/Panel_1-488070_fb/","GroupTopic":"nspanel_1/cmnd/"}}
                                        2025-08-15 14:16:48.905 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO2 message: {"Info2":{"WebServerMode":"Admin","Hostname":"Panel-1","IPAddress":"192.168.178.56","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1"}}
                                        2025-08-15 14:16:48.906 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/INFO2 with {"Info2":{"WebServerMode":"Admin","Hostname":"Panel-1","IPAddress":"192.168.178.56","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1"}}
                                        2025-08-15 14:16:48.916 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/INFO3 message: {"Info3":{"RestartReason":"Software reset CPU","BootCount":85}}
                                        2025-08-15 14:16:48.916 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/INFO3 with {"Info3":{"RestartReason":"Software reset CPU","BootCount":85}}
                                        2025-08-15 14:16:48.926 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/POWER1 message: OFF
                                        2025-08-15 14:16:48.937 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/POWER2 message: OFF
                                        2025-08-15 14:16:48.953 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/RESULT message: {"CustomRecv":"event,startup,58,eu,4.9.3"}
                                        2025-08-15 14:16:48.957 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/STATE message: {"Time":"2025-08-15T14:15:48","Uptime":"0T00:00:10","UptimeSec":10,"Heap":169,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":328,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}
                                        2025-08-15 14:16:48.957 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/STATE with {"Time":"2025-08-15T14:15:48","Uptime":"0T00:00:10","UptimeSec":10,"Heap":169,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":328,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}
                                        2025-08-15 14:16:48.967 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/tele/SENSOR message: {"Time":"2025-08-15T14:15:48","ANALOG":{"Temperature1":4.2},"ESP32":{"Temperature":52.8},"TempUnit":"C"}
                                        2025-08-15 14:16:48.967 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/tele/SENSOR with {"Time":"2025-08-15T14:15:48","ANALOG":{"Temperature1":4.2},"ESP32":{"Temperature":52.8},"TempUnit":"C"}
                                        2025-08-15 14:16:48.977 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS0 message: {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["Panel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0},"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:00:06","StartupUTC":"2025-08-15T12:14:32","Sleep":0,"CfgHolder":4617,"BootCount":83,"BCResetTime":"2025-08-11T14:17:51","SaveCount":164},"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"442/699"},"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]},"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2025,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"},"StatusNET":{"Hostname":"Panel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0},"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"Panel_1-488070","MqttClient":"Panel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4},"StatusTIM":{"UTC":"2025-08-15T12:14:39Z","Local":"2025-08-15T14:14:39","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:43","Sunset":"21:05"},"StatusSNS":{"Time":"2025-08-15T14:14:39","ANALOG":{"Temperature1":4.1},"ESP32":{"Temperature":52.8},"TempUnit":"C"},"StatusSTS":{"Time":"2025-08-15T14:14:39","Uptime":"0T00:00:07","UptimeSec":7,"Heap":162,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":313,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-42,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:48.989 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS5 message: {"StatusNET":{"Hostname":"NSPanel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0}}
                                        2025-08-15 14:16:48.990 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS5 with {"StatusNET":{"Hostname":"NSPanel-1","IPAddress":"192.168.178.56","Gateway":"192.168.178.1","Subnetmask":"255.255.255.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"E4:65:B8:48:80:70","IP6Global":"","IP6Local":"fe80::e665:b8ff:fe48:8070%st1","Ethernet":{"Hostname":"","IPAddress":"0.0.0.0","Gateway":"0.0.0.0","Subnetmask":"0.0.0.0","DNSServer1":"192.168.178.2","DNSServer2":"0.0.0.0","Mac":"00:00:00:00:00:00","IP6Global":"","IP6Local":""},"Webserver":2,"HTTP_API":1,"WifiConfig":4,"WifiPower":16.0}}
                                        2025-08-15 14:16:48.999 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS message: {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["NSPanel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0}}
                                        2025-08-15 14:16:48.999 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS with {"Status":{"Module":0,"DeviceName":"NSPanel_1","FriendlyName":["NSPanel_1",""],"Topic":"nspanel_1","ButtonTopic":"0","Power":"00","PowerLock":"00","PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0,"StatusRetain":0}}
                                        2025-08-15 14:16:49.009 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS1 message: {"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:03:09","StartupUTC":"2025-08-14T16:01:05","Sleep":0,"CfgHolder":4617,"BootCount":50,"BCResetTime":"2025-08-11T14:17:51","SaveCount":127}}
                                        2025-08-15 14:16:49.009 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS1 with {"StatusPRM":{"Baudrate":115200,"SerialConfig":"8N1","GroupTopic":"tasmotas","OtaUrl":"http://ota.tasmota.com/tasmota32/release/tasmota32-DE.bin","RestartReason":"Software reset CPU","Uptime":"0T00:03:09","StartupUTC":"2025-08-14T16:01:05","Sleep":0,"CfgHolder":4617,"BootCount":50,"BCResetTime":"2025-08-11T14:17:51","SaveCount":127}}
                                        2025-08-15 14:16:49.026 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS2 message: {"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"450/699"}}
                                        2025-08-15 14:16:49.026 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS2 with {"StatusFWR":{"Version":"15.0.1(release-nspanel)","BuildDateTime":"2025-06-14T10:37:18","Core":"3_1_3","SDK":"5.3.3.250501","CpuFrequency":160,"Hardware":"ESP32-D0WD-V3 v3.1","CR":"450/699"}}
                                        2025-08-15 14:16:49.030 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS3 message: {"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]}}
                                        2025-08-15 14:16:49.030 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS3 with {"StatusLOG":{"SerialLog":2,"WebLog":2,"MqttLog":0,"FileLog":0,"SysLog":0,"LogHost":"","LogPort":514,"SSId":["FRITZ!Box 7490",""],"TelePeriod":300,"Resolution":"558180C0","SetOption":["00008009","2805C80001000600003C5A0A192800000000","00000080","00006000","00004000","00000001"]}}
                                        2025-08-15 14:16:49.039 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS4 message: {"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2013,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"}}
                                        2025-08-15 14:16:49.040 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS4 with {"StatusMEM":{"ProgramSize":2041,"Free":838,"Heap":164,"StackLowMark":3,"PsrMax":2048,"PsrFree":2013,"ProgramFlashSize":4096,"FlashSize":4096,"FlashChipId":"1640C8","FlashFrequency":40,"FlashMode":"DIO","Features":["0809","9F9AD7DF","0015A001","B7F7BFCF","05DA9BC4","E0360DC7","480840D2","20200000","D4BC482D","810A80F1","00000814"],"Drivers":"1,2,!3,!4,!5,7,!8,9,10,11,12,!14,!16,!17,!20,!21,24,26,!27,29,!34,!35,38,50,52,!59,!60,62,!63,!66,!67,!68,!73,!75,82,!86,!87,!88,!91,!121","Sensors":"1,2,3,5,6,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,26,31,34,37,39,40,42,43,45,51,52,55,56,58,59,64,66,67,74,85,92,95,98,103,105,109,127","I2CDriver":"7,8,9,10,11,12,13,14,15,17,18,20,24,29,31,36,41,42,44,46,48,58,62,65,69,76,77,82,89"}}
                                        2025-08-15 14:16:49.051 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS6 message: {"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"NSPanel_1-488070","MqttClient":"NSPanel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4}}
                                        2025-08-15 14:16:49.051 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS6 with {"StatusMQT":{"MqttHost":"192.168.178.4","MqttPort":1886,"MqttClientMask":"NSPanel_1-488070","MqttClient":"NSPanel_1-488070","MqttUser":"iobroker","MqttCount":1,"MqttTLS":0,"MAX_PACKET_SIZE":1200,"KEEPALIVE":30,"SOCKET_TIMEOUT":4}}
                                        2025-08-15 14:16:49.061 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS7 message: {"StatusTIM":{"UTC":"2025-08-14T16:04:15Z","Local":"2025-08-14T18:04:15","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:42","Sunset":"21:07"}}
                                        2025-08-15 14:16:49.062 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS7 with {"StatusTIM":{"UTC":"2025-08-14T16:04:15Z","Local":"2025-08-14T18:04:15","StartDST":"2025-03-30T02:00:00","EndDST":"2025-10-26T03:00:00","Timezone":99,"Sunrise":"06:42","Sunset":"21:07"}}
                                        2025-08-15 14:16:49.071 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:16:49.072 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:16:49.082 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS10 message: {"StatusSNS":{"Time":"2025-08-14T18:04:15","ANALOG":{"Temperature1":3.5},"ESP32":{"Temperature":53.3},"TempUnit":"C"}}
                                        2025-08-15 14:16:49.082 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS10 with {"StatusSNS":{"Time":"2025-08-14T18:04:15","ANALOG":{"Temperature1":3.5},"ESP32":{"Temperature":53.3},"TempUnit":"C"}}
                                        2025-08-15 14:16:49.085 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Incoming message for 1 subproceses. topic: nspanel_1/stat/STATUS11 message: {"StatusSTS":{"Time":"2025-08-14T18:04:15","Uptime":"0T00:03:10","UptimeSec":190,"Heap":161,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":692,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-43,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:49.086 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Receive other message nspanel_1/stat/STATUS11 with {"StatusSTS":{"Time":"2025-08-14T18:04:15","Uptime":"0T00:03:10","UptimeSec":190,"Heap":161,"SleepMode":"Dynamic","Sleep":0,"LoadAvg":692,"MqttCount":1,"Berry":{"HeapUsed":15,"Objects":209},"POWER1":"OFF","POWER2":"OFF","Wifi":{"AP":1,"SSId":"FRITZ!Box 7490","BSSId":"50:E6:36:C2:50:B1","Channel":11,"Mode":"HE20","RSSI":100,"Signal":-43,"LinkCount":1,"Downtime":"0T00:00:03"}}}
                                        2025-08-15 14:16:49.212 - debug: nspanel-lovelace-ui.0 (46153) [controller] Panel E4_65_B8_48_80_70 created
                                        2025-08-15 14:16:49.740 - debug: nspanel-lovelace-ui.0 (46153) [main] Switch page to visible!
                                        2025-08-15 14:16:49.753 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Set screeensaver timeout to 15s.
                                        2025-08-15 14:16:49.853 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1] Set screeensaver timeout to 2s.
                                        2025-08-15 14:16:49.854 - info: nspanel-lovelace-ui.0 (46153) [Panel_1] Panel startup finished!
                                        2025-08-15 14:16:52.071 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:16:52.072 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:16:56.072 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:16:56.072 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:17:01.072 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:17:01.072 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:17:07.073 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:17:07.073 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:17:14.073 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:17:14.073 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:17:22.073 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:17:22.074 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        2025-08-15 14:17:31.073 - debug: nspanel-lovelace-ui.0 (46153) [Panel_1-SendClass] send payload: {"topic":"nspanel_1/cmnd/CustomSend","payload":"pageType~pageStartup","opt":{"retain":true}} to panel.
                                        2025-08-15 14:17:31.074 - debug: nspanel-lovelace-ui.0 (46153) [mqttClient] Publish topic: nspanel_1/cmnd/CustomSend with message: pageType~pageStartup.
                                        
                                        T 1 Reply Last reply Reply Quote 0
                                        • T
                                          ticaki Developer @hm_krause last edited by

                                          @hm_krause
                                          Ich weiß woran es wahrscheinlich liegt, aber ich weiß nicht wieso der tasmota sendet das er offline ist, obwohl ja augenscheinlich online ist... Gib mir mal ein paar Minuten zum Beraten

                                          H 1 Reply Last reply Reply Quote 0
                                          • H
                                            hm_krause @ticaki last edited by

                                            @ticaki
                                            Gerne doch,....und schön Ruhig bei diesem Wetter...👍 😊

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            891
                                            Online

                                            32.0k
                                            Users

                                            80.4k
                                            Topics

                                            1.3m
                                            Posts

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