Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

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

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter NSPanel-lovelace-ui v0.17.x

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    1.8k

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    11
    1
    749

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    1.2k

Test Adapter NSPanel-lovelace-ui v0.17.x

Geplant Angeheftet Gesperrt Verschoben Tester
1.2k Beiträge 32 Kommentatoren 224.1k Aufrufe 36 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • MichaelFM MichaelF

    @ticaki cardThermo2

    T Nicht stören
    T Nicht stören
    ticaki
    schrieb am zuletzt editiert von ticaki
    #1154

    @MichaelF sagte:

    cardThermo2 & popupLight auf us-p

    @armilar hat das popupLight soeben gefixt - wenn du das nicht im adapter als verfügbares update für us-p siehst, adapter neu starten. Dann wird die Liste direkt aktualisiert sonst alle paar Stunden

    armilar macht das tft und könnte das us-p das du zur verfügung stellen wolltest auch gerne entgegen nehmen. Denke bei ihm ist es am sinnvollsten - kann ja die 500km mal hinfahren wenn ichs auch brauche :D

    Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

    Spenden

    ArmilarA 1 Antwort Letzte Antwort
    0
    • T TT-Tom

      @SmartStuffCoyote

      Der Adapter kann auch mit einem externen MQTT verbunden werden, so mache ich das um zwischen Script und Adapter immer wechseln zu können.

      Die cardPower bietet die selben Funktionen wie im Script an. Du gibst die Werte für min und max an, dem entsprechend wird der Speed und die Farbe auf 0-100% skaliert.

      Hier die aktuelle Beschreibung vom Adapter.
      https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki/PagePower#pagepower

      Beim Script musst du extern die Daten(json) zusammenstellen.

      SmartStuffCoyoteS Offline
      SmartStuffCoyoteS Offline
      SmartStuffCoyote
      schrieb am zuletzt editiert von SmartStuffCoyote
      #1155

      @TT-Tom sagte:

      Beim Script musst du extern die Daten(json) zusammenstellen.

      Was ja gar kein Problem ist. Da mache dann sowas:

          const batterie = getState(DP_ENERGIE_BATTERIE).val || 0; // positiv: wird entladen
          let dach = getState(DP_ENERGIE_PV_DACH).val || 0;
          const balkon = getState(DP_BALKON_ONLINE).val ? (_round(getState(DP_ENERGIE_PV_BALKON).val, 0) || 0) : 0;
          const netz = getState(DP_ENERGIE_NETZ).val || 0;
          const acthor = getState(DP_ENERGIE_ACTHOR).val || 0;
      
          if (batterie > 0) { // Batterie wird entladen, von WR-Gesamtleistung abziehen, da der Batteriestrom ja separat angezeigt wird.
            //  dach = dach - batterie;
          }
          const last = dach + batterie + balkon + netz - acthor;
      
          const speedFaktor = 0.015;
          const data = [];
      
          let color = Math.round(last / 300);
          color = Math.max(0, Math.min(10, color));    
          data.push({ id: 0, value: last, unit: "W", icon: "home", iconColor: color });
          color = 10 - Math.round(dach / 900);
          color = Math.max(0, Math.min(10, color));
          data.push({ id: 1, value: dach, unit: "W", icon: "solar-power-variant", iconColor: color, speed: dach * -speedFaktor });
          color = 10 - Math.round(balkon / 600);
          color = Math.max(0, Math.min(10, color));
          data.push({ id: 3, value: balkon, unit: "W", icon: "solar-panel", iconColor: color, speed: balkon * -speedFaktor });
          color = Math.round(((3000 - batterie) / 6000) * 10);
          color = Math.max(0, Math.min(10, color));
          let ladung = Number(getState(DP_BATTERIE_STAND).val);
          data.push({ id: 2, value: batterie, unit: "W", icon: getBatterySymbol(ladung, batterie), iconColor: color, speed: batterie * -speedFaktor });
          color = 5 + Math.round((netz / 3000) * 5);
          color = Math.max(0, Math.min(10, color));
          data.push({ id: 4, value: netz, unit: "W", icon: "transmission-tower", iconColor: color, speed: netz * speedFaktor });
          data.push({ id: 5, value: "", unit: "", icon: "", iconColor: "", speed: "" });
          if (acthor <= 0) {
              color = 10;
          } else if (acthor <= 1000) {
              // 0..1 kW => 10..5
              color = 10 - Math.round(acthor * 5);
          } else if (acthor >= 8000) {
              color = 0;
          } else {
              // 1..8 kW => 5..0
              color = 5 - Math.round((acthor - 1000) / 7000 * 5);
          }
          color = Math.max(0, Math.min(10, color));
          data.push({ id: 6, value: acthor, unit: "W", icon: "heating-coil", iconColor: color, speed: acthor * speedFaktor });
      
          setState(DP_ENERGIEFLUSS_JSON, JSON.stringify(data), false);`
      

      Aber danke! Wenn das mit dem externen MQTT funktioniert - so hab ichs mir dann ja auch gedacht, kann ich den Adapter ja auch nochmal in Ruhe mal ausprobieren.

      1 Antwort Letzte Antwort
      0
      • T Nicht stören
        T Nicht stören
        ticaki
        schrieb am zuletzt editiert von
        #1156

        Der Adapter nimmt halt ne Menge ab und macht vieles leichter. Dafür ist es dann anders - gibt zuviel um zu erklären. Ich hab in meiner konfig gestaffelte bedinungsabhängige Pageitems, Screensaverelemente und Notifications. short press, long press - mehrfach verwendete buttons usw usf.

        Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

        Spenden

        SmartStuffCoyoteS 1 Antwort Letzte Antwort
        1
        • T ticaki

          @MichaelF sagte:

          cardThermo2 & popupLight auf us-p

          @armilar hat das popupLight soeben gefixt - wenn du das nicht im adapter als verfügbares update für us-p siehst, adapter neu starten. Dann wird die Liste direkt aktualisiert sonst alle paar Stunden

          armilar macht das tft und könnte das us-p das du zur verfügung stellen wolltest auch gerne entgegen nehmen. Denke bei ihm ist es am sinnvollsten - kann ja die 500km mal hinfahren wenn ichs auch brauche :D

          ArmilarA Offline
          ArmilarA Offline
          Armilar
          Most Active Forum Testing
          schrieb am zuletzt editiert von
          #1157

          @ticaki sagte:

          kann ja die 500km mal hinfahren wenn ichs auch brauche :D

          Kann auch den Grill anwerfen... 😊

          Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
          https://github.com/joBr99/nspanel-lovelace-ui/wiki

          Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

          1 Antwort Letzte Antwort
          0
          • T ticaki

            Der Adapter nimmt halt ne Menge ab und macht vieles leichter. Dafür ist es dann anders - gibt zuviel um zu erklären. Ich hab in meiner konfig gestaffelte bedinungsabhängige Pageitems, Screensaverelemente und Notifications. short press, long press - mehrfach verwendete buttons usw usf.

            SmartStuffCoyoteS Offline
            SmartStuffCoyoteS Offline
            SmartStuffCoyote
            schrieb am zuletzt editiert von
            #1158

            @ticaki sagte:

            Der Adapter nimmt halt ne Menge ab und macht vieles leichter. Dafür ist es dann anders - gibt zuviel um zu erklären. Ich hab in meiner konfig gestaffelte bedinungsabhängige Pageitems, Screensaverelemente und Notifications. short press, long press - mehrfach verwendete buttons usw usf.

            Flexibilität in anderer Richtung. :) Short/log press würde ich z. B. auch noch brauchen. Bzw. "gedrückt halten", Event bei Druck und Lösen.

            Wenn die Frage noch erlaubt ist - dann will ich hier echt nicht weiter stören (wenn ich Fragen zum Adapter habe, den ich dann später sicher nochmal ausprobiere): was ich mir noch für die Familie wünsche, ist eine Terminliste so wie im Outlook-Seitenbereich des Postfachs:

            4d71815b-9d0c-4496-8138-b1f0b298a6e7-image.jpeg

            Ich habe bisher keine Card gefunden, die dafür ausreichend Platz bietet - wir haben bis zu 5 Termineinträge pro Tag als Familie, die hätte ich schon dann auch alle sofort sichtbar, und wenn der Platz reicht, dann auch noch die nächstfolgenden. Kurz: eine Card, die einfach nur viel Text anzeigen kann, gibt es nicht, oder?

            T 1 Antwort Letzte Antwort
            0
            • SmartStuffCoyoteS SmartStuffCoyote

              @ticaki sagte:

              Der Adapter nimmt halt ne Menge ab und macht vieles leichter. Dafür ist es dann anders - gibt zuviel um zu erklären. Ich hab in meiner konfig gestaffelte bedinungsabhängige Pageitems, Screensaverelemente und Notifications. short press, long press - mehrfach verwendete buttons usw usf.

              Flexibilität in anderer Richtung. :) Short/log press würde ich z. B. auch noch brauchen. Bzw. "gedrückt halten", Event bei Druck und Lösen.

              Wenn die Frage noch erlaubt ist - dann will ich hier echt nicht weiter stören (wenn ich Fragen zum Adapter habe, den ich dann später sicher nochmal ausprobiere): was ich mir noch für die Familie wünsche, ist eine Terminliste so wie im Outlook-Seitenbereich des Postfachs:

              4d71815b-9d0c-4496-8138-b1f0b298a6e7-image.jpeg

              Ich habe bisher keine Card gefunden, die dafür ausreichend Platz bietet - wir haben bis zu 5 Termineinträge pro Tag als Familie, die hätte ich schon dann auch alle sofort sichtbar, und wenn der Platz reicht, dann auch noch die nächstfolgenden. Kurz: eine Card, die einfach nur viel Text anzeigen kann, gibt es nicht, oder?

              T Nicht stören
              T Nicht stören
              ticaki
              schrieb am zuletzt editiert von ticaki
              #1159

              @SmartStuffCoyote sagte:

              Ich habe bisher keine Card gefunden, die dafür ausreichend Platz bietet - wir haben bis zu 5 Termineinträge pro Tag als Familie, die hätte ich schon dann auch alle sofort sichtbar, und wenn der Platz reicht, dann auch noch die nächstfolgenden. Kurz: eine Card, die einfach nur viel Text anzeigen kann, gibt es nicht, oder?

              Skript und Adapter sind die selben leutz - daher solange das nicht andere verwirrt ist das kein Ding :)

              Es gibt im Adapter dafür das cardDav im Admin und im Skript ist da was mit trash - das benutzt im Adapter einen cardSchedule (cardEntries mit 6 reihen) - was es im Skript macht muß @tt-tom sagen ist in beiden fällen sein Baby.

              Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

              Spenden

              1 Antwort Letzte Antwort
              0
              • T Nicht stören
                T Nicht stören
                ticaki
                schrieb am zuletzt editiert von ticaki
                #1160

                0.17.7 (2026-04-24)

                • (ticaki) Added panels.{id}.cmd.activated state to enable/disable a panel; toggle visible in TabMaintain and TabPanelinfo admin UI
                • (ticaki) Fixed textSize/fontSize value 0 being rejected by the admin
                • (ticaki) Fixed textSize/fontSize ignored in some cases

                @michaelf
                fontSize sollte auf der cardThermo2 jetzt gehen.

                Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                Spenden

                T 1 Antwort Letzte Antwort
                1
                • T ticaki

                  0.17.7 (2026-04-24)

                  • (ticaki) Added panels.{id}.cmd.activated state to enable/disable a panel; toggle visible in TabMaintain and TabPanelinfo admin UI
                  • (ticaki) Fixed textSize/fontSize value 0 being rejected by the admin
                  • (ticaki) Fixed textSize/fontSize ignored in some cases

                  @michaelf
                  fontSize sollte auf der cardThermo2 jetzt gehen.

                  T Offline
                  T Offline
                  TT-Tom
                  schrieb am zuletzt editiert von
                  #1161

                  @ticaki
                  @michaelf
                  Es gibt jetzt auch eine neue TFT Version für US-P Da ist das popuplight gefixt

                  Gruß Tom
                  https://github.com/tt-tom17
                  Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                  NSPanel Script Wiki
                  https://github.com/joBr99/nspanel-lovelace-ui/wiki

                  NSPanel Adapter Wiki
                  https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                  1 Antwort Letzte Antwort
                  1
                  • T TT-Tom

                    @SmartStuffCoyote

                    Der Adapter kann auch mit einem externen MQTT verbunden werden, so mache ich das um zwischen Script und Adapter immer wechseln zu können.

                    Die cardPower bietet die selben Funktionen wie im Script an. Du gibst die Werte für min und max an, dem entsprechend wird der Speed und die Farbe auf 0-100% skaliert.

                    Hier die aktuelle Beschreibung vom Adapter.
                    https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki/PagePower#pagepower

                    Beim Script musst du extern die Daten(json) zusammenstellen.

                    SmartStuffCoyoteS Offline
                    SmartStuffCoyoteS Offline
                    SmartStuffCoyote
                    schrieb am zuletzt editiert von
                    #1162

                    @TT-Tom sagte:

                    Der Adapter kann auch mit einem externen MQTT verbunden werden, so mache ich das um zwischen Script und Adapter immer wechseln zu können.

                    Ich muss hier nochmal drauf zurückkommen. Wie genau machst du das? Ich hab den mqtt-Adapter auf Port 1886. Den nutze ich (ohne TLS) für das Skript. Wenn ich TLS einschalte, fährt das Skript gegen die Wand - gut, dann könenn die sich nicht gegenseitig beharken.

                    Ich kann dann die MQTT-Infos im lovelace-nspanel-Adapter eintragen, das nützt aber erstmal nichts. Muss ich wirklich auf "Nspanel-Initialisierung" klicken? Viel ist ja letztes Mal nicht kaputtgegangen, außer meinen Nerven, deswegen zögere ich grad. Braucht der adapter das nur, um das Panel kennenzulernen, oder bügelt er gleich wieder seine Einstellungen drauf?

                    1 Antwort Letzte Antwort
                    0
                    • T Nicht stören
                      T Nicht stören
                      ticaki
                      schrieb am zuletzt editiert von ticaki
                      #1163

                      Wenn du einen externen MQTT-Server im Adapter einträgst, geht das ohne TLS - TLS geht vom broker aus und bei einem externen MQTT ist der adapter nicht mehr der broker.

                      Und das ist auch kein Hexenwerk vom Adapter los zu kommen - ein reset 4 reicht.

                      Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                      Spenden

                      1 Antwort Letzte Antwort
                      1
                      • SmartStuffCoyoteS Offline
                        SmartStuffCoyoteS Offline
                        SmartStuffCoyote
                        schrieb am zuletzt editiert von
                        #1164

                        Und noch etwas ist mir aufgefallen: egal, was ich bei der Frage zum Tasmota-Firmware-Upgrade drücke, ja, nein oder X - es wird upgedatet. Hat das schonmal jemand bemerkt?

                        1 Antwort Letzte Antwort
                        0
                        • T Nicht stören
                          T Nicht stören
                          ticaki
                          schrieb am zuletzt editiert von
                          #1165

                          falscher topic :D im Adapter gibts die Frage nicht - mir ist es nicht aufgefallen. @armilar ?

                          Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                          Spenden

                          1 Antwort Letzte Antwort
                          0
                          • T Nicht stören
                            T Nicht stören
                            ticaki
                            schrieb am zuletzt editiert von
                            #1166

                            0.17.8 (2026-04-25)

                            • (ticaki) fixed: Cannot read properties of undefined (reading 'trim')

                            Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                            Spenden

                            1 Antwort Letzte Antwort
                            0
                            • M Offline
                              M Offline
                              m.nestler
                              schrieb am zuletzt editiert von m.nestler
                              #1167

                              Hallo habe ein Probem bei Installation des Adapters? werde nicht schlau aus dem log

                              $ iobroker add nspanel-lovelace-ui 0 --host debian10iob --debug
                              
                              NPM version: 10.9.7
                              
                              Installing iobroker.nspanel-lovelace-ui@0.17.8... (System call)
                              
                              > classic-level@3.0.0 install> node-gyp-build
                              
                              gyp info it worked if it ends with ok
                              
                              gyp info using node@22.22.2 | linux | x64
                              
                              (node:31326) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)
                              
                              gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                              
                              (node:31326) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
                              
                              gyp ERR! UNCAUGHT EXCEPTION
                              
                              gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                              
                              npm error code 7
                              
                              npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T18_54_38_633Z-debug-0.log
                              
                              gyp info it worked if it ends with okgyp info using node-gyp@7.1.2gyp info using node@22.22.2 | linux | x64(node:31326) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"(node:31326) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.gyp ERR! UNCAUGHT EXCEPTION gyp ERR! stack TypeError: Cannot assign to read only property 'cflags' of object '#<Object>'gyp ERR! stack at createConfigFile (/opt/iobroker/node_modules/node-gyp/lib/configure.js:117:21)gyp ERR! stack at /opt/iobroker/node_modules/node-gyp/lib/configure.js:84:9gyp ERR! stack at FSReqCallback.oncomplete (node:fs:186:23)gyp ERR! System Linux 6.12.74+deb13+1-amd64gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"gyp ERR! cwd /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelgyp ERR! node -v v22.22.2gyp ERR! node-gyp -v v7.1.2gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.npm error code 7npm error path /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelnpm error command failednpm error command sh -c node-gyp-buildnpm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T18_54_38_633Z-debug-0.log
                              
                              host.debian10iob Cannot install iobroker.nspanel-lovelace-ui@0.17.8: 7
                              
                              ERROR: Process exited with code 25
                              

                              hat Vielleicht wer ne Ahnung warum install scheitert?
                              Danke im voraus
                              Ps Google und forensuche hat keine diesbezüglichen treffer ergeben

                              Thomas BraunT 2 Antworten Letzte Antwort
                              0
                              • M m.nestler

                                Hallo habe ein Probem bei Installation des Adapters? werde nicht schlau aus dem log

                                $ iobroker add nspanel-lovelace-ui 0 --host debian10iob --debug
                                
                                NPM version: 10.9.7
                                
                                Installing iobroker.nspanel-lovelace-ui@0.17.8... (System call)
                                
                                > classic-level@3.0.0 install> node-gyp-build
                                
                                gyp info it worked if it ends with ok
                                
                                gyp info using node@22.22.2 | linux | x64
                                
                                (node:31326) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)
                                
                                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                                
                                (node:31326) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
                                
                                gyp ERR! UNCAUGHT EXCEPTION
                                
                                gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                                
                                npm error code 7
                                
                                npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T18_54_38_633Z-debug-0.log
                                
                                gyp info it worked if it ends with okgyp info using node-gyp@7.1.2gyp info using node@22.22.2 | linux | x64(node:31326) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"(node:31326) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.gyp ERR! UNCAUGHT EXCEPTION gyp ERR! stack TypeError: Cannot assign to read only property 'cflags' of object '#<Object>'gyp ERR! stack at createConfigFile (/opt/iobroker/node_modules/node-gyp/lib/configure.js:117:21)gyp ERR! stack at /opt/iobroker/node_modules/node-gyp/lib/configure.js:84:9gyp ERR! stack at FSReqCallback.oncomplete (node:fs:186:23)gyp ERR! System Linux 6.12.74+deb13+1-amd64gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"gyp ERR! cwd /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelgyp ERR! node -v v22.22.2gyp ERR! node-gyp -v v7.1.2gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.npm error code 7npm error path /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelnpm error command failednpm error command sh -c node-gyp-buildnpm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T18_54_38_633Z-debug-0.log
                                
                                host.debian10iob Cannot install iobroker.nspanel-lovelace-ui@0.17.8: 7
                                
                                ERROR: Process exited with code 25
                                

                                hat Vielleicht wer ne Ahnung warum install scheitert?
                                Danke im voraus
                                Ps Google und forensuche hat keine diesbezüglichen treffer ergeben

                                Thomas BraunT Online
                                Thomas BraunT Online
                                Thomas Braun
                                Most Active
                                schrieb am zuletzt editiert von
                                #1168

                                @m.nestler

                                Konkreter geht es nicht?
                                Welches Problem mit welchen Meldungen aus dem Log?

                                Linux-Werkzeugkasten:
                                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                NodeJS Fixer Skript:
                                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                M 1 Antwort Letzte Antwort
                                0
                                • Thomas BraunT Thomas Braun

                                  @m.nestler

                                  Konkreter geht es nicht?
                                  Welches Problem mit welchen Meldungen aus dem Log?

                                  M Offline
                                  M Offline
                                  m.nestler
                                  schrieb am zuletzt editiert von
                                  #1169

                                  @Thomas-Braun sorry war noch beim editieren kam am Enter an jetzt infos drinne
                                  verzeihung

                                  1 Antwort Letzte Antwort
                                  0
                                  • M m.nestler

                                    Hallo habe ein Probem bei Installation des Adapters? werde nicht schlau aus dem log

                                    $ iobroker add nspanel-lovelace-ui 0 --host debian10iob --debug
                                    
                                    NPM version: 10.9.7
                                    
                                    Installing iobroker.nspanel-lovelace-ui@0.17.8... (System call)
                                    
                                    > classic-level@3.0.0 install> node-gyp-build
                                    
                                    gyp info it worked if it ends with ok
                                    
                                    gyp info using node@22.22.2 | linux | x64
                                    
                                    (node:31326) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)
                                    
                                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                                    
                                    (node:31326) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
                                    
                                    gyp ERR! UNCAUGHT EXCEPTION
                                    
                                    gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                                    
                                    npm error code 7
                                    
                                    npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T18_54_38_633Z-debug-0.log
                                    
                                    gyp info it worked if it ends with okgyp info using node-gyp@7.1.2gyp info using node@22.22.2 | linux | x64(node:31326) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"(node:31326) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.gyp ERR! UNCAUGHT EXCEPTION gyp ERR! stack TypeError: Cannot assign to read only property 'cflags' of object '#<Object>'gyp ERR! stack at createConfigFile (/opt/iobroker/node_modules/node-gyp/lib/configure.js:117:21)gyp ERR! stack at /opt/iobroker/node_modules/node-gyp/lib/configure.js:84:9gyp ERR! stack at FSReqCallback.oncomplete (node:fs:186:23)gyp ERR! System Linux 6.12.74+deb13+1-amd64gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"gyp ERR! cwd /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelgyp ERR! node -v v22.22.2gyp ERR! node-gyp -v v7.1.2gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.npm error code 7npm error path /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelnpm error command failednpm error command sh -c node-gyp-buildnpm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T18_54_38_633Z-debug-0.log
                                    
                                    host.debian10iob Cannot install iobroker.nspanel-lovelace-ui@0.17.8: 7
                                    
                                    ERROR: Process exited with code 25
                                    

                                    hat Vielleicht wer ne Ahnung warum install scheitert?
                                    Danke im voraus
                                    Ps Google und forensuche hat keine diesbezüglichen treffer ergeben

                                    Thomas BraunT Online
                                    Thomas BraunT Online
                                    Thomas Braun
                                    Most Active
                                    schrieb am zuletzt editiert von
                                    #1170

                                    @m.nestler sagte:

                                    Ps Google und forensuche hat keine diesbezüglichen treffer ergeben

                                    Die Suchfunktion spuckt

                                    https://forum.iobroker.net/topic/84337/deprecation-warning-util._extend/11?_=1777316843878

                                    aus.

                                    Linux-Werkzeugkasten:
                                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                    NodeJS Fixer Skript:
                                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                    M 1 Antwort Letzte Antwort
                                    0
                                    • Thomas BraunT Thomas Braun

                                      @m.nestler sagte:

                                      Ps Google und forensuche hat keine diesbezüglichen treffer ergeben

                                      Die Suchfunktion spuckt

                                      https://forum.iobroker.net/topic/84337/deprecation-warning-util._extend/11?_=1777316843878

                                      aus.

                                      M Offline
                                      M Offline
                                      m.nestler
                                      schrieb am zuletzt editiert von
                                      #1171

                                      @Thomas-Braun meintest Du

                                      sudo apt update 
                                      sudo apt install python3-setuptools
                                      

                                      ??
                                      dies hat leider wiederselbigen fehler ausgeworfen

                                      Thomas BraunT 1 Antwort Letzte Antwort
                                      0
                                      • M m.nestler

                                        @Thomas-Braun meintest Du

                                        sudo apt update 
                                        sudo apt install python3-setuptools
                                        

                                        ??
                                        dies hat leider wiederselbigen fehler ausgeworfen

                                        Thomas BraunT Online
                                        Thomas BraunT Online
                                        Thomas Braun
                                        Most Active
                                        schrieb am zuletzt editiert von
                                        #1172

                                        @m.nestler

                                        Das kann eigentlich nicht sein. Vielleicht andere/ähnliche Fehler.

                                        Linux-Werkzeugkasten:
                                        https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                        NodeJS Fixer Skript:
                                        https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                        iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                        M 1 Antwort Letzte Antwort
                                        0
                                        • Thomas BraunT Thomas Braun

                                          @m.nestler

                                          Das kann eigentlich nicht sein. Vielleicht andere/ähnliche Fehler.

                                          M Offline
                                          M Offline
                                          m.nestler
                                          schrieb am zuletzt editiert von
                                          #1173

                                          @Thomas-Braun dies steht im Log

                                          ERROR: Process exited with code 25
                                          Weniger Protokolle
                                          Detailliert
                                          
                                          $ iobroker add nspanel-lovelace-ui auto --host debian10iob --debug
                                          
                                          Installing iobroker.nspanel-lovelace-ui@0.17.8... (System call)
                                          
                                          > node-gyp-build
                                          
                                          gyp info it worked if it ends with ok
                                          
                                          gyp info using node@22.22.2 | linux | x64
                                          
                                          (node:301944) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)
                                          
                                          gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                                          
                                          (node:301944) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
                                          
                                          gyp ERR! stack TypeError: Cannot assign to read only property 'cflags' of object '#<Object>'gyp ERR! stack at createConfigFile (/opt/iobroker/node_modules/node-gyp/lib/configure.js:117:21)
                                          
                                          gyp ERR! System Linux 6.12.74+deb13+1-amd64
                                          
                                          gyp ERR! node-gyp -v v7.1.2gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                                          
                                          npm error path /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelnpm error command failednpm error command sh -c node-gyp-build
                                          
                                          npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T19_18_01_594Z-debug-0.log
                                          
                                          gyp info it worked if it ends with okgyp info using node-gyp@7.1.2gyp info using node@22.22.2 | linux | x64(node:301944) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.(Use `node --trace-deprecation ...` to show where the warning was created)gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"(node:301944) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.gyp ERR! UNCAUGHT EXCEPTION gyp ERR! stack TypeError: Cannot assign to read only property 'cflags' of object '#<Object>'gyp ERR! stack at createConfigFile (/opt/iobroker/node_modules/node-gyp/lib/configure.js:117:21)gyp ERR! stack at /opt/iobroker/node_modules/node-gyp/lib/configure.js:84:9gyp ERR! stack at FSReqCallback.oncomplete (node:fs:186:23)gyp ERR! System Linux 6.12.74+deb13+1-amd64gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"gyp ERR! cwd /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelgyp ERR! node -v v22.22.2gyp ERR! node-gyp -v v7.1.2gyp ERR! Node-gyp failed to build your package.gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.npm error code 7npm error path /opt/iobroker/node_modules/iobroker.nspanel-lovelace-ui/node_modules/classic-levelnpm error command failednpm error command sh -c node-gyp-buildnpm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2026-04-27T19_18_01_594Z-debug-0.log
                                          
                                          host.debian10iob Cannot install iobroker.nspanel-lovelace-ui@0.17.8: 7
                                          
                                          ERROR: Process exited with code 25
                                          
                                          
                                          

                                          Iobroker läuft bei mir unter aktuellen Proxmox alles auf letztstand

                                          Thomas BraunT 1 Antwort Letzte Antwort
                                          0

                                          Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                                          Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                                          Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                                          Registrieren Anmelden
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          290

                                          Online

                                          32.9k

                                          Benutzer

                                          83.0k

                                          Themen

                                          1.3m

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

                                          • Du hast noch kein Konto? Registrieren

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