Aggiunta enum dati plc LH invertiti Int/DInt

This commit is contained in:
Samuele Locatelli
2022-07-29 13:12:35 +02:00
parent 7b7b70ff02
commit c12713ddc3
+21 -1
View File
@@ -100,11 +100,21 @@ namespace MapoSDK
/// </summary>
Int,
/// <summary>
/// Tipo UInt16 reversed LowHigh
/// </summary>
IntLH,
/// <summary>
/// Tipo Int32 intero 32bit
/// </summary>
DInt,
/// <summary>
/// Tipo UInt32 reversed LowHigh
/// </summary>
DIntLH,
/// <summary>
/// Tipo UInt16, intero 16bit
/// </summary>
@@ -171,7 +181,17 @@ namespace MapoSDK
/// <summary>
/// Valore bitmap, inteso come array di bit ognuno da trattare come uno stato on/off indipendente e sommabile (es allarmi)
/// </summary>
BitMap
BitMap,
/// <summary>
/// Tipo UInt16 intero senza segno 16bit
/// </summary>
UInt,
/// <summary>
/// Tipo UInt32 intero senza segno 32bit
/// </summary>
UDInt
}
/// <summary>