Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter Pylontech v0.0.10

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    Test Adapter Pylontech v0.0.10

    This topic has been deleted. Only users with topic management privileges can see it.
    • Ralla66
      Ralla66 Most Active @PLCHome 0 last edited by Ralla66

      @plchome-0

      Nabend, bin weiter am testen mit der ESP TCP Bridge.
      Was wird bei Netzwerkhost eingetragen ? Die IP der ESP TCP Bridge ohne http
      bei mir dann 192.168.2.177 ?

      Trockenlauf :
      Vom Windows PC TCP Client über ESP TCP Bridge nach Hterm geht.
      Von Hterm über ESP TCP Bridge nach Windows PC TCP Client geht.
      Wireshark zeigt Telnet als Protokoll an.
      Also sind die Kabelwege in Ordnung.

      py 2510 1.jpg

      192.168.2.89 ist IO Broker mit dem Adapter

      PLCHome 0 1 Reply Last reply Reply Quote 0
      • PLCHome 0
        PLCHome 0 Developer @Ralla66 last edited by

        @ralla66 Der akku antwortet nicht ist das Kabel zum Akku ok? Was sendet der Akku?

        Ralla66 1 Reply Last reply Reply Quote 0
        • Ralla66
          Ralla66 Most Active @PLCHome 0 last edited by Ralla66

          @plchome-0

          Der Akku ist gar nicht angeschlossen.
          Der Adapter müsste ja eine Anfrage zur Batterie senden.
          Mit Wireshark ist keine Kommunikation vom Adapter zum ESP zu sehen.

          PLCHome 0 1 Reply Last reply Reply Quote 0
          • PLCHome 0
            PLCHome 0 Developer @Ralla66 last edited by PLCHome 0

            @ralla66 Lade den Adapter auf deinem hTerm Rechner von Github herunter, npm geht nicht und starte statt hTerm auf dem Rechner in der Root der Quellen.

            https://github.com/PLCHome/ioBroker.pylontech/archive/refs/heads/master.zip

            node build/moc/serialMoc.js <port> 115200 US
            

            Aber es ist komisch unter hTerm hättest du das erste Komando "pwr" sehen müssen.
            Und im wireshark auch.

            Ralla66 1 Reply Last reply Reply Quote 0
            • Ralla66
              Ralla66 Most Active @PLCHome 0 last edited by

              @plchome-0

              Also läuft der Adapter nicht auf meinem Raspi 4 mit IO ?

              PLCHome 0 1 Reply Last reply Reply Quote 0
              • PLCHome 0
                PLCHome 0 Developer @Ralla66 last edited by PLCHome 0

                @ralla66 Irgendwie ist mir das hier zu blöd:
                Zuerst schreibst du, dass du mit Hterm gegen einen gefummelten TCP/V24 Adapter getestet hast.

                Also:
                Verbinde deine Raspberry IO Installation in der du den ioBroker-Pylontech-Adapter installiert hast zu deinen TCP/V24 Adapter. Den TCP/V24 Adapter mit deinem Testrechner und starte dadrauf die Akkuemulation, also den serialMoc

                Dan läuft der Adapter.

                Sollte es nicht funktionieren, dann prüfe bitte deinen Aufbau/Hardware oder Konfiguration.

                Es geht nämlich das Gerücht rum, dass der ioBroker-Pylontech-Adapter funktioniert!

                Deinen Adapter kannst du mit Putty in raw und hTerm prüfen.

                Ralla66 1 Reply Last reply Reply Quote 0
                • Ralla66
                  Ralla66 Most Active @PLCHome 0 last edited by

                  @plchome-0

                  gefummelt, ah ja.
                  Danke für die Kommunikation.

                  1 Reply Last reply Reply Quote 0
                  • Der-Jeti
                    Der-Jeti last edited by

                    Hi,

                    wäre es auch möglich ein SC0500 Controller in den Adapter einzubauen ?

                    PLCHome 0 1 Reply Last reply Reply Quote 0
                    • PLCHome 0
                      PLCHome 0 Developer @Der-Jeti last edited by

                      @der-jeti wenn der auch einen Konsolenport hat. Ja dafür müsstest du den Konsolenport mit einem Rechner verbinden auf dem NodeJs oder der ioBroker läuft.
                      Der Adapter enthält Shell Funktionen um eine Referenz mit zu schneiden.

                      Der-Jeti 1 Reply Last reply Reply Quote 0
                      • Der-Jeti
                        Der-Jeti @PLCHome 0 last edited by

                        @plchome-0 ja, hat er. Werde mich morgen mal dran machen.

                        PLCHome 0 1 Reply Last reply Reply Quote 0
                        • PLCHome 0
                          PLCHome 0 Developer @Der-Jeti last edited by

                          @der-jeti us und force hast du schon probiert?

                          hg6806 1 Reply Last reply Reply Quote 0
                          • hg6806
                            hg6806 Most Active @PLCHome 0 last edited by

                            @plchome-0

                            Hi, ich habe auch einen US3000C und würde den ganz gerne mittels deinem Adapter abfragen wollen.
                            Ich habe den Pylontech über die RS232 des RJ45 an einen MAX3232 angeschlossen und die UART direkt an den Pi4.

                            Muss ich das jetzt noch wie folgt konfigurieren?

                            SOFTWARE USE OF THE SERIAL PORT
                            If you intend to use the serial port for a software application running on the Raspberry Pi, there is a bit of configuration required to disable the console from using this port.   By default, the serial port is configured as a console port for interacting with the Linux OS shell.  The following steps will guide you through disabling the port from console access.
                            
                            First, lets make of backup of the two files that we intend to modify.
                            
                            sudo cp /boot/cmdline.txt /boot/cmdline.bak
                            sudo cp /etc/inittab /etc/inittab.bak
                            Next, we need to remove the "console=ttyAMA0,115200" and "kgdboc=ttyAMA0,115200" configuration parameters from the "/boot/cmdline.txt" configuration file. 
                            
                            To edit the file use this command:
                            
                            sudo nano /boot/cmdline.txt
                            The file probably contains this default configuration line:
                            
                            dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 
                            console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait
                            After removing the two configuration parameters, it will look similar to this:
                            
                            dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 
                            elevator=deadline rootwait
                             
                            
                            The last step is to edit the "/etc/inittab" file and comment out the use of the "ttyAMA0" serial port.  To edit the file use this command:
                            
                            sudo nano /etc/inittab
                            Now towards the bottom of the file, look for a configuration line that includes the "ttyAMA0" port address.
                            
                            
                            
                            Place a pound sign ("#") in front of the line to comment it out.  With a pound sign ("#") at the beginning of the line, Linux will ignore this configuration line.  
                            
                            
                            
                            Save the "/etc/inittab" file and then issue this command to reboot the Raspberry Pi:
                            
                            sudo reboot
                            Now you are ready to use the serial port with a software application and the operating system won't interfere with the port.  Use the device address "ttyAMA0" in your application to access this serial port.  
                            

                            Und gebe ich dann unter lokaler Geräteadresse "ttyAMA0" ein?

                            PLCHome 0 1 Reply Last reply Reply Quote 0
                            • PLCHome 0
                              PLCHome 0 Developer @hg6806 last edited by

                              @hg6806 ich kenne es so https://www.abelectronics.co.uk/kb/article/1035/serial-port-setup-in-raspberry-pi-os

                              Dann ist der Port /dev/ttyS0

                              1 Reply Last reply Reply Quote 0
                              • hg6806
                                hg6806 Most Active last edited by

                                Adapter meldet "Error: Error: Input/output error setting custom baud rate of 115200"

                                Seltsamerweise sehe ich mit dem Scope weder beim Pylontech noch bei dem Pi irgendetwas tackern auf der UART.

                                PLCHome 0 1 Reply Last reply Reply Quote 0
                                • PLCHome 0
                                  PLCHome 0 Developer @hg6806 last edited by PLCHome 0

                                  @hg6806 also der Stack kann die Geschwindigkeit nicht setzen. Kann auch an rechten liegen mach mal einen

                                  sudo chmod 777 /dev/ttyS0

                                  Du kannst die Schnittstelle auch von der Console öffnen

                                  sudo apt install cu
                                  cu -l /dev/ttyS0 -s 115200

                                  Oder sudo cu

                                  Die Schnittstelle bitte noch gegen deine tauschen..

                                  hg6806 1 Reply Last reply Reply Quote 0
                                  • hg6806
                                    hg6806 Most Active @PLCHome 0 last edited by

                                    @plchome-0

                                    Rechte gesetzt, Fehler ist noch da.

                                    Ich dachte /dev/ttyS0 wäre meine Schnittstelle?

                                    PLCHome 0 1 Reply Last reply Reply Quote 0
                                    • PLCHome 0
                                      PLCHome 0 Developer @hg6806 last edited by PLCHome 0

                                      @hg6806 hi, da ich aktuell keinen Pi im Einsatz habe kann ich nur Ratschläge geben. Gehe eine Anleitung für dein Pi Modell und die Linux Version durch um die Schnittstelle einzurichten.

                                      Am besten testen kannst du die Kommunikation mit einen Terminalprogramm wie cu. Du brückst rx und tx (gpio 14 und gpio 15) wenn du das siehst was du schreibst funktioniert der Port. Danach schließt du den Max an und Brückst dort rx und tx. Solltest du da auch das sehen was du schreibst kannst du den Akku anschließen. Im CU kann man dann Enter drücken und sieht die Konsole. Bingo dann den Adaper einrichten.

                                      hg6806 1 Reply Last reply Reply Quote 0
                                      • hg6806
                                        hg6806 Most Active @PLCHome 0 last edited by

                                        @plchome-0

                                        Hi, hatte noch ein paar andere Baustellen.
                                        Also über die UART habe ich es leider nicht hinbekommen. Da ist irgendwas im Argen, CU hatte direkt ein HangUp gemeldet.
                                        Aber egal, ich habe es über einen USB-RS232 Adapter hinbekommen und direkt alle Daten von beiden Speichern bekommen.
                                        Danke dafür, coole Sache!

                                        Sag mal, wie hast du die Visualisierung im 1. Post gemacht. Kannst du das evtl. zur Verfügung stellen?

                                        kletternaut PLCHome 0 2 Replies Last reply Reply Quote 0
                                        • kletternaut
                                          kletternaut @hg6806 last edited by

                                          @hg6806 sagte in Test Adapter Pylontech v0.0.7:

                                          @plchome-0
                                          ...
                                          Sag mal, wie hast du die Visualisierung im 1. Post gemacht. Kannst du das evtl. zur Verfügung stellen?

                                          Ja, das fände ich auch ganz prima! 🙂

                                          1 Reply Last reply Reply Quote 0
                                          • PLCHome 0
                                            PLCHome 0 Developer @hg6806 last edited by PLCHome 0

                                            @hg6806 sagte in Test Adapter Pylontech v0.0.7:

                                            Sag mal, wie hast du die Visualisierung im 1. Post gemacht. Kannst du das evtl. zur Verfügung stellen?

                                            @kletternaut

                                            Ich habe grafana und den ioB mit einer MySql laufen, weil sich influx immer bei einer Million Datenpunkten auf meinem alten PI aufgehängt hat. Der Fehler ist wohl weg, ich habs aber nie mehr geändert.

                                            Unter mysql hab ich für alle Datentypen je eine View, in grafana brauch ich dann nur die Datenpunkte in das Diagramm einzufügen.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            818
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            27
                                            204
                                            22962
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo