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. ioBroker Allgemein
  4. vedirect -> USB an Victron MP2

NEWS

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

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

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

vedirect -> USB an Victron MP2

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
64 Beiträge 6 Kommentatoren 5.5k Aufrufe 2 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.
  • DutchmanD Dutchman

    @homoran sagte in vedirect -> USB an Victron MP2:

    @dutchman sagte in vedirect -> USB an Victron MP2:

    Es geht um die Fehler in diesem issue

    ja!
    zumindest hab ich nicht mehr gesehen. Diese dafür in Massen :blush:

    ah verstanden danke ! Ich habe mir meine state Definitionen angeschaut, im Grunde stimmen die Definitionen es müssen Nummern sei (Watt z.b., der wert von H21) ergo im code wird es falsch interpretiert.

    Ich schaue es mir a ob ich schnell auf blind einen quick fix machen kann oder mehr Arbeit nötig ist.
    Da ich den object baum leider nicht kenne (problematisch immer wen man es selber nicht hat :/) könntet ihr mir bitte den Gefallen tun und mal durch diese liste gehen ob die richtige Typen definiert sind. ?

    https://github.com/DrozmotiX/ioBroker.vedirect/blob/main/lib/stateAttr.js#L256-L261

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

    @dutchman

    mal ne Frage als Beginner zum type, number ist ASCII 0x30 bis 0x39 hex ?

    DutchmanD 1 Antwort Letzte Antwort
    0
    • Ralla66R Ralla66

      @dutchman

      mal ne Frage als Beginner zum type, number ist ASCII 0x30 bis 0x39 hex ?

      DutchmanD Offline
      DutchmanD Offline
      Dutchman
      Developer Most Active Administrators
      schrieb am zuletzt editiert von Dutchman
      #9

      @ralla66 sagte in vedirect -> USB an Victron MP2:

      @dutchman

      mal ne Frage als Beginner zum type, number ist ASCII 0x30 bis 0x39 hex ?

      Korrekt, wir unterscheiden hier weiter nicht in number/float etc.
      In iobroker kennen wir die Haupt typen number/string/boolean/mixed, aber mixed finde ich zum generell und wen man später die daten fuer Logiken verwenden moechte (z.b. Watt/kWh) dan willl man keinen string als input und mit .toFloat() arbeiten daher das ich es "vernünftig" machen moechte :)

      Remark: Ziet man auch im code, ich benutze bereits

      Math.floor(res[1])
      

      und trotzdem wird da ein sting draus gemacht, lol!

      Ralla66R 1 Antwort Letzte Antwort
      0
      • DutchmanD Dutchman

        @homoran sagte in vedirect -> USB an Victron MP2:

        @dutchman sagte in vedirect -> USB an Victron MP2:

        Es geht um die Fehler in diesem issue

        ja!
        zumindest hab ich nicht mehr gesehen. Diese dafür in Massen :blush:

        ah verstanden danke ! Ich habe mir meine state Definitionen angeschaut, im Grunde stimmen die Definitionen es müssen Nummern sei (Watt z.b., der wert von H21) ergo im code wird es falsch interpretiert.

        Ich schaue es mir a ob ich schnell auf blind einen quick fix machen kann oder mehr Arbeit nötig ist.
        Da ich den object baum leider nicht kenne (problematisch immer wen man es selber nicht hat :/) könntet ihr mir bitte den Gefallen tun und mal durch diese liste gehen ob die richtige Typen definiert sind. ?

        https://github.com/DrozmotiX/ioBroker.vedirect/blob/main/lib/stateAttr.js#L256-L261

        HomoranH Nicht stören
        HomoranH Nicht stören
        Homoran
        Global Moderator Administrators
        schrieb am zuletzt editiert von
        #10

        @dutchman sagte in vedirect -> USB an Victron MP2:

        Da ich den object baum leider nicht kenne

        vedirect.png

        hilft das?

        kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

        der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

        1 Antwort Letzte Antwort
        0
        • DutchmanD Dutchman

          @ralla66 sagte in vedirect -> USB an Victron MP2:

          @dutchman

          mal ne Frage als Beginner zum type, number ist ASCII 0x30 bis 0x39 hex ?

          Korrekt, wir unterscheiden hier weiter nicht in number/float etc.
          In iobroker kennen wir die Haupt typen number/string/boolean/mixed, aber mixed finde ich zum generell und wen man später die daten fuer Logiken verwenden moechte (z.b. Watt/kWh) dan willl man keinen string als input und mit .toFloat() arbeiten daher das ich es "vernünftig" machen moechte :)

          Remark: Ziet man auch im code, ich benutze bereits

          Math.floor(res[1])
          

          und trotzdem wird da ein sting draus gemacht, lol!

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

          @dutchman

          werde noch einmal ein Mitschnitt vom Laderegler machen. Meine es wird nur ASCII 0 bis 127 ausgewertet.
          Dann wäre es möglich number anhand der hex Data 0x30 bis 0x39 zu bestimmen.
          Welche Daten werden benötigt ? Die mit Org Kabel also hinter dem FTDI Chip am Kabel oder direkt am Anschluß.
          Direkt am Laderegler angeschlossen per USB RS232 / PC Adapter bekomme ich verschobene Daten in H-Term.
          Direkt am Laderegler angeschlossen über ESP Tasmota Serialsoft / Delimiter 127 klare hex Daten ( Konsole ).
          Direkt am Laderegler angeschlossen über Org Kabel / PC in H-Term klare Daten.

          HomoranH 1 Antwort Letzte Antwort
          0
          • Ralla66R Ralla66

            @dutchman

            werde noch einmal ein Mitschnitt vom Laderegler machen. Meine es wird nur ASCII 0 bis 127 ausgewertet.
            Dann wäre es möglich number anhand der hex Data 0x30 bis 0x39 zu bestimmen.
            Welche Daten werden benötigt ? Die mit Org Kabel also hinter dem FTDI Chip am Kabel oder direkt am Anschluß.
            Direkt am Laderegler angeschlossen per USB RS232 / PC Adapter bekomme ich verschobene Daten in H-Term.
            Direkt am Laderegler angeschlossen über ESP Tasmota Serialsoft / Delimiter 127 klare hex Daten ( Konsole ).
            Direkt am Laderegler angeschlossen über Org Kabel / PC in H-Term klare Daten.

            HomoranH Nicht stören
            HomoranH Nicht stören
            Homoran
            Global Moderator Administrators
            schrieb am zuletzt editiert von
            #12

            @ralla66

            hier ist ziemlich weit unten die Bauanleitung für das Kabel.
            https://obenschlaefer.com/low-budget-energiemonitor-victron-venus-os-mit-raspberry-pi-obenschlaefer/

            Das original Kabel hat am ve direct Stecker einen unnötig sehr langen starren Anschluß.
            Daher musste ich hinter dem Batteriecomputer unnötig viel Raum lassen.

            Mit der Selbstbauvariante geht das platzsparender.

            https://obenschlaefer.com/wp-content/uploads/2021/01/obenschlaefer_dachzelt_raspbery_pi_victron_venus_tutorial_USB_stick_zusammenbau_VE_adapter_bus_14.jpg

            allerdings wird hier auch nur das Kabel an den USB-FTDI geklemmt.
            Da kann man eigentlich nichts falsch machen

            kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

            der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

            1 Antwort Letzte Antwort
            0
            • DutchmanD Offline
              DutchmanD Offline
              Dutchman
              Developer Most Active Administrators
              schrieb am zuletzt editiert von
              #13

              @Homoran @Ralla66

              Lasst mal bitte kurz debug log mitlaufen, code gerade nachgeschaut und jede Nachricht wird im debug ausgegeben mit "Line : Nachricht"

              Ich schätze mal das der buffer Allgemein ein string ist wodurch javascript es auch als string interpretiert.
              Dan musette ich halt die Nummern werte intern um konvertieren.

              Ein kurzer debug ausschnitt sollte die frage beantworten

              HomoranH Ralla66R 3 Antworten Letzte Antwort
              0
              • DutchmanD Dutchman

                @Homoran @Ralla66

                Lasst mal bitte kurz debug log mitlaufen, code gerade nachgeschaut und jede Nachricht wird im debug ausgegeben mit "Line : Nachricht"

                Ich schätze mal das der buffer Allgemein ein string ist wodurch javascript es auch als string interpretiert.
                Dan musette ich halt die Nummern werte intern um konvertieren.

                Ein kurzer debug ausschnitt sollte die frage beantworten

                HomoranH Nicht stören
                HomoranH Nicht stören
                Homoran
                Global Moderator Administrators
                schrieb am zuletzt editiert von
                #14

                @dutchman sagte in vedirect -> USB an Victron MP2:

                Lasst mal bitte kurz debug log mitlaufen,

                hab den Pi nicht mehr im Wohnmobil :worried:

                kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                Ralla66R 1 Antwort Letzte Antwort
                1
                • DutchmanD Dutchman

                  @Homoran @Ralla66

                  Lasst mal bitte kurz debug log mitlaufen, code gerade nachgeschaut und jede Nachricht wird im debug ausgegeben mit "Line : Nachricht"

                  Ich schätze mal das der buffer Allgemein ein string ist wodurch javascript es auch als string interpretiert.
                  Dan musette ich halt die Nummern werte intern um konvertieren.

                  Ein kurzer debug ausschnitt sollte die frage beantworten

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

                  @dutchman

                  das läuft bei mir über ESP kann nur Daten zur verfügung stellen.

                  hex


                  0D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323531300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D092B0D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323539300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09230D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323636300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09250D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323734300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09260D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323830300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09290D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323836300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09233A41344631303030303130303030303030303030303030303030303030303030303030304432303531433035303030313030464646464646464646464646464646464646464646464646464646460A3A41353031303030303030303030303030303030303030303030314330353031303030303030303030303030434430303030303030303030303030303030303030303030443230353030303032350A0D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323837300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09220D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323738300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09220D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323638300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D09230D0A504944093078413036300D0A4657093135390D0A53455223094851323132314B52474D590D0A560931323633300D0A49092D31300D0A5650560931343530300D0A50505609300D0A435309330D0A4D50505409320D0A4F5209307830303030303030300D0A45525209300D0A4C4F4144094F4E0D0A494C09300D0A48313909300D0A48323009300D0A48323109300D0A48323209300D0A48323309300D0A4853445309300D0A436865636B73756D0928

                  Ascii


                  PID0xA060FW159SER#HQ2121KRGMYV12510I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum+PID0xA060FW159SER#HQ2121KRGMYV12590I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum#PID0xA060FW159SER#HQ2121KRGMYV12660I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum%PID0xA060FW159SER#HQ2121KRGMYV12740I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum&PID0xA060FW159SER#HQ2121KRGMYV12800I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum)PID0xA060FW159SER#HQ2121KRGMYV12860I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum#:A4F10000100000000000000000000000000D2051C05000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF:A5010000000000000000000001C0501000000000000CD0000000000000000000000D205000025PID0xA060FW159SER#HQ2121KRGMYV12870I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum"PID0xA060FW159SER#HQ2121KRGMYV12780I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum"PID0xA060FW159SER#HQ2121KRGMYV12680I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum#PID0xA060FW159SER#HQ2121KRGMYV12630I-10VPV14500PPV0CS3MPPT2OR0x00000000ERR0LOADONIL0H190H200H210H220H230HSDS0Checksum(

                  Rest


                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12510
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum +
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12590
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum #
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12660
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum %
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12740
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum &
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12800
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum )
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12860
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum #:A4F10000100000000000000000000000000D2051C05000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF
                  :A5010000000000000000000001C0501000000000000CD0000000000000000000000D205000025

                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12870
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum "
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12780
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum "
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12680
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum #
                  PID 0xA060
                  FW 159
                  SER# HQ2121KRGMY
                  V 12630
                  I -10
                  VPV 14500
                  PPV 0
                  CS 3
                  MPPT 2
                  OR 0x00000000
                  ERR 0
                  LOAD ON
                  IL 0
                  H19 0
                  H20 0
                  H21 0
                  H22 0
                  H23 0
                  HSDS 0
                  Checksum (


                  13061.jpg

                  1 Antwort Letzte Antwort
                  1
                  • HomoranH Homoran

                    @dutchman sagte in vedirect -> USB an Victron MP2:

                    Lasst mal bitte kurz debug log mitlaufen,

                    hab den Pi nicht mehr im Wohnmobil :worried:

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

                    @homoran

                    hatte ich auch gelesen, wobei aber irgend wie immer Konvertiert wird, egal ob FTDI im Kabel oder
                    Arduino, ESP halt. Hatte damals TX Laderegler direkt am USB RS232 am PC und nur verschobene hex Daten.
                    Stand auch so in der Doko drin, eine Verschiebung um hex 0x55.
                    Wenn ich wüßte wie ich den USB Stecker am Raspi zum laufen krieg würde ich mittesten.
                    Mounten und sowas kein Plan von.

                    HomoranH 1 Antwort Letzte Antwort
                    0
                    • Ralla66R Ralla66

                      @homoran

                      hatte ich auch gelesen, wobei aber irgend wie immer Konvertiert wird, egal ob FTDI im Kabel oder
                      Arduino, ESP halt. Hatte damals TX Laderegler direkt am USB RS232 am PC und nur verschobene hex Daten.
                      Stand auch so in der Doko drin, eine Verschiebung um hex 0x55.
                      Wenn ich wüßte wie ich den USB Stecker am Raspi zum laufen krieg würde ich mittesten.
                      Mounten und sowas kein Plan von.

                      HomoranH Nicht stören
                      HomoranH Nicht stören
                      Homoran
                      Global Moderator Administrators
                      schrieb am zuletzt editiert von
                      #17

                      @ralla66 sagte in vedirect -> USB an Victron MP2:

                      Wenn ich wüßte wie ich den USB Stecker am Raspi zum laufen krieg würde ich mittesten.
                      Mounten und sowas kein Plan von.

                      einfach einstecken

                      kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                      1 Antwort Letzte Antwort
                      0
                      • Ralla66R Offline
                        Ralla66R Offline
                        Ralla66
                        Most Active
                        schrieb am zuletzt editiert von Ralla66
                        #18

                        @homoran

                        geschafft, wo finde ich den Usb Port für die Einstellungen ?

                        ve direkt.jpg

                        HomoranH Thomas BraunT 2 Antworten Letzte Antwort
                        0
                        • Ralla66R Ralla66

                          @homoran

                          geschafft, wo finde ich den Usb Port für die Einstellungen ?

                          ve direkt.jpg

                          HomoranH Nicht stören
                          HomoranH Nicht stören
                          Homoran
                          Global Moderator Administrators
                          schrieb am zuletzt editiert von Homoran
                          #19

                          @ralla66 sagte in vedirect -> USB an Victron MP2:

                          wo finde ich den Usb Port für die Einstellungen ?

                          gute Frage!
                          ich weiß nicht mehr wie ich es gemacht hatte.
                          Einfach probiert, glaube ich.

                          ist ne Frage für @thomas-braun

                          kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                          1 Antwort Letzte Antwort
                          0
                          • Ralla66R Ralla66

                            @homoran

                            geschafft, wo finde ich den Usb Port für die Einstellungen ?

                            ve direkt.jpg

                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von
                            #20

                            @ralla66

                            In

                            ls -l /dev/serial/by-id
                            

                            schauen oder

                            dmesg -wT
                            

                            beobachten während das Kabel/das Gerät eingesteckt wird.

                            Linux-Werkzeugkasten:
                            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                            NodeJS Fixer Skript:
                            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                            Ralla66R HomoranH 2 Antworten Letzte Antwort
                            0
                            • Thomas BraunT Thomas Braun

                              @ralla66

                              In

                              ls -l /dev/serial/by-id
                              

                              schauen oder

                              dmesg -wT
                              

                              beobachten während das Kabel/das Gerät eingesteckt wird.

                              Ralla66R Offline
                              Ralla66R Offline
                              Ralla66
                              Most Active
                              schrieb am zuletzt editiert von Homoran
                              #21

                              @thomas-braun

                              ist dann ttyUSB0 in den Einstellungen ?

                              pi@raspberrypi:~ $ ls -l /dev/serial/by-id
                              insgesamt 0
                              lrwxrwxrwx 1 root root 13 Jun 13 18:38 usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0 -> ../../ttyUSB0
                              pi@raspberrypi:~ $
                              
                              Thomas BraunT 1 Antwort Letzte Antwort
                              0
                              • Ralla66R Ralla66

                                @thomas-braun

                                ist dann ttyUSB0 in den Einstellungen ?

                                pi@raspberrypi:~ $ ls -l /dev/serial/by-id
                                insgesamt 0
                                lrwxrwxrwx 1 root root 13 Jun 13 18:38 usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0 -> ../../ttyUSB0
                                pi@raspberrypi:~ $
                                
                                Thomas BraunT Online
                                Thomas BraunT Online
                                Thomas Braun
                                Most Active
                                schrieb am zuletzt editiert von
                                #22

                                @ralla66 sagte in vedirect -> USB an Victron MP2:

                                usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0

                                Ich würde das so einstellen:

                                /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0
                                

                                Das passt immer, auch wenn sich die Reihenfolge der Ports mal ändern sollte.

                                Linux-Werkzeugkasten:
                                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                NodeJS Fixer Skript:
                                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                Ralla66R M 2 Antworten Letzte Antwort
                                0
                                • Thomas BraunT Thomas Braun

                                  @ralla66 sagte in vedirect -> USB an Victron MP2:

                                  usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0

                                  Ich würde das so einstellen:

                                  /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0
                                  

                                  Das passt immer, auch wenn sich die Reihenfolge der Ports mal ändern sollte.

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

                                  @thomas-braun

                                  äh, voll Linuxbeginner
                                  pi@raspberrypi:~ $ /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0
                                  bash: /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0: Keine Berechtigung
                                  pi@raspberrypi:~ $

                                  HomoranH Thomas BraunT 2 Antworten Letzte Antwort
                                  0
                                  • Ralla66R Ralla66

                                    @thomas-braun

                                    äh, voll Linuxbeginner
                                    pi@raspberrypi:~ $ /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0
                                    bash: /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0: Keine Berechtigung
                                    pi@raspberrypi:~ $

                                    HomoranH Nicht stören
                                    HomoranH Nicht stören
                                    Homoran
                                    Global Moderator Administrators
                                    schrieb am zuletzt editiert von Homoran
                                    #24

                                    @ralla66 du sollst diese ellenlange Bezeichnung von Thomas 7n der Konfig der Instanz eingeben
                                    dann passt es auch wenn der USB in einem anderen Port steckt. im Moment steckt er in ttyUSB0

                                    kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                                    der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                    1 Antwort Letzte Antwort
                                    0
                                    • Ralla66R Ralla66

                                      @thomas-braun

                                      äh, voll Linuxbeginner
                                      pi@raspberrypi:~ $ /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0
                                      bash: /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0: Keine Berechtigung
                                      pi@raspberrypi:~ $

                                      Thomas BraunT Online
                                      Thomas BraunT Online
                                      Thomas Braun
                                      Most Active
                                      schrieb am zuletzt editiert von
                                      #25

                                      @ralla66

                                      Nein, in den Einstellungen der Instanz das eintragen:

                                      /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0

                                      Linux-Werkzeugkasten:
                                      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                      NodeJS Fixer Skript:
                                      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                      Ralla66R 1 Antwort Letzte Antwort
                                      0
                                      • Thomas BraunT Thomas Braun

                                        @ralla66

                                        Nein, in den Einstellungen der Instanz das eintragen:

                                        /dev/serial/by-id/usb-VictronEnergy_BV_VE_Direct_cable_VE5OE42L-if00-port0

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

                                        @thomas-braun
                                        @Homoran

                                        Danke Euch beiden, Adapter ist Grün. Top wie immer !

                                        130611.jpg

                                        1 Antwort Letzte Antwort
                                        0
                                        • DutchmanD Dutchman

                                          @Homoran @Ralla66

                                          Lasst mal bitte kurz debug log mitlaufen, code gerade nachgeschaut und jede Nachricht wird im debug ausgegeben mit "Line : Nachricht"

                                          Ich schätze mal das der buffer Allgemein ein string ist wodurch javascript es auch als string interpretiert.
                                          Dan musette ich halt die Nummern werte intern um konvertieren.

                                          Ein kurzer debug ausschnitt sollte die frage beantworten

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

                                          @dutchman

                                          bin aber mit admin und update noch uralt
                                          Log ist von einem SmartSolar charge controller MPPT 100/20 BT

                                           2022-06-13 19:09:49.035 - debug: vedirect.0 (1717) Redis Objects: Use Redis connection: 127.0.0.1:9001
                                          2022-06-13 19:09:49.091 - debug: vedirect.0 (1717) Objects client ready ... initialize now
                                          2022-06-13 19:09:49.097 - debug: vedirect.0 (1717) Objects create System PubSub Client
                                          2022-06-13 19:09:49.100 - debug: vedirect.0 (1717) Objects create User PubSub Client
                                          2022-06-13 19:09:49.102 - debug: vedirect.0 (1717) Objects client initialize lua scripts
                                          2022-06-13 19:09:49.122 - debug: vedirect.0 (1717) Objects connected to redis: 127.0.0.1:9001
                                          2022-06-13 19:09:49.136 - debug: vedirect.0 (1717) objectDB connected
                                          2022-06-13 19:09:49.140 - debug: vedirect.0 (1717) Redis States: Use Redis connection: 127.0.0.1:9000
                                          2022-06-13 19:09:49.153 - debug: vedirect.0 (1717) States create User PubSub Client
                                          2022-06-13 19:09:49.159 - debug: vedirect.0 (1717) States create System PubSub Client
                                          2022-06-13 19:09:49.173 - debug: vedirect.0 (1717) States connected to redis: 127.0.0.1:9000
                                          2022-06-13 19:09:49.175 - debug: vedirect.0 (1717) statesDB connected
                                          2022-06-13 19:09:49.837 - debug: vedirect.0 (1717) Plugin sentry Initialize Plugin (enabled=true)
                                          2022-06-13 19:09:50.253 - info: vedirect.0 (1717) starting. Version 0.1.2 in /opt/iobroker/node_modules/iobroker.vedirect, node: v12.20.1, js-controller: 3.1.6
                                          2022-06-13 19:09:50.437 - debug: vedirect.0 (1717) Line : �
                                          2022-06-13 19:09:50.440 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:50.443 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:50.444 - debug: vedirect.0 (1717) An attribute has changed for : PID
                                          2022-06-13 19:09:50.454 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:50.455 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:50.456 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:50.458 - debug: vedirect.0 (1717) An attribute has changed for : FW
                                          2022-06-13 19:09:50.461 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:50.462 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:50.463 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:50.463 - debug: vedirect.0 (1717) An attribute has changed for : SER#
                                          2022-06-13 19:09:50.480 - debug: vedirect.0 (1717) Line : V 12830
                                          2022-06-13 19:09:50.481 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.83
                                          2022-06-13 19:09:50.483 - debug: vedirect.0 (1717) An attribute has changed for : V
                                          2022-06-13 19:09:50.486 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:50.488 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:50.489 - debug: vedirect.0 (1717) An attribute has changed for : I
                                          2022-06-13 19:09:50.492 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:50.494 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:50.495 - debug: vedirect.0 (1717) An attribute has changed for : VPV
                                          2022-06-13 19:09:50.499 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:50.500 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:50.502 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:50.503 - debug: vedirect.0 (1717) An attribute has changed for : PPV
                                          2022-06-13 19:09:50.530 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:50.533 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:50.536 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:50.538 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:50.541 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:50.542 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:50.544 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:50.545 - debug: vedirect.0 (1717) An attribute has changed for : LOAD
                                          2022-06-13 19:09:50.549 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:50.550 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:50.552 - debug: vedirect.0 (1717) An attribute has changed for : IL
                                          2022-06-13 19:09:50.555 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:50.556 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:50.558 - debug: vedirect.0 (1717) An attribute has changed for : H19
                                          2022-06-13 19:09:50.561 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:50.562 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:50.563 - debug: vedirect.0 (1717) An attribute has changed for : H20
                                          2022-06-13 19:09:50.566 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:50.568 - debug: vedirect.0 (1717) An attribute has changed for : CS
                                          2022-06-13 19:09:50.570 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:50.571 - debug: vedirect.0 (1717) An attribute has changed for : MPPT
                                          2022-06-13 19:09:50.574 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:50.576 - debug: vedirect.0 (1717) An attribute has changed for : ERR
                                          2022-06-13 19:09:50.577 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:50.578 - debug: vedirect.0 (1717) An attribute has changed for : OR
                                          2022-06-13 19:09:50.609 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:50.611 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:50.612 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:50.613 - debug: vedirect.0 (1717) An attribute has changed for : H21
                                          2022-06-13 19:09:50.615 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:50.616 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:50.618 - debug: vedirect.0 (1717) An attribute has changed for : H22
                                          2022-06-13 19:09:50.620 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:50.621 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:50.622 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:50.623 - debug: vedirect.0 (1717) An attribute has changed for : H23
                                          2022-06-13 19:09:50.626 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:50.627 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:50.628 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:50.629 - debug: vedirect.0 (1717) An attribute has changed for : HSDS
                                          2022-06-13 19:09:51.445 - debug: vedirect.0 (1717) Line : Checksum ~
                                          2022-06-13 19:09:51.448 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:51.451 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:51.452 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:51.454 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:51.455 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:51.458 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:51.460 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:51.480 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:51.483 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:51.484 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:51.486 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:51.491 - debug: vedirect.0 (1717) Line : V 13120
                                          2022-06-13 19:09:51.492 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 13.12
                                          2022-06-13 19:09:51.493 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:51.499 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:51.501 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:51.502 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:51.530 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:51.531 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:51.533 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:51.536 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:51.537 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:51.538 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:51.540 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:51.543 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:51.545 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:51.547 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:51.549 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:51.551 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:51.553 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:51.554 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:51.555 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:51.557 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:51.558 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:51.560 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:51.561 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:51.563 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:51.565 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:51.566 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:51.567 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:51.601 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:51.602 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:51.603 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:51.606 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:51.607 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:51.608 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:51.610 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:51.611 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:51.612 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:51.615 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:51.616 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:51.617 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:51.618 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:51.620 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:51.621 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:51.622 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:51.624 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:51.625 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:51.626 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:51.626 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:51.628 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:51.630 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:51.630 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:51.631 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:52.437 - debug: vedirect.0 (1717) Line : Checksum �
                                          2022-06-13 19:09:52.452 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:52.455 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:52.457 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:52.458 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:52.459 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:52.462 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:52.463 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:52.465 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:52.466 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:52.468 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:52.470 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:52.484 - debug: vedirect.0 (1717) Line : V 12890
                                          2022-06-13 19:09:52.486 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.89
                                          2022-06-13 19:09:52.488 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:52.492 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:52.493 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:52.495 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:52.498 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:52.500 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:52.502 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:52.523 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:52.525 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:52.527 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:52.529 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:52.531 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:52.533 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:52.535 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:52.536 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:52.538 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:52.539 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:52.540 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:52.541 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:52.542 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:52.543 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:52.544 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:52.545 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:52.546 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:52.547 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:52.549 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:52.549 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:52.551 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:52.551 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:52.553 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:52.554 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:52.555 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:52.556 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:52.583 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:52.584 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:52.585 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:52.587 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:52.589 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:52.590 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:52.590 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:52.593 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:52.594 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:52.595 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:52.597 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:52.598 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:52.599 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:52.600 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:52.602 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:52.603 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:52.604 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:52.605 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:53.445 - debug: vedirect.0 (1717) Line : Checksum x
                                          2022-06-13 19:09:53.448 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:53.451 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:53.452 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:53.454 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:53.455 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:53.457 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:53.459 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:53.474 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:53.476 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:53.478 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:53.480 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:53.483 - debug: vedirect.0 (1717) Line : V 12590
                                          2022-06-13 19:09:53.485 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.59
                                          2022-06-13 19:09:53.486 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:53.489 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:53.490 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:53.491 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:53.512 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:53.514 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:53.515 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:53.519 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:53.520 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:53.522 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:53.523 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:53.526 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:53.529 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:53.531 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:53.533 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:53.536 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:53.537 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:53.539 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:53.540 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:53.542 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:53.544 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:53.546 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:53.547 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:53.578 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:53.579 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:53.580 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:53.581 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:53.583 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:53.584 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:53.585 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:53.588 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:53.589 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:53.590 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:53.592 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:53.593 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:53.594 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:53.598 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:53.600 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:53.601 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:53.602 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:53.604 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:53.605 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:53.605 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:53.607 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:53.608 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:53.609 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:53.609 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:53.611 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:53.612 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:53.612 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:53.619 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:54.438 - debug: vedirect.0 (1717) Line : Checksum {
                                          2022-06-13 19:09:54.454 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:54.457 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:54.458 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:54.459 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:54.460 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:54.462 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:54.463 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:54.478 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:54.480 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:54.481 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:54.482 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:54.486 - debug: vedirect.0 (1717) Line : V 12470
                                          2022-06-13 19:09:54.487 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.47
                                          2022-06-13 19:09:54.488 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:54.490 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:54.491 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:54.492 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:54.493 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:54.495 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:54.495 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:54.507 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:54.508 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:54.510 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:54.511 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:54.514 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:54.516 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:54.518 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:54.519 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:54.521 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:54.522 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:54.540 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:54.543 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:54.545 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:54.546 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:54.547 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:54.549 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:54.551 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:54.552 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:54.556 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:54.559 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:54.560 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:54.561 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:54.563 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:54.565 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:54.566 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:54.568 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:54.569 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:54.569 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:54.570 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:54.572 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:54.573 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:54.574 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:54.576 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:54.577 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:54.578 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:54.578 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:54.581 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:54.582 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:54.583 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:54.584 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:54.611 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:54.612 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:54.613 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:54.614 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:55.446 - debug: vedirect.0 (1717) Line : Checksum ~
                                          2022-06-13 19:09:55.448 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:55.451 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:55.452 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:55.462 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:55.464 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:55.465 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:55.467 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:55.472 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:55.473 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:55.474 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:55.475 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:55.480 - debug: vedirect.0 (1717) Line : V 12530
                                          2022-06-13 19:09:55.482 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.53
                                          2022-06-13 19:09:55.483 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:55.509 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:55.510 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:55.511 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:55.514 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:55.515 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:55.516 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:55.518 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:55.519 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:55.520 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:55.520 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:55.522 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:55.524 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:55.525 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:55.550 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:55.552 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:55.554 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:55.556 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:55.557 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:55.558 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:55.559 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:55.561 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:55.562 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:55.563 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:55.565 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:55.567 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:55.567 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:55.570 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:55.571 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:55.571 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:55.573 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:55.574 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:55.575 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:55.575 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:55.577 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:55.578 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:55.579 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:55.581 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:55.582 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:55.582 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:55.583 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:55.584 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:55.585 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:55.586 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:55.587 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:55.589 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:55.589 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:55.591 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:55.592 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:55.593 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:55.594 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:56.455 - debug: vedirect.0 (1717) Line : Checksum �
                                          2022-06-13 19:09:56.458 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:56.460 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:56.461 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:56.461 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:56.462 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:56.464 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:56.466 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:56.487 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:56.489 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:56.490 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:56.492 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:56.496 - debug: vedirect.0 (1717) Line : V 12610
                                          2022-06-13 19:09:56.499 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.61
                                          2022-06-13 19:09:56.500 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:56.503 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:56.505 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:56.506 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:56.508 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:56.510 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:56.511 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:56.513 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:56.515 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:56.516 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:56.516 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:56.519 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:56.522 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:56.524 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:56.525 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:56.528 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:56.529 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:56.543 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:56.545 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:56.547 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:56.548 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:56.549 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:56.551 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:56.553 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:56.554 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:56.555 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:56.558 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:56.559 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:56.560 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:56.561 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:56.562 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:56.563 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:56.564 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:56.565 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:56.566 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:56.566 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:56.568 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:56.569 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:56.569 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:56.571 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:56.572 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:56.573 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:56.574 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:56.593 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:56.594 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:56.595 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:56.596 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:56.597 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:56.598 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:56.600 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:56.601 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:57.448 - debug: vedirect.0 (1717) Line : Checksum �
                                          2022-06-13 19:09:57.450 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:57.453 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:57.454 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:57.467 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:57.469 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:57.471 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:57.472 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:57.475 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:57.476 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:57.477 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:57.478 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:57.486 - debug: vedirect.0 (1717) Line : V 12700
                                          2022-06-13 19:09:57.488 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.7
                                          2022-06-13 19:09:57.491 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:57.494 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:57.496 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:57.497 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:57.500 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:57.501 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:57.502 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:57.505 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:57.506 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:57.507 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:57.508 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:57.526 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:57.528 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:57.530 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:57.533 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:57.534 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:57.538 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:57.540 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:57.544 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:57.545 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:57.564 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:57.567 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:57.568 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:57.570 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:57.572 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:57.574 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:57.575 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:57.576 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:57.578 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:57.579 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:57.579 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:57.581 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:57.582 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:57.582 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:57.584 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:57.585 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:57.585 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:57.585 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:57.587 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:57.588 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:57.588 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:57.590 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:57.591 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:57.591 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:57.592 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:57.593 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:57.594 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:57.595 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:57.595 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:57.596 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:57.597 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:58.455 - debug: vedirect.0 (1717) Line : Checksum �
                                          2022-06-13 19:09:58.458 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:58.459 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:58.461 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:58.461 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:58.462 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:58.464 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:58.465 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:58.474 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:58.478 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:58.480 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:58.481 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:58.484 - debug: vedirect.0 (1717) Line : V 12760
                                          2022-06-13 19:09:58.485 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.76
                                          2022-06-13 19:09:58.486 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:58.488 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:58.489 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:58.490 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:58.495 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:58.496 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:58.496 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:58.498 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:58.499 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:58.501 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:58.501 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:58.503 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:58.505 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:58.507 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:58.508 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:58.509 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:58.510 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:58.526 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:58.528 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:58.529 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:58.530 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:58.531 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:58.532 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:58.534 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:58.535 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:58.536 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:58.537 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:58.546 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:58.547 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:58.548 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:58.551 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:58.552 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:58.553 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:58.556 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:58.556 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:58.560 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:58.563 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:58.564 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:58.565 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:58.566 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:58.569 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:58.570 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:58.571 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:58.575 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:58.576 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:58.576 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:58.577 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:58.578 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:58.579 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:58.580 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:58.580 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:09:59.448 - debug: vedirect.0 (1717) Line : Checksum |
                                          2022-06-13 19:09:59.466 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:09:59.468 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:09:59.470 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:09:59.471 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:09:59.472 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:09:59.474 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:09:59.476 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:09:59.477 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:09:59.478 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:09:59.481 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:09:59.482 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:09:59.492 - debug: vedirect.0 (1717) Line : V 12800
                                          2022-06-13 19:09:59.494 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.8
                                          2022-06-13 19:09:59.496 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:09:59.500 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:09:59.502 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:09:59.504 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:09:59.507 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:09:59.508 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:09:59.509 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:09:59.522 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:09:59.523 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:09:59.526 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:09:59.527 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:09:59.529 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:09:59.531 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:09:59.532 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:09:59.534 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:09:59.536 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:09:59.536 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:09:59.537 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:09:59.538 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:09:59.539 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:09:59.540 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:09:59.540 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:09:59.542 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:09:59.542 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:09:59.543 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:09:59.544 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:09:59.545 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:09:59.546 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:09:59.547 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:09:59.552 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:09:59.553 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:09:59.555 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:09:59.556 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:09:59.576 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:09:59.578 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:09:59.579 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:09:59.580 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:09:59.581 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:09:59.582 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:09:59.583 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:09:59.585 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:09:59.587 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:09:59.588 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:09:59.592 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:09:59.593 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:09:59.594 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:09:59.595 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:09:59.598 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:09:59.599 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:09:59.600 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:09:59.601 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:10:00.458 - debug: vedirect.0 (1717) Line : Checksum �
                                          2022-06-13 19:10:00.460 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          2022-06-13 19:10:00.462 - debug: vedirect.0 (1717) Line : FW 159
                                          2022-06-13 19:10:00.463 - debug: vedirect.0 (1717) No case matched for FW
                                          2022-06-13 19:10:00.464 - debug: vedirect.0 (1717) [stateSetCreate]FW with value : 159
                                          2022-06-13 19:10:00.465 - debug: vedirect.0 (1717) No attribute changes for : FW, processing normallly
                                          2022-06-13 19:10:00.468 - debug: vedirect.0 (1717) [stateSetCreate]PID with value : SmartSolar MPPT 100|20 48V
                                          2022-06-13 19:10:00.469 - debug: vedirect.0 (1717) No attribute changes for : PID, processing normallly
                                          2022-06-13 19:10:00.480 - debug: vedirect.0 (1717) Line : SER# HQ2121KRGMY
                                          2022-06-13 19:10:00.482 - debug: vedirect.0 (1717) No case matched for SER#
                                          2022-06-13 19:10:00.483 - debug: vedirect.0 (1717) [stateSetCreate]SER# with value : HQ2121KRGMY
                                          2022-06-13 19:10:00.484 - debug: vedirect.0 (1717) No attribute changes for : SER#, processing normallly
                                          2022-06-13 19:10:00.487 - debug: vedirect.0 (1717) Line : V 12850
                                          2022-06-13 19:10:00.489 - debug: vedirect.0 (1717) [stateSetCreate]V with value : 12.85
                                          2022-06-13 19:10:00.490 - debug: vedirect.0 (1717) No attribute changes for : V, processing normallly
                                          2022-06-13 19:10:00.498 - debug: vedirect.0 (1717) Line : I 0
                                          2022-06-13 19:10:00.499 - debug: vedirect.0 (1717) [stateSetCreate]I with value : 0
                                          2022-06-13 19:10:00.501 - debug: vedirect.0 (1717) No attribute changes for : I, processing normallly
                                          2022-06-13 19:10:00.504 - debug: vedirect.0 (1717) Line : VPV 14470
                                          2022-06-13 19:10:00.505 - debug: vedirect.0 (1717) [stateSetCreate]VPV with value : 14.47
                                          2022-06-13 19:10:00.507 - debug: vedirect.0 (1717) No attribute changes for : VPV, processing normallly
                                          2022-06-13 19:10:00.509 - debug: vedirect.0 (1717) Line : PPV 0
                                          2022-06-13 19:10:00.511 - debug: vedirect.0 (1717) No case matched for PPV
                                          2022-06-13 19:10:00.512 - debug: vedirect.0 (1717) [stateSetCreate]PPV with value : 0
                                          2022-06-13 19:10:00.513 - debug: vedirect.0 (1717) No attribute changes for : PPV, processing normallly
                                          2022-06-13 19:10:00.516 - debug: vedirect.0 (1717) Line : CS 3
                                          2022-06-13 19:10:00.518 - debug: vedirect.0 (1717) [stateSetCreate]CS with value : Bulk
                                          2022-06-13 19:10:00.520 - debug: vedirect.0 (1717) No attribute changes for : CS, processing normallly
                                          2022-06-13 19:10:00.531 - debug: vedirect.0 (1717) Line : MPPT 2
                                          2022-06-13 19:10:00.533 - debug: vedirect.0 (1717) Line : OR 0x00000000
                                          2022-06-13 19:10:00.538 - debug: vedirect.0 (1717) Line : ERR 0
                                          2022-06-13 19:10:00.543 - debug: vedirect.0 (1717) Line : LOAD ON
                                          2022-06-13 19:10:00.544 - debug: vedirect.0 (1717) No case matched for LOAD
                                          2022-06-13 19:10:00.545 - debug: vedirect.0 (1717) [stateSetCreate]LOAD with value : ON
                                          2022-06-13 19:10:00.547 - debug: vedirect.0 (1717) No attribute changes for : LOAD, processing normallly
                                          2022-06-13 19:10:00.550 - debug: vedirect.0 (1717) Line : IL 0
                                          2022-06-13 19:10:00.551 - debug: vedirect.0 (1717) [stateSetCreate]IL with value : 0
                                          2022-06-13 19:10:00.552 - debug: vedirect.0 (1717) No attribute changes for : IL, processing normallly
                                          2022-06-13 19:10:00.554 - debug: vedirect.0 (1717) Line : H19 0
                                          2022-06-13 19:10:00.555 - debug: vedirect.0 (1717) [stateSetCreate]H19 with value : 0
                                          2022-06-13 19:10:00.556 - debug: vedirect.0 (1717) No attribute changes for : H19, processing normallly
                                          2022-06-13 19:10:00.558 - debug: vedirect.0 (1717) Line : H20 0
                                          2022-06-13 19:10:00.559 - debug: vedirect.0 (1717) [stateSetCreate]H20 with value : 0
                                          2022-06-13 19:10:00.560 - debug: vedirect.0 (1717) No attribute changes for : H20, processing normallly
                                          2022-06-13 19:10:00.562 - debug: vedirect.0 (1717) Line : H21 0
                                          2022-06-13 19:10:00.563 - debug: vedirect.0 (1717) No case matched for H21
                                          2022-06-13 19:10:00.564 - debug: vedirect.0 (1717) [stateSetCreate]H21 with value : 0
                                          2022-06-13 19:10:00.565 - debug: vedirect.0 (1717) No attribute changes for : H21, processing normallly
                                          2022-06-13 19:10:00.567 - debug: vedirect.0 (1717) [stateSetCreate]MPPT with value : MPP Tracker active
                                          2022-06-13 19:10:00.568 - debug: vedirect.0 (1717) No attribute changes for : MPPT, processing normallly
                                          2022-06-13 19:10:00.570 - debug: vedirect.0 (1717) [stateSetCreate]ERR with value : No Error
                                          2022-06-13 19:10:00.571 - debug: vedirect.0 (1717) No attribute changes for : ERR, processing normallly
                                          2022-06-13 19:10:00.573 - debug: vedirect.0 (1717) [stateSetCreate]OR with value : Normal Operation
                                          2022-06-13 19:10:00.573 - debug: vedirect.0 (1717) No attribute changes for : OR, processing normallly
                                          2022-06-13 19:10:00.593 - debug: vedirect.0 (1717) Line : H22 0
                                          2022-06-13 19:10:00.594 - debug: vedirect.0 (1717) [stateSetCreate]H22 with value : 0
                                          2022-06-13 19:10:00.595 - debug: vedirect.0 (1717) No attribute changes for : H22, processing normallly
                                          2022-06-13 19:10:00.596 - debug: vedirect.0 (1717) Line : H23 0
                                          2022-06-13 19:10:00.598 - debug: vedirect.0 (1717) No case matched for H23
                                          2022-06-13 19:10:00.599 - debug: vedirect.0 (1717) [stateSetCreate]H23 with value : 0
                                          2022-06-13 19:10:00.601 - debug: vedirect.0 (1717) No attribute changes for : H23, processing normallly
                                          2022-06-13 19:10:00.606 - debug: vedirect.0 (1717) Line : HSDS 0
                                          2022-06-13 19:10:00.609 - debug: vedirect.0 (1717) No case matched for HSDS
                                          2022-06-13 19:10:00.610 - debug: vedirect.0 (1717) [stateSetCreate]HSDS with value : 0
                                          2022-06-13 19:10:00.611 - debug: vedirect.0 (1717) No attribute changes for : HSDS, processing normallly
                                          2022-06-13 19:10:01.449 - debug: vedirect.0 (1717) Line : Checksum |
                                          2022-06-13 19:10:01.465 - debug: vedirect.0 (1717) Line : PID 0xA060
                                          

                                          wie war das noch mit update und upgrade in der Console ? wo ihr schon einmal hier seid
                                          :grinning:

                                          Thomas BraunT DutchmanD 3 Antworten Letzte Antwort
                                          0
                                          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

                                          855

                                          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