I have an East/West install with 5 panels on the East side and 14 panels on the West and I was told they were installed as 3 strings.
I was looking at Energy Stats app and seeing that had an option to show breakdown by strings, however it was only showing 2 as having power, even went the sun is overhead and hitting both sides of the roof.
So I hit the API myself to make sure it's not the app and that does look to be the case:
Code: Select all
/op/v0/device/real/query
{
errno: 0,
msg: 'success',
result: [
{
datas: [
{
unit: 'kW',
name: 'PVPower',
variable: 'pvPower',
value: 4.273
},
{
unit: 'kW',
name: 'PV1Power',
variable: 'pv1Power',
value: 0
},
{
unit: 'kW',
name: 'PV2Power',
variable: 'pv2Power',
value: 2.166
},
{
unit: 'kW',
name: 'PV3Power',
variable: 'pv3Power',
value: 2.107
},
{
unit: 'kW',
name: 'PV4Power',
variable: 'pv4Power',
value: 0
}
],
time: '2024-08-30 16:32:14 BST+0100',
deviceSN: '************'
}
]
}
I requested these variables via the API and the above is all it sent back:
Code: Select all
"variables": ["pvPower", "pv1Power", "pv2Power", "pv3Power", "pv4Power", "pv5Power", "pv6Power", "pv7Power", "pv8Power", "pv9Power", "pv10Power", "pv11Power", "pv12Power", "pv13Power", "pv14Power", "pv15Power", "pv16Power", "pv17Power", "pv18Power"]