modifica DTO x upload stato connessione FLIR cam

This commit is contained in:
Samuele E. Locatelli
2021-03-17 19:05:49 +01:00
parent 027eed8770
commit 21cb4050b0
2 changed files with 7 additions and 0 deletions
@@ -30,6 +30,11 @@ namespace Thermo.Active.Model.DTOModels.ThWarmers
/// </summary>
public bool ThermoCamOnOff { get; set; } = false;
/// <summary>
/// Stato connessione ThermoCamera (in rete)
/// </summary>
public bool ThermoCamConnected { get; set; } = false;
/// <summary>
/// Opzione ThermoCamera (set by PLC)
/// </summary>
+2
View File
@@ -3168,6 +3168,8 @@ namespace Thermo.Active.NC
Min = minVal,
Max = maxVal
};
// controllo se connessa
currTCamData.ThermoCamConnected = cameraIsConnected;
}
return libraryError;
}