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

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

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Hardware
  4. DMP8624 -> iobroker

NEWS

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

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

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    16
    1
    3.1k

DMP8624 -> iobroker

Geplant Angeheftet Gesperrt Verschoben Hardware
235 Beiträge 7 Kommentatoren 37.4k Aufrufe 5 Watching
  • Ä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.
  • WalW Offline
    WalW Offline
    Wal
    Developer
    schrieb am zuletzt editiert von
    #105

    @ralla66 sagte in DMP8624 -> iobroker:

    Pylontech

    Pylontech US5000 1.235,25 € evtl. mit dem Weihnachtsgeld. ;-)

    Gruß
    Walter

    DoorIO-Adapter
    wioBrowser-Adapter und wioBrowser

    Ralla66R 2 Antworten Letzte Antwort
    0
    • WalW Wal

      @ralla66 sagte in DMP8624 -> iobroker:

      Pylontech

      Pylontech US5000 1.235,25 € evtl. mit dem Weihnachtsgeld. ;-)

      Ralla66R Offline
      Ralla66R Offline
      Ralla66
      Most Active
      schrieb am zuletzt editiert von
      #106

      @wal

      Die kleine Pylontech Routine

      1 Antwort Letzte Antwort
      0
      • WalW Wal

        @ralla66 sagte in DMP8624 -> iobroker:

        Pylontech

        Pylontech US5000 1.235,25 € evtl. mit dem Weihnachtsgeld. ;-)

        Ralla66R Offline
        Ralla66R Offline
        Ralla66
        Most Active
        schrieb am zuletzt editiert von
        #107

        @wal

        Request Antwort Json print so ?

        ; Read the status JSON payload

        U
        gw=StatusNET#Gateway
        print %gw%

        WalW 1 Antwort Letzte Antwort
        0
        • Ralla66R Ralla66

          @wal

          Request Antwort Json print so ?

          ; Read the status JSON payload

          U
          gw=StatusNET#Gateway
          print %gw%

          WalW Offline
          WalW Offline
          Wal
          Developer
          schrieb am zuletzt editiert von
          #108

          @ralla66 ,
          da musst du dich mal durcharbeiten, habe damit noch nichts gemacht. ;-)

          Gruß
          Walter

          DoorIO-Adapter
          wioBrowser-Adapter und wioBrowser

          Ralla66R 1 Antwort Letzte Antwort
          0
          • WalW Wal

            @ralla66 ,
            da musst du dich mal durcharbeiten, habe damit noch nichts gemacht. ;-)

            Ralla66R Offline
            Ralla66R Offline
            Ralla66
            Most Active
            schrieb am zuletzt editiert von Ralla66
            #109

            @wal

            ok, dann mal ran an Lehrbrief 1 -> Übung 1 :-)

            Button Websend einfügen, Websend ausführen, Antwort Request in Var schreiben.

            1 und 2 sollte gehen, bei 3 haperts noch ;-)

            >D
            ; Ralla
            gw=""
            
            Vmax=60
            Cmax=24
            v=0
            V=0
            c=0
            C=0
            sw=0
            SW=0
            ; Ralla
            WS=0
            rV="01060000"
            vV=""
            rC="01060001"
            vC=""
            rSW="01060002000"
            vSW=""
            >BS
            +>subscribe V, cmnd/%topic%/tvolt
            +>subscribe C, cmnd/%topic%/tampere
            +>subscribe SW, cmnd/%topic%/tpow
            >B
            smlj=0
            ->sensor53 r
            ; Ralla
            ; Request Status information. The response will trigger the `U` section
            +>status 5
            
            >R
            smlj=0
            >S
            if upsecs>30
            then
            smlj=1
            endif
            >W
            bu(SW "DPM Ein" "DPM Aus")
            ; Ralla
            bu(WS "WebSend" "Websend")
            nm(0.0 60.0 0.01 V "DPM Ausgang (V)" 200 2)
            nm(0.0 24.0 0.01 C "DPM Ausgang (A)" 200 2)
            >T
            sw=DC#sSwitch
            v=DC#sVolt
            c=DC#sCur
            if ((chg[sw]>0) and (SW!=sw))
            then
              SW=sw
              +>publish stat/%topic%/RESULT {"tpow":%0sw%}
            endif
            if ((chg[v]>0) and (V!=v))
            then
              V=v
              +>publish stat/%topic%/RESULT {"tvolt":%2v%}
            endif
            if ((chg[c]>0) and (C!=c))
            then
              C=c
              +>publish stat/%topic%/RESULT {"tampere":%2c%}
            endif
            if chg[V]>0
            then
              if V>Vmax
              then
                V=Vmax
              endif
              if V<0
              then
                V=0
              endif
              vV=rV+sb(hx((V*100)) 4 4)
              +>publish stat/%topic%/RESULT {"tvolt":%2V%}
              sml(1 3 vV)
            endif
            if chg[C]>0
            then
              if C>Cmax
              then
                C=Cmax
              endif
              if C<0
              then
                C=0
              endif
              vC=rC+sb(hx((C*1000)) 4 4)
              +>publish stat/%topic%/RESULT {"tampere":%2C%}
              sml(1 3 vC)
            endif
            if ((chg[SW]>0) 
            then
              vSW=rSW+s(SW)
              +>publish stat/%topic%/RESULT {"tpow":%0SW%}
              sml(1 3 vSW)
            endif
            
            ; Ralla
            if ((chg[WS]>0) 
            then
            
            =>WebSend [192.168.2.28] /cm?cmnd=status&2010
            ;Org Ralla IO http://192.168.2.28/cm?cmnd=status%2010
            print Ralla websend
            
            endif
            ; Ralla
            ; Read the status JSON payload
            >U
            gw=StatusNET#Gateway
            ;gw=StatusSNS,MT175,Bezug_aktuell
            print %gw%
            print Ralla gw
            
            >M 1
            +1,3,m,16,9600,DC,1,2,010300000001,010300010001,010300020001,010310010001,010310020001
            1,010302SSssxxxx@i0:100,Spannung (set),V,sVolt,2
            1,010302SSssxxxx@i1:1000,Strom (set),A,sCur,2
            1,010302SSssxxxx@i2:1,Ausgang (set),,sSwitch,0
            1,010302SSssxxxx@i3:100,Spannung (disp),V,dVolt,2
            1,010302SSssxxxx@i4:1000,Strom (disp),A,vCur,2
            #
            

            DPM WebSend.jpg

            DPM WebSend gui.jpg

            ; Request Status information. The response will trigger the U section

            B
            +>status 5
            Dann sollte ja U print ausgeführt sein, ist aber nicht, dann kann nur WebSend falsch sein

            WalW 2 Antworten Letzte Antwort
            0
            • Ralla66R Ralla66

              @wal

              ok, dann mal ran an Lehrbrief 1 -> Übung 1 :-)

              Button Websend einfügen, Websend ausführen, Antwort Request in Var schreiben.

              1 und 2 sollte gehen, bei 3 haperts noch ;-)

              >D
              ; Ralla
              gw=""
              
              Vmax=60
              Cmax=24
              v=0
              V=0
              c=0
              C=0
              sw=0
              SW=0
              ; Ralla
              WS=0
              rV="01060000"
              vV=""
              rC="01060001"
              vC=""
              rSW="01060002000"
              vSW=""
              >BS
              +>subscribe V, cmnd/%topic%/tvolt
              +>subscribe C, cmnd/%topic%/tampere
              +>subscribe SW, cmnd/%topic%/tpow
              >B
              smlj=0
              ->sensor53 r
              ; Ralla
              ; Request Status information. The response will trigger the `U` section
              +>status 5
              
              >R
              smlj=0
              >S
              if upsecs>30
              then
              smlj=1
              endif
              >W
              bu(SW "DPM Ein" "DPM Aus")
              ; Ralla
              bu(WS "WebSend" "Websend")
              nm(0.0 60.0 0.01 V "DPM Ausgang (V)" 200 2)
              nm(0.0 24.0 0.01 C "DPM Ausgang (A)" 200 2)
              >T
              sw=DC#sSwitch
              v=DC#sVolt
              c=DC#sCur
              if ((chg[sw]>0) and (SW!=sw))
              then
                SW=sw
                +>publish stat/%topic%/RESULT {"tpow":%0sw%}
              endif
              if ((chg[v]>0) and (V!=v))
              then
                V=v
                +>publish stat/%topic%/RESULT {"tvolt":%2v%}
              endif
              if ((chg[c]>0) and (C!=c))
              then
                C=c
                +>publish stat/%topic%/RESULT {"tampere":%2c%}
              endif
              if chg[V]>0
              then
                if V>Vmax
                then
                  V=Vmax
                endif
                if V<0
                then
                  V=0
                endif
                vV=rV+sb(hx((V*100)) 4 4)
                +>publish stat/%topic%/RESULT {"tvolt":%2V%}
                sml(1 3 vV)
              endif
              if chg[C]>0
              then
                if C>Cmax
                then
                  C=Cmax
                endif
                if C<0
                then
                  C=0
                endif
                vC=rC+sb(hx((C*1000)) 4 4)
                +>publish stat/%topic%/RESULT {"tampere":%2C%}
                sml(1 3 vC)
              endif
              if ((chg[SW]>0) 
              then
                vSW=rSW+s(SW)
                +>publish stat/%topic%/RESULT {"tpow":%0SW%}
                sml(1 3 vSW)
              endif
              
              ; Ralla
              if ((chg[WS]>0) 
              then
              
              =>WebSend [192.168.2.28] /cm?cmnd=status&2010
              ;Org Ralla IO http://192.168.2.28/cm?cmnd=status%2010
              print Ralla websend
              
              endif
              ; Ralla
              ; Read the status JSON payload
              >U
              gw=StatusNET#Gateway
              ;gw=StatusSNS,MT175,Bezug_aktuell
              print %gw%
              print Ralla gw
              
              >M 1
              +1,3,m,16,9600,DC,1,2,010300000001,010300010001,010300020001,010310010001,010310020001
              1,010302SSssxxxx@i0:100,Spannung (set),V,sVolt,2
              1,010302SSssxxxx@i1:1000,Strom (set),A,sCur,2
              1,010302SSssxxxx@i2:1,Ausgang (set),,sSwitch,0
              1,010302SSssxxxx@i3:100,Spannung (disp),V,dVolt,2
              1,010302SSssxxxx@i4:1000,Strom (disp),A,vCur,2
              #
              

              DPM WebSend.jpg

              DPM WebSend gui.jpg

              ; Request Status information. The response will trigger the U section

              B
              +>status 5
              Dann sollte ja U print ausgeführt sein, ist aber nicht, dann kann nur WebSend falsch sein

              WalW Offline
              WalW Offline
              Wal
              Developer
              schrieb am zuletzt editiert von
              #110

              @ralla66 ,
              denk daran das man eine Firmware mit USE_WEBSEND_RESPONSE braucht.

              Gruß
              Walter

              DoorIO-Adapter
              wioBrowser-Adapter und wioBrowser

              1 Antwort Letzte Antwort
              0
              • Ralla66R Ralla66

                @wal

                ok, dann mal ran an Lehrbrief 1 -> Übung 1 :-)

                Button Websend einfügen, Websend ausführen, Antwort Request in Var schreiben.

                1 und 2 sollte gehen, bei 3 haperts noch ;-)

                >D
                ; Ralla
                gw=""
                
                Vmax=60
                Cmax=24
                v=0
                V=0
                c=0
                C=0
                sw=0
                SW=0
                ; Ralla
                WS=0
                rV="01060000"
                vV=""
                rC="01060001"
                vC=""
                rSW="01060002000"
                vSW=""
                >BS
                +>subscribe V, cmnd/%topic%/tvolt
                +>subscribe C, cmnd/%topic%/tampere
                +>subscribe SW, cmnd/%topic%/tpow
                >B
                smlj=0
                ->sensor53 r
                ; Ralla
                ; Request Status information. The response will trigger the `U` section
                +>status 5
                
                >R
                smlj=0
                >S
                if upsecs>30
                then
                smlj=1
                endif
                >W
                bu(SW "DPM Ein" "DPM Aus")
                ; Ralla
                bu(WS "WebSend" "Websend")
                nm(0.0 60.0 0.01 V "DPM Ausgang (V)" 200 2)
                nm(0.0 24.0 0.01 C "DPM Ausgang (A)" 200 2)
                >T
                sw=DC#sSwitch
                v=DC#sVolt
                c=DC#sCur
                if ((chg[sw]>0) and (SW!=sw))
                then
                  SW=sw
                  +>publish stat/%topic%/RESULT {"tpow":%0sw%}
                endif
                if ((chg[v]>0) and (V!=v))
                then
                  V=v
                  +>publish stat/%topic%/RESULT {"tvolt":%2v%}
                endif
                if ((chg[c]>0) and (C!=c))
                then
                  C=c
                  +>publish stat/%topic%/RESULT {"tampere":%2c%}
                endif
                if chg[V]>0
                then
                  if V>Vmax
                  then
                    V=Vmax
                  endif
                  if V<0
                  then
                    V=0
                  endif
                  vV=rV+sb(hx((V*100)) 4 4)
                  +>publish stat/%topic%/RESULT {"tvolt":%2V%}
                  sml(1 3 vV)
                endif
                if chg[C]>0
                then
                  if C>Cmax
                  then
                    C=Cmax
                  endif
                  if C<0
                  then
                    C=0
                  endif
                  vC=rC+sb(hx((C*1000)) 4 4)
                  +>publish stat/%topic%/RESULT {"tampere":%2C%}
                  sml(1 3 vC)
                endif
                if ((chg[SW]>0) 
                then
                  vSW=rSW+s(SW)
                  +>publish stat/%topic%/RESULT {"tpow":%0SW%}
                  sml(1 3 vSW)
                endif
                
                ; Ralla
                if ((chg[WS]>0) 
                then
                
                =>WebSend [192.168.2.28] /cm?cmnd=status&2010
                ;Org Ralla IO http://192.168.2.28/cm?cmnd=status%2010
                print Ralla websend
                
                endif
                ; Ralla
                ; Read the status JSON payload
                >U
                gw=StatusNET#Gateway
                ;gw=StatusSNS,MT175,Bezug_aktuell
                print %gw%
                print Ralla gw
                
                >M 1
                +1,3,m,16,9600,DC,1,2,010300000001,010300010001,010300020001,010310010001,010310020001
                1,010302SSssxxxx@i0:100,Spannung (set),V,sVolt,2
                1,010302SSssxxxx@i1:1000,Strom (set),A,sCur,2
                1,010302SSssxxxx@i2:1,Ausgang (set),,sSwitch,0
                1,010302SSssxxxx@i3:100,Spannung (disp),V,dVolt,2
                1,010302SSssxxxx@i4:1000,Strom (disp),A,vCur,2
                #
                

                DPM WebSend.jpg

                DPM WebSend gui.jpg

                ; Request Status information. The response will trigger the U section

                B
                +>status 5
                Dann sollte ja U print ausgeführt sein, ist aber nicht, dann kann nur WebSend falsch sein

                WalW Offline
                WalW Offline
                Wal
                Developer
                schrieb am zuletzt editiert von Wal
                #111

                @ralla66 ,
                hier für dich falls du es noch nicht kennst.

                edit: Werde ich heute testen ob ich den aktuellen Verbrauch vom hichi holen kann wenn du nicht dazu kommst.

                Gruß
                Walter

                DoorIO-Adapter
                wioBrowser-Adapter und wioBrowser

                Ralla66R 1 Antwort Letzte Antwort
                0
                • WalW Wal

                  @ralla66 ,
                  hier für dich falls du es noch nicht kennst.

                  edit: Werde ich heute testen ob ich den aktuellen Verbrauch vom hichi holen kann wenn du nicht dazu kommst.

                  Ralla66R Offline
                  Ralla66R Offline
                  Ralla66
                  Most Active
                  schrieb am zuletzt editiert von Ralla66
                  #112

                  @wal

                  heute morgen war um 0:30 Feierabend :-)
                  den Link lese ich heute Abend,
                  habe boot error am ESP nach dem flashen / script einfügen, war eventuell schon übermüdet
                  meine .bin mit USE_WEBSEND_RESPONSE aktiviert lief nicht sauber.
                  kannst du mal bitte die .bin hochladen mit Zeile 471 USE_WEBSEND_RESPONSE aktiviert
                  Wäre cool wenn du mit testes, macht das debuggen einfacher.

                  Danke

                  WalW 1 Antwort Letzte Antwort
                  0
                  • Ralla66R Ralla66

                    @wal

                    heute morgen war um 0:30 Feierabend :-)
                    den Link lese ich heute Abend,
                    habe boot error am ESP nach dem flashen / script einfügen, war eventuell schon übermüdet
                    meine .bin mit USE_WEBSEND_RESPONSE aktiviert lief nicht sauber.
                    kannst du mal bitte die .bin hochladen mit Zeile 471 USE_WEBSEND_RESPONSE aktiviert
                    Wäre cool wenn du mit testes, macht das debuggen einfacher.

                    Danke

                    WalW Offline
                    WalW Offline
                    Wal
                    Developer
                    schrieb am zuletzt editiert von
                    #113

                    @ralla66 ,
                    firmware_websend.bin.gz

                    Gruß
                    Walter

                    DoorIO-Adapter
                    wioBrowser-Adapter und wioBrowser

                    Ralla66R 2 Antworten Letzte Antwort
                    0
                    • WalW Wal

                      @ralla66 ,
                      firmware_websend.bin.gz

                      Ralla66R Offline
                      Ralla66R Offline
                      Ralla66
                      Most Active
                      schrieb am zuletzt editiert von
                      #114

                      @wal

                      Danke, jetzt weiter

                      Wal 1.jpg

                      1 Antwort Letzte Antwort
                      0
                      • WalW Wal

                        @ralla66 ,
                        firmware_websend.bin.gz

                        Ralla66R Offline
                        Ralla66R Offline
                        Ralla66
                        Most Active
                        schrieb am zuletzt editiert von
                        #115

                        @wal

                        erste Antwort, bekomme ein WEbQuery zurück

                        17:35:28.308 SCR: performs "WebSend [192.168.2.28] /cm?cmnd=status&2010"
                        17:35:29.951 MQT: stat/tasmota_3CECBB/RESULT = {"WebQuery":{"Status":{"Module":18,"DeviceName":"SMA","FriendlyName":["SMA"],"Topic":"tasmota_D35C9C","ButtonTopic":"0","Power":0,"PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0}}}
                        17:35:29.955 MQT: stat/tasmota_3CECBB/RESULT = {"WebSend":"Done"}
                        17:35:29.957 Ralla websend
                        
                        >D
                        
                        ; Ralla
                        
                        gw=""
                        
                        
                        Vmax=60
                        
                        Cmax=24
                        
                        v=0
                        
                        V=0
                        
                        c=0
                        
                        C=0
                        
                        sw=0
                        
                        SW=0
                        
                        ; Ralla
                        
                        WS=0
                        
                        rV="01060000"
                        
                        vV=""
                        
                        rC="01060001"
                        
                        vC=""
                        
                        rSW="01060002000"
                        
                        vSW=""
                        
                        >BS
                        
                        +>subscribe V, cmnd/%topic%/tvolt
                        
                        +>subscribe C, cmnd/%topic%/tampere
                        
                        +>subscribe SW, cmnd/%topic%/tpow
                        
                        >B
                        
                        smlj=0
                        
                        ->sensor53 r
                        
                        ; Ralla
                        
                        ; Request Status information. The response will trigger the `U` section
                        
                        +>status 5
                        
                         
                        
                        >R
                        
                        smlj=0
                        
                        >S
                        
                        if upsecs>30
                        
                        then
                        
                        smlj=1
                        
                        endif
                        
                        >W
                        
                        bu(SW "DPM Ein" "DPM Aus")
                        
                        ; Ralla
                        
                        bu(WS "WebSend" "Websend")
                        
                        nm(0.0 60.0 0.01 V "DPM Ausgang (V)" 200 2)
                        
                        nm(0.0 24.0 0.01 C "DPM Ausgang (A)" 200 2)
                        
                        >T
                        
                        sw=DC#sSwitch
                        
                        v=DC#sVolt
                        
                        c=DC#sCur
                        
                        if ((chg[sw]>0) and (SW!=sw))
                        
                        then
                        
                          SW=sw
                        
                          +>publish stat/%topic%/RESULT {"tpow":%0sw%}
                        
                        endif
                        
                        if ((chg[v]>0) and (V!=v))
                        
                        then
                        
                          V=v
                        
                          +>publish stat/%topic%/RESULT {"tvolt":%2v%}
                        
                        endif
                        
                        if ((chg[c]>0) and (C!=c))
                        
                        then
                        
                          C=c
                        
                          +>publish stat/%topic%/RESULT {"tampere":%2c%}
                        
                        endif
                        
                        if chg[V]>0
                        
                        then
                        
                          if V>Vmax
                        
                          then
                        
                            V=Vmax
                        
                          endif
                        
                          if V<0
                        
                          then
                        
                            V=0
                        
                          endif
                        
                          vV=rV+sb(hx((V*100)) 4 4)
                        
                          +>publish stat/%topic%/RESULT {"tvolt":%2V%}
                        
                          sml(1 3 vV)
                        
                        endif
                        
                        if chg[C]>0
                        
                        then
                        
                          if C>Cmax
                        
                          then
                        
                            C=Cmax
                        
                          endif
                        
                          if C<0
                        
                          then
                        
                            C=0
                        
                          endif
                        
                          vC=rC+sb(hx((C*1000)) 4 4)
                        
                          +>publish stat/%topic%/RESULT {"tampere":%2C%}
                        
                          sml(1 3 vC)
                        
                        endif
                        
                        if ((chg[SW]>0) 
                        
                        then
                        
                          vSW=rSW+s(SW)
                        
                          +>publish stat/%topic%/RESULT {"tpow":%0SW%}
                        
                          sml(1 3 vSW)
                        
                        endif
                        
                         
                        
                        ; Ralla
                        
                        if ((chg[WS]>0) 
                        
                        then
                        
                         
                        
                        =>WebSend [192.168.2.28] /cm?cmnd=status&2010
                        
                        res=WebSend [192.168.2.28] /cm?cmnd=status&2010
                        
                        ;Org Ralla IO http://192.168.2.28/cm?cmnd=status%2010
                        
                        print Ralla websend
                        
                        
                        
                        endif
                        
                        ; Ralla
                        
                        ; Read the status JSON payload
                        
                        >U
                        
                        gw=StatusNET#Gateway
                        
                        ;gw=StatusSNS,MT175,Bezug_aktuell
                        
                        print %gw%
                        
                        print Ralla gw
                        
                         
                        
                        >M 1
                        
                        +1,3,m,16,9600,DC,1,2,010300000001,010300010001,010300020001,010310010001,010310020001
                        
                        1,010302SSssxxxx@i0:100,Spannung (set),V,sVolt,2
                        
                        1,010302SSssxxxx@i1:1000,Strom (set),A,sCur,2
                        
                        1,010302SSssxxxx@i2:1,Ausgang (set),,sSwitch,0
                        
                        1,010302SSssxxxx@i3:100,Spannung (disp),V,dVolt,2
                        
                        1,010302SSssxxxx@i4:1000,Strom (disp),A,vCur,2
                        
                        #
                        
                        WalW 2 Antworten Letzte Antwort
                        0
                        • Ralla66R Ralla66

                          @wal

                          erste Antwort, bekomme ein WEbQuery zurück

                          17:35:28.308 SCR: performs "WebSend [192.168.2.28] /cm?cmnd=status&2010"
                          17:35:29.951 MQT: stat/tasmota_3CECBB/RESULT = {"WebQuery":{"Status":{"Module":18,"DeviceName":"SMA","FriendlyName":["SMA"],"Topic":"tasmota_D35C9C","ButtonTopic":"0","Power":0,"PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0}}}
                          17:35:29.955 MQT: stat/tasmota_3CECBB/RESULT = {"WebSend":"Done"}
                          17:35:29.957 Ralla websend
                          
                          >D
                          
                          ; Ralla
                          
                          gw=""
                          
                          
                          Vmax=60
                          
                          Cmax=24
                          
                          v=0
                          
                          V=0
                          
                          c=0
                          
                          C=0
                          
                          sw=0
                          
                          SW=0
                          
                          ; Ralla
                          
                          WS=0
                          
                          rV="01060000"
                          
                          vV=""
                          
                          rC="01060001"
                          
                          vC=""
                          
                          rSW="01060002000"
                          
                          vSW=""
                          
                          >BS
                          
                          +>subscribe V, cmnd/%topic%/tvolt
                          
                          +>subscribe C, cmnd/%topic%/tampere
                          
                          +>subscribe SW, cmnd/%topic%/tpow
                          
                          >B
                          
                          smlj=0
                          
                          ->sensor53 r
                          
                          ; Ralla
                          
                          ; Request Status information. The response will trigger the `U` section
                          
                          +>status 5
                          
                           
                          
                          >R
                          
                          smlj=0
                          
                          >S
                          
                          if upsecs>30
                          
                          then
                          
                          smlj=1
                          
                          endif
                          
                          >W
                          
                          bu(SW "DPM Ein" "DPM Aus")
                          
                          ; Ralla
                          
                          bu(WS "WebSend" "Websend")
                          
                          nm(0.0 60.0 0.01 V "DPM Ausgang (V)" 200 2)
                          
                          nm(0.0 24.0 0.01 C "DPM Ausgang (A)" 200 2)
                          
                          >T
                          
                          sw=DC#sSwitch
                          
                          v=DC#sVolt
                          
                          c=DC#sCur
                          
                          if ((chg[sw]>0) and (SW!=sw))
                          
                          then
                          
                            SW=sw
                          
                            +>publish stat/%topic%/RESULT {"tpow":%0sw%}
                          
                          endif
                          
                          if ((chg[v]>0) and (V!=v))
                          
                          then
                          
                            V=v
                          
                            +>publish stat/%topic%/RESULT {"tvolt":%2v%}
                          
                          endif
                          
                          if ((chg[c]>0) and (C!=c))
                          
                          then
                          
                            C=c
                          
                            +>publish stat/%topic%/RESULT {"tampere":%2c%}
                          
                          endif
                          
                          if chg[V]>0
                          
                          then
                          
                            if V>Vmax
                          
                            then
                          
                              V=Vmax
                          
                            endif
                          
                            if V<0
                          
                            then
                          
                              V=0
                          
                            endif
                          
                            vV=rV+sb(hx((V*100)) 4 4)
                          
                            +>publish stat/%topic%/RESULT {"tvolt":%2V%}
                          
                            sml(1 3 vV)
                          
                          endif
                          
                          if chg[C]>0
                          
                          then
                          
                            if C>Cmax
                          
                            then
                          
                              C=Cmax
                          
                            endif
                          
                            if C<0
                          
                            then
                          
                              C=0
                          
                            endif
                          
                            vC=rC+sb(hx((C*1000)) 4 4)
                          
                            +>publish stat/%topic%/RESULT {"tampere":%2C%}
                          
                            sml(1 3 vC)
                          
                          endif
                          
                          if ((chg[SW]>0) 
                          
                          then
                          
                            vSW=rSW+s(SW)
                          
                            +>publish stat/%topic%/RESULT {"tpow":%0SW%}
                          
                            sml(1 3 vSW)
                          
                          endif
                          
                           
                          
                          ; Ralla
                          
                          if ((chg[WS]>0) 
                          
                          then
                          
                           
                          
                          =>WebSend [192.168.2.28] /cm?cmnd=status&2010
                          
                          res=WebSend [192.168.2.28] /cm?cmnd=status&2010
                          
                          ;Org Ralla IO http://192.168.2.28/cm?cmnd=status%2010
                          
                          print Ralla websend
                          
                          
                          
                          endif
                          
                          ; Ralla
                          
                          ; Read the status JSON payload
                          
                          >U
                          
                          gw=StatusNET#Gateway
                          
                          ;gw=StatusSNS,MT175,Bezug_aktuell
                          
                          print %gw%
                          
                          print Ralla gw
                          
                           
                          
                          >M 1
                          
                          +1,3,m,16,9600,DC,1,2,010300000001,010300010001,010300020001,010310010001,010310020001
                          
                          1,010302SSssxxxx@i0:100,Spannung (set),V,sVolt,2
                          
                          1,010302SSssxxxx@i1:1000,Strom (set),A,sCur,2
                          
                          1,010302SSssxxxx@i2:1,Ausgang (set),,sSwitch,0
                          
                          1,010302SSssxxxx@i3:100,Spannung (disp),V,dVolt,2
                          
                          1,010302SSssxxxx@i4:1000,Strom (disp),A,vCur,2
                          
                          #
                          
                          WalW Offline
                          WalW Offline
                          Wal
                          Developer
                          schrieb am zuletzt editiert von
                          #116

                          @ralla66 ,
                          http.jpg

                          Gruß
                          Walter

                          DoorIO-Adapter
                          wioBrowser-Adapter und wioBrowser

                          1 Antwort Letzte Antwort
                          0
                          • Ralla66R Ralla66

                            @wal

                            erste Antwort, bekomme ein WEbQuery zurück

                            17:35:28.308 SCR: performs "WebSend [192.168.2.28] /cm?cmnd=status&2010"
                            17:35:29.951 MQT: stat/tasmota_3CECBB/RESULT = {"WebQuery":{"Status":{"Module":18,"DeviceName":"SMA","FriendlyName":["SMA"],"Topic":"tasmota_D35C9C","ButtonTopic":"0","Power":0,"PowerOnState":3,"LedState":1,"LedMask":"FFFF","SaveData":1,"SaveState":1,"SwitchTopic":"0","SwitchMode":[0,0,0,0,0,0,0,0],"ButtonRetain":0,"SwitchRetain":0,"SensorRetain":0,"PowerRetain":0,"InfoRetain":0,"StateRetain":0}}}
                            17:35:29.955 MQT: stat/tasmota_3CECBB/RESULT = {"WebSend":"Done"}
                            17:35:29.957 Ralla websend
                            
                            >D
                            
                            ; Ralla
                            
                            gw=""
                            
                            
                            Vmax=60
                            
                            Cmax=24
                            
                            v=0
                            
                            V=0
                            
                            c=0
                            
                            C=0
                            
                            sw=0
                            
                            SW=0
                            
                            ; Ralla
                            
                            WS=0
                            
                            rV="01060000"
                            
                            vV=""
                            
                            rC="01060001"
                            
                            vC=""
                            
                            rSW="01060002000"
                            
                            vSW=""
                            
                            >BS
                            
                            +>subscribe V, cmnd/%topic%/tvolt
                            
                            +>subscribe C, cmnd/%topic%/tampere
                            
                            +>subscribe SW, cmnd/%topic%/tpow
                            
                            >B
                            
                            smlj=0
                            
                            ->sensor53 r
                            
                            ; Ralla
                            
                            ; Request Status information. The response will trigger the `U` section
                            
                            +>status 5
                            
                             
                            
                            >R
                            
                            smlj=0
                            
                            >S
                            
                            if upsecs>30
                            
                            then
                            
                            smlj=1
                            
                            endif
                            
                            >W
                            
                            bu(SW "DPM Ein" "DPM Aus")
                            
                            ; Ralla
                            
                            bu(WS "WebSend" "Websend")
                            
                            nm(0.0 60.0 0.01 V "DPM Ausgang (V)" 200 2)
                            
                            nm(0.0 24.0 0.01 C "DPM Ausgang (A)" 200 2)
                            
                            >T
                            
                            sw=DC#sSwitch
                            
                            v=DC#sVolt
                            
                            c=DC#sCur
                            
                            if ((chg[sw]>0) and (SW!=sw))
                            
                            then
                            
                              SW=sw
                            
                              +>publish stat/%topic%/RESULT {"tpow":%0sw%}
                            
                            endif
                            
                            if ((chg[v]>0) and (V!=v))
                            
                            then
                            
                              V=v
                            
                              +>publish stat/%topic%/RESULT {"tvolt":%2v%}
                            
                            endif
                            
                            if ((chg[c]>0) and (C!=c))
                            
                            then
                            
                              C=c
                            
                              +>publish stat/%topic%/RESULT {"tampere":%2c%}
                            
                            endif
                            
                            if chg[V]>0
                            
                            then
                            
                              if V>Vmax
                            
                              then
                            
                                V=Vmax
                            
                              endif
                            
                              if V<0
                            
                              then
                            
                                V=0
                            
                              endif
                            
                              vV=rV+sb(hx((V*100)) 4 4)
                            
                              +>publish stat/%topic%/RESULT {"tvolt":%2V%}
                            
                              sml(1 3 vV)
                            
                            endif
                            
                            if chg[C]>0
                            
                            then
                            
                              if C>Cmax
                            
                              then
                            
                                C=Cmax
                            
                              endif
                            
                              if C<0
                            
                              then
                            
                                C=0
                            
                              endif
                            
                              vC=rC+sb(hx((C*1000)) 4 4)
                            
                              +>publish stat/%topic%/RESULT {"tampere":%2C%}
                            
                              sml(1 3 vC)
                            
                            endif
                            
                            if ((chg[SW]>0) 
                            
                            then
                            
                              vSW=rSW+s(SW)
                            
                              +>publish stat/%topic%/RESULT {"tpow":%0SW%}
                            
                              sml(1 3 vSW)
                            
                            endif
                            
                             
                            
                            ; Ralla
                            
                            if ((chg[WS]>0) 
                            
                            then
                            
                             
                            
                            =>WebSend [192.168.2.28] /cm?cmnd=status&2010
                            
                            res=WebSend [192.168.2.28] /cm?cmnd=status&2010
                            
                            ;Org Ralla IO http://192.168.2.28/cm?cmnd=status%2010
                            
                            print Ralla websend
                            
                            
                            
                            endif
                            
                            ; Ralla
                            
                            ; Read the status JSON payload
                            
                            >U
                            
                            gw=StatusNET#Gateway
                            
                            ;gw=StatusSNS,MT175,Bezug_aktuell
                            
                            print %gw%
                            
                            print Ralla gw
                            
                             
                            
                            >M 1
                            
                            +1,3,m,16,9600,DC,1,2,010300000001,010300010001,010300020001,010310010001,010310020001
                            
                            1,010302SSssxxxx@i0:100,Spannung (set),V,sVolt,2
                            
                            1,010302SSssxxxx@i1:1000,Strom (set),A,sCur,2
                            
                            1,010302SSssxxxx@i2:1,Ausgang (set),,sSwitch,0
                            
                            1,010302SSssxxxx@i3:100,Spannung (disp),V,dVolt,2
                            
                            1,010302SSssxxxx@i4:1000,Strom (disp),A,vCur,2
                            
                            #
                            
                            WalW Offline
                            WalW Offline
                            Wal
                            Developer
                            schrieb am zuletzt editiert von
                            #117

                            @ralla66 ,

                            Hichi:

                            >D
                            aktuell=0
                            >B
                            ->sensor53 r
                            >T
                            aktuell=MT175#P
                            http("192.168.xxx.xxx" "/cm?cmnd=script>Aktuell="+s(aktuell))
                            >M 1
                            +1,3,s,16,9600,MT175
                            1,77070100010800ff@1000,E_in,kWh,E_in,1
                            1,77070100010801ff@1000,E_in_HT,kWh,E_in_HT,1
                            1,77070100010802ff@1000,E_in_NT,kWh,E_in_NT,1
                            1,77070100020800ff@1000,E_out,kWh,E_out,1
                            1,77070100100700ff@1,P,W,P,18
                            1,77070100000009ff@#,Server_ID,,Server_ID,0
                            #
                            

                            DPM8624:

                            >D
                            Aktuell=0
                            >W
                            Aktuelle Leistung{m} %0Aktuell% W
                            

                            Gruß
                            Walter

                            DoorIO-Adapter
                            wioBrowser-Adapter und wioBrowser

                            Ralla66R 1 Antwort Letzte Antwort
                            0
                            • WalW Wal

                              @ralla66 ,

                              Hichi:

                              >D
                              aktuell=0
                              >B
                              ->sensor53 r
                              >T
                              aktuell=MT175#P
                              http("192.168.xxx.xxx" "/cm?cmnd=script>Aktuell="+s(aktuell))
                              >M 1
                              +1,3,s,16,9600,MT175
                              1,77070100010800ff@1000,E_in,kWh,E_in,1
                              1,77070100010801ff@1000,E_in_HT,kWh,E_in_HT,1
                              1,77070100010802ff@1000,E_in_NT,kWh,E_in_NT,1
                              1,77070100020800ff@1000,E_out,kWh,E_out,1
                              1,77070100100700ff@1,P,W,P,18
                              1,77070100000009ff@#,Server_ID,,Server_ID,0
                              #
                              

                              DPM8624:

                              >D
                              Aktuell=0
                              >W
                              Aktuelle Leistung{m} %0Aktuell% W
                              
                              Ralla66R Offline
                              Ralla66R Offline
                              Ralla66
                              Most Active
                              schrieb am zuletzt editiert von
                              #118

                              @wal

                              Habe die Data, %20 weglassen

                              18:10:08.057 SCR: performs "WebSend [192.168.2.28] /cm?cmnd=status 10"
                              18:10:08.622 MQT: stat/tasmota_3CECBB/RESULT = {"WebQuery":{"StatusSNS":{"Time":"2023-09-20T18:10:08","MT175":{"Geräte_ID":"","Verbrauch_Gesamt":37714,"Bezug_Tarif_1":37714.412,"Bezug_Tarif_2":0,"Netzeinspeisung":0,"Lieferung_Tarif_1":0,"Lieferung_Tarif_2":0,"Bezug_aktuell":9,"Phase_L1":17,"Phase_L2":-71,"Phase_L3":62}}}}
                              18:10:08.626 MQT: stat/tasmota_3CECBB/RESULT = {"WebSend":"Done"}
                              18:10:08.628 Ralla websend
                              
                              ; Ralla
                              if ((chg[WS]>0) 
                              then
                              ;10 = show connected sensor information (replaces 'Status 8')
                              =>WebSend [192.168.2.28] /cm?cmnd=status 10
                              print Ralla websend
                              endif
                              

                              Yeep :-)
                              jetzt noch zerlegen, Ideen ? mit U ?

                              Teste mal mit Hichi ob Daten kommen

                              WalW 1 Antwort Letzte Antwort
                              0
                              • Ralla66R Ralla66

                                @wal

                                Habe die Data, %20 weglassen

                                18:10:08.057 SCR: performs "WebSend [192.168.2.28] /cm?cmnd=status 10"
                                18:10:08.622 MQT: stat/tasmota_3CECBB/RESULT = {"WebQuery":{"StatusSNS":{"Time":"2023-09-20T18:10:08","MT175":{"Geräte_ID":"","Verbrauch_Gesamt":37714,"Bezug_Tarif_1":37714.412,"Bezug_Tarif_2":0,"Netzeinspeisung":0,"Lieferung_Tarif_1":0,"Lieferung_Tarif_2":0,"Bezug_aktuell":9,"Phase_L1":17,"Phase_L2":-71,"Phase_L3":62}}}}
                                18:10:08.626 MQT: stat/tasmota_3CECBB/RESULT = {"WebSend":"Done"}
                                18:10:08.628 Ralla websend
                                
                                ; Ralla
                                if ((chg[WS]>0) 
                                then
                                ;10 = show connected sensor information (replaces 'Status 8')
                                =>WebSend [192.168.2.28] /cm?cmnd=status 10
                                print Ralla websend
                                endif
                                

                                Yeep :-)
                                jetzt noch zerlegen, Ideen ? mit U ?

                                Teste mal mit Hichi ob Daten kommen

                                WalW Offline
                                WalW Offline
                                Wal
                                Developer
                                schrieb am zuletzt editiert von
                                #119

                                @ralla66 ,
                                Ätsch war trotzdem erster. ;-)

                                Gruß
                                Walter

                                DoorIO-Adapter
                                wioBrowser-Adapter und wioBrowser

                                Ralla66R 1 Antwort Letzte Antwort
                                0
                                • WalW Wal

                                  @ralla66 ,
                                  Ätsch war trotzdem erster. ;-)

                                  Ralla66R Offline
                                  Ralla66R Offline
                                  Ralla66
                                  Most Active
                                  schrieb am zuletzt editiert von Ralla66
                                  #120

                                  @wal

                                  ok hast gewonnen :-)

                                  wie machen wir weiter ?
                                  Ein DPM Script für alle IR Leseköpfe bauen, also den Status SNS komplett abholen.
                                  Dann den Bezugswert Filtern. Habe ja kein Hichi. Dieser Wert kann ja anders benannt sein,
                                  Dann Script cleanen und die erste Beta 1.0 bauen.
                                  Weiter dann mit der Berechnung Bezug -> DPM setzt V und A ?

                                  Gruß Ralla

                                  Nachtrag, Leseköpfe ( Status SNS ) Json einlesen, dann würden auch Shelly PM gehen.

                                  WalW 1 Antwort Letzte Antwort
                                  0
                                  • Ralla66R Ralla66

                                    @wal

                                    ok hast gewonnen :-)

                                    wie machen wir weiter ?
                                    Ein DPM Script für alle IR Leseköpfe bauen, also den Status SNS komplett abholen.
                                    Dann den Bezugswert Filtern. Habe ja kein Hichi. Dieser Wert kann ja anders benannt sein,
                                    Dann Script cleanen und die erste Beta 1.0 bauen.
                                    Weiter dann mit der Berechnung Bezug -> DPM setzt V und A ?

                                    Gruß Ralla

                                    Nachtrag, Leseköpfe ( Status SNS ) Json einlesen, dann würden auch Shelly PM gehen.

                                    WalW Offline
                                    WalW Offline
                                    Wal
                                    Developer
                                    schrieb am zuletzt editiert von Wal
                                    #121

                                    @ralla66 ,
                                    ja schau mal ob du den Wert rausfiltern kannst.

                                    Mit http("192.168.xxx.xxx" "/cm?cmnd=script>Variablename=Wert) kannst du jeder Variable im Script einen Wert verpassen.
                                    Mit Variable=http("192.168.xxx.xxx" "/cm?cmnd=script?Variablename) kannst du jeden Wert anfordern.

                                    Gruß
                                    Walter

                                    DoorIO-Adapter
                                    wioBrowser-Adapter und wioBrowser

                                    Ralla66R 2 Antworten Letzte Antwort
                                    0
                                    • WalW Wal

                                      @ralla66 ,
                                      ja schau mal ob du den Wert rausfiltern kannst.

                                      Mit http("192.168.xxx.xxx" "/cm?cmnd=script>Variablename=Wert) kannst du jeder Variable im Script einen Wert verpassen.
                                      Mit Variable=http("192.168.xxx.xxx" "/cm?cmnd=script?Variablename) kannst du jeden Wert anfordern.

                                      Ralla66R Offline
                                      Ralla66R Offline
                                      Ralla66
                                      Most Active
                                      schrieb am zuletzt editiert von Ralla66
                                      #122

                                      @wal

                                      Ok ich teste mal mit Bezug Aktuell,
                                      dann brauche ich noch ein Ausgabefenster in der WEB UI mit Wert Bezug Aktuell
                                      Bzw 2, Bezug Zähler und DPM Ausgang Watt
                                      Du kannst das schneller :-)
                                      Ziel ist ja erreicht, Feierabend ist heute früher.
                                      Lehrbrief 1, Übung 1 mit Sehr Gut bestanden ;-)

                                      1 Antwort Letzte Antwort
                                      1
                                      • WalW Wal

                                        @ralla66 ,
                                        ja schau mal ob du den Wert rausfiltern kannst.

                                        Mit http("192.168.xxx.xxx" "/cm?cmnd=script>Variablename=Wert) kannst du jeder Variable im Script einen Wert verpassen.
                                        Mit Variable=http("192.168.xxx.xxx" "/cm?cmnd=script?Variablename) kannst du jeden Wert anfordern.

                                        Ralla66R Offline
                                        Ralla66R Offline
                                        Ralla66
                                        Most Active
                                        schrieb am zuletzt editiert von
                                        #123

                                        @wal

                                        so ?

                                        >D
                                        ; Ralla
                                        Bezug Aktuell=0
                                        >T ; alle 10 sec Telemetrieperiode eingestellt
                                        ; Ralla 
                                        ; jeder Variable im Script einen Wert zuweisen
                                        http("192.168.2.28" "/cm?cmnd=script>Bezug Aktuell=Wert)
                                        print Bezug Aktuell %Bezug Aktuell%
                                        
                                        WalW 1 Antwort Letzte Antwort
                                        0
                                        • Ralla66R Ralla66

                                          @wal

                                          so ?

                                          >D
                                          ; Ralla
                                          Bezug Aktuell=0
                                          >T ; alle 10 sec Telemetrieperiode eingestellt
                                          ; Ralla 
                                          ; jeder Variable im Script einen Wert zuweisen
                                          http("192.168.2.28" "/cm?cmnd=script>Bezug Aktuell=Wert)
                                          print Bezug Aktuell %Bezug Aktuell%
                                          
                                          WalW Offline
                                          WalW Offline
                                          Wal
                                          Developer
                                          schrieb am zuletzt editiert von Wal
                                          #124

                                          @ralla66 ,

                                          http("192.168.2.28" "/cm?cmnd=script>Bezug Aktuell=Wert")
                                          

                                          mit dem Befehl sendest du den Wert an 192.168.2.28.
                                          Im 192.168.2.28 muss es eine Variable Bezug Aktuell geben.

                                          Gruß
                                          Walter

                                          DoorIO-Adapter
                                          wioBrowser-Adapter und wioBrowser

                                          Ralla66R 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          925

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          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