Add the DC link Active Voltage reading
This commit is contained in:
parent
736af37475
commit
1efefc6af4
|
@ -0,0 +1,13 @@
|
||||||
|
using InnovEnergy.Lib.Units;
|
||||||
|
|
||||||
|
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertAc.Status;
|
||||||
|
|
||||||
|
public class ActiveVoltages
|
||||||
|
{
|
||||||
|
public Voltage ActiveUpperVoltage => _Self.DcMaxVoltage;
|
||||||
|
public Voltage ActiveLowerVoltage => _Self.DcMinVoltage;
|
||||||
|
public Voltage ActiveRefVoltage => _Self.DcReferenceVoltage;
|
||||||
|
|
||||||
|
internal ActiveVoltages(AcDcRecord self) => _Self = self;
|
||||||
|
private readonly AcDcRecord _Self;
|
||||||
|
}
|
Loading…
Reference in New Issue