Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. [gelöst] Brauche Hilfe beim NSPanel mit Tasmota

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    721

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    18
    1
    5.9k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.5k

[gelöst] Brauche Hilfe beim NSPanel mit Tasmota

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
nspanel mqtt sonoff
104 Beiträge 5 Kommentatoren 12.4k Aufrufe 4 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • GregorSG GregorS

    @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 Offline
    T Offline
    TT-Tom
    schrieb am zuletzt editiert von
    #81

    @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 },
    
    

    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

    GregorSG 1 Antwort Letzte Antwort
    0
    • T TT-Tom

      @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 },
      
      
      GregorSG Online
      GregorSG Online
      GregorS
      schrieb am zuletzt editiert von
      #82

      @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?

      INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

      T 1 Antwort Letzte Antwort
      0
      • GregorSG GregorS

        @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 Offline
        T Offline
        TT-Tom
        schrieb am zuletzt editiert von
        #83

        @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,
        };
        
        

        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

        GregorSG 1 Antwort Letzte Antwort
        0
        • T TT-Tom

          @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,
          };
          
          
          GregorSG Online
          GregorSG Online
          GregorS
          schrieb am zuletzt editiert von
          #84

          @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

          INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

          T 1 Antwort Letzte Antwort
          0
          • GregorSG GregorS

            @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 Offline
            T Offline
            TT-Tom
            schrieb am zuletzt editiert von
            #85

            @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?

            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

            GregorSG 1 Antwort Letzte Antwort
            0
            • T TT-Tom

              @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?

              GregorSG Online
              GregorSG Online
              GregorS
              schrieb am zuletzt editiert von GregorS
              #86

              @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.

              INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

              T 1 Antwort Letzte Antwort
              0
              • GregorSG 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 Offline
                T Offline
                TT-Tom
                schrieb am zuletzt editiert von
                #87

                @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?

                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

                GregorSG 1 Antwort Letzte Antwort
                0
                • T TT-Tom

                  @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?

                  GregorSG Online
                  GregorSG Online
                  GregorS
                  schrieb am zuletzt editiert von
                  #88

                  @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

                  INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                  T 1 Antwort Letzte Antwort
                  0
                  • GregorSG GregorS

                    @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 Offline
                    T Offline
                    TT-Tom
                    schrieb am zuletzt editiert von TT-Tom
                    #89

                    @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?

                    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

                    GregorSG 1 Antwort Letzte Antwort
                    0
                    • T 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?

                      GregorSG Online
                      GregorSG Online
                      GregorS
                      schrieb am zuletzt editiert von GregorS
                      #90

                      @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
                      
                      

                      INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                      T 1 Antwort Letzte Antwort
                      0
                      • GregorSG 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 Offline
                        T Offline
                        TT-Tom
                        schrieb am zuletzt editiert von
                        #91

                        @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.

                        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

                        GregorSG 1 Antwort Letzte Antwort
                        0
                        • T TT-Tom

                          @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.

                          GregorSG Online
                          GregorSG Online
                          GregorS
                          schrieb am zuletzt editiert von
                          #92

                          @tt-tom
                          a1.JPG

                          a2.JPG

                          a3.JPG

                          INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                          ArmilarA 1 Antwort Letzte Antwort
                          0
                          • GregorSG GregorS

                            @tt-tom
                            a1.JPG

                            a2.JPG

                            a3.JPG

                            ArmilarA Offline
                            ArmilarA Offline
                            Armilar
                            Most Active Forum Testing
                            schrieb am zuletzt editiert von Armilar
                            #93

                            @gregors

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

                            Der Apostroph muss raus

                            also nur

                            mqtt.1.*

                            Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                            https://github.com/joBr99/nspanel-lovelace-ui/wiki

                            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                            GregorSG 1 Antwort Letzte Antwort
                            1
                            • ArmilarA Armilar

                              @gregors

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

                              Der Apostroph muss raus

                              also nur

                              mqtt.1.*

                              GregorSG Online
                              GregorSG Online
                              GregorS
                              schrieb am zuletzt editiert von GregorS
                              #94

                              @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.

                              INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                              ArmilarA 1 Antwort Letzte Antwort
                              0
                              • GregorSG 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.

                                ArmilarA Offline
                                ArmilarA Offline
                                Armilar
                                Most Active Forum Testing
                                schrieb am zuletzt editiert von
                                #95

                                @gregors

                                Sag nicht es läuft jetzt ;-)

                                Manchmal sind solche Kleinigkeiten echt schwer zu erkennen 😊

                                Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                                https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                GregorSG T 3 Antworten Letzte Antwort
                                0
                                • ArmilarA Armilar

                                  @gregors

                                  Sag nicht es läuft jetzt ;-)

                                  Manchmal sind solche Kleinigkeiten echt schwer zu erkennen 😊

                                  GregorSG Online
                                  GregorSG Online
                                  GregorS
                                  schrieb am zuletzt editiert von
                                  #96

                                  @armilar
                                  20230219_124538.jpg

                                  INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                                  ArmilarA 1 Antwort Letzte Antwort
                                  0
                                  • GregorSG GregorS

                                    @armilar
                                    20230219_124538.jpg

                                    ArmilarA Offline
                                    ArmilarA Offline
                                    Armilar
                                    Most Active Forum Testing
                                    schrieb am zuletzt editiert von
                                    #97

                                    @gregors

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

                                    Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                                    https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                    Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                    1 Antwort Letzte Antwort
                                    0
                                    • ArmilarA Armilar

                                      @gregors

                                      Sag nicht es läuft jetzt ;-)

                                      Manchmal sind solche Kleinigkeiten echt schwer zu erkennen 😊

                                      T Offline
                                      T Offline
                                      TT-Tom
                                      schrieb am zuletzt editiert von
                                      #98

                                      @armilar

                                      Man hast du gute Augen. Ich war kurz davor aufzugeben.

                                      @GregorS 👍 dann kann es ja jetzt so richtig los gehen. Bei weiteren Fragen, klinke dich in den Original Thread mit ein.

                                      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

                                      ArmilarA 1 Antwort Letzte Antwort
                                      0
                                      • ArmilarA Armilar

                                        @gregors

                                        Sag nicht es läuft jetzt ;-)

                                        Manchmal sind solche Kleinigkeiten echt schwer zu erkennen 😊

                                        GregorSG Online
                                        GregorSG Online
                                        GregorS
                                        schrieb am zuletzt editiert von
                                        #99

                                        @armilar
                                        Hab aaber noch eine Frage.
                                        links ist die Anzeige für Power1,
                                        bei Betätigung des Taster 2 wir die Temperatur rechts oben gelb.
                                        Ist das so, oder muss ich noch was einstellen?

                                        INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                                        T ArmilarA 2 Antworten Letzte Antwort
                                        0
                                        • T TT-Tom

                                          @armilar

                                          Man hast du gute Augen. Ich war kurz davor aufzugeben.

                                          @GregorS 👍 dann kann es ja jetzt so richtig los gehen. Bei weiteren Fragen, klinke dich in den Original Thread mit ein.

                                          ArmilarA Offline
                                          ArmilarA Offline
                                          Armilar
                                          Most Active Forum Testing
                                          schrieb am zuletzt editiert von
                                          #100

                                          @tt-tom

                                          Es war eigentlich immer klar, dass es ein MQTT-Problem war... Mit Deiner Anfrage nochmals die MQTT-Einstellungen zu zeigen, bin ich das echt akribisch Zeichen für Zeichen durchgegangen ;-)

                                          Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                                          https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                          Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                          GregorSG 1 Antwort Letzte Antwort
                                          0

                                          Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                                          Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                                          Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                                          Registrieren Anmelden
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

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

                                          577

                                          Online

                                          32.8k

                                          Benutzer

                                          82.6k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe