Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Praktische Anwendungen (Showcase)
    4. Neu entwickelter Heizungs-Controller für ELV HmIP-VDMot

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Neu entwickelter Heizungs-Controller für ELV HmIP-VDMot

    This topic has been deleted. Only users with topic management privileges can see it.
    • Gargano
      Gargano @Elluminatus last edited by

      @elluminatus Dann ändere bitte den Typ von tValue in den Objekten:

      {
      "_id": "mqtt.2.VdMotFBH.valves.Bad.tValue",
      "common": {
      "name": "/VdMotFBH/valves/Bad/tValue",
      "write": true,
      "read": true,
      "role": "variable",
      "desc": "mqtt server variable",
      "type": "number"
      },

      E 1 Reply Last reply Reply Quote 0
      • E
        Elluminatus @Gargano last edited by Elluminatus

        @gargano Danke sehr, mache ich.

        Und sagst Du mir noch welche Dateien ich für das 1.0.8 Update brauche?

        Für WT32 die ESP32_firmware.bin und
        für STM32 die STM32_C2_firmware.bin?
        Mit der Partitions.bin muss ich nichts machen, richtig?

        So also der number Fehler ist weg.

        Gargano 1 Reply Last reply Reply Quote 0
        • Gargano
          Gargano @Elluminatus last edited by Gargano

          @elluminatus
          Partitions hast Du ja schon, da also nichts machen.

          Für den WT32 die ESP32_firmware.bin
          und für den STM32 die STM32_C2_firmware.bin. Du hast ja sicherlich die C2 Hardware..

          sollte dann so auschauen :

          073423c9-c026-4873-8573-e9845aef7169-image.png

          E 1 Reply Last reply Reply Quote 0
          • E
            Elluminatus @Gargano last edited by Elluminatus

            @gargano Okay versuche ich.

            c682d6bc-13a9-4264-a225-f9bfeb2a5682-image.png

            162fc7b5-febf-40eb-b246-9dfb2a22edf7-image.png

            Ich bekomme beim Update Versuch ein Error... Muss ich das Filesystem vorher formatieren und dann erst hochladen?

            Habe noch eine Sache gesehen:

            e79c7fed-d426-4c55-bf06-af7435f795d7-image.png

            Die Anzeige bei tValue ist rot und bleibt immer bei 17.54. Ist das zunächst so in Ordnung?

            Gargano 1 Reply Last reply Reply Quote 0
            • Gargano
              Gargano @Elluminatus last edited by Gargano

              @elluminatus
              Da gibt es auf der Platine einen Steckjumper zwischen WTH32 und dem Motorstecker :
              X 20 STM Reset

              18a61bac-0fbd-434d-84ae-0cb11f932a2d-image.png

              sollte immer gesteckt sein.
              Wenn nicht gesteckt, kann er auch nicht updaten ,
              Wenn Du keinen Jumper hast, kannst auch eine Drahtbrücke drauflöten.

              Sollte so aussehen :

              d14fd71c-eacc-48b1-a12c-1900e20e3879-image.png

              IoBroker :
              tTarget (=Soll Temperatur) sollte aber auch nicht (null) sein und tValue sollte sich mit der Temperatur vom Raum ändern.

              Zeig mal Dein Script bitte.

              E 1 Reply Last reply Reply Quote 0
              • E
                Elluminatus @Gargano last edited by Elluminatus

                @gargano Das war der Hinweis zum Update, danke sehr:

                2b6d8100-7f68-4db6-99f4-549252637634-image.png

                Hier das Skript:

                const idWohn_Temp="alias.0.Thermostate.KE_Werkstatt.ACTUAL";
                
                const idWohn_SetPoint="heatingcontrol.0.Rooms.Keller_Werkstatt.CurrentTarget";
                
                const idWohn_FB_Value="mqtt.0.FBH-KE-HWR.valves.Werkstatt.tValue";
                
                const idWohn_FB_Target="mqtt.0.FBH-KE-HWR.valves.Werkstatt.tTarget";
                
                 
                
                on({id: idWohn_Temp, change: 'ne'}, function (obj) {
                
                setState(idWohn_FB_Value,obj.state.val);
                
                });
                
                 
                
                on({id: idWohn_SetPoint, change: 'ne'}, function (obj) {
                
                setState(idWohn_FB_Target,obj.state.val);
                
                });
                
                 
                
                
                
                Gargano 1 Reply Last reply Reply Quote 0
                • Gargano
                  Gargano @Elluminatus last edited by Gargano

                  @elluminatus
                  Sieht eigentlich ok aus.
                  Was steht denn beim Objekt

                  heatingcontrol.0.Rooms.Keller_Werkstatt.CurrentTarget
                  

                  Oder hast Du noch kein Profil erstellt ?

                  Ich habe mir unter Geräte ein Thermostat angelegt
                  6ea37bf0-5963-44ec-a449-1ccb26bd2265-image.png

                  und unter Heating Control dann dies eingetragen

                  b8c8a617-0f01-4c85-b916-577bd33e68f2-image.png

                  E 1 Reply Last reply Reply Quote 0
                  • E
                    Elluminatus @Gargano last edited by Elluminatus

                    @gargano Oh je, ja klar, das Profil scheint es zu sein. Es ist nicht aktiviert gewesen.
                    Ich ändere das mal...

                    2803ac6a-01e8-490e-938b-9df71efb86a9-image.png Moment

                    d537cc77-7110-408f-b260-35581668fc50-image.png

                    Gargano 1 Reply Last reply Reply Quote 0
                    • Gargano
                      Gargano @Elluminatus last edited by Gargano

                      @elluminatus Und dann halt im Heating Control Editor eintragen

                      c4e80dbb-fdbc-4c7c-8113-af50889c5f9b-image.png

                      cd461144-71ca-488b-9e28-b02e01fa495b-image.png

                      E 1 Reply Last reply Reply Quote 0
                      • E
                        Elluminatus @Gargano last edited by

                        @gargano Also diese Visualisierung ist mir neu, wo finde ich die? Muss da etwas installiert werden?

                        1 Reply Last reply Reply Quote 0
                        • Gargano
                          Gargano last edited by

                          @elluminatus Such mal unter
                          iobroker Heating Control Visualisierung

                          Das ist eine VIS Vorlage im Github:
                          iobroker heating control

                          1 Reply Last reply Reply Quote 0
                          • E
                            Elluminatus last edited by Elluminatus

                            @gargano Okay, also eine Vis nutze ich derzeit gar nicht. Aber dafür habe ich ja eigentlich das NSPanel um die Temperatur im Raum auszuwählen. Ich dachte dies wird dann im Heatingcontrol eingetragen?

                            Habe ja jetzt

                            1. Einen separaten Temp Sensor pro Raum
                            2. NS Panel um Wunschtemp auszuwählen
                            3. Den VDmot um die Motorventile zu steuern

                            Es ist auch nboch rot:

                            d74930d3-634f-4142-9324-5a9d86c84c5b-image.png

                            Gargano 2 Replies Last reply Reply Quote 0
                            • Gargano
                              Gargano @Elluminatus last edited by Gargano

                              @elluminatus Heating control ist eigentlich dafür gedacht Profile zu erstellen. Also Nachtabsenkung, Urlaub etc.
                              Wenn Du das alles nicht brauchst, dann brauchst Du auch kein Heating Control.

                              Dann musst Du im Panel Script ein Thermostat anlegen :

                              let Wohn_Themostat = <PageThermo>
                              {
                              'type': 'cardThermo',
                              'heading': 'Wohn Thermostat',
                              'useColor': true,
                              'items': [<PageItem>{ id: 'alias.0.Thermostate.Keller_Werkstatt', minValue: 10, maxValue: 30 }]
                              };

                              Und Dein copy script anpassen auf die neuen Objekte

                              E 1 Reply Last reply Reply Quote 0
                              • E
                                Elluminatus @Gargano last edited by Elluminatus

                                @gargano Ja ich wollte beides nutzen können. Jetzt habe ich zumindest beide Einträge beim VDmot. Schau mal:

                                71fe50ba-e4e2-4fbb-804c-d260e21edc5f-image.png

                                Habe im NSPanel jetzt extra mal einen hohen Wert eingestellt von 23 Grad. Der wird jetzt übernommen, so scheint es...

                                1 Reply Last reply Reply Quote 0
                                • Gargano
                                  Gargano @Elluminatus last edited by

                                  @elluminatus sagte in Neu entwickelter Heizungs-Controller für ELV HmIP-VDMot:

                                  Habe ja jetzt

                                  Einen separaten Temp Sensor pro Raum
                                  NS Panel um Wunschtemp auszuwählen
                                  Den VDmot um die Motorventile zu steuern

                                  Sehe ich das richtig : Ein Temp Sensor pro Raum, aber nur ein NSPanel ?

                                  E 1 Reply Last reply Reply Quote 0
                                  • E
                                    Elluminatus @Gargano last edited by

                                    @gargano Nein in jedem Raum ein NSPanel und in jedem Raum einen separaten Temp Sensor.

                                    Gargano 1 Reply Last reply Reply Quote 0
                                    • Gargano
                                      Gargano @Elluminatus last edited by

                                      @elluminatus Ok, also alles getrennte Systeme.

                                      Wie kommt dann die Kopplung von 23° her ?
                                      Das heißt , Du hast schon ein Thermostat im NSPanel , der die Solltemp wohin schreibt ?

                                      Du musst doch die Solltemperatur übertragen , hat ja dann nichts mit heating control zu tun.

                                      E 1 Reply Last reply Reply Quote 0
                                      • E
                                        Elluminatus @Gargano last edited by Elluminatus

                                        @gargano Also ich wähle im NSPanel die Thermostat Seite und gebe dort 23 Grad ein. Und der schreibt den Wert in mein Thermostat Alias

                                        9d3fb3b4-4ea3-4187-bbfa-352e9a0670a4-image.png

                                        Und von dort nimmt es dann ja dann Dein Skript:

                                        const idWohn_Temp="alias.0.Thermostate.KE_Werkstatt.ACTUAL";
                                        
                                        
                                        
                                        
                                        
                                        

                                        und den Werte habe ich dann bei heatingcontrol eingetragen

                                        bfa21f59-168d-486b-b9bf-2e84552eb774-image.png

                                        alias.0.Thermostate.KE_Werkstatt.ACTUAL
                                        alias.0.Thermostate.KE_Werkstatt.SET

                                        Im vdmot sieht es dann so aus:

                                        01c7eefd-8b35-4016-95f8-146621c62d23-image.png

                                        Gargano 1 Reply Last reply Reply Quote 0
                                        • Gargano
                                          Gargano @Elluminatus last edited by Gargano

                                          @elluminatus ja ok, sieht schonmal gut aus.
                                          Nur mußt Du im copy Script dann den alias für tTarget nehmen :

                                          also anstatt

                                          const idWohn_Temp="alias.0.Thermostate.KE_Werkstatt.ACTUAL";
                                          const idWohn_SetPoint="heatingcontrol.0.Rooms.Keller_Werkstatt.CurrentTarget";
                                          const idWohn_FB_Value="mqtt.0.FBH-KE-HWR.valves.Werkstatt.tValue";
                                          const idWohn_FB_Target="mqtt.0.FBH-KE-HWR.valves.Werkstatt.tTarget";
                                           
                                          

                                          dies

                                          const idWohn_Temp="alias.0.Thermostate.KE_Werkstatt.ACTUAL";
                                          const idWohn_SetPoint="alias.0.Thermostate.KE_Werkstatt.SET";
                                          const idWohn_FB_Value="mqtt.0.FBH-KE-HWR.valves.Werkstatt.tValue";
                                          const idWohn_FB_Target="mqtt.0.FBH-KE-HWR.valves.Werkstatt.tTarget";
                                           
                                          

                                          Kannst Du mal schauen, ob dann beides geht: Heating Control und NSPanel.
                                          Bleibt dann nur noch die Sache mit automatic und manuell.

                                          E 1 Reply Last reply Reply Quote 0
                                          • E
                                            Elluminatus @Gargano last edited by Elluminatus

                                            @gargano Ja das sieht gut aus. Das mit dem Set hatte ich vor lauter Kreisdenken schon nicht mehr im Blickfeld. Danke sehr!

                                            Ja also die Thermostatseite sieht jetzt so aus (hatte es jetzt zu Testzwecken auf 20 Grad gestellt, wird übernommen)

                                            WhatsApp Image 2023-02-19 at 17.22.58.jpeg

                                            und steht auf Manu, weiter Profile habe ich unter dem Alias auch erstmal zu Beginn nicht eingetragen. Wäre ja super, wenn ich es jetzt auf Auto stellen könnte und dann das Heatingcontrol Skript die Steuerung übernimt

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            615
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            13
                                            168
                                            17420
                                            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