13 lines
300 B
C#
13 lines
300 B
C#
|
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertDc;
|
||
|
|
||
|
[Flags]
|
||
|
public enum DcCurrentLimitState : UInt16
|
||
|
{
|
||
|
PMax = 0b_00001,
|
||
|
MaxChargingCurrent = 0b_00010,
|
||
|
MaxDischargingCurrent = 0b_00100,
|
||
|
MaxBatteryVoltage = 0b_01000,
|
||
|
MinBatteryVoltage = 0b_10000,
|
||
|
}
|
||
|
|