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 goes Matter ... Matter Adapter in Stable

    • 15. 05. Wartungsarbeiten am ioBroker Forum

    • Monatsrückblick - April 2025

    SONOFF NSPanel mit Lovelace UI

    This topic has been deleted. Only users with topic management privileges can see it.
    • K
      Kuckuckmann @lustig29 last edited by

      @lustig29
      Wenn Du noch gar kein Tasmota drauf hast, dann musst Du das erstmal drauf flashen. Ich hatte es so verstanden, als hättest Du da schon Tasmota in einer alten Version.
      Ich denke das Vorgehen ist hier dann wie bei einem neuen Panel.

      L 1 Reply Last reply Reply Quote 0
      • K
        Kuckuckmann @Milraun last edited by Kuckuckmann

        @milraun

        Ja, das kannst Du machen.

        Es gibt den DP 0_userdata.0.NSPanel.1.PageNavi. Dieser wird per JSON bedient, man muss ihm sagen ob es eine Page oder Subpage ist und dann die ID der Page.

        Ich habe in der Wiki mal diesen Artikel verfasst, vlt. hilft er Dir.

        Ich füttere bei mir einen DP aus einer Index Seite mi der ID und verwende folgendes Blockly dafür:

        5d7426ae-d9c2-4c63-a80b-af685dfdf179-image.png

        Ich habe aber keine Subpages dabei!
        LG

        1 Reply Last reply Reply Quote 1
        • L
          lustig29 @Kuckuckmann last edited by

          @kuckuckmann Da liegt ja das Problem. Bekomme Tasmota nicht geflasht.

          T K L 3 Replies Last reply Reply Quote 0
          • T
            ticaki Developer @lustig29 last edited by

            @lustig29

            Das ist aber keine brauchbare Fehlermeldung. Wenn du genau nach Anleitung vorgehst geht es und wenn es nicht geht, kommt beim Flashvorgang eine Fehlermeldung. Haste erase nicht aktiviert?

            1 Reply Last reply Reply Quote 0
            • K
              Kuckuckmann @lustig29 last edited by

              @lustig29

              Ja über OTA bzw. den Upload an der Stelle wird es wohl nicht gehen.
              Ich denke Du wirst es so falshen müssen, wie es z.B. Matthias im Video beschreibt. Panel aufmachen und via TTL Flasher direkt flashen.
              Davon ab, Google mal ob es aus der HA Version eine andere Möglichkeit gibt. Ich für meinen Teil, kann dazu aber keinen Support liefern, tut mir leid.

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

                @kuckuckmann
                Der Flashvorgang entfernt nicht die urspüngliche konfiguration. Wenn du da ne neue tasmota version drauf machst, ist die noch immer mit den alten Daten am laufen..

                1 Reply Last reply Reply Quote 0
                • L
                  lustig29 @lustig29 last edited by lustig29

                  @Kuckuckmann Naja, ich werde mich jetzt erstmal den anderen Panel widmen. Kannst du mir bei der Sonos Sache nochmal bitte helfen? Ich habe jetzt das Skript komplett gelöscht, neu reinkopiert und angepasst. Immer wieder dasselbe Problem. Egal welchen Button ich in der Sonos Card drücke, Display blinkt kurz auf, aber es gibt keine Reaktion. Als Beispiel, wenn die Favoritentasten drücke, werden mir die Favoriten nicht angezeigt.

                  1 Reply Last reply Reply Quote 0
                  • L
                    lustig29 last edited by

                    Hat schon jemand einen Merros Garagentoröffner eingebunden?

                    icebear 1 Reply Last reply Reply Quote 0
                    • icebear
                      icebear @lustig29 last edited by

                      @lustig29 said in SONOFF NSPanel mit Lovelace UI:

                      Hat schon jemand einen Merros Garagentoröffner eingebunden?

                      Ja Ich.

                      L 1 Reply Last reply Reply Quote 0
                      • L
                        lustig29 @icebear last edited by

                        @icebear Würdest du mir zeigen wie du es auf dem NsPanel steuerst, bzw. die Card mit mir teilen?😊

                        icebear 1 Reply Last reply Reply Quote 0
                        • icebear
                          icebear @lustig29 last edited by icebear

                          @lustig29 said in SONOFF NSPanel mit Lovelace UI:

                          Würdest du mir zeigen wie du es auf dem NsPanel steuerst, bzw. die Card mit mir teilen?

                          Ich hab die Garage auf zwei Card's, einmal auf einer Übersicht und einmal alleine, außerdem wird es noch als ScreensaverEntity angezeigt.

                          Hier die Alias die ich dafür habe:

                          garage.png

                          Und hier die Card's:

                          let Grundstueck: PageType = {
                              'type': 'cardGrid',
                              'heading': 'Grundstück',
                              'useColor': true,
                              'subPage': false,
                              'next': 'Alarm', 
                              'items': [
                                  { navigate: true, id: null, targetPage: 'Nuki', name: 'Haus', icon: 'home-roof', offColor: Blue, onColor: Blue},
                          		{ id: 'alias.0.Home.Garage.Garagentor', targetPage: 'Garage', name: 'Garage', icon: 'garage-variant', icon2: 'garage-open-variant', offColor: Red, onColor: White},
                                  { id: 'alias.0.Home.NewMail', icon: 'mailbox-open-up-outline', icon2: 'mailbox-outline', offColor: White, onColor: Red, name: 'Mail'},
                          		{ navigate: true, id: null, targetPage: 'Erdgeschoss', name: 'Erdgeschoss', icon: 'home-floor-0', offColor: White, onColor: Blue},
                          		{ navigate: true, id: null, targetPage: 'Obergeschoss', name: 'Obergeschoss', icon: 'home-floor-1', offColor: White, onColor: Blue}
                              ]
                          };
                          
                          let Garage: PageType =
                          {
                              'type': 'cardEntities',
                              'heading': 'Garage',
                              'useColor': true,
                              'subPage': true,
                          	'prev': 'Nuki',
                          	'next': 'Abfall',
                              'items': [
                                  { id: 'alias.0.Home.Garage.Garagentor', icon: 'garage', icon2: 'garage-open', offColor: MSRed, onColor: MSGreen, name: 'Garagentor'},
                              ]
                          };
                          
                          L 1 Reply Last reply Reply Quote 0
                          • L
                            lustig29 @icebear last edited by lustig29

                            @icebear

                            Danke. Hab es jetzt ein bisschen abgeändert. Aber es funktioniert leider nicht.

                            let Garage: PageType =
                            {
                                'type': 'cardEntities',
                                'heading': 'Garage',
                                'subPage': false,
                                'items': [
                                    { id: 'alias.0.NSPanel.1.Garagentor', icon: 'garage', icon2: 'garage-open', offColor: MSRed, onColor: MSGreen, name: 'Garagentor'},
                                ]
                            
                            javascript.0 (94354) script.js.NSPanelTs: TypeScript compilation failed: let Garage: PageType = { ^ ERROR: Type '{ type: "cardEntities"; heading: string; subPage: false; items: [{ id: string; icon: string; icon2: string; offColor: NSPanel.RGB; onColor: NSPanel.RGB; name: string; }]; }' is not assignable to type 'PageType'. Type '{ type: "cardEntities"; heading: string; subPage: false; items: [{ id: string; icon: string; icon2: string; offColor: NSPanel.RGB; onColor: NSPanel.RGB; name: string; }]; }' is not assignable to type 'PageEntities'. Property 'useColor' is missing in type '{ type: "cardEntities"; heading: string; subPage: false; items: [{ id: string; icon: string; icon2: string; offColor: NSPanel.RGB; onColor: NSPanel.RGB; name: string; }]; }' but required in type 'PageBaseType'.
                            
                            icebear 1 Reply Last reply Reply Quote 0
                            • icebear
                              icebear @lustig29 last edited by

                              @lustig29

                              Hast du denn, wenn du das subPage auf 'False setzt' die Card auch bei dir bei Pages eingetragen?

                              L 1 Reply Last reply Reply Quote 0
                              • L
                                lustig29 @icebear last edited by

                                @icebear Ja, hab ich. Oder soll ich mal die Subpages mal wieder aktivieren?

                                icebear 1 Reply Last reply Reply Quote 0
                                • icebear
                                  icebear @lustig29 last edited by

                                  @lustig29

                                  trag mal das 'useColor': true, wieder ein

                                  L 1 Reply Last reply Reply Quote 0
                                  • L
                                    lustig29 @icebear last edited by

                                    @icebear
                                    Jetzt sieht es besser aus. Leider wird mir nur Garage "geschlossen" angezeigt.
                                    Hab die andere Card jetzt auch mal eingefügt. Sieht optisch sehr gut aus. Was muss ich einstellen, damit ich mein Garagentor in groß angezeigt bekomme? Will nicht wieder zu viel löschen.😁

                                    T 1 Reply Last reply Reply Quote 0
                                    • T
                                      TT-Tom @lustig29 last edited by TT-Tom

                                      @lustig29 nimm mal die cardGrid. Größer gehen die Icon nicht.

                                      Wenn das Icon nur zu anzeigt, wird es an dem Alias liegen. Wie sieht den der Channel und die darunter liegende Datenpunkte aus.

                                      L 1 Reply Last reply Reply Quote 0
                                      • L
                                        lustig29 @TT-Tom last edited by

                                        @tt-tom IMG_4317.png IMG_4316.png

                                        T 1 Reply Last reply Reply Quote 0
                                        • T
                                          TT-Tom @lustig29 last edited by TT-Tom

                                          @lustig29

                                          setze mal bei ACTUAL den gleichen DP ein, wie bei SET. Welchen DP hast du genommen bei SET, ist auf dem Foto nicht zu erkennen.

                                          L 1 Reply Last reply Reply Quote 0
                                          • L
                                            lustig29 @TT-Tom last edited by

                                            @tt-tom 0-garageDoor. Hab den selben jetzt bei Actual auch eingetragen. Geht aber leider nicht.

                                            T icebear 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            968
                                            Online

                                            31.6k
                                            Users

                                            79.5k
                                            Topics

                                            1.3m
                                            Posts

                                            lovelace ui nspanel sonoff
                                            260
                                            7128
                                            4398817
                                            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