mr-manuel / venus-os_dbus-mqtt-grid

This Venus OS driver gets the data from MQTT and displays it as grid, genset or ac load meter.
MIT License
59 stars 20 forks source link

Problem with JSON "Minimum required with L1, L2, L3" #20

Closed buhao75 closed 7 months ago

buhao75 commented 7 months ago

Hello, Unfortunately the 3 phases are not shown in my Victron Multiplus GX when using JSON. Minimum required with L1, L2, L3 does not show any phases but only the main power value:

{
    "grid": {
        "power": 0.0,
        "L1": {
            "power": 0.0
        },
        "L2": {
            "power": 0.0
        },
        "L3": {
            "power": 0.0
        }
    }
}

Minimum required works as expected:

{
    "grid": {
        "power": 0.0
    }
}

I would be happy to retrieve a message with some hints. Thanks and all the best, Michael

mr-manuel commented 7 months ago

Did you troubleshoot? What does the log say? How does your payload look like, if you check with MQTT Explorer?

buhao75 commented 7 months ago

Thank you very much for your very fast reply. MQTT Explorer helped me to find the wrong syntax in the MQTT-JSON Format.