Update desired phase count derived from given active phase count

master
Simon Stürz 2025-09-16 15:18:25 +02:00
parent 95a3320409
commit 6ec2abe1d2
1 changed files with 2 additions and 0 deletions

View File

@ -241,6 +241,8 @@ void EverestEvse::processEvseStatus()
m_thing->setStateValue(everestChargerAcPluggedInStateTypeId, m_evseStatus.evseState != EverestJsonRpcClient::EvseStateUnplugged);
m_thing->setStateValue(everestChargerAcPhaseCountStateTypeId, m_evseStatus.acChargeStatus.activePhaseCount);
m_thing->setStateValue(everestChargerAcDesiredPhaseCountStateTypeId, m_evseStatus.acChargeStatus.activePhaseCount);
m_thing->setStateValue(everestChargerAcMaxChargingCurrentStateTypeId, m_evseStatus.acChargeParameters.maxCurrent);
}
}