11 lines
293 B
C#
11 lines
293 B
C#
|
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertDc.Status;
|
||
|
|
||
|
[Flags]
|
||
|
public enum BatteryPowerLimit : UInt16
|
||
|
{
|
||
|
MaxPower = 0b_00001,
|
||
|
MaxChargeCurrent = 0b_00010,
|
||
|
MaxDischargeCurrent = 0b_00100,
|
||
|
MaxVoltage = 0b_01000,
|
||
|
MinVoltage = 0b_10000,
|
||
|
}
|