yeah i tried getting in contact with Solax also and they wouldn’t give me the configuration software 
Here’s how I get the info from the inverter to my HASS:
- Put Inverter on your network (Ethernet or Wifi). Use either a DHCP Reservation, Static IP or configure your DNS and give your inverter a name.
- Install an MQTT Broker (if you do not already have one)
- Install Node-red (google instructions, it’s not hard).
- Install the following nodes in Node-red: node-red-dashboard, node-red-contrib-string
- Copy code below
- In your Node-red installation <<IP_of_Node-red>>:1880
- Click menu in top right corner>Import>From Clipboard
- Paste the code below into that space
- Read the readme
- Put Inverter IP/Name in the “Inverter IP Here” node (replace the IP address that is there, leave the rest of the address as is).
- Hit Deploy
- Click square to the left of “Make Request”
- Go to <<IP_of_Node-red>>:1880/ui
- You should see values in the Dashboard under the IP in Step 13. If you do, the connection from the Inverter to Node-red is good.
- Configure MQTT broker in the “Configure MQTT here” node. Click the pencil next to the server. Remember authentication if you have it on your MQTT server. Leave topic blank (it’s configured in the large function).
- Hit Deploy.
- Check values at your MQTT server (you can google this as each server is different).
- Configure sensors in HASS as per sensor code below.
- Voila!
Sensor yaml:
- platform: mqtt
state_topic: “solax/energy/gridPower”
name: “Grid Power”
unit_of_measurement: “KW”
payload_not_available: “offline”
Node-red Code:
https://www.dropbox.com/sh/fsxabozu4b2gkaf/AABXy8GGOy0VLekWIKHB_jlqa?dl=0
…and some screenshots to top it off:

