MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-Hoymiles-Wifi

    Scheduled Pinned Locked Moved Development
    35 Posts 6 Posters 4.9k Views 5 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • evroomE Offline
      evroom @Jose1701
      last edited by

      @Jose1701

      This command should give more information on the PID found:

      ps -Flww -p

      E.g.

      ps -Flww -p 64879

      Perhaps there are easier ways, but this should do.

      MagicMirror version: 2.33.0
      Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
      Raspbian GNU/Linux 12 (bookworm)

      Test environment:
      MagicMirror version: v2.31.0
      Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
      Raspbian GNU/Linux 12 (bookworm)

      J 1 Reply Last reply Reply Quote 0
      • J Offline
        Jose1701 @evroom
        last edited by

        @evroom

        Seems that this is hoymiles …?

        F S UID          PID    PPID  C PRI  NI ADDR SZ WCHAN    RSS PSR STIME TTY          TIME CMD
        0 S florian    64879   64878  1  80   0 - 59630 do_sys 137520  1 16:11 ?        00:05:02 python hoymiles_data.py --dtu_ip_address 192.168.178.150 --max 800
        
        
        evroomE 1 Reply Last reply Reply Quote 0
        • evroomE Offline
          evroom @Jose1701
          last edited by evroom

          @Jose1701

          Yes, so an instance is already running.
          You added it to pm2 too?

          pm2 status

          If yes, then you do not need to run it manually.
          If no, then kill the (p)pid.

          sudo kill -9 [ppid]

          MagicMirror version: 2.33.0
          Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          Test environment:
          MagicMirror version: v2.31.0
          Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          J 1 Reply Last reply Reply Quote 0
          • J Offline
            Jose1701 @evroom
            last edited by

            @evroom

            Well, I’ve done that now. At the moment it is night so I can’t see any output.
            Will see if it works tomorrow …

            Thank you. I will post if it runs then.

            J 1 Reply Last reply Reply Quote 0
            • J Offline
              Jose1701 @Jose1701
              last edited by

              Can’t get it to work.

              I don’t know what I’m doing wrong…

              Now, Portscan ist about that:

              
              tcp        0      0 127.0.0.1:5000          0.0.0.0:*               LISTEN      1139/python
              tcp        0      0 127.0.0.1:5000          127.0.0.1:37002         ESTABLISHED 1139/python
              tcp        0      0 127.0.0.1:57592         127.0.0.1:5000          TIME_WAIT   -
              tcp        0      0 127.0.0.1:37002         127.0.0.1:5000          ESTABLISHED 6097/exe
              
              
              evroomE 1 Reply Last reply Reply Quote 0
              • evroomE Offline
                evroom @Jose1701
                last edited by evroom

                @Jose1701

                First I would disable the module:

                $ vi ~/MagicMirror/config/config.js
                
                    module: "MMM-Hoymiles-Wifi",
                    disabled: true,
                
                $ pm2 restart MagicMirror
                

                I build this command to try to get more info on port 5000:

                $ for pid in `lsof -i :5000 | grep -v 'PID' | awk '{print $2}' | sort -u`; do echo $pid; ps -Flww -p  $pid; done
                

                Hopefully the Forum tool does not change it.

                Furthermore please verify and supply the following data:

                $ cd /home/admin/MagicMirror/modules/MMM-Hoymiles-Wifi
                

                Check path:

                $ which hoymiles-wifi
                $ echo $PATH
                

                Check if the path is in the PATH.
                If not, do (using the path from ‘which’):

                $ export PATH=$PATH:/home/admin/.local/bin
                

                Check config.js:

                $ grep ':5000' ~/MagicMirror/config/config.js
                

                Expected is:

                { src: 'http://127.0.0.1:5000' },
                

                Check HoymilesWifi.sh:

                $ grep 'dtu_ip_address' HoymilesWifi.sh
                

                Expected is your DTU IP address, for example:

                python hoymiles_data.py --dtu_ip_address 192.168.178.50 --max 800
                

                Test run (hoymiles-wifi):

                $ hoymiles-wifi --host 192.168.178.50  identify-inverters
                

                Expected is a response.

                Test run (HoymilesWifi.sh)

                $ ./HoymilesWifi.sh
                

                Expected is:

                * Serving Flask app 'hoymiles_data'
                * Debug mode: off
                INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
                * Running on http://127.0.0.1:5000
                INFO:werkzeug:Press CTRL+C to quit
                

                If you wait a bit some more output is shown.

                If it works, then I would suggest to stop the ./HoymilesWifi.sh command and do:

                $ cd /home/admin/MagicMirror/modules/MMM-Hoymiles-Wifi
                $ pm2 start HoymilesWifi.sh
                $ pm2 save
                
                $ pm2 status HoymilesWifi
                
                $ pm2 logs HoymilesWifi --lines 10
                

                If everything is okay, the enable the module again:

                $ vi ~/MagicMirror/config/config.js
                
                    module: "MMM-Hoymiles-Wifi",
                    disabled: false,
                
                $ pm2 restart MagicMirror
                

                MagicMirror version: 2.33.0
                Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                Raspbian GNU/Linux 12 (bookworm)

                Test environment:
                MagicMirror version: v2.31.0
                Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                Raspbian GNU/Linux 12 (bookworm)

                evroomE 1 Reply Last reply Reply Quote 0
                • evroomE Offline
                  evroom @evroom
                  last edited by evroom

                  To be honest, for me the MM does not display anything.
                  Although it is dark, I still expected the graphic with 0 or so.
                  Or I have to wait a bit longer.

                  I used
                  https://github.com/schris88/MMM-Hoymiles-Wifi/
                  and all the above is correct and running.

                  A year ago I made a fork and made some changes, of which I think are present in the schris88 version as well.

                  https://github.com/evroom/MMM-Hoymiles-Wifi/
                  I will give this one a try when I have time.

                  PS: it seems that when the microinverter is off-line, you will not see anything. Need to wait for it to be active again.

                  MagicMirror version: 2.33.0
                  Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  Test environment:
                  MagicMirror version: v2.31.0
                  Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  1 Reply Last reply Reply Quote 0
                  • 1
                  • 2
                  • 3
                  • 4
                  • 4 / 4
                  • First post
                    Last post
                  Enjoying MagicMirror? Please consider a donation!
                  MagicMirror created by Michael Teeuw.
                  Forum managed by Sam, technical setup by Karsten.
                  This forum is using NodeBB as its core | Contributors
                  Contact | Privacy Policy