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

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Hardware
  4. SONOFF NSPanel mit Lovelace UI

NEWS

  • Wartung am 15.11. – Forum ab 22:00 Uhr nicht erreichbar
    BluefoxB
    Bluefox
    11
    2
    211

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

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

SONOFF NSPanel mit Lovelace UI

SONOFF NSPanel mit Lovelace UI

Scheduled Pinned Locked Moved Hardware
lovelace uinspanelsonoff
7.7k Posts 271 Posters 6.7m Views 253 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L lustig29

    @tt-tom So???

    const jsonEventName1: string = 'Graue Tonne'; // Vergleichstring für Schwarze Tonne
    const customEventName1: string = 'Graue Tonne';        // benutzerdefinierter Text für schwarze Tonne
    const jsonEventName2: string = 'Gelbe Tonne'; // Vergleichstring für Gelbe Tonne / Sack
    const customEventName2: string = 'Gelbe Tonne';        // benutzerdefinierter Text für gelbe Tonne
    const jsonEventName3: string = 'Altpapier';    // Vergleichstring für Blaue Tonne
    const customEventName3: string = 'Altpapier';       // benutzerdefinierter Text für blaue Tonne
    const jsonEventName4: string = 'Grüne Tonne';   // Vergleichstring für Braune Tonne
    const customEventName4: string = 'Grüne Tonne';        // benutzerdefinierter Text für braune Tonne
    const jsonEventName5: string = 'Treppe';   // Vergleichstring für Event 5
    const customEventName5: string = 'Besen schwingen';        // benutzerdefinierter Text für Event 5
    const jsonEventName6: string = '';   // Vergleichstring für Event 6
    const customEventName6: string = '';        // benutzerdefinierter Text für Event 6
    
    T Offline
    T Offline
    TT-Tom
    wrote on last edited by
    #5691

    @lustig29
    nein, du musst die jsonEventNameX Parameter anpassen.

    const jsonEventName1: string = 'Restmüll';
    

    Die customEventNameX sind alternativ Texte für die Anzeige auf dem Panel, siehe Event5. Dort wird nach Treppe im Kalender gesucht und auf dem Panel Besen schwingen angezeigt.

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

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

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

    L 1 Reply Last reply
    0
    • T TT-Tom

      @michaelf

      der SQL liefert kein Port, darum läuft die Abfrage auf einen Fehler. Werde mal deine Daten nutzen für ein Fix. aktuell hilft da nur den check ausschalten, wir melden uns wenn der fix verfügbar ist.

      MichaelFM Offline
      MichaelFM Offline
      MichaelF
      wrote on last edited by
      #5692

      @tt-tom said in SONOFF NSPanel mit Lovelace UI:

      @michaelf

      der SQL liefert kein Port, darum läuft die Abfrage auf einen Fehler. Werde mal deine Daten nutzen für ein Fix. aktuell hilft da nur den check ausschalten, wir melden uns wenn der fix verfügbar ist.

      Super danke.

      T 1 Reply Last reply
      0
      • T TT-Tom

        @lustig29
        nein, du musst die jsonEventNameX Parameter anpassen.

        const jsonEventName1: string = 'Restmüll';
        

        Die customEventNameX sind alternativ Texte für die Anzeige auf dem Panel, siehe Event5. Dort wird nach Treppe im Kalender gesucht und auf dem Panel Besen schwingen angezeigt.

        L Offline
        L Offline
        lustig29
        wrote on last edited by
        #5693

        @tt-tom Super, danke. Das war es

        1 Reply Last reply
        0
        • L Offline
          L Offline
          lustig29
          wrote on last edited by
          #5694

          Ich möchte gerne mein Nuki Türschloss in diese Card intigrieren. Kann mir jemand dabei helfen?

          let Garage: PageType =
          {
              'type': 'cardGrid',
              'heading': 'Übersicht',
              'useColor': true,
              'subPage': false,
              'items': [
                  { id: 'alias.0.Garagentor', icon: 'garage', icon2: 'garage-open', offColor: MSRed, onColor: MSGreen, name: 'Garagentor'},
                  { id: 'alias.0.Alias_Geräte.Alle_Rollos', icon: 'roller-shade', icon2: 'roller-shade-closed', offColor: MSRed, onColor: MSGreen, name: 'Alle Rollos'},
              ]
          };
          
          {
            "type": "state",
            "common": {
              "name": "Tür auf-/abschließen",
              "type": "boolean",
              "write": true,
              "role": "switch.lock.door"
            },
            "native": {},
            "from": "system.adapter.nuki.0",
            "user": "system.user.admin",
            "ts": 1714916320263,
            "_id": "nuki.0.607002684.actions.lockAction",
            "acl": {
              "object": 1636,
              "state": 1636,
              "owner": "system.user.admin",
              "ownerGroup": "system.group.administrator"
            }
          }
          
          T 1 Reply Last reply
          0
          • L lustig29

            Ich möchte gerne mein Nuki Türschloss in diese Card intigrieren. Kann mir jemand dabei helfen?

            let Garage: PageType =
            {
                'type': 'cardGrid',
                'heading': 'Übersicht',
                'useColor': true,
                'subPage': false,
                'items': [
                    { id: 'alias.0.Garagentor', icon: 'garage', icon2: 'garage-open', offColor: MSRed, onColor: MSGreen, name: 'Garagentor'},
                    { id: 'alias.0.Alias_Geräte.Alle_Rollos', icon: 'roller-shade', icon2: 'roller-shade-closed', offColor: MSRed, onColor: MSGreen, name: 'Alle Rollos'},
                ]
            };
            
            {
              "type": "state",
              "common": {
                "name": "Tür auf-/abschließen",
                "type": "boolean",
                "write": true,
                "role": "switch.lock.door"
              },
              "native": {},
              "from": "system.adapter.nuki.0",
              "user": "system.user.admin",
              "ts": 1714916320263,
              "_id": "nuki.0.607002684.actions.lockAction",
              "acl": {
                "object": 1636,
                "state": 1636,
                "owner": "system.user.admin",
                "ownerGroup": "system.group.administrator"
              }
            }
            
            T Offline
            T Offline
            TT-Tom
            wrote on last edited by
            #5695

            @lustig29

            Hast du schon einen Alias für den Nuki angelegt.
            Hier kannst du nachschauen. https://github.com/joBr99/nspanel-lovelace-ui/wiki/ioBroker-ALIAS-Definitionen#verschluss-channel-lock

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

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

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

            L 1 Reply Last reply
            0
            • MichaelFM MichaelF

              @tt-tom said in SONOFF NSPanel mit Lovelace UI:

              @michaelf

              der SQL liefert kein Port, darum läuft die Abfrage auf einen Fehler. Werde mal deine Daten nutzen für ein Fix. aktuell hilft da nur den check ausschalten, wir melden uns wenn der fix verfügbar ist.

              Super danke.

              T Offline
              T Offline
              TT-Tom
              wrote on last edited by
              #5696

              @michaelf

              probiere bitte mal den Fix der DEV Version, danke.

              https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/DEV/NSPanelTs.ts

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

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

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

              MichaelFM 2 Replies Last reply
              0
              • T TT-Tom

                @lustig29

                Hast du schon einen Alias für den Nuki angelegt.
                Hier kannst du nachschauen. https://github.com/joBr99/nspanel-lovelace-ui/wiki/ioBroker-ALIAS-Definitionen#verschluss-channel-lock

                L Offline
                L Offline
                lustig29
                wrote on last edited by
                #5697

                @tt-tom Danke. Hat schon mal soweit super geklappt. Schloss schließt und öffnet über das Ns Panel. Jetzt muss ich nur noch den Status (Offen/Geschlossen) im Alias irgendwie angeben.

                Kannst du mir da bitte nochmal kurz helfen?

                Das ist der Datenpunkt vom Nuki.

                {
                  "type": "state",
                  "common": {
                    "name": "Aktion",
                    "type": "number",
                    "states": {
                      "0": "",
                      "1": "unlock",
                      "2": "lock",
                      "3": "unlatch",
                      "4": "lock‘n’go",
                      "5": "lock‘n’go with unlatch"
                    },
                    "role": "value"
                  },
                  "native": {},
                  "from": "system.adapter.nuki.0",
                  "user": "system.user.admin",
                  "ts": 1714916320263,
                  "_id": "nuki.0.607002684.actions.action",
                  "acl": {
                    "object": 1636,
                    "state": 1636,
                    "owner": "system.user.admin",
                    "ownerGroup": "system.group.administrator"
                  }
                }
                
                T 1 Reply Last reply
                0
                • B Offline
                  B Offline
                  bakerman23
                  wrote on last edited by
                  #5698

                  Sorry schonmal. Mein Problem kam sicherlich schon tausend mal.

                  Ich habe das NSPanel jetzt soweit eingerichtet, daß ich eine eigene Seite erstellen kann.
                  Egal, was ich aus der Beispielseite unter
                  //-- Start for your own pages -- some self-defined aliases required ----------------
                  eintrage, nach dem Starten des Scipts erscheint auf dem NSPanel immer nur die Serviceseite.
                  Das Script läuft ohne Fehler durch.

                  Marc BergM 1 Reply Last reply
                  0
                  • B bakerman23

                    Sorry schonmal. Mein Problem kam sicherlich schon tausend mal.

                    Ich habe das NSPanel jetzt soweit eingerichtet, daß ich eine eigene Seite erstellen kann.
                    Egal, was ich aus der Beispielseite unter
                    //-- Start for your own pages -- some self-defined aliases required ----------------
                    eintrage, nach dem Starten des Scipts erscheint auf dem NSPanel immer nur die Serviceseite.
                    Das Script läuft ohne Fehler durch.

                    Marc BergM Offline
                    Marc BergM Offline
                    Marc Berg
                    Most Active
                    wrote on last edited by
                    #5699

                    @bakerman23 sagte in SONOFF NSPanel mit Lovelace UI:

                    Mein Problem kam sicherlich schon tausend mal.

                    Ja, hier z.B.:

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

                    NUC10I3+Ubuntu+Docker+ioBroker+influxDB2+Node Red+RabbitMQ+Grafana

                    Pi-hole, Traefik, Checkmk, Conbee II+Zigbee2MQTT, ESPSomfy-RTS, LoRaWAN, Arduino, KiCad

                    Benutzt das Voting im Beitrag, wenn er euch geholfen hat.

                    B 1 Reply Last reply
                    1
                    • Marc BergM Marc Berg

                      @bakerman23 sagte in SONOFF NSPanel mit Lovelace UI:

                      Mein Problem kam sicherlich schon tausend mal.

                      Ja, hier z.B.:

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

                      B Offline
                      B Offline
                      bakerman23
                      wrote on last edited by
                      #5700

                      @marc-berg oh Gott. So dumm. Jetzt geht es.
                      Ich bin allerdings auch der Meinung, das es nicht im Wiki steht.

                      H T 2 Replies Last reply
                      0
                      • B bakerman23

                        @marc-berg oh Gott. So dumm. Jetzt geht es.
                        Ich bin allerdings auch der Meinung, das es nicht im Wiki steht.

                        H Offline
                        H Offline
                        Hansi1234
                        wrote on last edited by
                        #5701

                        @bakerman23 said in SONOFF NSPanel mit Lovelace UI:

                        @marc-berg oh Gott. So dumm. Jetzt geht es.
                        Ich bin allerdings auch der Meinung, das es nicht im Wiki steht.

                        Jep, daran hing ich auch ewig

                        1 Reply Last reply
                        0
                        • B bakerman23

                          @marc-berg oh Gott. So dumm. Jetzt geht es.
                          Ich bin allerdings auch der Meinung, das es nicht im Wiki steht.

                          T Offline
                          T Offline
                          TT-Tom
                          wrote on last edited by
                          #5702

                          @bakerman23

                          Doch hier im letzten Absatz. Vielleicht etwas versteckt. @Kuckuckmann kann da bestimmt, noch ein Beispiel einfügen. 😉

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

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

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

                          1 Reply Last reply
                          0
                          • L lustig29

                            @tt-tom Danke. Hat schon mal soweit super geklappt. Schloss schließt und öffnet über das Ns Panel. Jetzt muss ich nur noch den Status (Offen/Geschlossen) im Alias irgendwie angeben.

                            Kannst du mir da bitte nochmal kurz helfen?

                            Das ist der Datenpunkt vom Nuki.

                            {
                              "type": "state",
                              "common": {
                                "name": "Aktion",
                                "type": "number",
                                "states": {
                                  "0": "",
                                  "1": "unlock",
                                  "2": "lock",
                                  "3": "unlatch",
                                  "4": "lock‘n’go",
                                  "5": "lock‘n’go with unlatch"
                                },
                                "role": "value"
                              },
                              "native": {},
                              "from": "system.adapter.nuki.0",
                              "user": "system.user.admin",
                              "ts": 1714916320263,
                              "_id": "nuki.0.607002684.actions.action",
                              "acl": {
                                "object": 1636,
                                "state": 1636,
                                "owner": "system.user.admin",
                                "ownerGroup": "system.group.administrator"
                              }
                            }
                            
                            T Offline
                            T Offline
                            TT-Tom
                            wrote on last edited by
                            #5703

                            @lustig29 wie sieht dein Alias Datenpunkt jetzt aus??

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

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

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

                            L 1 Reply Last reply
                            0
                            • T TT-Tom

                              @lustig29 wie sieht dein Alias Datenpunkt jetzt aus??

                              L Offline
                              L Offline
                              lustig29
                              wrote on last edited by
                              #5704

                              @tt-tom

                              {
                                "_id": "alias.0.Alias_Geräte.Nuki_Garagentür.ACTUAL",
                                "native": {},
                                "type": "state",
                                "common": {
                                  "alias": {
                                    "id": "nuki.0.607002684.actions.action"
                                  },
                                  "name": "ACTUAL",
                                  "role": "state",
                                  "write": false,
                                  "type": "number"
                                },
                                "acl": {
                                  "object": 1636,
                                  "state": 1636,
                                  "owner": "system.user.admin",
                                  "ownerGroup": "system.group.administrator"
                                },
                                "from": "system.adapter.admin.0",
                                "user": "system.user.admin",
                                "ts": 1715084132432
                              }
                              
                              T 1 Reply Last reply
                              0
                              • L lustig29

                                @tt-tom

                                {
                                  "_id": "alias.0.Alias_Geräte.Nuki_Garagentür.ACTUAL",
                                  "native": {},
                                  "type": "state",
                                  "common": {
                                    "alias": {
                                      "id": "nuki.0.607002684.actions.action"
                                    },
                                    "name": "ACTUAL",
                                    "role": "state",
                                    "write": false,
                                    "type": "number"
                                  },
                                  "acl": {
                                    "object": 1636,
                                    "state": 1636,
                                    "owner": "system.user.admin",
                                    "ownerGroup": "system.group.administrator"
                                  },
                                  "from": "system.adapter.admin.0",
                                  "user": "system.user.admin",
                                  "ts": 1715084132432
                                }
                                
                                T Offline
                                T Offline
                                TT-Tom
                                wrote on last edited by
                                #5705

                                @lustig29

                                versuche mal das im alias

                                aed4d824-b786-424e-a37e-af8542749084-image.png

                                und setzte den Typ auf boolean

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

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

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

                                L 1 Reply Last reply
                                0
                                • T TT-Tom

                                  @lustig29

                                  versuche mal das im alias

                                  aed4d824-b786-424e-a37e-af8542749084-image.png

                                  und setzte den Typ auf boolean

                                  L Offline
                                  L Offline
                                  lustig29
                                  wrote on last edited by
                                  #5706

                                  @tt-tom Jetzt bekomme ich nur den Status "geöffnete Tür" angezeigt. Vorhin war es andersrum.

                                  Alias Nuki.png

                                  T 1 Reply Last reply
                                  0
                                  • T TT-Tom

                                    @michaelf

                                    probiere bitte mal den Fix der DEV Version, danke.

                                    https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/DEV/NSPanelTs.ts

                                    MichaelFM Offline
                                    MichaelFM Offline
                                    MichaelF
                                    wrote on last edited by
                                    #5707

                                    @tt-tom said in SONOFF NSPanel mit Lovelace UI:

                                    @michaelf

                                    probiere bitte mal den Fix der DEV Version, danke.

                                    https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/DEV/NSPanelTs.ts

                                    Hi, das ging ja schnell. Kann ich erst am we testen bin leider unterwegs.

                                    Grüsse

                                    L 1 Reply Last reply
                                    1
                                    • MichaelFM MichaelF

                                      @tt-tom said in SONOFF NSPanel mit Lovelace UI:

                                      @michaelf

                                      probiere bitte mal den Fix der DEV Version, danke.

                                      https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/DEV/NSPanelTs.ts

                                      Hi, das ging ja schnell. Kann ich erst am we testen bin leider unterwegs.

                                      Grüsse

                                      L Offline
                                      L Offline
                                      lustig29
                                      wrote on last edited by
                                      #5708

                                      Da ich jetzt doch schon einiges mit dem Ns Panel auch mit Hilfe des Boards realisiert habe, möchte ich gerne meinen Frage nach dem Shelly Dimmer 2 aufgreifen.
                                      Kann mir jemand dabei helfen, bzw. hat jemand zwischenzeitlich sowas schon realisiert?
                                      Das Ns Panel soll hinter einem Shelly Dimmer 2 angeschlossen werden.

                                      T 1 Reply Last reply
                                      0
                                      • L lustig29

                                        @tt-tom Jetzt bekomme ich nur den Status "geöffnete Tür" angezeigt. Vorhin war es andersrum.

                                        Alias Nuki.png

                                        T Offline
                                        T Offline
                                        TT-Tom
                                        wrote on last edited by
                                        #5709

                                        @lustig29

                                        Was für Werte stehen denn im Actual, wenn du keine Konvertierung drin hast. Bitte mal zeigen von beiden Stati.

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

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

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

                                        1 Reply Last reply
                                        0
                                        • L lustig29

                                          Da ich jetzt doch schon einiges mit dem Ns Panel auch mit Hilfe des Boards realisiert habe, möchte ich gerne meinen Frage nach dem Shelly Dimmer 2 aufgreifen.
                                          Kann mir jemand dabei helfen, bzw. hat jemand zwischenzeitlich sowas schon realisiert?
                                          Das Ns Panel soll hinter einem Shelly Dimmer 2 angeschlossen werden.

                                          T Offline
                                          T Offline
                                          TT-Tom
                                          wrote on last edited by
                                          #5710

                                          @lustig29 kannst du das noch einmal genauer beschreiben bzw. Zum Original Post verlinken.

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

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

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

                                          L 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          74

                                          Online

                                          32.4k

                                          Users

                                          81.3k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe