Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Snigga

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 27
    • Best 2
    • Groups 1

    Snigga

    @Snigga

    3
    Reputation
    9
    Profile views
    27
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Snigga Follow
    Starter

    Best posts made by Snigga

    • RE: [Neuer Adapter] Homepilot20

      @homecineplexx Danke funktioniert alles und deine Antwortzeiten sind extrem positiv. Bitte mach auch weiter so.

      posted in Tester
      S
      Snigga
    • RE: [Neuer Adapter] Senec Home Adapter

      Hallo ich habe mal eine Frage. Kämpfe mich gerade mit der Senec APP Api rum. Gibt es hier zum Beispiel auch eine Möglichkeit die Daten für einen bestimmten Zeitraum abzufragen zum Beispiel 3.10.2022 bis 31.12.2022.

      Hintergrund ist der. Ich möchte gerne das aktuelle Jahr mit dem letzten Jahr vergleichen, ob der Strombedarf gesunken oder gestiegen ist. Da ich mich aber unter dem Jahr befinde kann ich die Werte nicht vergleichen, da ja die Daten vom heute bis Jahresende ja fehlen. Für den Vergleich würde ich gerne die Werte vom letzten Jahr hernehmen.

      Also eine Art Prognose erstellen.

      Gibt es hier einen Vorschlag wie man das umsetzen kann.

      Danke.

      posted in Entwicklung
      S
      Snigga

    Latest posts made by Snigga

    • RE: SONOFF NSPanel mit Lovelace UI

      Hallo Zusammen ich habe mal eine Frage bezüglich den Screensaver. Ich möchte gerne folgendes darstellen. Ich möchte gerne meinen Ladestand visualisieren in dem das Batteriesymbol sich ändert aufgrund
      -Ladestand,
      -ist Auto an der Wallbox angeschlossen und
      -wird das Auto gerade geladen.

      Des Weiteren soll noch die Farbe am Batterie Level sich orientieren.

      Leider funktioniert es nicht so wie ich es will. Entweder funktioniert die Farbe nicht. Oder das Icon wird nicht gewechselt.

      Wie schaffe ich es, dass dieser Punkt auf 2 Datenpunkte reagiert. (Ladestand, Status).

      // indicatorScreensaverEntity 5 (only Advanced Screensaver)
                  
                  {
                      ScreensaverEntity: 'vw-connect.0.VSSZZZK12SP019939.charging.status.battery.currentSOC_pct',
                      ScreensaverEntityFactor: 1,
                      ScreensaverEntityDecimalPlaces: 1,
                      ScreensaverEntityIconOn: Icon_Batterie(),
                      ScreensaverEntityIconOff: Icon_Batterie(),
                      ScreensaverEntityText: 'Auto Batterie',
                      ScreensaverEntityUnitText: '%',
                      ScreensaverEntityIconColor: {'val_min': 0, 'val_max': 100} //getBatteryColor(getState('vw-connect.0.VSSZZZK12SP019939.charging.status.battery.currentSOC_pct').val)
                  }
      
      function Icon_Batterie() {
          const verbunden = getState('mqtt.0.evcc.loadpoints.1.connected').val;
          const laden = getState('vw-connect.0.VSSZZZK12SP019939.status.services.charging.active').val;
          const soc = getState('vw-connect.0.VSSZZZK12SP019939.charging.status.battery.currentSOC_pct').val;
      
          let iconPrefix = 'battery-';
          if (laden && verbunden) {
              iconPrefix = 'battery-charging-';
          } else if (verbunden) {
              iconPrefix = 'battery-charging-wireless-';
          }
      
          const iconLevel = soc === 0 ? 10 : Math.ceil(soc / 10) * 10;
          const fullIcon = iconPrefix + iconLevel;
      
          if (fullIcon === 'battery-100') return 'battery';
          if (fullIcon === 'battery-charging-wireless-100') return 'battery-charging-wireless';
          //console.warn(fullIcon)
          return fullIcon;
      }
      function getBatteryColor(percent) {
          console.warn(percent)
          const level = 10 - Math.round(percent / 10);
          console.warn(level)
           switch (level) {
              case 0: return colorScale0;
              case 1: return colorScale1;
              case 2: return colorScale2;
              case 3: return colorScale3;
              case 4: return colorScale4;
              case 5: return colorScale5;
              case 6: return colorScale6;
              case 7: return colorScale7;
              case 8: return colorScale8;
              case 9: return colorScale9;
              case 10: return colorScale10;
          }
      
      
      posted in Hardware
      S
      Snigga
    • RE: Google Home/Assistant ioBroker einrichten/nutzen

      Hallo zusammen,

      ich versuche, meine Wallbox in den ioBroker IoT-Adapter zu integrieren und dabei die folgenden Traits und Attribute korrekt abzubilden. Mein JSON sieht aktuell so aus:

      {
          "id": "XY",
          "type": "action.devices.types.CHARGER",
          "traits": [
              "action.devices.traits.EnergyStorage",
              "action.devices.traits.Modes"
          ],
          "name": {
              "name": "Wallbox",
              "defaultNames": [],
              "nicknames": []
          },
          "willReportState": true,
          "roomHint": "Firebase",
          "attributes": {
              "queryOnlyEnergyStorage": false,
              "energyStorageDistanceUnitForUX": "KILOMETERS",
              "isRechargeable": true,
              "availableModes": [
                  {
                      "name": "Lademodus",
                      "name_values": [
                          {
                              "lang": "en",
                              "name_synonym": "Lademodus"
                          }
                      ],
                      "ordered": false,
                      "settings": [
                          {
                              "setting_name": "Aus",
                              "setting_values": [
                                  {
                                      "lang": "en",
                                      "setting_synonym": "Aus"
                                  }
                              ]
                          },
                          {
                              "setting_name": "PV",
                              "setting_values": [
                                  {
                                      "lang": "en",
                                      "setting_synonym": "PV"
                                  }
                              ]
                          },
                          {
                              "setting_name": "Min+PV",
                              "setting_values": [
                                  {
                                      "lang": "en",
                                      "setting_synonym": "Min+PV"
                                  }
                              ]
                          },
                          {
                              "setting_name": "Schnell",
                              "setting_values": [
                                  {
                                      "lang": "en",
                                      "setting_synonym": "Schnell"
                                  }
                              ]
                          }
                      ]
                  }
              ],
              "commandOnlyModes": false,
              "queryOnlyModes": false
          },
          "states": {
              "online": true,
              "descriptiveCapacityRemaining": "HIGH",
              "isCharging": false,
              "isPluggedIn": false,
              "capacityRemaining": [
                  {
                      "rawValue": 90,
                      "unit": "PERCENTAGE"
                  }
              ],
              "currentModeSettings": {
                  "Lademodus": "Aus"
              }
          }
      }
      

      Ich möchte, dass ich über den IoT-Adapter die Wallbox steuern und den aktuellen Ladestatus abfragen kann. Besonders wichtig ist mir die Möglichkeit, den "Lademodus" über ioBroker zu setzen.

      Hat jemand Erfahrung damit oder kann mir einen Tipp geben, wie ich das Mapping korrekt umsetze? Gibt es vielleicht eine Vorlage für eine ähnliche Integration?

      Danke schon mal für eure Hilfe! 😊

      posted in ioBroker Allgemein
      S
      Snigga
    • RE: [Neuer Adapter] Homepilot20

      @homecineplexx Danke funktioniert alles und deine Antwortzeiten sind extrem positiv. Bitte mach auch weiter so.

      posted in Tester
      S
      Snigga
    • RE: Test Adapter Lgtv v2.3.x
      pi@iobroker:/opt/iobroker/node_modules $ npm install node-gyp
      
      

      Jetzt kann ich den Adapter wieder installieren

      posted in Tester
      S
      Snigga
    • RE: Test Adapter Lgtv v2.3.x

      @thomas-braun

      pi@iobroker:~ $ dpkg -S /usr/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py
      nodejs: /usr/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py
      pi@iobroker:~ $ apt policy node-gyp
      node-gyp:
        Installiert:           (keine)
        Installationskandidat: 9.3.0-2
        Versionstabelle:
           9.3.0-2 500
              500 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf Packages
      
      
      posted in Tester
      S
      Snigga
    • RE: Test Adapter Lgtv v2.3.x

      @thomas-braun ich hab nichts installiert raspi os image geflasht und iobroker installiert, danach backupit und das wars

      posted in Tester
      S
      Snigga
    • RE: Test Adapter Lgtv v2.3.x

      @thomas-braun sagte in Test Adapter Lgtv v2.0.x:

      sudo rm /usr/lib/python3.11/EXTERNALLY-MANAGED

      erledigt jedoch problem ist weiterhin da

      $ iobroker add lgtv auto --host iobroker --debug
      
      NPM version: 9.8.1
      
      Installing iobroker.lgtv@2.1.2... (System call)
      
      npm ERR! code 1npm ERR! path /opt/iobroker/node_modules/bufferutilnpm ERR! command failednpm ERR! command sh -c node-gyp-buildnpm ERR! gyp info it worked if it ends with oknpm ERR! gyp info using node-gyp@7.1.2npm ERR! gyp info using node@18.18.2 | linux | armnpm ERR! gyp info find Python using Python version 3.11.2 found at "/usr/bin/python3"npm ERR! (node:3508) [DEP0150] DeprecationWarning: Setting process.config is deprecated. In the future the property will be read-only.npm ERR! (Use `node --trace-deprecation ...` to show where the warning was created)npm ERR! gyp info spawn /usr/bin/python3npm ERR! gyp info spawn args [npm ERR! gyp info spawn args '/opt/iobroker/node_modules/node-gyp/gyp/gyp_main.py',npm ERR! gyp info spawn args 'binding.gyp',npm ERR! gyp info spawn args '-f',npm ERR! gyp info spawn args 'make',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/opt/iobroker/node_modules/bufferutil/build/config.gypi',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/opt/iobroker/node_modules/node-gyp/addon.gypi',npm ERR! gyp info spawn args '-I',npm ERR! gyp info spawn args '/home/iobroker/.cache/node-gyp/18.18.2/include/node/common.gypi',npm ERR! gyp info spawn args '-Dlibrary=shared_library',npm ERR! gyp info spawn args '-Dvisibility=default',npm ERR! gyp info spawn args '-Dnode_root_dir=/home/iobroker/.cache/node-gyp/18.18.2',npm ERR! gyp info spawn args '-Dnode_gyp_dir=/opt/iobroker/node_modules/node-gyp',npm ERR! gyp info spawn args '-Dnode_lib_file=/home/iobroker/.cache/node-gyp/18.18.2/<(target_arch)/node.lib',npm ERR! gyp info spawn args '-Dmodule_root_dir=/opt/iobroker/node_modules/bufferutil',npm ERR! gyp info spawn args '-Dnode_engine=v8',npm ERR! gyp info spawn args '--depth=.',npm ERR! gyp info spawn args '--no-parallel',npm ERR! gyp info spawn args '--generator-output',npm ERR! gyp info spawn args 'build',npm ERR! gyp info spawn args '-Goutput_dir=.'npm ERR! gyp info spawn args ]npm ERR! Traceback (most recent call last):npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/gyp_main.py", line 51, in <module>npm ERR! sys.exit(gyp.script_main())npm ERR! ^^^^^^^^^^^^^^^^^npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 670, in script_mainnpm ERR! return main(sys.argv[1:])npm ERR! ^^^^^^^^^^^^^^^^^^npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 662, in mainnpm ERR! return gyp_main(args)npm ERR! ^^^^^^^^^^^^^^npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 629, in gyp_mainnpm ERR! [generator, flat_list, targets, data] = Load(npm ERR! ^^^^^npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 150, in Loadnpm ERR! result = gyp.input.Load(npm ERR! ^^^^^^^^^^^^^^^npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 3021, in Loadnpm ERR! LoadTargetBuildFile(npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 411, in LoadTargetBuildFilenpm ERR! build_file_data = LoadOneBuildFile(npm ERR! ^^^^^^^^^^^^^^^^^npm ERR! File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 239, in LoadOneBuildFilenpm ERR! build_file_contents = open(build_file_path, "rU").read()npm ERR! ^^^^^^^^^^^^^^^^^^^^^^^^^^^npm ERR! ValueError: invalid mode: 'rU' while trying to load binding.gypnpm ERR! gyp ERR! configure error npm ERR! gyp ERR! stack Error: `gyp` failed with exit code: 1npm ERR! gyp ERR! stack at ChildProcess.onCpExit (/opt/iobroker/node_modules/node-gyp/lib/configure.js:351:16)npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:517:28)npm ERR! gyp ERR! stack at ChildProcess._handle.onexit (node:internal/child_process:292:12)npm ERR! gyp ERR! System Linux 6.1.0-rpi4-rpi-v8npm ERR! gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"npm ERR! gyp ERR! cwd /opt/iobroker/node_modules/bufferutilnpm ERR! gyp ERR! node -v v18.18.2npm ERR! gyp ERR! node-gyp -v v7.1.2npm ERR! gyp ERR! not oknpm ERR! A complete log of this run can be found in: /home/iobroker/.npm/_logs/2023-11-03T17_45_47_557Z-debug-0.loghost.iobroker Cannot install iobroker.lgtv@2.1.2: 1
      
      ERROR: Process exited with code 25
      
      posted in Tester
      S
      Snigga
    • RE: Test Adapter Lgtv v2.3.x

      @thomas-braun sagte in Test Adapter Lgtv v2.0.x:

      /usr/lib/python3.11/EXTERNALLY-MANAGED

      existiert

      pi@iobroker:/usr/lib/python3.11 $ dir
      abc.py                           enum.py                  os.py             stat.py
      aifc.py                          EXTERNALLY-MANAGED       _osx_support.py   stringprep.py
      _aix_support.py                  EXTERNALLY-MANAGED.orig  pathlib.py        string.py
      antigravity.py                   filecmp.py               pdb.py            _strptime.py
      argparse.py                      fileinput.py             __phello__        struct.py
      ast.py                           fnmatch.py               pickle.py         subprocess.py
      asynchat.py                      fractions.py             pickletools.py    sunau.py
      asyncio                          ftplib.py                pipes.py          symtable.py
      asyncore.py                      functools.py             pkgutil.py        _sysconfigdata__arm-linux-gnueabihf.py
      base64.py                        __future__.py            platform.py       _sysconfigdata__linux_arm-linux-gnueabihf.py
      bdb.py                           genericpath.py           plistlib.py       sysconfig.py
      bisect.py                        getopt.py                poplib.py         tabnanny.py
      _bootsubprocess.py               getpass.py               posixpath.py      tarfile.py
      bz2.py                           gettext.py               pprint.py         telnetlib.py
      calendar.py                      glob.py                  profile.py        tempfile.py
      cgi.py                           graphlib.py              pstats.py         test
      cgitb.py                         gzip.py                  pty.py            textwrap.py
      chunk.py                         hashlib.py               _py_abc.py        this.py
      cmd.py                           heapq.py                 __pycache__       _threading_local.py
      codecs.py                        __hello__.py             pyclbr.py         threading.py
      codeop.py                        hmac.py                  py_compile.py     timeit.py
      code.py                          html                     _pydecimal.py     tkinter
      collections                      http                     pydoc_data        tokenize.py
      _collections_abc.py              imaplib.py               pydoc.py          token.py
      colorsys.py                      imghdr.py                _pyio.py          tomllib
      _compat_pickle.py                importlib                queue.py          traceback.py
      compileall.py                    imp.py                   quopri.py         tracemalloc.py
      _compression.py                  inspect.py               random.py         trace.py
      concurrent                       io.py                    re                tty.py
      config-3.11-arm-linux-gnueabihf  ipaddress.py             reprlib.py        turtle.py
      configparser.py                  json                     rlcompleter.py    types.py
      contextlib.py                    keyword.py               runpy.py          typing.py
      contextvars.py                   lib2to3                  sched.py          unittest
      copy.py                          lib-dynload              secrets.py        urllib
      copyreg.py                       LICENSE.txt              selectors.py      uuid.py
      cProfile.py                      linecache.py             shelve.py         uu.py
      crypt.py                         locale.py                shlex.py          venv
      csv.py                           logging                  shutil.py         warnings.py
      ctypes                           lzma.py                  signal.py         wave.py
      curses                           mailbox.py               _sitebuiltins.py  weakref.py
      dataclasses.py                   mailcap.py               sitecustomize.py  _weakrefset.py
      datetime.py                      _markupbase.py           site.py           webbrowser.py
      dbm                              mimetypes.py             smtpd.py          wsgiref
      decimal.py                       modulefinder.py          smtplib.py        xdrlib.py
      difflib.py                       multiprocessing          sndhdr.py         xml
      dis.py                           netrc.py                 socket.py         xmlrpc
      dist-packages                    nntplib.py               socketserver.py   zipapp.py
      distutils                        ntpath.py                sqlite3           zipfile.py
      _distutils_system_mod.py         nturl2path.py            sre_compile.py    zipimport.py
      doctest.py                       numbers.py               sre_constants.py  zoneinfo
      email                            opcode.py                sre_parse.py
      encodings                        operator.py              ssl.py
      ensurepip                        optparse.py              statistics.py
      
      
      posted in Tester
      S
      Snigga
    • RE: Sprachsteuerung Google Home funktioniert nur für 1 Person

      @marlan99 hast du deine Frau in der Google Home App zu deinem Zuhause hinzugefügt per Google Account? Es ist nämlich so das die Stimme im jeweiligen Account gespeichert wird und die Google Home App diese dann zusammenführt und den Geräten die dann in diesem Zuhause sind zur Verfügung gestellt werden.

      posted in Cloud Dienste
      S
      Snigga
    • RE: Test Adapter Lgtv v2.3.x

      @thomas-braun Erledigt. Jetzt habe ich aber fehler im iob diag

      ======== Start marking the full check here =========

      Skript v.2023-10-10
      
      *** BASE SYSTEM ***
       Static hostname: iobroker
             Icon name: computer
      Operating System: Raspbian GNU/Linux 12 (bookworm)
                Kernel: Linux 6.1.0-rpi4-rpi-v8
          Architecture: arm64
      
      Model           : Raspberry Pi 4 Model B Rev 1.2
      Docker          : false
      Virtualization  : none
      Kernel          : aarch64
      Userland        : armhf
      
      Systemuptime and Load:
       18:20:04 up 10 min,  2 users,  load average: 1.85, 2.45, 1.57
      CPU threads: 4
      
      
      *** RASPBERRY THROTTLING ***
      Current issues:
      No throttling issues detected.
      
      Previously detected issues:
      No throttling issues detected.
      
      *** Time and Time Zones ***
                     Local time: Fri 2023-11-03 18:20:04 CET
                 Universal time: Fri 2023-11-03 17:20:04 UTC
                       RTC time: n/a
                      Time zone: Europe/Berlin (CET, +0100)
      System clock synchronized: yes
                    NTP service: active
                RTC in local TZ: no
      
      *** User and Groups ***
      pi
      /home/pi
      pi adm dialout cdrom sudo audio video plugdev games users input render netdev lp                                                                             admin gpio i2c spi iobroker
      
      *** X-Server-Setup ***
      X-Server:       false
      Desktop:
      Terminal:       tty
      Boot Target:    multi-user.target
      
      *** MEMORY ***
                     total        used        free      shared  buff/cache   available
      Mem:            4.0G        2.1G        1.3G        1.0M        644M        1.8G
      Swap:           104M          0B        104M
      Total:          4.1G        2.1G        1.4G
      
               3792 M total memory
               2028 M used memory
               2022 M active memory
                386 M inactive memory
               1225 M free memory
                 52 M buffer memory
                562 M swap cache
                 99 M total swap
                  0 M used swap
                 99 M free swap
      
      Raspberry only:
      oom events: 0
      lifetime oom required: 0 Mbytes
      total time in oom handler: 0 ms
      max time spent in oom handler: 0 ms
      
      *** FAILED SERVICES ***
      
        UNIT LOAD ACTIVE SUB DESCRIPTION
      0 loaded units listed.
      
      *** FILESYSTEM ***
      Filesystem     Type      Size  Used Avail Use% Mounted on
      udev           devtmpfs  1.6G     0  1.6G   0% /dev
      tmpfs          tmpfs     380M  912K  379M   1% /run
      /dev/sda2      ext4       56G  6.4G   47G  12% /
      tmpfs          tmpfs     1.9G  8.0K  1.9G   1% /dev/shm
      tmpfs          tmpfs     5.0M   16K  5.0M   1% /run/lock
      /dev/sda1      vfat      510M  113M  398M  23% /boot/firmware
      tmpfs          tmpfs     380M   36K  380M   1% /run/user/1000
      
      Messages concerning ext4 filesystem in dmesg:
      [Fri Nov  3 18:09:49 2023] Kernel command line: coherent_pool=1M 8250.nr_uarts=0                                                                              snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_headphones=1 snd_bcm2835.ena                                                                             ble_hdmi=1 snd_bcm2835.enable_hdmi=0  smsc95xx.macaddr=DC:A6:32:7F:20:A0 vc_mem.                                                                             mem_base=0x3eb00000 vc_mem.mem_size=0x3ff00000  console=ttyS0,115200 console=tty                                                                             1 root=PARTUUID=00401c0a-02 rootfstype=ext4 fsck.repair=yes rootwait quiet splas                                                                             h plymouth.ignore-serial-consoles cfg80211.ieee80211_regdom=DE
      [Fri Nov  3 18:09:53 2023] EXT4-fs (sda2): mounted filesystem with ordered data                                                                              mode. Quota mode: none.
      [Fri Nov  3 18:09:56 2023] EXT4-fs (sda2): re-mounted. Quota mode: none.
      
      Show mounted filesystems \(real ones only\):
      TARGET           SOURCE    FSTYPE OPTIONS
      /                /dev/sda2 ext4   rw,noatime
      `-/boot/firmware /dev/sda1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437                                                                             ,iocharset=ascii,shortname=mixed,errors=remount-ro
      
      Files in neuralgic directories:
      
      /var:
      522M    /var/
      143M    /var/cache
      141M    /var/log/journal/2633d84c20934117aaba6d9ff4478d36
      141M    /var/log/journal
      141M    /var/log
      
      Archived and active journals take up 140.0M in the file system.
      
      /opt/iobroker/backups:
      285M    /opt/iobroker/backups/
      
      /opt/iobroker/iobroker-data:
      478M    /opt/iobroker/iobroker-data/
      254M    /opt/iobroker/iobroker-data/files
      146M    /opt/iobroker/iobroker-data/backup-objects
      67M     /opt/iobroker/iobroker-data/files/javascript.admin
      48M     /opt/iobroker/iobroker-data/files/javascript.admin/static
      
      The five largest files in iobroker-data are:
      58M     /opt/iobroker/iobroker-data/objects.jsonl
      35M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.                                                                             js.map
      33M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.1797d034.js.m                                                                             ap
      21M     /opt/iobroker/iobroker-data/files/web.admin/static/js/main.aaea95f8.js.m                                                                             ap
      20M     /opt/iobroker/iobroker-data/states.jsonl
      
      USB-Devices by-id:
      USB-Sticks -  Avoid direct links to /dev/* in your adapter setups, please always                                                                              prefer the links 'by-id':
      
      find: '/dev/serial/by-id/': No such file or directory
      
      *** NodeJS-Installation ***
      
      /usr/bin/nodejs         v18.18.2
      /usr/bin/node           v18.18.2
      /usr/bin/npm            9.8.1
      /usr/bin/npx            9.8.1
      /usr/bin/corepack       0.19.0
      
      
      nodejs:
        Installed: 18.18.2-1nodesource1
        Candidate: 18.18.2-1nodesource1
        Version table:
       *** 18.18.2-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
              100 /var/lib/dpkg/status
           18.18.1-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.18.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.17.1-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.17.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.16.1-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.16.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.15.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.14.2-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.14.1-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.14.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.13.0+dfsg1-1+rpi1 500
              500 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf Package                                                                             s
           18.13.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.12.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.11.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.10.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.9.1-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.9.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.8.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.7.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.6.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.5.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.4.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.3.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.2.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.1.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
           18.0.0-1nodesource1 500
              500 https://deb.nodesource.com/node_18.x nodistro/main armhf Packages
      
      Temp directories causing npm8 problem: 0
      No problems detected
      
      Errors in npm tree:
      npm ERR! code ELSPROBLEMS
      npm ERR! extraneous: @abandonware/bluetooth-hci-socket@0.5.3-10 /opt/iobroker/node_modules/@abandonware/bluetooth-hci-socket
      npm ERR! extraneous: node-addon-api@4.3.0 /opt/iobroker/node_modules/node-addon-api
      npm ERR! extraneous: node-gyp-build@4.6.1 /opt/iobroker/node_modules/node-gyp-build
      npm ERR! extraneous: usb@1.9.2 /opt/iobroker/node_modules/usb
      npm ERR! extraneous: debug@4.3.4 /opt/iobroker/node_modules/@abandonware/bluetooth-hci-socket/node_modules/debug
      npm ERR! extraneous: ms@2.1.2 /opt/iobroker/node_modules/@abandonware/bluetooth-hci-socket/node_modules/ms
      npm ERR! missing: mytelegrammenu@^0.0.17, required by iobroker.javascript@7.1.6
      
      npm ERR! A complete log of this run can be found in: /home/pi/.npm/_logs/2023-11-03T17_20_16_493Z-debug-0.log
      
      *** ioBroker-Installation ***
      
      ioBroker Status
      iobroker is running on this host.
      
      
      Objects type: jsonl
      States  type: jsonl
      
      Core adapters versions
      js-controller:  5.0.16
      admin:          6.12.2
      javascript:     7.1.6
      
      Adapters from github:   4
      
      Adapter State
      + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: ::, run as: admin
        system.adapter.alias-manager.0          : alias-manager         : iobroker                                 - disabled
      + system.adapter.backitup.0               : backitup              : iobroker                                 -  enabled
      + system.adapter.bosch-ebike.0            : bosch-ebike           : iobroker                                 -  enabled
      + system.adapter.chromecast.0             : chromecast            : iobroker                                 -  enabled
      + system.adapter.cloud.0                  : cloud                 : iobroker                                 -  enabled
      + system.adapter.device-reminder.0        : device-reminder       : iobroker                                 -  enabled
      + system.adapter.device-watcher.0         : device-watcher        : iobroker                                 -  enabled
        system.adapter.devices.0                : devices               : iobroker                                 - disabled
      + system.adapter.discovery.0              : discovery             : iobroker                                 -  enabled
      + system.adapter.energiefluss.0           : energiefluss          : iobroker                                 -  enabled
      + system.adapter.fb-checkpresence.0       : fb-checkpresence      : iobroker                                 -  enabled
      + system.adapter.fronius.0                : fronius               : iobroker                                 -  enabled
        system.adapter.google-sharedlocations.0 : google-sharedlocations: iobroker                                 - disabled
        system.adapter.google-sharedlocations.1 : google-sharedlocations: iobroker                                 - disabled
        system.adapter.history.0                : history               : iobroker                                 - disabled
      + system.adapter.homepilot20.0            : homepilot20           : iobroker                                 -  enabled
        system.adapter.ical.0                   : ical                  : iobroker                                 -  enabled
      + system.adapter.info.0                   : info                  : iobroker                                 -  enabled
      + system.adapter.iot.0                    : iot                   : iobroker                                 -  enabled
      + system.adapter.javascript.0             : javascript            : iobroker                                 -  enabled
        system.adapter.javascript.1             : javascript            : iobroker                                 - disabled
      + system.adapter.parcel.0                 : parcel                : iobroker                                 -  enabled
      + system.adapter.radar2.0                 : radar2                : iobroker                                 -  enabled
      + system.adapter.roomba.0                 : roomba                : iobroker                                 -  enabled
      + system.adapter.sayit.0                  : sayit                 : iobroker                                 -  enabled
      + system.adapter.senec.0                  : senec                 : iobroker                                 -  enabled
      + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1882, bind: 0.0.0.0
        system.adapter.smartgarden.0            : smartgarden           : iobroker                                 - disabled
        system.adapter.socketio.0               : socketio              : iobroker                                 - disabled, port: 8084, bind: 0.0.0.0 (SSL), run as: admin
      + system.adapter.sourceanalytix.0         : sourceanalytix        : iobroker                                 -  enabled
      + system.adapter.statistics.0             : statistics            : iobroker                                 -  enabled
      + system.adapter.tankerkoenig.0           : tankerkoenig          : iobroker                                 -  enabled
        system.adapter.telegram-menu.0          : telegram-menu         : iobroker                                 - disabled
      + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
      + system.adapter.telegram.1               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
      + system.adapter.text2command.0           : text2command          : iobroker                                 -  enabled
      + system.adapter.tr-064.0                 : tr-064                : iobroker                                 -  enabled
      + system.adapter.trashschedule.0          : trashschedule         : iobroker                                 -  enabled
      + system.adapter.virtualpowermeter.0      : virtualpowermeter     : iobroker                                 -  enabled
        system.adapter.vw-connect.0             : vw-connect            : iobroker                                 - disabled
        system.adapter.vw-connect.1             : vw-connect            : iobroker                                 - disabled
      + system.adapter.vw-connect.2             : vw-connect            : iobroker                                 -  enabled
      + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
      
      + instance is alive
      
      Enabled adapters with bindings
      + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: ::, run as: admin
      + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1882, bind: 0.0.0.0
      + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
      + system.adapter.telegram.1               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
      + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
      
      ioBroker-Repositories
      stable        : http://download.iobroker.net/sources-dist.json
      beta          : http://download.iobroker.net/sources-dist-latest.json
      
      Active repo(s): beta
      
      Installed ioBroker-Instances
      Used repository: beta
      Adapter    "admin"        : 6.12.2   , installed 6.12.2
      Adapter    "alias-manager": 1.2.6    , installed 1.2.6
      Adapter    "backitup"     : 2.9.1    , installed 2.9.1
      Adapter    "bosch-ebike"  : 0.1.0    , installed 0.1.0
      Adapter    "chromecast"   : 3.0.3    , installed 3.1.0
      Adapter    "cloud"        : 4.4.1    , installed 4.4.1
      Adapter    "device-reminder": 3.0.0  , installed 3.0.0
      Adapter    "device-watcher": 2.9.4   , installed 2.9.4
      Adapter    "devices"      : 1.1.5    , installed 1.1.5
      Adapter    "discovery"    : 4.2.0    , installed 4.2.0
      Adapter    "fb-checkpresence": 1.2.2 , installed 1.2.2
      Adapter    "fronius"      : 2.0.2    , installed 2.0.2
      Adapter    "history"      : 3.0.1    , installed 3.0.1
      Adapter    "ical"         : 1.13.3   , installed 1.13.3
      Adapter    "info"         : 2.0.0    , installed 2.0.0
      Adapter    "iot"          : 2.0.11   , installed 2.0.11
      Adapter    "javascript"   : 7.1.6    , installed 7.1.6
      Controller "js-controller": 5.0.16   , installed 5.0.16
      Adapter    "parcel"       : 0.1.6    , installed 0.1.6
      Adapter    "radar2"       : 2.1.0    , installed 2.1.0
      Adapter    "roomba"       : 1.2.2    , installed 1.2.2
      Adapter    "sayit"        : 3.0.5    , installed 3.0.5
      Adapter    "senec"        : 1.6.10   , installed 1.6.10
      Adapter    "shelly"       : 6.6.1    , installed 6.6.1
      Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
      Adapter    "smartgarden"  : 2.0.0    , installed 2.0.0
      Adapter    "socketio"     : 6.6.0    , installed 6.6.0
      Adapter    "sourceanalytix": 0.4.14  , installed 0.4.14
      Adapter    "statistics"   : 2.4.0    , installed 2.4.0
      Adapter    "tankerkoenig" : 3.3.7    , installed 3.3.7
      Adapter    "telegram"     : 2.0.1    , installed 2.0.1
      Adapter    "telegram-menu": 0.8.3    , installed 0.8.3
      Adapter    "text2command" : 3.0.2    , installed 3.0.2
      Adapter    "tr-064"       : 4.2.18   , installed 4.2.18
      Adapter    "trashschedule": 2.3.0    , installed 2.3.0
      Adapter    "virtualpowermeter": 1.4.6, installed 1.4.6
      Adapter    "vw-connect"   : 0.2.0    , installed 0.2.0
      Adapter    "web"          : 6.1.10   , installed 6.1.10
      Adapter    "weblogin"     : 0.1.1    , installed 0.1.1
      Adapter    "ws"           : 2.5.8    , installed 2.5.8
      
      Objects and States
      Please stand by - This may take a while
      Objects:        55932
      States:         54867
      
      *** OS-Repositories and Updates ***
      Hit:1 http://raspbian.raspberrypi.com/raspbian bookworm InRelease
      Hit:2 http://archive.raspberrypi.com/debian bookworm InRelease
      Hit:3 https://deb.nodesource.com/node_18.x nodistro InRelease
      Reading package lists...
      Pending Updates: 0
      
      *** Listening Ports ***
      Active Internet connections (only servers)
      Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
      tcp        0      0 0.0.0.0:5999            0.0.0.0:*               LISTEN      0          13212      736/vncserver-virtu
      tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      0          16884      727/cupsd
      tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          13236      759/sshd: /usr/sbin
      tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       17545      731/iobroker.js-con
      tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       18492      731/iobroker.js-con
      tcp6       0      0 ::1:631                 :::*                    LISTEN      0          16883      727/cupsd
      tcp6       0      0 :::8081                 :::*                    LISTEN      1001       24968      2136/io.admin.0
      tcp6       0      0 :::8082                 :::*                    LISTEN      1001       21001      1393/io.web.0
      tcp6       0      0 :::5999                 :::*                    LISTEN      0          13211      736/vncserver-virtu
      tcp6       0      0 :::22                   :::*                    LISTEN      0          13238      759/sshd: /usr/sbin
      udp        0      0 0.0.0.0:631             0.0.0.0:*                           0          17564      826/cups-browsed
      udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       19902      1054/io.chromecast.
      udp        0      0 0.0.0.0:5353            0.0.0.0:*                           104        16692      562/avahi-daemon: r
      udp        0      0 0.0.0.0:5683            0.0.0.0:*                           1001       18976      1032/io.shelly.0
      udp        0      0 0.0.0.0:38704           0.0.0.0:*                           104        16694      562/avahi-daemon: r
      udp        0      0 0.0.0.0:5999            0.0.0.0:*                           0          13213      736/vncserver-virtu
      udp        0      0 0.0.0.0:67              0.0.0.0:*                           1001       17999      1013/io.radar2.0
      udp6       0      0 :::5353                 :::*                                104        16693      562/avahi-daemon: r
      udp6       0      0 :::34220                :::*                                104        16695      562/avahi-daemon: r
      udp6       0      0 :::5999                 :::*                                0          13214      736/vncserver-virtu
      
      *** Log File - Last 25 Lines ***
      
      2023-11-03 18:18:27.556  - info: statistics.0 (2332) [SETUP] enabled statistics for 0_userdata.0.HP8620.Info.Seite_Gesamt
      2023-11-03 18:18:27.556  - info: statistics.0 (2332) [SETUP] enabled statistics for 0_userdata.0.HP8620.Info.Seite_SW
      2023-11-03 18:18:27.557  - info: statistics.0 (2332) [SETUP] enabled statistics for alias.0.Audi.km
      2023-11-03 18:18:27.558  - info: statistics.0 (2332) [SETUP] enabled statistics for senec.0._api.Anlagen.86808.Dashboard.heute.autarkie
      2023-11-03 18:18:27.559  - info: statistics.0 (2332) [SETUP] enabled statistics for senec.0._api.Anlagen.86808.Dashboard.heute.speicherfuellstand
      2023-11-03 18:18:27.560  - info: statistics.0 (2332) [SETUP] enabled statistics for virtualpowermeter.0.group_Licht.Virtual_Energy_Total_group_Licht
      2023-11-03 18:18:29.984  - silly: iot.0 (1226) Objects user redis pmessage system.adapter.*/cfg.o.system.adapter.admin.0.guiSettings:{"type":"state","common":{"type":"boolean","read":true,"write":false,"role":"state"},"native":{"localStorage":{"Adapter.search":"l","Adapters.updateList":"true"},"sessionStorage":{}},"_id":"system.adapter.admin.0.guiSettings","acl":{"object":1638,"state":1638,"owner":"system.user.admin","ownerGroup":"system.group.administrator"},"from":"system.adapter.admin.0","user":"system.user.admin","ts":1699031909970}
      2023-11-03 18:18:30.808  - silly: iot.0 (1226) Objects user redis pmessage system.adapter.*/cfg.o.system.adapter.admin.0.guiSettings:{"type":"state","common":{"type":"boolean","read":true,"write":false,"role":"state"},"native":{"localStorage":{"Adapter.search":"lgtv","Adapters.updateList":"true"},"sessionStorage":{}},"_id":"system.adapter.admin.0.guiSettings","acl":{"object":1638,"state":1638,"owner":"system.user.admin","ownerGroup":"system.group.administrator"},"from":"system.adapter.admin.0","user":"system.user.admin","ts":1699031910800}
      2023-11-03 18:18:32.863  - info: statistics.0 (2332) [SETUP] observing 10 values after startup
      2023-11-03 18:18:37.470  - silly: iot.0 (1226) Objects user redis pmessage system.adapter.*/cfg.o.system.adapter.admin.0.guiSettings:{"type":"state","common":{"type":"boolean","read":true,"write":false,"role":"state"},"native":{"localStorage":{"Adapters.updateList":"true"},"sessionStorage":{}},"_id":"system.adapter.admin.0.guiSettings","acl":{"object":1638,"state":1638,"owner":"system.user.admin","ownerGroup":"system.group.administrator"},"from":"system.adapter.admin.0","user":"system.user.admin","ts":1699031917464}
      2023-11-03 18:18:44.095  - silly: iot.0 (1226) Objects user redis pmessage system.adapter.*/cfg.o.system.adapter.admin.0.guiSettings:{"type":"state","common":{"type":"boolean","read":true,"write":false,"role":"state"},"native":{"localStorage":{"Adapters.updateList":"false"},"sessionStorage":{}},"_id":"system.adapter.admin.0.guiSettings","acl":{"object":1638,"state":1638,"owner":"system.user.admin","ownerGroup":"system.group.administrator"},"from":"system.adapter.admin.0","user":"system.user.admin","ts":1699031924091}
      2023-11-03 18:18:46.829  - silly: iot.0 (1226) Objects user redis pmessage system.adapter.*/cfg.o.system.adapter.admin.0.guiSettings:{"type":"state","common":{"type":"boolean","read":true,"write":false,"role":"state"},"native":{"localStorage":{"Adapters.updateList":"false","Adapter.search":"l"},"sessionStorage":{}},"_id":"system.adapter.admin.0.guiSettings","acl":{"object":1638,"state":1638,"owner":"system.user.admin","ownerGroup":"system.group.administrator"},"from":"system.adapter.admin.0","user":"system.user.admin","ts":1699031926810}
      2023-11-03 18:18:47.176  - silly: iot.0 (1226) Objects user redis pmessage system.adapter.*/cfg.o.system.adapter.admin.0.guiSettings:{"type":"state","common":{"type":"boolean","read":true,"write":false,"role":"state"},"native":{"localStorage":{"Adapters.updateList":"false","Adapter.search":"lg"},"sessionStorage":{}},"_id":"system.adapter.admin.0.guiSettings","acl":{"object":1638,"state":1638,"owner":"system.user.admin","ownerGroup":"system.group.administrator"},"from":"system.adapter.admin.0","user":"system.user.admin","ts":1699031927143}
      2023-11-03 18:18:52.548  - info: host.iobroker iobroker add lgtv auto --host iobroker --debug
      2023-11-03 18:18:57.827  - info: host.iobroker iobroker NPM version: 9.8.1
      2023-11-03 18:18:57.828  - info: host.iobroker iobroker Installing iobroker.lgtv@2.1.2... (System call)
      2023-11-03 18:19:14.954  - info: admin.0 (2136) ==> Connected system.user.admin from ::ffff:192.168.188.36
      2023-11-03 18:19:18.281  - info: host.iobroker iobroker npm ERR! code 1npm ERR! path /opt/iobroker/node_modules/bufferutilnpm ERR! command failednpm ERR! command sh -c node-gyp-buildnpm ERR! gyp info it worked if it ends with oknpm ERR! gyp info using node-gyp@7.1.2npm ERR! gyp info using node@18.18.2 | linux | armnpm ERR! gyp info find Python using Python version 3.11.2 found at "/usr/bin/python3"npm ERR! (node:2444) [DEP0150] DeprecationWarning: Setting process.config is deprecated. In the future the property will be read-only.npm ERR! (Use `node --trace-deprecation ...` to show where the warning was created)npm ERR! gyp info spawn /usr/bin/python3npm ERR! gyp info spawn args [npm ERR! gyp info spawn args   '/opt/iobroker/node_modules/node-gyp/gyp/gyp_main.py',npm ERR! gyp info spawn args   'binding.gyp',npm ERR! gyp info spawn args   '-f',npm ERR! gyp info spawn args   'make',npm ERR! gyp info spawn args   '-I',npm ERR! gyp info spawn args   '/opt/iobroker/node_modules/bufferutil/build/config.gypi',npm ERR! gyp info spawn args   '-I',npm ERR! gyp info spawn args   '/opt/iobroker/node_modules/node-gyp/addon.gypi',npm ERR! gyp info spawn args   '-I',npm ERR! gyp info spawn args   '/home/iobroker/.cache/node-gyp/18.18.2/include/node/common.gypi',npm ERR! gyp info spawn args   '-Dlibrary=shared_library',npm ERR! gyp info spawn args   '-Dvisibility=default',npm ERR! gyp info spawn args   '-Dnode_root_dir=/home/iobroker/.cache/node-gyp/18.18.2',npm ERR! gyp info spawn args   '-Dnode_gyp_dir=/opt/iobroker/node_modules/node-gyp',npm ERR! gyp info spawn args   '-Dnode_lib_file=/home/iobroker/.cache/node-gyp/18.18.2/<(target_arch)/node.lib',npm ERR! gyp info spawn args   '-Dmodule_root_dir=/opt/iobroker/node_modules/bufferutil',npm ERR! gyp info spawn args   '-Dnode_engine=v8',npm ERR! gyp info spawn args   '--depth=.',npm ERR! gyp info spawn args   '--no-parallel',npm ERR! gyp info spawn args   '--generator-output',npm ERR! gyp info spawn args   'build',npm ERR! gyp info spawn args   '-Goutput_dir=.'npm ERR! gyp info spawn args ]npm ERR! Traceback (most recent call last):npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/gyp_main.py", line 51, in <module>npm ERR!     sys.exit(gyp.script_main())npm ERR!              ^^^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 670, in script_mainnpm ERR!     return main(sys.argv[1:])npm ERR!            ^^^^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 662, in mainnpm ERR!     return gyp_main(args)npm ERR!            ^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 629, in gyp_mainnpm ERR!     [generator, flat_list, targets, data] = Load(npm ERR!                                             ^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 150, in Loadnpm ERR!     result = gyp.input.Load(npm ERR!              ^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 3021, in Loadnpm ERR!     LoadTargetBuildFile(npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 411, in LoadTargetBuildFilenpm ERR!     build_file_data = LoadOneBuildFile(npm ERR!                       ^^^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 239, in LoadOneBuildFilenpm ERR!     build_file_contents = open(build_file_path, "rU").read()npm ERR!                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^npm ERR! ValueError: invalid mode: 'rU' while trying to load binding.gypnpm ERR! gyp ERR! configure error npm ERR! gyp ERR! stack Error: `gyp` failed with exit code: 1npm ERR! gyp ERR! stack     at ChildProcess.onCpExit (/opt/iobroker/node_modules/node-gyp/lib/configure.js:351:16)npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:517:28)npm ERR! gyp ERR! stack     at ChildProcess._handle.onexit (node:internal/child_process:292:12)npm ERR! gyp ERR! System Linux 6.1.0-rpi4-rpi-v8npm ERR! gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"npm ERR! gyp ERR! cwd /opt/iobroker/node_modules/bufferutilnpm ERR! gyp ERR! node -v v18.18.2npm ERR! gyp ERR! node-gyp -v v7.1.2npm ERR! gyp ERR! not oknpm ERR! A complete log of this run can be found in: /home/iobroker/.npm/_logs/2023-11-03T17_18_59_072Z-debug-0.log
      2023-11-03 18:19:18.374  - error: host.iobroker iobroker npm ERR! code 1npm ERR! path /opt/iobroker/node_modules/bufferutilnpm ERR! command failednpm ERR! command sh -c node-gyp-buildnpm ERR! gyp info it worked if it ends with oknpm ERR! gyp info using node-gyp@7.1.2npm ERR! gyp info using node@18.18.2 | linux | armnpm ERR! gyp info find Python using Python version 3.11.2 found at "/usr/bin/python3"npm ERR! (node:2444) [DEP0150] DeprecationWarning: Setting process.config is deprecated. In the future the property will be read-only.npm ERR! (Use `node --trace-deprecation ...` to show where the warning was created)npm ERR! gyp info spawn /usr/bin/python3npm ERR! gyp info spawn args [npm ERR! gyp info spawn args   '/opt/iobroker/node_modules/node-gyp/gyp/gyp_main.py',npm ERR! gyp info spawn args   'binding.gyp',npm ERR! gyp info spawn args   '-f',npm ERR! gyp info spawn args   'make',npm ERR! gyp info spawn args   '-I',npm ERR! gyp info spawn args   '/opt/iobroker/node_modules/bufferutil/build/config.gypi',npm ERR! gyp info spawn args   '-I',npm ERR! gyp info spawn args   '/opt/iobroker/node_modules/node-gyp/addon.gypi',npm ERR! gyp info spawn args   '-I',npm ERR! gyp info spawn args   '/home/iobroker/.cache/node-gyp/18.18.2/include/node/common.gypi',npm ERR! gyp info spawn args   '-Dlibrary=shared_library',npm ERR! gyp info spawn args   '-Dvisibility=default',npm ERR! gyp info spawn args   '-Dnode_root_dir=/home/iobroker/.cache/node-gyp/18.18.2',npm ERR! gyp info spawn args   '-Dnode_gyp_dir=/opt/iobroker/node_modules/node-gyp',npm ERR! gyp info spawn args   '-Dnode_lib_file=/home/iobroker/.cache/node-gyp/18.18.2/<(target_arch)/node.lib',npm ERR! gyp info spawn args   '-Dmodule_root_dir=/opt/iobroker/node_modules/bufferutil',npm ERR! gyp info spawn args   '-Dnode_engine=v8',npm ERR! gyp info spawn args   '--depth=.',npm ERR! gyp info spawn args   '--no-parallel',npm ERR! gyp info spawn args   '--generator-output',npm ERR! gyp info spawn args   'build',npm ERR! gyp info spawn args   '-Goutput_dir=.'npm ERR! gyp info spawn args ]npm ERR! Traceback (most recent call last):npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/gyp_main.py", line 51, in <module>npm ERR!     sys.exit(gyp.script_main())npm ERR!              ^^^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 670, in script_mainnpm ERR!     return main(sys.argv[1:])npm ERR!            ^^^^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 662, in mainnpm ERR!     return gyp_main(args)npm ERR!            ^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 629, in gyp_mainnpm ERR!     [generator, flat_list, targets, data] = Load(npm ERR!                                             ^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/__init__.py", line 150, in Loadnpm ERR!     result = gyp.input.Load(npm ERR!              ^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 3021, in Loadnpm ERR!     LoadTargetBuildFile(npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 411, in LoadTargetBuildFilenpm ERR!     build_file_data = LoadOneBuildFile(npm ERR!                       ^^^^^^^^^^^^^^^^^npm ERR!   File "/opt/iobroker/node_modules/node-gyp/gyp/pylib/gyp/input.py", line 239, in LoadOneBuildFilenpm ERR!     build_file_contents = open(build_file_path, "rU").read()npm ERR!                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^npm ERR! ValueError: invalid mode: 'rU' while trying to load binding.gypnpm ERR! gyp ERR! configure error npm ERR! gyp ERR! stack Error: `gyp` failed with exit code: 1npm ERR! gyp ERR! stack     at ChildProcess.onCpExit (/opt/iobroker/node_modules/node-gyp/lib/configure.js:351:16)npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:517:28)npm ERR! gyp ERR! stack     at ChildProcess._handle.onexit (node:internal/child_process:292:12)npm ERR! gyp ERR! System Linux 6.1.0-rpi4-rpi-v8npm ERR! gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"npm ERR! gyp ERR! cwd /opt/iobroker/node_modules/bufferutilnpm ERR! gyp ERR! node -v v18.18.2npm ERR! gyp ERR! node-gyp -v v7.1.2npm ERR! gyp ERR! not oknpm ERR! A complete log of this run can be found in: /home/iobroker/.npm/_logs/2023-11-03T17_18_59_072Z-debug-0.loghost.iobroker Cannot install iobroker.lgtv@2.1.2: 1
      2023-11-03 18:19:18.947  - warn: fb-checkpresence.0 (1412) getAllFbObjects: Hostname of fritzbox device FE:6E:FD:F7:AF:21 is empty!
      2023-11-03 18:19:18.948  - warn: fb-checkpresence.0 (1412) getAllFbObjects: To delete this device in the fritzbox please add the device manually in the fritzbox with a hostname and the shown mac-address. After a reboot you can hopefully delete the device.
      2023-11-03 18:19:19.769  - info: host.iobroker iobroker exit 25
      
      2023-11-03 18:20:04.685  - debug: iot.0 (1226) Data: "Fri Nov 03 2023 18:20:04 GMT 0100 (Mitteleuropäische Normalzeit)"
      
      
      

      ============ Mark until here for C&P =============

      iob diag has finished.

      Press any key for a summary

      Copy text starting here:

      ======================= SUMMARY =======================
                              v.2023-10-10
      
      
       Static hostname: iobroker
             Icon name: computer
      Operating System: Raspbian GNU/Linux 12 (bookworm)
                Kernel: Linux 6.1.0-rpi4-rpi-v8
          Architecture: arm64
      
      Installation:           native
      Kernel:                 aarch64
      Userland:               armhf
      Timezone:               Europe/Berlin (CET, +0100)
      User-ID:                1000
      X-Server:               false
      Boot Target:            multi-user.target
      
      Pending OS-Updates:     0
      Pending iob updates:    0
      
      Nodejs-Installation:    /usr/bin/nodejs         v18.18.2
                              /usr/bin/node           v18.18.2
                              /usr/bin/npm            9.8.1
                              /usr/bin/npx            9.8.1
                              /usr/bin/corepack       0.19.0
      
      Recommended versions are nodejs 18.18.2 and npm 9.8.1
      Your nodejs installation is correct
      
      MEMORY:
                     total        used        free      shared  buff/cache   available
      Mem:            4.0G        1.9G        1.3G        1.0M        853M        2.1G
      Swap:           104M          0B        104M
      Total:          4.1G        1.9G        1.4G
      
      Active iob-Instances:   33
      Active repo(s): beta
      
      ioBroker Core:          js-controller           5.0.16
                              admin                   6.12.2
      
      ioBroker Status:        iobroker is running on this host.
      
      
      Objects type: jsonl
      States  type: jsonl
      
      Status admin and web instance:
      + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: ::, run as: admin
      + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
      
      Objects:                55932
      States:                 54867
      
      Size of iob-Database:
      
      58M     /opt/iobroker/iobroker-data/objects.jsonl
      22M     /opt/iobroker/iobroker-data/states.jsonl
      
      
      
      =================== END OF SUMMARY ====================
      

      === Mark text until here for copying ===
      pi@iobroker:~ $

      posted in Tester
      S
      Snigga
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo