Hi everyone, I’m currently trying to integrate my Solar V system into Home Assistant but I’m running into some issues. I’ve set up several sensors using the REST platform to pull data from SolaxCloud, including total yield, current power, today’s yield, upload time, battery level, feed-in power, export total, and import. While the data is showing up in the history and looks accurate, I’m facing some problems with the Energy section. The sensors for consume, feed-in total, export total, and import are showing as ‘entity not defined’, and I can’t see the battery sensor either, even though it appears in the history. I’m not very experienced with this, so I’m not sure where the issue lies. I’ve included my configuration.yaml below for reference. If anyone has successfully integrated a similar system or has any insights, I’d really appreciate your help!
yaml
sensor:
- platform: rest
resource: https://www.solaxcloud.com/proxyApp/proxy/api/getRealtimeInfo.do?tokenId=ID&sn=SN
value_template: “{{ value_json.result.yieldtotal | round(0) }}”
name: “Solax total”
unit_of_measurement: “kWh”
state_class: measurement
device_class: energy
… other sensor configurations …
Thanks in advance for your support! ![]()