Fix Variable Names
This commit is contained in:
@@ -33,7 +33,7 @@ public sealed partial class AlignmentStationPageVM : ObservableValidator, IDispo
|
||||
_variableName = variableName;
|
||||
|
||||
VacuumValveControlVm = new BinaryValveControlVM(_adsManager, _variableName + ".stVacuumValve");
|
||||
AlignmentPackMLControlVm = new(_adsManager, _variableName + "stStationCmds");
|
||||
AlignmentPackMLControlVm = new(_adsManager, _variableName + ".stStationCmds");
|
||||
AlignmentPackMLControlVm.STitle = "Ausrichtstation";
|
||||
}
|
||||
|
||||
|
||||
@@ -59,16 +59,16 @@ public sealed partial class HighVoltageStationPageVM : ObservableValidator, IDis
|
||||
_adsManager = adsManager;
|
||||
_variableName = variableName;
|
||||
|
||||
DoorValveHotControlVm = new BinaryValveControlVM(_adsManager, _variableName + "Hot.stDoorValve");
|
||||
TestChamberHotValveVm = new BinaryValveControlVM(_adsManager, _variableName + "Hot.stTestChamberValve");
|
||||
TempSPHotVm = new AnalogValueVM(_adsManager, _variableName + "Hot.stTempSP", false);
|
||||
DoorValveHotControlVm = new BinaryValveControlVM(_adsManager, _variableName + ".stHVTesterHot.stDoorValve");
|
||||
TestChamberHotValveVm = new BinaryValveControlVM(_adsManager, _variableName + ".stHVTesterHot.stTestChamberValve");
|
||||
TempSPHotVm = new AnalogValueVM(_adsManager, _variableName + ".stHVTesterHot.stTempSP", false);
|
||||
|
||||
DoorValveColdControlVm = new BinaryValveControlVM(_adsManager, _variableName + "Cold.stDoorValve");
|
||||
TestChamberColdValveVm = new BinaryValveControlVM(_adsManager, _variableName + "Cold.stTestChamberValve");
|
||||
TempSPColdVm = new AnalogValueVM(_adsManager, _variableName + "Cold.stTempSP", false);
|
||||
DoorValveColdControlVm = new BinaryValveControlVM(_adsManager, _variableName + ".stHVTesterCold.stDoorValve");
|
||||
TestChamberColdValveVm = new BinaryValveControlVM(_adsManager, _variableName + ".stHVTesterCold.stTestChamberValve");
|
||||
TempSPColdVm = new AnalogValueVM(_adsManager, _variableName + ".stHVTesterCold.stTempSP", false);
|
||||
|
||||
HighVoltageColdPackMLControlVm = new(_adsManager, _variableName + "Cold.stStationCmds");
|
||||
HighVoltageHotPackMLControlVm = new(_adsManager, _variableName + "Hot.stStationCmds");
|
||||
HighVoltageColdPackMLControlVm = new(_adsManager, _variableName + ".stHVTesterCold.stStationCmds");
|
||||
HighVoltageHotPackMLControlVm = new(_adsManager, _variableName + ".stHVTesterHot.stStationCmds");
|
||||
|
||||
HighVoltageColdPackMLControlVm.STitle = "Hochvoltstation\nKalt";
|
||||
|
||||
|
||||
@@ -155,8 +155,8 @@ public sealed partial class HotCoolPlatePageVM : ObservableValidator, IDisposabl
|
||||
HotPlateTargetTemperature = new AnalogValueVM(_adsManager, _variableName + ".stHotplate.stSetpoint", false);
|
||||
CoolPlateTargetTemperature = new AnalogValueVM(_adsManager, _variableName + ".stCoolplate.stSetpoint", false);
|
||||
|
||||
HotplatePackMLControlVm = new(_adsManager, _variableName + "stHotplate.stStationCmds");
|
||||
CoolplatePackMLControlVm = new(_adsManager, _variableName + "stCoolplate.stStationCmds");
|
||||
HotplatePackMLControlVm = new(_adsManager, _variableName + ".stHotplate.stStationCmds");
|
||||
CoolplatePackMLControlVm = new(_adsManager, _variableName + ".stCoolplate.stStationCmds");
|
||||
|
||||
HotplatePackMLControlVm.STitle = "Heizplatte";
|
||||
CoolplatePackMLControlVm.STitle = "Kühlplatte";
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class AlignmentStationPage : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.stAligner";
|
||||
|
||||
public static AlignmentStationPageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class EtchingStation1Page : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.stEtcher1";
|
||||
|
||||
public static EtchingStation1PageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class EtchingStation2Page : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.stEtcher2";
|
||||
|
||||
public static EtchingStation2PageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class HighVoltageStationPage : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine";
|
||||
|
||||
public static HighVoltageStationPageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class HotCoolPlatePage : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine";
|
||||
|
||||
public static HotCoolPlatePageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class MediaCabinetPage : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.stMediaCabinet";
|
||||
|
||||
public static MediaCabinetPageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class NIOStationPage : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.stNOK";
|
||||
|
||||
public static NIOStationPageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace InfineonHMI
|
||||
/// </summary>
|
||||
public partial class OverviewPage : Page
|
||||
{
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.Overview";
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine";
|
||||
private static IAdsManager _adsManager;
|
||||
|
||||
public static OverviewPageVM CreateModel(IAdsManager adsManager)
|
||||
|
||||
Reference in New Issue
Block a user