27 lines
679 B
C#
27 lines
679 B
C#
using InnovEnergy.Lib.StatusApi.Connections;
|
|
using InnovEnergy.Lib.StatusApi.Devices;
|
|
|
|
namespace InnovEnergy.Lib.Devices.EmuMeter;
|
|
|
|
public record EmuMeterStatus
|
|
(
|
|
ThreePhaseAcConnection Ac,
|
|
Decimal ActivePowerL123,
|
|
Decimal ReactivePowerL123,
|
|
Decimal ApparentPowerL123,
|
|
Decimal CurrentL123,
|
|
Decimal VoltageL1L2,
|
|
Decimal VoltageL2L3,
|
|
Decimal VoltageL3L1,
|
|
Decimal EnergyImportL123,
|
|
Decimal EnergyImportL1,
|
|
Decimal EnergyImportL2,
|
|
Decimal EnergyImportL3,
|
|
Decimal EnergyExportL123,
|
|
Decimal EnergyExportL1,
|
|
Decimal EnergyExportL2,
|
|
Decimal EnergyExportL3
|
|
):GridMeter(Ac)
|
|
{}
|
|
|