Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. [gelöst] Brauche Hilfe beim NSPanel mit Tasmota

    NEWS

    • Amazon Alexa - ioBroker Skill läuft aus ?

    • Monatsrückblick – September 2025

    • Neues Video "KI im Smart Home" - ioBroker plus n8n

    [gelöst] Brauche Hilfe beim NSPanel mit Tasmota

    This topic has been deleted. Only users with topic management privileges can see it.
    • GregorS
      GregorS @TT-Tom last edited by

      @tt-tom
      Es kommt kein Fehler beim start des Scriptes

      mqtt.1
      	2023-02-18 19:16:51.076	info	Client [NSPanel_1] publishOnSubscribe send all known states
      mqtt.1
      	2023-02-18 19:16:51.076	info	Client [NSPanel_1] publishOnSubscribe send all known states
      mqtt.1
      	2023-02-18 19:16:51.075	info	Client [NSPanel_1] publishOnSubscribe send all known states
      mqtt.1
      	2023-02-18 19:16:50.876	info	Client [NSPanel_1] subscribes on "cmnd/NSPanel_1_fb/#" with regex /^mqtt\.1\.cmnd\.NSPanel_1_fb(\..*)?/
      mqtt.1
      	2023-02-18 19:16:50.876	info	Client [NSPanel_1] subscribes on "cmnd/NSPanel_1_fb/#" with regex /^cmnd\.NSPanel_1_fb(\..*)?/
      mqtt.1
      	2023-02-18 19:16:50.876	info	Client [NSPanel_1] subscribes on "SmartHome/tasmotas/cmnd/#" with regex /^mqtt\.1\.SmartHome\.tasmotas\.cmnd(\..*)?/
      mqtt.1
      	2023-02-18 19:16:50.875	info	Client [NSPanel_1] subscribes on "SmartHome/tasmotas/cmnd/#" with regex /^SmartHome\.tasmotas\.cmnd(\..*)?/
      mqtt.1
      	2023-02-18 19:16:50.875	info	Client [NSPanel_1] subscribes on "SmartHome/NSPanel_1/cmnd/#" with regex /^mqtt\.1\.SmartHome\.NSPanel_1\.cmnd(\..*)?/
      mqtt.1
      	2023-02-18 19:16:50.875	info	Client [NSPanel_1] subscribes on "SmartHome/NSPanel_1/cmnd/#" with regex /^SmartHome\.NSPanel_1\.cmnd(\..*)?/
      mqtt.1
      	2023-02-18 19:16:50.814	info	Client [NSPanel_1] reconnected. Old secret 1676669581168_8048. New secret 1676744210814_6955
      

      Alias werden doch angelegt. Habe ich irgendwie übersehen - Sorry.
      Habe ich wie auch die userdata-Einträge vorher gelöscht.

      Ports brauche ich nicht freigeben.
      Habe an mqtt.0 einen fernen Rasp, der mir Daten übermittelt.

      In CustomSend wird kurz die Uhrzeit aktualisiert, dannach erscheint wieder in rot

      entityUpd~Büro~button~bPrev~~65535~~~button~bNext~~65535~~~delete~~~~~~delete~~~~~~delete~~~~~~delete~~~~~
      
      export const config: Config = {
          panelRecvTopic: 'mqtt.1.SmartHome.NSPanel_1.tele.RESULT',       // Bitte anpassen
          panelSendTopic: 'mqtt.1.SmartHome.NSPanel_1.cmnd.CustomSend',   // Bitte anpassen
      
      T 1 Reply Last reply Reply Quote 0
      • T
        TT-Tom @GregorS last edited by

        @gregors

        Okay dann wird das Problem hier sein.

        
        entityUpd~Büro~button~bPrev~~65535~~~button~bNext~~65535~~~delete~~~~~~delete~~~~~~delete~~~~~~delete~~~~~
        
        

        Hast du eine Seite die Büro heißt?
        Zeige bitte mal die Auflistung deiner Seiten.

        @Armilar
        Wenn ich den Payload richtig verstehe will er auf die Seite Büro updaten, kannst du dir das erklären.

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

          @tt-tom

          Ich habe keine Seite die Büro heißt.
          Im Script gibt es folgenden Teil:

          let Buero_Seite_1 = <PageEntities>
          {
              'type': 'cardEntities',
              'heading': 'Büro',
              'useColor': true,
              'items': [
                  <PageItem>{ id: 'alias.0.NSPanel_1.Schreibtischlampe', interpolateColor: true},
                  <PageItem>{ id: 'alias.0.NSPanel_1.Deckenbeleuchtung', interpolateColor: true},
                  <PageItem>{ id: 'alias.0.NSPanel_1.Testlampe2', name: 'Filamentlampe', minValueBrightness: 0, maxValueBrightness: 70, interpolateColor: true},
                  <PageItem>{ id: 'alias.0.NSPanel_1.Luftreiniger', icon: 'power', icon2: 'power',offColor: MSRed, onColor: MSGreen}
          

          Ich hab bis auf den Wetterdienst, panelRecvTopic und panelSendTopic keine Änderungen am Script vorgenommen.

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

            @GregorS
            Okay dann musst du noch die beiden Stellen anpassen. Der MQTT Pfad muss stimmen.

            
             // Indikator Icons im oberen Teil des Screensavers
                // Mit 3.9.0 neue Parameter - Bitte anpassen - siehe auch Wiki
                mrIcon1ScreensaverEntity: { ScreensaverEntity: 'mqtt.0.SmartHome.NSPanel_1.stat.POWER1', 
                                            ScreensaverEntityIconOn: 'lightbulb',                           //Rename
                                            ScreensaverEntityIconOff: null, 
                                            ScreensaverEntityValue: null,                                   //New
                                            ScreensaverEntityValueDecimalPlace : 0,                         //New
                                            ScreensaverEntityValueUnit: null,                               //New
                                            ScreensaverEntityOnColor: On, 
                                            ScreensaverEntityOffColor: HMIOff },
                mrIcon2ScreensaverEntity: { ScreensaverEntity: 'mqtt.0.SmartHome.NSPanel_1.stat.POWER2', 
                                            ScreensaverEntityIconOn: 'heat-wave',
                                            ScreensaverEntityIconOff: null, 
                                            ScreensaverEntityValue: NSPanel_Path + 'Sensor.ANALOG.Temperature',
                                            ScreensaverEntityValueDecimalPlace : 1,
                                            ScreensaverEntityValueUnit: '°', 
                                            ScreensaverEntityOnColor: MSRed, 
                                            ScreensaverEntityOffColor: Yellow },
            
            
            GregorS 1 Reply Last reply Reply Quote 0
            • GregorS
              GregorS @TT-Tom last edited by

              @tt-tom

              Habe ich aktualisiert.
              Keine Änderung.

              entityUpd~Büro~button~bPrev~~65535~~~button~bNext~~65535~~~delete~~~~~~delete~~~~~~delete~~~~~~delete~~~~~
              

              Frage:
              Wie kommen Infos aus dem NSPanel in mqtt.0 mit dem Port 6064?

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

                @gregors

                Gute Frage, ohne dein System richtig zu kennen, kann ich dir das auch nicht sagen. Wenn du die Einträge löschst, kommen sie dann wieder?

                Im Script bitte mal die Page Auflistung wie folgt anpassen.

                
                pages: [
                	   // Buero_Seite_1,          //Beispiel-Seite
                            //WLED,                   //Beispiel-Seite
                           // Radiosender,            //Beispiel-Seite
                           // SensorGrid,             //Beispiel-Seite
                            //CardLChartExample,      //Beispiel-Seite
                            //CardChartExample,       //Beispiel-Seite
                            //CardPowerExample,       //Beispiel-Seite
                            //SqueezeboxRPC,          //Beispiel-Seite
                            //Sonos,                  //Beispiel-Seite
                            //SpotifyPremium,         //Beispiel-Seite
                            //Alexa,                  //Beispiel-Seite
                           // Buero_Seite_2,          //Beispiel-Seite
                           // Buero_Klimaanlage,      //Beispiel-Seite 
                           // Button_1,               //Beispiel-Seite
                           // Test_Licht1,            //Beispiel-Seite
                           // Test_Licht2,            //Beispiel-Seite
                           // Test_Funktionen,        //Beispiel-Seite    
                           // Fenster_1,              //Beispiel-Seite
                           // Subpages_1,             //Beispiel-Seite
                           // Buero_Themostat,        //Beispiel-Seite
                           // Buero_Alarm,            //Beispiel-Seite
                	    
                            NSPanel_Service         //Auto-Alias Service Page
                    ],
                    subPages: [
                	     //   Abfall,                                 //Beispiel-Unterseite
                            //    WLAN,                                   //Beispiel-Unterseite
                	    
                                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_ScreensaverOther,       //Auto-Alias Service Page
                                        NSPanel_Weather,                //Auto-Alias Service Page
                                        NSPanel_Dateformat,             //Auto-Alias Service Page
                                        NSPanel_Indicators,             //Auto-Alias Service Page
                                        NSPanel_Relays,                 //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
                    ],
                    button1Page: null,   //Beispiel-Seite auf Button 1, wenn Rule2 definiert - Wenn nicht definiert --> button1Page: null, 
                    button2Page: null   //Beispiel-Seite auf Button 2, wenn Rule2 definiert - Wenn nicht definiert --> button1Page: null,
                };
                
                
                GregorS 1 Reply Last reply Reply Quote 0
                • GregorS
                  GregorS @TT-Tom last edited by

                  @tt-tom

                  Habe ich abgeändert.
                  Jetzt steht in CustomSend

                  entityUpd~NSPanel Service~button~bPrev~~65535~~~button~bNext~~65535~~~button~navigate.NSPanel_Infos~~38060~Infos~mehr...~button~navigate.NSPanel_Einstellungen~~38060~Einstellungen~mehr...~button~navigate.NSPanel_Firmware~~38060~Firmware~mehr...~button~alias.0.NSPanel.1.Config.rebootNSPanel~~32495~Reboot NSPanel~Start
                  

                  Objekte in mqtt.0 werden immer wieder neu angelegt

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

                    @gregors

                    Also das Script, sendet die richtigen Daten. Sie kommen aber im Panel nicht an. Irgend etwas stimmt dann mit der MQTT Verbindung nicht. Kannst du mal die Instanz 0 mal stoppen?

                    Bleibt die Struktur in MQTT.0 mit den Daten gleich oder haben sich die Verzeichnisse geändert?

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

                      @tt-tom

                      mqtt.0 ist gestoppt.
                      Die Datenstruktur in mqtt.0 ist immer dieselbe.
                      Ich bekomme von dem Rasp nur 16 Werte von Sensoren.
                      Werte sind auch plausibel.
                      Nach dem löschen der Objekte vom NSPanel im mqtt.0 habe ich nun folgende fehler im Log

                      mqtt.0
                      	2023-02-18 22:18:06.934	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.sensors" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.898	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.config" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.897	warn	State "mqtt.0.tele.tasmota_E7EE88.SENSOR" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.897	warn	State "mqtt.0.tele.tasmota_E7EE88.STATE" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.897	warn	State "mqtt.0.tele.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.896	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.896	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.896	warn	State "mqtt.0.stat.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.890	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO3" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.890	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.889	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.888	warn	State "mqtt.0.cmnd.tasmota_E7EE88.POWER" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:18:06.814	warn	State "mqtt.0.tele.tasmota_E7EE88.LWT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.375	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.sensors" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.373	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.config" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.372	warn	State "mqtt.0.tele.tasmota_E7EE88.SENSOR" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.372	warn	State "mqtt.0.tele.tasmota_E7EE88.STATE" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.372	warn	State "mqtt.0.tele.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.371	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.371	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.371	warn	State "mqtt.0.stat.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.370	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO3" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.370	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.370	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.367	warn	State "mqtt.0.cmnd.tasmota_E7EE88.POWER" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:15:06.366	warn	State "mqtt.0.tele.tasmota_E7EE88.LWT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.394	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.sensors" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.394	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.config" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.394	warn	State "mqtt.0.tele.tasmota_E7EE88.SENSOR" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.394	warn	State "mqtt.0.tele.tasmota_E7EE88.STATE" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.394	warn	State "mqtt.0.tele.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.393	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.393	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.393	warn	State "mqtt.0.stat.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.392	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO3" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.392	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.392	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.392	warn	State "mqtt.0.cmnd.tasmota_E7EE88.POWER" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:12:06.391	warn	State "mqtt.0.tele.tasmota_E7EE88.LWT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.439	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.sensors" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.438	warn	State "mqtt.0.tasmota.discovery.C4DD57E7EE88.config" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.414	warn	State "mqtt.0.tele.tasmota_E7EE88.SENSOR" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.414	warn	State "mqtt.0.tele.tasmota_E7EE88.STATE" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.414	warn	State "mqtt.0.tele.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.413	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.413	warn	State "mqtt.0.stat.tasmota_E7EE88.POWER1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.413	warn	State "mqtt.0.stat.tasmota_E7EE88.RESULT" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.412	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO3" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.412	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO2" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.372	warn	State "mqtt.0.tele.tasmota_E7EE88.INFO1" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.371	warn	State "mqtt.0.cmnd.tasmota_E7EE88.POWER" has no existing object, this might lead to an error in future versions
                      mqtt.0
                      	2023-02-18 22:09:06.370	warn	State "mqtt.0.tele.tasmota_E7EE88.LWT" has no existing object, this might lead to an error in future versions
                      

                      Habe das Script mal neu gestartet.

                      Ich bekomme aber vom NSPanel die Informationen von den Relais sauber rüber.

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

                        @gregors

                        Starte die MQTT.0 Instanz mal neu. Wenn dein Panel sich wieder anmeldet werden auch die Datenpunkte erstellt.
                        Es gibt bei jeder Instanz ein Info Ordner dort stehen die Verbindungen drin, bitte mal nachsehen.

                        Was meinst du mit Relais Info?

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

                          @tt-tom

                          Nach dem start von mqtt.0 waren die Objekte wieder da.
                          Hier die Info von mqtt.0
                          a1.JPG
                          und hier von mqtt.1
                          a2.JPG

                          Ich meine den Wert von stat/Power_1 und Power_2 in mqtt.1

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

                            @gregors

                            Langsam bin ich am verzweifeln. Also die Daten kommen vom Panel über den Broker an. Das siehst du an den Relais/Status.

                            Zusätzlich bekommst du Daten über die Instanz 0, ändern sich da auch die Relais, wie bei Instanz 1?

                            Ich habe den Verdacht das dein Raspi auch eine Verbindung zum Panel hat. Was läuft den dort. Kannst du das mal prüfen?

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

                              @tt-tom
                              hattest recht. Der Rasp hatte tatsächlich die Infos vom NSPanel und hat sie dann immer wieder
                              publiziert.
                              Habe sie dort gelöscht und seit dem, habe ich keine Einträge mehr im mqtt.0
                              Aber ich sehe leider immer noch kein Bild auf dem NSPanel ausser dem drehenden Kreis.
                              Habe auch mal den mqtt-client auf dem Rasp und dem ioB gestoppt - brachte keinen Erfolg.

                              Ich habe soeben nochmals das Wiki bis Punkt 9 durchgearbeitet.
                              Unter Punkt 5:
                              Tasmota „Konsolen/Konsole“ öffnen und in die Kommandozeile
                              --> FlashNextion http://nspanel.pky.eu/lovelace-ui/github/nspanel-v3.9.0.tft
                              Ist das richtig?
                              Achtung !!! Die aktuellsten Versionen (3.9.0 könnte nicht mehr aktuell sein) befinden sich "immer" im ioBroker

                              Habe keine Version v3.9.0.4 finden können.

                                 - 29.01.2023 - v3.9.0   Upgrade TFT 49
                              	- 03.02.2023 - v3.9.0.2 Hotfix Screensaver bExit
                              	- 06.02.2023 - v3.9.0.3 PR #754 - added missing 'tempUpdHighLow' ButtonEvent handling - by @fre4242 	
                              	- 07.02.2023 - v3.9.0.4 Open activepage again after closing popupLight or popupShutter
                              
                              
                              T 1 Reply Last reply Reply Quote 0
                              • T
                                TT-Tom @GregorS last edited by

                                @gregors

                                MQTT.0 -> haben wir ja ein Problem gelöst.

                                Ja 3.9.0 ist richtig.

                                Jetzt müssen wir sehen wie der Broker die Daten zum Panel sendet. Zeige mal bitte nochmal die Einstellung von Tasmota und von MQTT.1.

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

                                  @tt-tom
                                  a1.JPG

                                  a2.JPG

                                  a3.JPG

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

                                    @gregors

                                    1b1f18e4-a622-4b2b-a145-e19574099287-image.png

                                    Der Apostroph muss raus

                                    also nur

                                    mqtt.1.*

                                    GregorS 1 Reply Last reply Reply Quote 1
                                    • GregorS
                                      GregorS @Armilar last edited by GregorS

                                      @armilar
                                      @TT-Tom

                                      Das war die Lösung 👍
                                      Vielen Dank für Eure Geduld und die Hilfe!!

                                      Warum das NSPanel im Rasp gelandet ist, wird immer ein Rätsel bleiben.

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

                                        @gregors

                                        Sag nicht es läuft jetzt 😉

                                        Manchmal sind solche Kleinigkeiten echt schwer zu erkennen 😊

                                        GregorS T 3 Replies Last reply Reply Quote 0
                                        • GregorS
                                          GregorS @Armilar last edited by

                                          @armilar
                                          20230219_124538.jpg

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

                                            @gregors

                                            Ja dann noch viel Spaß bei Konfigurieren... Sieht ja Top aus 😊

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            778
                                            Online

                                            32.3k
                                            Users

                                            81.1k
                                            Topics

                                            1.3m
                                            Posts

                                            nspanel mqtt sonoff
                                            5
                                            104
                                            10433
                                            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