remove fake nullables from status record

This commit is contained in:
ig 2023-08-25 17:18:26 +02:00
parent 4907654841
commit 9a400d992d
1 changed files with 4 additions and 7 deletions

View File

@ -130,15 +130,15 @@ internal static class Program
return new StatusRecord
{
AcDc = acDc ?? AcDcDevicesRecord.Null,
DcDc = dcDc ?? DcDcDevicesRecord.Null,
Battery = battery ?? Battery48TlRecords.Null,
AcDc = acDc ,
DcDc = dcDc ,
Battery = battery ,
Relays = relays,
GridMeter = gridMeter,
PvOnAcGrid = pvOnAcGrid,
PvOnAcIsland = pvOnAcIsland,
PvOnDc = pvOnDc ?? AmptStatus.Null,
PvOnDc = pvOnDc,
AcGridToAcIsland = new AcPowerDevice { Power = gridBusToIslandBusPower },
LoadOnAcGrid = new AcPowerDevice { Power = loadOnAcGrid },
@ -213,9 +213,6 @@ internal static class Program
record.Config.Save();
"===========================================".LogInfo();
return record;