Fix read/write status/command area THermoCam

This commit is contained in:
Samuele Locatelli
2020-10-27 12:17:30 +01:00
parent 3bc768121e
commit d26fcefdc4
3 changed files with 64 additions and 1 deletions
+21
View File
@@ -450,6 +450,27 @@ namespace CMS_CORE_Library.Models
#endregion Methods
}
/// <summary>
/// ThermoCam management data
/// </summary>
public class ThermoCam
{
/// <summary>
/// Opzione ThermoCamera (set by PLC)
/// </summary>
public bool ThermoOptionActive { get; set; } = false;
/// <summary>
/// Modalità ThermoCamera (set by HMI)
/// </summary>
public bool ThermoCamMode { get; set; } = false;
/// <summary>
/// Funzionamento ThermoCamera (set by HMI)
/// </summary>
public bool ThermoCamOnOff { get; set; } = false;
}
/// <summary>
/// Warmers channel data
/// </summary>
public class WarmerChannel
{