45 lines
2.8 KiB
C#
45 lines
2.8 KiB
C#
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
||
|
namespace InnovEnergy.Lib.Devices.Trumpf.TruConvertDc;
|
||
|
|
||
|
[SuppressMessage("ReSharper", "IdentifierTypo")]
|
||
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
||
|
[SuppressMessage("ReSharper", "CommentTypo")]
|
||
|
public enum AlarmMessage
|
||
|
{
|
||
|
NoAlarm = 0, // No Alarm
|
||
|
Iboosterhv = 60081, // DC-DC power module alarm
|
||
|
Iboosterhv1 = 60082, // wildcard to allocate TypeMessageNumber
|
||
|
Iboosterhv2 = 60083, // wildcard to allocate TypeMessageNumber
|
||
|
Ibat = 60084, // DC-DC power module alarm
|
||
|
Ibat1 = 60085, // wildcard to allocate TypeMessageNumber
|
||
|
Ibat2 = 60086, // wildcard to allocate TypeMessageNumber
|
||
|
Itrafolv = 60087, // DC-DC power module alarm
|
||
|
Itrafolv1 = 60088, // wildcard to allocate TypeMessageNumber
|
||
|
Itrafolv2 = 60089, // wildcard to allocate TypeMessageNumber
|
||
|
UbatHigh = 60090, // Battery overvoltage
|
||
|
UbatHigh1 = 60091, // wildcard to allocate TypeMessageNumber
|
||
|
UbatHigh2 = 60092, // wildcard to allocate TypeMessageNumber
|
||
|
Udclp = 60093, // DC link overvoltage
|
||
|
Udclp1 = 60094, // wildcard to allocate TypeMessageNumber
|
||
|
Udclp2 = 60095, // wildcard to allocate TypeMessageNumber
|
||
|
Udcln = 60096, // DC link overvoltage (lower half)
|
||
|
Udcln1 = 60097, // wildcard to allocate TypeMessageNumber
|
||
|
Udcln2 = 60098, // wildcard to allocate TypeMessageNumber
|
||
|
Udclllc = 60099, // DC-DC power module alarm
|
||
|
Udclllc1 = 60100, // wildcard to allocate TypeMessageNumber
|
||
|
Udclllc2 = 60101, // wildcard to allocate TypeMessageNumber
|
||
|
UdclLow = 60102, // DC link voltage too low for operation
|
||
|
UdclLow1 = 60103, // wildcard to allocate TypeMessageNumber
|
||
|
UdclLow2 = 60104, // wildcard to allocate TypeMessageNumber
|
||
|
VauxHigh = 60700, // Auxiliary supply overvoltage
|
||
|
VauxHigh1 = 60701, // wildcard to allocate TypeMessageNumber
|
||
|
VauxHigh2 = 60702, // wildcard to allocate TypeMessageNumber
|
||
|
UbatLow = 60142, // Battery undervoltage
|
||
|
UbatLow1 = 60143, // wildcard to allocate TypeMessageNumber
|
||
|
UbatLow2 = 60144, // wildcard to allocate TypeMessageNumber
|
||
|
VauxLow = 60703, // Auxiliary supply undervoltage
|
||
|
VauxLow1 = 60704, // wildcard to allocate TypeMessageNumber
|
||
|
VauxLow2 = 60705, // wildcard to allocate TypeMessageNumber
|
||
|
IbatIboosterPlausi = 60197, // DC-DC power module alarm
|
||
|
}
|