Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Hardware
    4. SONOFF NSPanel mit Lovelace UI

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    SONOFF NSPanel mit Lovelace UI

    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      Tom_W last edited by

      Hallo zusammen,

      ich kriege beim compilieren zwei Fehlermeldungen

      23:28:37.361	error	javascript.0 (567) script.js.NSPanels.PanelWohnzimmer: Error: Cannot find module 'moment-parseformat'
      23:28:37.362	error	javascript.0 (567) at script.js.NSPanels.PanelWohnzimmer:1246:19
      

      Es funktioniert aber trotzdem alles. Weiß jemand woran das liegt?

      Gruß

      Armilar 1 Reply Last reply Reply Quote 0
      • Armilar
        Armilar Most Active Forum Testing @Tom_W last edited by Armilar

        @tom_w

        ja 😁

        In der JS-Adapter-Instanz die Module moment und moment-parseformat eintragen.

        https://github.com/joBr99/nspanel-lovelace-ui/wiki/iobroker---Basisinstallation#8--einstellungen-in-js-adapter-instanz

        Ab Script 4.3.2.X benutzen wir eine andere Methode für Datum/Zeit, weil die vorhandene im JS fehlerhaft ist...

        siehe auch: https://forum.iobroker.net/topic/58170/sonoff-nspanel-mit-lovelace-ui/4071

        T 1 Reply Last reply Reply Quote 0
        • T
          Tom_W @Armilar last edited by

          @armilar

          Vielen Dank, klappt natürlich perfekt.
          Ich wenn nur halb so viel mitbekommen würde wie ich es gerne würde.

          1 Reply Last reply Reply Quote 1
          • V
            Venice last edited by Venice

            Hallo Zusammen, ich habe folgendes Problem. Habe meinen Javascript Adapter ein Update von 6.7....... auf 7.1.4 verpasst. Seid dem Läuft mein Panel nicht mehr. Habt ihr eine Idee? Muss ich einfach nur eine neuere TypeScript Version installieren?
            Das sind meine Versionen TypeScript v3.9.0.4 TFT 49 / v3.9.0 / BerryDriver 8 / Tasmota 12.3.1

            Armilar 1 Reply Last reply Reply Quote 0
            • J
              JackONell @TT-Tom last edited by

              @tt-tom

              Ich habe jetzt zum testen die "NSPanel_Wifi_Info_1" Page genommen, da die Seite eine Subpage ist. Doch leider funktioniert es immer noch nicht und bei den Objekte sehe ich auch keine änderung.

              let Alarm_Seite = <PageUnlock>
              {
                  'type': 'cardUnlock',
                  'heading': 'Alarmanlage',
                  'useColor': true,
                  'items': [<PageItem>{ id: 'alias.0.Unlock', targetPage: 'NSPanel_Wifi_Info_1' }]
              };
              
              let NSPanel_Wifi_Info_1 = <PageEntities>
                              {
                                  'type': 'cardEntities',
                                  'heading': 'NSPanel Wifi (1)',
                                  'useColor': true,
                                  'subPage': true,
                                  'parent': NSPanel_Infos,
                                  'next': 'NSPanel_Wifi_Info_2',
                                  'items': [
                                      <PageItem>{ id: AliasPath + 'ipAddress', name: 'IP-Adresse', icon: 'ip-network-outline', offColor: Menu, onColor: Menu },
                                      <PageItem>{ id: AliasPath + 'Tasmota.Wifi.BSSId', name: 'MAC Adresse', icon: 'check-network', offColor: Menu, onColor: Menu },
                                      <PageItem>{ id: AliasPath + 'Tasmota.Wifi.RSSI', name: 'RSSI', icon: 'signal', unit: '%', colorScale: {'val_min': 100, 'val_max': 0} },
                                      <PageItem>{ id: AliasPath + 'Tasmota.Wifi.Signal', name: 'Wifi-Signal', icon: 'signal-distance-variant', unit: 'dBm', colorScale: {'val_min': 0, 'val_max': -100} },
                                  ]
                              };
              
              subPages: [
                              
                              NSPanel_Infos,                          //Auto-Alias Service Page
                                  NSPanel_Wifi_Info_1,                //Auto-Alias Service Page
                                  NSPanel_Wifi_Info_2,                //Auto-Alias Service Page
                                  NSPanel_Sensoren,                   //Auto-Alias Service Page
                                  NSPanel_Hardware,                   //Auto-Alias Service Page
                              NSPanel_Einstellungen,                  //Auto-Alias Service Page
                                  NSPanel_Screensaver,                //Auto-Alias Service Page
                                      NSPanel_ScreensaverDimmode,     //Auto-Alias Service Page
                                      NSPanel_ScreensaverBrightness,  //Auto-Alias Service Page
                                      NSPanel_ScreensaverLayout,      //Auto-Alias Service Page
                                      NSPanel_ScreensaverWeather,     //Auto-Alias Service Page
                                      NSPanel_ScreensaverDateformat,  //Auto-Alias Service Page
                                      NSPanel_ScreensaverIndicators,  //Auto-Alias Service Page
                                  NSPanel_Relays,                     //Auto-Alias Service Page
                                  NSPanel_Script,                     //Auto-Alias Service Page
                              NSPanel_Firmware,                       //Auto-Alias Service Page
                                  NSPanel_FirmwareTasmota,            //Auto-Alias Service Page
                                  NSPanel_FirmwareBerry,              //Auto-Alias Service Page
                                  NSPanel_FirmwareNextion,            //Auto-Alias Service Page
                  ],
              

              Die Konsole vom Tasmote schreibt folgendes:

              09:49:47.068 MQT: SmartHome/tele/NSPanel_85E568/RESULT = {"CustomRecv":"event,buttonPress2,alias.0.Unlock,U1,1234"}
              
              Armilar 1 Reply Last reply Reply Quote 0
              • Armilar
                Armilar Most Active Forum Testing @Venice last edited by

                @venice

                Wie sieht der Rest aus?

                • JS-Controller Version?
                • NodeJS - Version?
                V 1 Reply Last reply Reply Quote 0
                • V
                  Venice @Armilar last edited by

                  @armilar JS Controller 5.02 Node JS v16.17.0 es gab aber extra einen Hinweis das man was beachten soll beim update von dem Adapter v6 auf v7. Bekomme das nur nicht mehr zusammen.

                  1 Reply Last reply Reply Quote 0
                  • Armilar
                    Armilar Most Active Forum Testing @JackONell last edited by Armilar

                    @jackonell

                    So wie ich das sehe, hast du zwar die NSPanel_Service zu einer Subpage gemacht, aber nicht in die subPages verschoben...

                    Passe das mal wie im nachfolgenden Beispiel an: 😊

                        pages: [
                                Alarm_Seite ,
                        ],
                        subPages: [
                                NSPanel_Service         //Auto-Alias Service Page    
                                    NSPanel_Infos,                          //Auto-Alias Service Page
                                        NSPanel_Wifi_Info_1,                //Auto-Alias Service Page
                                        NSPanel_Wifi_Info_2,                //Auto-Alias Service Page
                                        NSPanel_Sensoren,                   //Auto-Alias Service Page
                                        NSPanel_Hardware,                   //Auto-Alias Service Page
                                    NSPanel_Einstellungen,                  //Auto-Alias Service Page
                                        NSPanel_Screensaver,                //Auto-Alias Service Page
                                            NSPanel_ScreensaverDimmode,     //Auto-Alias Service Page
                                            NSPanel_ScreensaverBrightness,  //Auto-Alias Service Page
                                            NSPanel_ScreensaverLayout,      //Auto-Alias Service Page
                                            NSPanel_ScreensaverWeather,     //Auto-Alias Service Page
                                            NSPanel_ScreensaverDateformat,  //Auto-Alias Service Page
                                            NSPanel_ScreensaverIndicators,  //Auto-Alias Service Page
                                        NSPanel_Relays,                     //Auto-Alias Service Page
                                        NSPanel_Script,                     //Auto-Alias Service Page
                                    NSPanel_Firmware,                       //Auto-Alias Service Page
                                        NSPanel_FirmwareTasmota,            //Auto-Alias Service Page
                                        NSPanel_FirmwareBerry,              //Auto-Alias Service Page
                                        NSPanel_FirmwareNextion,            //Auto-Alias Service Page
                    
                        ],
                    
                    J 1 Reply Last reply Reply Quote 0
                    • Armilar
                      Armilar Most Active Forum Testing last edited by Armilar

                      @venice

                      extra einen Hinweis das man was beachten soll beim update von dem Adapter v6 auf v7

                      Ähem ja, System aktuell halten - Du lässt soeben dein System sterben, da du es nicht aktuell hältst...

                      Die Kombination: TFT 49 / v3.9.0 / BerryDriver 8 / Tasmota 12.3.1 ist nicht das Problem. Habe zu Testzwecken (Abwärtskompatibilität) auch noch so ein altes Script mit neuen Adapter-Versionen in einem Top-Aktuellen System am laufen...

                      Ich denke eher da muss noch etwas mehr geupdatet werden:

                      • Welches Betriebssystem?

                      Führe in der Linux-Konsole mal

                      iob diag
                      

                      aus... und sende mal den kompletten Output in Code Tags: a9f3d34d-b6da-4306-8444-2be47fccc561-image.png

                      Welche Fehler bringt der JS-Adapter beim Start?

                      V 1 Reply Last reply Reply Quote 0
                      • J
                        JackONell @Armilar last edited by

                        @armilar
                        @TT-Tom

                        hier nochmal die entsprechenden Zeilen, da es leider immer noch nicht funktioniert 😕 . Übersehe ich irgendetwas oder mach etwas falsch ?

                        let Alarm_Seite = <PageUnlock>
                        {
                            'type': 'cardUnlock',
                            'heading': 'Alarmanlage',
                            'useColor': true,
                            'items': [<PageItem>{ id: 'alias.0.Unlock', targetPage: 'NSPanel_Service' }]
                        };
                        
                        let NSPanel_Service = <PageEntities>
                        {
                            'type': 'cardEntities',
                            'heading': 'NSPanel Service',
                            'useColor': true,
                            'subPage': true,            
                            'items': [
                                <PageItem>{ navigate: true, id: 'NSPanel_Infos', icon: 'information-outline', offColor: Menu, onColor: Menu, name: 'Infos', buttonText: 'mehr...'},
                                <PageItem>{ navigate: true, id: 'NSPanel_Einstellungen', icon: 'monitor-edit', offColor: Menu, onColor: Menu, name: 'Einstellungen', buttonText: 'mehr...'},
                                <PageItem>{ navigate: true, id: 'NSPanel_Firmware', icon: 'update', offColor: Menu, onColor: Menu, name: 'Firmware', buttonText: 'mehr...'},
                                <PageItem>{ id: AliasPath + 'Config.rebootNSPanel', name: 'Reboot NSPanel' ,icon: 'refresh', offColor: MSRed, onColor: MSGreen, buttonText: 'Start'},
                            ]
                        
                        };
                        
                        pages: [
                        
                                    FensterTuerenStatus_Seite,          
                                    FensterTuerenEG_Seite,         
                                    FensterTuerenOG_Seite,         
                                    Alarm_Seite,                 
                                    //NSPanel_Service,         	
                                    
                            ],
                            subPages: [
                                        
                                        NSPanel_Service,                          //Auto-Alias Service Page
                                            NSPanel_Infos,                      //Auto-Alias Service Page
                                            NSPanel_Wifi_Info_1,                //Auto-Alias Service Page
                                            NSPanel_Wifi_Info_2,                //Auto-Alias Service Page
                                            NSPanel_Sensoren,                   //Auto-Alias Service Page
                                            NSPanel_Hardware,                   //Auto-Alias Service Page
                                        NSPanel_Einstellungen,                  //Auto-Alias Service Page
                                            NSPanel_Screensaver,                //Auto-Alias Service Page
                                                NSPanel_ScreensaverDimmode,     //Auto-Alias Service Page
                                                NSPanel_ScreensaverBrightness,  //Auto-Alias Service Page
                                                NSPanel_ScreensaverLayout,      //Auto-Alias Service Page
                                                NSPanel_ScreensaverWeather,     //Auto-Alias Service Page
                                                NSPanel_ScreensaverDateformat,  //Auto-Alias Service Page
                                                NSPanel_ScreensaverIndicators,  //Auto-Alias Service Page
                                            NSPanel_Relays,                     //Auto-Alias Service Page
                                            NSPanel_Script,                     //Auto-Alias Service Page
                                        NSPanel_Firmware,                       //Auto-Alias Service Page
                                            NSPanel_FirmwareTasmota,            //Auto-Alias Service Page
                                            NSPanel_FirmwareBerry,              //Auto-Alias Service Page
                                            NSPanel_FirmwareNextion,            //Auto-Alias Service Page
                            ],
                        

                        Danke für eure Hilfe

                        Armilar T 2 Replies Last reply Reply Quote 0
                        • V
                          Venice last edited by

                          @Armilar

                          Skript v.2023-10-10
                          
                          *** BASE SYSTEM ***
                             Static hostname: raspberryiob
                                   Icon name: computer
                            Operating System: Debian GNU/Linux 11 (bullseye)
                                      Kernel: Linux 6.1.21-v8+
                                Architecture: arm64
                          
                          Model		: Raspberry Pi 4 Model B Rev 1.1
                          Docker          : false
                          Virtualization  : none
                          Kernel          : aarch64
                          Userland        : arm64
                          
                          Systemuptime and Load:
                           10:42:02 up 4 min,  2 users,  load average: 0.79, 1.04, 0.54
                          CPU threads: 4
                          
                          
                          *** RASPBERRY THROTTLING ***
                          Current issues:
                          No throttling issues detected.
                          
                          Previously detected issues:
                          No throttling issues detected.
                          
                          *** Time and Time Zones ***
                                         Local time: Thu 2023-11-09 10:42:03 CET
                                     Universal time: Thu 2023-11-09 09:42:03 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 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:            3.8G        1.4G        2.1G        0.0K        284M        2.3G
                          Swap:            99M          0B         99M
                          Total:          3.9G        1.4G        2.2G
                          
                                   3794 M total memory
                                   1371 M used memory
                                   1411 M active memory
                                    136 M inactive memory
                                   2137 M free memory
                                     37 M buffer memory
                                    247 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
                          /dev/root      ext4       59G  4.7G   52G   9% /
                          devtmpfs       devtmpfs  1.7G     0  1.7G   0% /dev
                          tmpfs          tmpfs     1.9G     0  1.9G   0% /dev/shm
                          tmpfs          tmpfs     759M  828K  759M   1% /run
                          tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                          /dev/mmcblk0p1 vfat      253M   32M  221M  13% /boot
                          tmpfs          tmpfs     380M     0  380M   0% /run/user/1000
                          
                          Messages concerning ext4 filesystem in dmesg:
                          [Thu Nov  9 10:37:17 2023] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_headphones=1 snd_bcm2835.enable_hdmi=1 snd_bcm2835.enable_hdmi=0  smsc95xx.macaddr=DC:A6:32:47:8B:F8 vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000  console=ttyS0,115200 console=tty1 root=PARTUUID=486c7c0d-02 rootfstype=ext4 fsck.repair=yes rootwait
                          [Thu Nov  9 10:37:18 2023] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: none.
                          [Thu Nov  9 10:37:18 2023] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
                          [Thu Nov  9 10:37:20 2023] EXT4-fs (mmcblk0p2): re-mounted. Quota mode: none.
                          
                          Show mounted filesystems \(real ones only\):
                          TARGET  SOURCE         FSTYPE OPTIONS
                          /       /dev/mmcblk0p2 ext4   rw,noatime
                          `-/boot /dev/mmcblk0p1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,flush,errors=remount-ro
                          
                          Files in neuralgic directories:
                          
                          /var:
                          1.2G	/var/
                          652M	/var/log
                          649M	/var/log/journal/15a72ee8ba3743f4b7b3943522a0f949
                          649M	/var/log/journal
                          296M	/var/cache
                          
                          Archived and active journals take up 648.1M in the file system.
                          
                          /opt/iobroker/backups:
                          37M	/opt/iobroker/backups/
                          
                          /opt/iobroker/iobroker-data:
                          315M	/opt/iobroker/iobroker-data/
                          212M	/opt/iobroker/iobroker-data/files
                          81M	/opt/iobroker/iobroker-data/backup-objects
                          52M	/opt/iobroker/iobroker-data/files/javascript.admin
                          45M	/opt/iobroker/iobroker-data/files/devices.admin/static
                          
                          The five largest files in iobroker-data are:
                          35M	/opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                          21M	/opt/iobroker/iobroker-data/objects.jsonl
                          21M	/opt/iobroker/iobroker-data/files/web.admin/static/js/main.eafddf6f.js.map
                          19M	/opt/iobroker/iobroker-data/files/iot.admin/static/js/main.2975a411.js.map
                          8.9M	/opt/iobroker/iobroker-data/files/scenes.admin/static/js/2.7de3299d.chunk.js.map
                          
                          USB-Devices by-id:
                          USB-Sticks -  Avoid direct links to /dev/* in your adapter setups, please always prefer the links 'by-id':
                          
                          /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2654154-if00
                          
                          *** NodeJS-Installation ***
                          
                          /home/iobroker/.diag.sh: line 277: nodejs: command not found
                           	
                          /usr/bin/node 		v16.20.2
                          /usr/bin/npm 		8.19.4
                          /usr/bin/npx 		8.19.4
                          /usr/bin/corepack 	0.17.0
                          /home/iobroker/.diag.sh: line 288: nodejs: command not found
                          *** nodejs is NOT correctly installed ***
                          
                          nodejs:
                            Installed: 16.20.2-deb-1nodesource1
                            Candidate: 16.20.2-deb-1nodesource1
                            Version table:
                           *** 16.20.2-deb-1nodesource1 500
                                  500 https://deb.nodesource.com/node_16.x bullseye/main arm64 Packages
                                  100 /var/lib/dpkg/status
                               12.22.12~dfsg-1~deb11u4 500
                                  500 http://deb.debian.org/debian bullseye/main arm64 Packages
                                  500 http://security.debian.org/debian-security bullseye-security/main arm64 Packages
                          
                          Temp directories causing npm8 problem: 0
                          No problems detected
                          
                          Errors in npm tree:
                          
                          *** ioBroker-Installation ***
                          
                          ioBroker Status
                          iobroker is running on this host.
                          
                          
                          Objects type: jsonl
                          States  type: jsonl
                          
                          Core adapters versions
                          js-controller: 	5.0.12
                          admin: 		6.12.0
                          javascript: 	7.1.4
                          
                          Adapters from github: 	1
                          
                          Adapter State
                          + system.adapter.accuweather.0            : accuweather           : raspberryiob                             -  enabled
                          + system.adapter.admin.0                  : admin                 : raspberryiob                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                          + system.adapter.backitup.0               : backitup              : raspberryiob                             -  enabled
                            system.adapter.cloud.0                  : cloud                 : raspberryiob                             - disabled
                            system.adapter.device-reminder.0        : device-reminder       : raspberryiob                             - disabled
                            system.adapter.devices.0                : devices               : raspberryiob                             -  enabled
                          + system.adapter.discovery.0              : discovery             : raspberryiob                             -  enabled
                          + system.adapter.heatingcontrol.0         : heatingcontrol        : raspberryiob                             -  enabled
                          + system.adapter.history.0                : history               : raspberryiob                             -  enabled
                          + system.adapter.hue.0                    : hue                   : raspberryiob                             -  enabled, port: 443
                          + system.adapter.info.0                   : info                  : raspberryiob                             -  enabled
                            system.adapter.iot.0                    : iot                   : raspberryiob                             - disabled
                          + system.adapter.javascript.0             : javascript            : raspberryiob                             -  enabled
                          + system.adapter.lovelace.0               : lovelace              : raspberryiob                             -  enabled, port: 8091, bind: 192.168.3.79, run as: admin
                          + system.adapter.mqtt.0                   : mqtt                  : raspberryiob                             -  enabled, port: 1883, bind: 0.0.0.0
                          + system.adapter.scenes.0                 : scenes                : raspberryiob                             -  enabled
                          + system.adapter.shelly.0                 : shelly                : raspberryiob                             -  enabled, port: 1882, bind: 0.0.0.0
                          + system.adapter.sourceanalytix.0         : sourceanalytix        : raspberryiob                             -  enabled
                          + system.adapter.tado.0                   : tado                  : raspberryiob                             -  enabled
                          + system.adapter.vw-connect.0             : vw-connect            : raspberryiob                             -  enabled
                          + system.adapter.web.0                    : web                   : raspberryiob                             -  enabled, port: 8083, bind: 0.0.0.0, run as: admin
                            system.adapter.wled.0                   : wled                  : raspberryiob                             - disabled
                          + system.adapter.yahka.0                  : yahka                 : raspberryiob                             -  enabled
                          + system.adapter.zigbee.0                 : zigbee                : raspberryiob                             -  enabled, port: /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2654154-if00
                          
                          + instance is alive
                          
                          Enabled adapters with bindings
                          + system.adapter.admin.0                  : admin                 : raspberryiob                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                          + system.adapter.hue.0                    : hue                   : raspberryiob                             -  enabled, port: 443
                          + system.adapter.lovelace.0               : lovelace              : raspberryiob                             -  enabled, port: 8091, bind: 192.168.3.79, run as: admin
                          + system.adapter.mqtt.0                   : mqtt                  : raspberryiob                             -  enabled, port: 1883, bind: 0.0.0.0
                          + system.adapter.shelly.0                 : shelly                : raspberryiob                             -  enabled, port: 1882, bind: 0.0.0.0
                          + system.adapter.web.0                    : web                   : raspberryiob                             -  enabled, port: 8083, bind: 0.0.0.0, run as: admin
                          + system.adapter.zigbee.0                 : zigbee                : raspberryiob                             -  enabled, port: /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2654154-if00
                          
                          ioBroker-Repositories
                          stable        : http://download.iobroker.net/sources-dist.json
                          beta          : http://download.iobroker.net/sources-dist-latest.json
                          
                          Active repo(s): stable
                          
                          Installed ioBroker-Instances
                          Used repository: stable
                          Adapter    "accuweather"  : 1.3.1    , installed 1.3.1
                          Adapter    "admin"        : 6.12.0   , installed 6.12.0
                          Adapter    "backitup"     : 2.8.7    , installed 2.8.7
                          Adapter    "cloud"        : 4.4.1    , installed 4.4.1
                          Adapter    "device-reminder": 3.0.0  , installed 1.2.9  [Updatable]
                          Adapter    "devices"      : 1.1.5    , installed 1.1.5
                          Adapter    "discovery"    : 3.1.0    , installed 3.1.0
                          Adapter    "heatingcontrol": 2.11.1  , installed 2.11.1
                          Adapter    "history"      : 3.0.1    , installed 3.0.1
                          Adapter    "hue"          : 3.10.1   , installed 3.10.1
                          Adapter    "info"         : 2.0.0    , installed 2.0.0
                          Adapter    "iot"          : 1.14.5   , installed 1.14.5
                          Adapter    "javascript"   : 7.1.4    , installed 7.1.4
                          Controller "js-controller": 5.0.12   , installed 5.0.12
                          Adapter    "lovelace"     : 3.0.1    , installed 3.0.1
                          Adapter    "mqtt"         : 4.1.1    , installed 4.1.1
                          Adapter    "mqtt-client"  : 1.6.5    , installed 1.6.5
                          Adapter    "scenes"       : 2.3.9    , installed 2.3.9
                          Adapter    "shelly"       : 6.6.1    , installed 6.6.1
                          Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
                          Adapter    "socketio"     : 6.5.5    , installed 6.5.5
                          Adapter    "tado"         : 0.4.11   , installed 0.4.11
                          Adapter    "vw-connect"   : 0.0.67   , installed 0.0.67
                          Adapter    "web"          : 6.1.4    , installed 6.1.4
                          Adapter    "wled"         : 0.7.1    , installed 0.7.1
                          Adapter    "ws"           : 2.5.5    , installed 2.5.5
                          Adapter    "yahka"        : 1.0.3    , installed 1.0.3
                          Adapter    "zigbee"       : 1.8.23   , installed 1.8.23
                          
                          Objects and States
                          Please stand by - This may take a while
                          Objects: 	6320
                          States: 	5908
                          
                          *** OS-Repositories and Updates ***
                          Hit:1 http://security.debian.org/debian-security bullseye-security InRelease
                          Hit:2 http://deb.debian.org/debian bullseye InRelease
                          Hit:3 http://archive.raspberrypi.org/debian bullseye InRelease
                          Hit:4 http://deb.debian.org/debian bullseye-updates InRelease
                          Hit:5 https://deb.nodesource.com/node_16.x bullseye 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:22              0.0.0.0:*               LISTEN      0          14515      523/sshd: /usr/sbin 
                          tcp        0      0 192.168.3.79:8091       0.0.0.0:*               LISTEN      1001       13043      868/io.lovelace.0   
                          tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       14866      816/io.mqtt.0       
                          tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       14867      816/io.mqtt.0       
                          tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       12055      493/iobroker.js-con 
                          tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       14554      493/iobroker.js-con 
                          tcp        0      0 127.0.0.1:36925         0.0.0.0:*               LISTEN      1001       16468      909/io.yahka.0      
                          tcp6       0      0 :::35491                :::*                    LISTEN      1001       13133      909/io.yahka.0      
                          tcp6       0      0 :::22                   :::*                    LISTEN      0          14517      523/sshd: /usr/sbin 
                          tcp6       0      0 :::8081                 :::*                    LISTEN      1001       1907       634/io.admin.0      
                          tcp6       0      0 :::8083                 :::*                    LISTEN      1001       18586      1057/io.web.0       
                          udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          1807       694/dhcpcd          
                          udp        0      0 0.0.0.0:54238           0.0.0.0:*                           108        12000      392/avahi-daemon: r 
                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           108        11998      392/avahi-daemon: r 
                          udp        0      0 0.0.0.0:5683            0.0.0.0:*                           1001       12971      771/io.shelly.0     
                          udp6       0      0 :::52311                :::*                                108        12001      392/avahi-daemon: r 
                          udp6       0      0 :::5353                 :::*                                108        11999      392/avahi-daemon: r 
                          
                          *** Log File - Last 25 Lines ***
                          
                          Thomas Braun 1 Reply Last reply Reply Quote 0
                          • Armilar
                            Armilar Most Active Forum Testing @JackONell last edited by

                            @jackonell

                            Ist bei mir so:

                            let Unlock_Service = <PageUnlock>
                            {
                                'type': 'cardUnlock',
                                'heading': 'Service Pages',
                                'useColor': true,
                                'items': [<PageItem>{ id: 'alias.0.Unlock', targetPage: 'NSPanel_Service' }]
                            };
                            
                            //Level_0 
                            let NSPanel_Service = <PageEntities>
                            {
                                'type': 'cardEntities',
                                'heading': 'NSPanel Service',
                                'subPage': true,
                                'parent': Unlock_Service,
                                'home': 'Unlock_Service',   
                                'useColor': true,
                                'items': [
                                    <PageItem>{ navigate: true, id: 'NSPanel_Infos', icon: 'information-outline', offColor: Menu, onColor: Menu, name: 'Infos', buttonText: 'mehr...'},
                                    <PageItem>{ navigate: true, id: 'NSPanel_Einstellungen', icon: 'monitor-edit', offColor: Menu, onColor: Menu, name: 'Einstellungen', buttonText: 'mehr...'},
                                    <PageItem>{ navigate: true, id: 'NSPanel_Firmware', icon: 'update', offColor: Menu, onColor: Menu, name: 'Firmware', buttonText: 'mehr...'},
                                    <PageItem>{ id: AliasPath + 'Config.rebootNSPanel', name: 'Reboot NSPanel' ,icon: 'refresh', offColor: MSRed, onColor: MSGreen, buttonText: 'Start'},
                                ]
                            };
                            
                                pages: [
                                        // ... Diverse Seiten
                                        Unlock_Service,
                            
                            
                                        //NSPanel_Service         //Auto-Alias Service Page
                                ],
                                subPages: [
                            
                                            NSPanel_Service,         //Auto-Alias Service Page
                                            NSPanel_Infos,                          //Auto-Alias Service Page
                                                NSPanel_Wifi_Info_1,                //Auto-Alias Service Page
                                                NSPanel_Wifi_Info_2,                //Auto-Alias Service Page
                                                NSPanel_Sensoren,                   //Auto-Alias Service Page
                                                NSPanel_Hardware,                   //Auto-Alias Service Page
                                            NSPanel_Einstellungen,                  //Auto-Alias Service Page
                                                NSPanel_Screensaver,                //Auto-Alias Service Page
                                                    NSPanel_ScreensaverDimmode,     //Auto-Alias Service Page
                                                    NSPanel_ScreensaverBrightness,  //Auto-Alias Service Page
                                                    NSPanel_ScreensaverLayout,      //Auto-Alias Service Page
                                                    NSPanel_ScreensaverWeather,     //Auto-Alias Service Page
                                                    NSPanel_ScreensaverDateformat,  //Auto-Alias Service Page
                                                    NSPanel_ScreensaverIndicators,  //Auto-Alias Service Page
                                                NSPanel_Relays,                     //Auto-Alias Service Page
                                                NSPanel_Script,                     //Auto-Alias Service Page
                                            NSPanel_Firmware,                       //Auto-Alias Service Page
                                                NSPanel_FirmwareTasmota,            //Auto-Alias Service Page
                                                NSPanel_FirmwareBerry,              //Auto-Alias Service Page
                                                NSPanel_FirmwareNextion,            //Auto-Alias Service Page
                            

                            49265991-5119-4ed8-87df-9342d4a8013d-Nextion_Editor_gF6wPz19BC.gif

                            1 Reply Last reply Reply Quote 0
                            • Thomas Braun
                              Thomas Braun Most Active @Venice last edited by

                              @venice sagte in SONOFF NSPanel mit Lovelace UI:

                              *** nodejs is NOT correctly installed ***

                              iob stop
                              iob fix
                              iob nodejs-update
                              
                              V 1 Reply Last reply Reply Quote 0
                              • V
                                Venice @Armilar last edited by

                                @armilar Ist mein System nicht aktuell ? Ich mache eigentlich immer alle updates mit . Was meinst du mit Fehler JS Adapter? Wenn ich das Script starte?
                                Vielen Dank schonmal für die tolle Unterstützung.

                                1 Reply Last reply Reply Quote 0
                                • V
                                  Venice @Thomas Braun last edited by

                                  @thomas-braun
                                  Dass wird jetzt angezeigt.....
                                  Nothing to do - Your installation is using the correct paths.

                                  You are running nodejs v16.20.2. Do you want to install recommended version 18.18.2?

                                  Vielen Dank

                                  Thomas Braun 1 Reply Last reply Reply Quote 0
                                  • Armilar
                                    Armilar Most Active Forum Testing last edited by Armilar

                                    @venice

                                    Sieht bis auf das bullseye und das NodeJS eigentlich ganz ordentlich aus... Drehe mal das NodeJS auf 18

                                    sudo apt update
                                    sudo apt full-upgrade
                                    sudo reboot
                                    
                                    iob stop
                                    iob fix
                                    iob iob nodejs-update 18
                                    iob start
                                    

                                    Wenn es dann läuft, solltest du dir im Forum eine Anleitung suchen, wie du von bullseye auf bookworm kommst.

                                    1 Reply Last reply Reply Quote 0
                                    • Thomas Braun
                                      Thomas Braun Most Active @Venice last edited by

                                      @venice sagte in SONOFF NSPanel mit Lovelace UI:

                                      You are running nodejs v16.20.2. Do you want to install recommended version 18.18.2?

                                      Ja, das willst du.

                                      Armilar V 2 Replies Last reply Reply Quote 1
                                      • Matthias 0
                                        Matthias 0 last edited by

                                        Hallo zusammen,
                                        seit dem Update erhalte ich immer wiederkehrende Warnmeldungen im Log.
                                        Kann mir jemend sagen, wie ich diese beseitigen kann?

                                        javascript.0 (911) script.js.common.NS_Panels.Panel_Bad: error at function HandleScreensaverUpdate: parseFormat is not a function
                                        

                                        Vielen Dank!

                                        Armilar 1 Reply Last reply Reply Quote 0
                                        • Armilar
                                          Armilar Most Active Forum Testing @Thomas Braun last edited by Armilar

                                          @Venice

                                          bei @Thomas-Braun hast du jetzt die perfekte Systemhilfe...

                                          V 1 Reply Last reply Reply Quote 0
                                          • Armilar
                                            Armilar Most Active Forum Testing @Matthias 0 last edited by

                                            @matthias-0

                                            Die Frage beantworte ich etwa alle 12 Stunden:

                                            https://forum.iobroker.net/post/1077067

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            775
                                            Online

                                            31.7k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            lovelace ui nspanel sonoff
                                            260
                                            7128
                                            4607902
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo