Hi, wanting to add the additional phases (monitoring) to the home assistant integration, just need to know what the api returns so I can add them.
Hi DenimJackRabbit,
It doesn’t look like this is something that can currently be done for additional phases but we’ll be sure to announce if there are any changes in this space.
Really? So your telling me the api doesn’t return the additional phases?
For E2
It returns currentL1 and voltageL1N
Surely for X22 it’s just L2 and L3?
looks like this is what comes back from the API according to the web app
current: meterValue.currentImport,
currentL1: meterValue.currentImportPhased?.L1,
currentL2: meterValue.currentImportPhased?.L2,
currentL3: meterValue.currentImportPhased?.L3,
frequency: meterValue.frequency,
power: meterValue.powerActiveImport,
register: meterValue.energyActiveImportRegister,
stateOfCharge: meterValue.stateOfCharge,
temperature: meterValue.temperature,
updatedDate: meterValue.timestamp,
voltage: meterValue.voltage,
voltageL1N: meterValue.voltagePhased?.L1N,
voltageL2N: meterValue.voltagePhased?.L2N,
voltageL3N: meterValue.voltagePhased?.L3N,