Alpha Automatic

This commit is contained in:
Michael Rest
2013-01-31 19:44:16 +01:00
parent df200aa284
commit cf09a1194b
18 changed files with 1149 additions and 101 deletions

View File

@@ -3,6 +3,7 @@ PROGRAM _CYCLIC
gMachine.bAxisSimulation := FALSE;
bSafetyOk := gUE410_MU_MQD.bX3 AND gUE410_MU_MQD.bX4;
bSafetyOkFP := EDGEPOS (bSafetyOk);
lPressParamActTool ACCESS ADR (PressParamTools[gusSelectedTool]);
IF EDGEPOS (bBlink0_1) THEN
udSteptime := udSteptime + 100;
@@ -142,11 +143,16 @@ PROGRAM _CYCLIC
lAxisShaft3.DriveStatus.bControllerReady AND
lAxisShaft4.DriveStatus.bControllerReady;
bPressIsInHomepos := ((lAxisShaftMaster.rActPosition = rPressPosHome) AND bAllAxisesInSync);
rPosDiffShaft1 := lAxisShaftMaster.rActPosition - lAxisShaft1.rActPosition;
rPosDiffShaft2 := lAxisShaftMaster.rActPosition - lAxisShaft2.rActPosition;
rPosDiffShaft3 := lAxisShaftMaster.rActPosition - lAxisShaft3.rActPosition;
rPosDiffShaft4 := lAxisShaftMaster.rActPosition - lAxisShaft4.rActPosition;
bPressIsInHomepos := ((lAxisShaftMaster.rActPosition = lPressParamActTool.rPosHome) AND bAllAxisesInSync);
// lAxisShaft1.DriveStatus.bTrigger1;
bPressIsInMountpos := ((lAxisShaftMaster.rActPosition = rPressPosMount) AND bAllAxisesInSync);
bPressIsInPresspos := ((lAxisShaftMaster.rActPosition = rPressPosPress) AND bAllAxisesInSync);
bPressIsInMountpos := ((lAxisShaftMaster.rActPosition = lPressParamActTool.rPosPremount) AND bAllAxisesInSync);
bPressIsInPresspos := ((lAxisShaftMaster.rActPosition = lPressParamActTool.rPosPress) AND bAllAxisesInSync);
TON_SlayUp.PT := t#200ms;
TON_SlayUp.IN := gbInToolSlay1PosUp1 AND
gbInToolSlay1PosUp2 AND
@@ -182,12 +188,12 @@ PROGRAM _CYCLIC
MoveConditions.bEnableReferencePress := bAllAxisesInSync AND gPS.DriveStatus.bTrigger1;
MoveConditions.bEnableReferencePressABS := bAllAxisesSingle AND bAllAxisesControllerRdy;
MoveConditions.bEnablePosShaftMaster := (gMachine.bSetupMode OR (lAxisShaftMaster.rActPosition < rPressPosMax)) AND bAllAxisesInSync AND gPS.DriveStatus.bTrigger2 AND
(gMachine.bSetupMode OR bToolslayIsOut OR (bToolslay1IsDown AND bToolslayIsIn)) AND
((gMachine.enMode <> enMACH_JOG) OR
((lAxisShaft1.rActTorque < 6.5) AND
(lAxisShaft2.rActTorque < 6.5) AND
(lAxisShaft3.rActTorque < 6.5) AND
(lAxisShaft4.rActTorque < 6.5)));
(gMachine.bSetupMode OR bToolslayIsOut OR (bToolslay1IsDown AND bToolslayIsIn));
// ((gMachine.enMode <> enMACH_JOG) OR
// ((lAxisShaft1.rActTorque < 6.5) AND
// (lAxisShaft2.rActTorque < 6.5) AND
// (lAxisShaft3.rActTorque < 6.5) AND
// (lAxisShaft4.rActTorque < 6.5)));
MoveConditions.bEnableToolslay1Up := bPressIsInHomepos OR TRUE ; //FixMe
@@ -480,7 +486,7 @@ PROGRAM _CYCLIC
//Press up to Home
//---------------------------
enPressStepHoming_MOVE_HOME:
lAxisShaftMaster.Para.rPosition := rPressPosHome;
lAxisShaftMaster.Para.rPosition := lPressParamActTool.rPosHome;
lAxisShaftMaster.Para.rVelocity := 250.0;
IF MoveConditions.bEnableNegShaftMaster THEN
lAxisShaftMaster.Move.bAbsolute :=TRUE;
@@ -622,7 +628,7 @@ PROGRAM _CYCLIC
//Press down to Mountpos
//---------------------------
enPressStep_PRESS_MOUNTPOS:
lAxisShaftMaster.Para.rPosition := rPressPosMount;
lAxisShaftMaster.Para.rPosition := lPressParamActTool.rPosPremount;
lAxisShaftMaster.Para.rVelocity := rPressSpeedEmpty;
IF MoveConditions.bEnablePosShaftMaster THEN
lAxisShaftMaster.Move.bAbsolute :=TRUE;
@@ -650,8 +656,8 @@ PROGRAM _CYCLIC
//Press down to Presspos
//---------------------------
enPressStep_PRESS_PRESSPOS:
lAxisShaftMaster.Para.rPosition := rPressPosPress;
lAxisShaftMaster.Para.rVelocity := rPressSpeedFull;
lAxisShaftMaster.Para.rPosition := lPressParamActTool.rPosPress;
lAxisShaftMaster.Para.rVelocity := lPressParamActTool.rSpeedPress;
IF MoveConditions.bEnablePosShaftMaster THEN
lAxisShaftMaster.Move.bAbsolute := TRUE;
enStepPress := enPressStep_PRESS_PRESSPOS_WAIT;
@@ -669,14 +675,14 @@ PROGRAM _CYCLIC
//Wait Pressed
//---------------------------
enPressStep_WAIT_PRESSED:
IF udSteptime > udWaittimePressed THEN
IF udSteptime > lPressParamActTool.udPresstime THEN
enStepPress := enPressStep_PRESS_HOMEPOS;
END_IF
//Press up to Home
//---------------------------
enPressStep_PRESS_HOMEPOS:
lAxisShaftMaster.Para.rPosition := rPressPosHome;
lAxisShaftMaster.Para.rPosition := lPressParamActTool.rPosHome;
lAxisShaftMaster.Para.rVelocity := rPressSpeedEmpty;
IF MoveConditions.bEnableNegShaftMaster AND bEnableNextStep THEN
lAxisShaftMaster.Move.bAbsolute :=TRUE;

View File

@@ -115,6 +115,15 @@ TYPE
bJogPosSlay2 : BOOL;
bReferenceSlay2 : BOOL; (*Werkzeugschlitten 2 referenzieren*)
END_STRUCT;
tpyPressParam : STRUCT (*Positionen f<>r Presse (Werkzeugabh<62>ngig*)
rPosHome : REAL := 1000.0; (*Grundstellung f<>r Ein/Ausfahren*)
rPosPremount : REAL := 1420.0; (*VormontagePos*)
rPosPress : REAL := 1550.0; (*Pressposition*)
rPosMin : REAL := 0.0; (*Minimalpositon*)
rPosMax : REAL := 1600.0; (*Maximalposition (SW-Limit 1650)*)
rSpeedPress : REAL := 80.0; (*Pressgeschwindigkeit*)
udPresstime : UDINT := 500; (*Presszeit [ms]*)
END_STRUCT;
typMoveConditions : STRUCT (*Bewegungsfreigaben*)
bEnableNegShaft1 : BOOL;
bEnablePosShaft1 : BOOL;

View File

@@ -48,7 +48,6 @@ VAR
bEnableNextStep : BOOL; (*N<>chsten Schritt (Semiautomatik) Freigeben*)
usErrorReset : USINT;
udSteptime : UDINT; (*0.1s*)
udWaittimePressed : UDINT := 1000; (*ms*)
udCycletime : UDINT := 0; (*ms*)
udCycletimeLast : UDINT := 0; (*ms*)
StatusVCControls : typStatusPressVCControls;
@@ -62,16 +61,18 @@ VAR
enStepPressHoming : typ_enStepHoming;
rOverrideVelocity : REAL := 100.0;
rAveragePos : REAL;
PressParamTools : ARRAY[0..5] OF tpyPressParam; (*Werkzeug abh<62>ngige Positionen*)
lPressParamActTool : REFERENCE TO tpyPressParam; (*Positionen aktuelle Werkzeug*)
rPressPosMin : REAL := -6000.0; (*Presse Oben Pos Min [0.1mm]*)
rPressPosMax : REAL := 6000.0; (*Press Unten Pos Max [0.1mm]*)
rPressPosHome : REAL := 1000.0; (*Presse Grundstellung [0.1mm]*)
rPressPosMount : REAL := 1420.0; (*Presse Montageposition [0.1mm]*)
rPressPosPress : REAL := 1600.0; (*Presse Pressposition [0.1mm]*)
rPressSpeedEmpty : REAL := 600.0; (*Presse Leergeschwindigkeit [0.1mm/s]*)
rPressSpeedFull : REAL := 80.0; (*Presse Leergeschwindigkeit [0.1mm/s]*)
rSpeedSlay1 : REAL := 1000.0;
rToolSlayPosOut : REAL := 5.0;
rToolSlayPosIn : REAL := 1250.0;
rPosDiffShaft1 : REAL; (*Pos Abweichung zum Master*)
rPosDiffShaft2 : REAL; (*Pos Abweichung zum Master*)
rPosDiffShaft3 : REAL; (*Pos Abweichung zum Master*)
rPosDiffShaft4 : REAL; (*Pos Abweichung zum Master*)
END_VAR
VAR CONSTANT
rHOMEPOS : REAL := 0.0;

View File

@@ -7,7 +7,11 @@ END_PROGRAM
PROGRAM _CYCLIC
bSafetyOk := gUE410_MU_MQD.bX3 AND gUE410_MU_MQD.bX4;
bToolIsActive := (gusSelectedTool = usTOOLID) AND (gusCurrentTool = usTOOLID);
IF EDGEPOS (bBlink0_1) THEN
udSteptime := udSteptime + 100;
END_IF
MoveConditions.bEnableCylinder1Fw := gbInTool1Cyl3Bw;
MoveConditions.bEnableCylinder1Bw := TRUE;
@@ -34,7 +38,7 @@ PROGRAM _CYCLIC
//Jog Mode
//==========================================================================================
IF gMachine.enMode = enMACH_JOG THEN
IF (gMachine.enMode = enMACH_JOG) AND bToolIsActive THEN
IF ManualCommands.bCylinder1Bw AND MoveConditions.bEnableCylinder1Bw THEN
bCylinder1Fw := FALSE;
ELSIF ManualCommands.bCylinder1Fw AND MoveConditions.bEnableCylinder1Fw THEN
@@ -66,12 +70,13 @@ PROGRAM _CYCLIC
bCylinder3Fw := FALSE;
IF gbTool1Homepos THEN
genStepTool1Home := enTool1StepHome_WAIT_START_HOME;
genStepTool1 := enTool1Step_INIT;
END_IF
END_CASE;
//(Semi) - Automaticmode
//==========================================================================================
ELSIF (gMachine.enMode = enMACH_MANUAL) OR (gMachine.enMode = enMACH_AUTOMATIC) THEN
ELSIF ((gMachine.enMode = enMACH_MANUAL) OR (gMachine.enMode = enMACH_AUTOMATIC)) AND bToolIsActive THEN
//Wirefeed
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CASE genStepTool1 OF
@@ -90,30 +95,34 @@ PROGRAM _CYCLIC
//Wait for Start Mount
//---------------------------
enTool1Step_START_MOUNT:
udSteptime := 0;
genStepTool1 := enTool1Step_CYL1_FW;
//Cylinder 1 FW
//---------------------------
enTool1Step_CYL1_FW:
bCylinder1Fw := TRUE;
IF gbInTool1Cyl1Fw THEN
IF gbInTool1Cyl1Fw AND (udSteptime > 2000) THEN
genStepTool1 := enTool1Step_CYL3_FW;
udSteptime := 0;
END_IF
//Cylinder 3 FW
//---------------------------
enTool1Step_CYL3_FW:
bCylinder3Fw := TRUE;
IF gbInTool1Cyl3Fw THEN
IF gbInTool1Cyl3Fw AND (udSteptime > 2000) THEN
genStepTool1 := enTool1Step_CYL2_FW;
udSteptime := 0;
END_IF
//Cylinder 2 FW
//---------------------------
enTool1Step_CYL2_FW:
bCylinder2Fw := TRUE;
IF gbInTool1Cyl2Fw THEN
IF gbInTool1Cyl2Fw AND (udSteptime > 2000) THEN
genStepTool1 := enTool1Step_WAIT_START_HOME;
udSteptime := 0;
END_IF
//Wait for Start Home
@@ -137,12 +146,12 @@ PROGRAM _CYCLIC
//Set Outputs
IF bToolIsActive THEN
gbOuTool1Cyl1Fw := bCylinder1Fw;
gbOuTool1Cyl1Bw := NOT bCylinder1Fw;
gbOuTool1Cyl2Fw := bCylinder2Fw;
gbOuTool1Cyl2Bw := NOT bCylinder2Fw;
gbOuTool1Cyl3Fw := bCylinder3Fw;
gbOuTool1Cyl3Bw := NOT bCylinder3Fw;
gbOuTool1Cyl1Fw := bSafetyOk AND bCylinder1Fw;
gbOuTool1Cyl1Bw := bSafetyOk AND NOT bCylinder1Fw;
gbOuTool1Cyl2Fw := bSafetyOk AND bCylinder2Fw;
gbOuTool1Cyl2Bw := bSafetyOk AND NOT bCylinder2Fw;
gbOuTool1Cyl3Fw := bSafetyOk AND bCylinder3Fw;
gbOuTool1Cyl3Bw := bSafetyOk AND NOT bCylinder3Fw;
END_IF
//Generate Alarms
Cylinder1Check (bInOutputCylinderBw := gbOuTool1Cyl1Bw,

View File

@@ -1,5 +1,6 @@
VAR
bToolIsActive : BOOL; (*Werkzeug ist aktiv*)
bSafetyOk : BOOL;
bCylinder1Fw : BOOL;
bCylinder2Fw : BOOL;
bCylinder3Fw : BOOL;
@@ -8,6 +9,7 @@ VAR CONSTANT
usTOOLID : USINT := 1; (*Werkzeugnummer*)
END_VAR
VAR
udSteptime : UDINT; (*0.1s*)
StatusVCControls : typStatusToolVCControls;
ManualCommands : typManualCommnands; (*Kommandos Betriebsart Hand*)
MoveConditions : typMoveConditions;

View File

@@ -7,13 +7,14 @@ END_PROGRAM
PROGRAM _CYCLIC
bSafetyOk := gUE410_MU_MQD.bX3 AND gUE410_MU_MQD.bX4;
bToolIsActive := (gusSelectedTool = usTOOLID) AND (gusCurrentTool = usTOOLID);
MoveConditions.bEnableCylinder1Fw := gbInTool1Cyl3Bw;
MoveConditions.bEnableCylinder1Fw := TRUE; //gbInTool1Cyl3Bw;
MoveConditions.bEnableCylinder1Bw := TRUE;
MoveConditions.bEnableCylinder2Fw := gbInTool1Cyl1Fw AND gbInTool1Cyl3Fw;
MoveConditions.bEnableCylinder2Fw := TRUE; //gbInTool1Cyl1Fw AND gbInTool1Cyl3Fw;
MoveConditions.bEnableCylinder2Bw := TRUE;
MoveConditions.bEnableCylinder3Fw := gbInTool1Cyl1Fw;
MoveConditions.bEnableCylinder3Fw := TRUE; //gbInTool1Cyl1Fw;
MoveConditions.bEnableCylinder3Bw := TRUE;
StatusVCControls.usCylinder1Fw := SHL (BOOL_TO_USINT (NOT MoveConditions.bEnableCylinder1Fw), VC_LOCK_BITPOS) +
@@ -34,7 +35,7 @@ PROGRAM _CYCLIC
//Jog Mode
//==========================================================================================
IF gMachine.enMode = enMACH_JOG THEN
IF (gMachine.enMode = enMACH_JOG) AND bToolIsActive THEN
IF ManualCommands.bCylinder1Bw AND MoveConditions.bEnableCylinder1Bw THEN
bCylinder1Fw := FALSE;
ELSIF ManualCommands.bCylinder1Fw AND MoveConditions.bEnableCylinder1Fw THEN
@@ -71,7 +72,7 @@ PROGRAM _CYCLIC
//(Semi) - Automaticmode
//==========================================================================================
ELSIF (gMachine.enMode = enMACH_MANUAL) OR (gMachine.enMode = enMACH_AUTOMATIC) THEN
ELSIF ((gMachine.enMode = enMACH_MANUAL) OR (gMachine.enMode = enMACH_AUTOMATIC)) AND bToolIsActive THEN
//Wirefeed
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CASE genStepTool1 OF
@@ -137,12 +138,12 @@ PROGRAM _CYCLIC
//Set Outputs
IF bToolIsActive THEN
gbOuTool1Cyl1Fw := FALSE; //bCylinder1Fw;
gbOuTool1Cyl1Bw := FALSE; // NOT bCylinder1Fw;
gbOuTool1Cyl2Fw := FALSE; //bCylinder2Fw;
gbOuTool1Cyl2Bw := FALSE; // NOT bCylinder2Fw;
gbOuTool1Cyl3Fw := FALSE; //bCylinder3Fw;
gbOuTool1Cyl3Bw := FALSE; // NOT bCylinder3Fw;
gbOuTool1Cyl1Fw := bSafetyOk AND bCylinder1Fw;
gbOuTool1Cyl1Bw := bSafetyOk AND NOT bCylinder1Fw;
gbOuTool1Cyl2Fw := bSafetyOk AND bCylinder2Fw;
gbOuTool1Cyl2Bw := bSafetyOk AND NOT bCylinder2Fw;
gbOuTool1Cyl3Fw := bSafetyOk AND FALSE; //bCylinder3Fw;
gbOuTool1Cyl3Bw := bSafetyOk AND FALSE; // NOT bCylinder3Fw;
END_IF
//Generate Alarms
Cylinder1Check (bInOutputCylinderBw := gbOuTool1Cyl1Bw,

View File

@@ -1,5 +1,6 @@
VAR
bToolIsActive : BOOL; (*Werkzeug ist aktiv*)
bSafetyOk : BOOL;
bCylinder1Fw : BOOL;
bCylinder2Fw : BOOL;
bCylinder3Fw : BOOL;
@@ -8,6 +9,7 @@ VAR CONSTANT
usTOOLID : USINT := 2; (*Werkzeugnummer*)
END_VAR
VAR
udSteptime : UDINT; (*0.1s*)
StatusVCControls : typStatusToolVCControls;
ManualCommands : typManualCommnands; (*Kommandos Betriebsart Hand*)
MoveConditions : typMoveConditions;

View File

@@ -86,7 +86,9 @@ gStatusVCControls.usLayersMainpage[2] := SHL (BOOL_TO_USINT (NOT gMachine.bMachi
gStatusVCControls.usLayersMainpage[3] := SHL (BOOL_TO_USINT (NOT gMachine.bMachineON OR (gMachine.enMode <> enMACH_JOG) OR (gusCurrentOpLayer <> 3)), VC_HIDE_BITPOS);
//Layer 4 Manual Opeation Tool 1
gStatusVCControls.usLayersMainpage[4] := SHL (BOOL_TO_USINT (NOT gMachine.bMachineON OR (gMachine.enMode <> enMACH_JOG) OR (gusCurrentOpLayer <> 4)), VC_HIDE_BITPOS);
//Layer 6 Manual Opeation Tool
//Layer 5 Manual Opeation Tool 2
gStatusVCControls.usLayersMainpage[5] := SHL (BOOL_TO_USINT (NOT gMachine.bMachineON OR (gMachine.enMode <> enMACH_JOG) OR (gusCurrentOpLayer <> 5)), VC_HIDE_BITPOS);
//Layer 6 Automatic
gStatusVCControls.usLayersMainpage[6] := SHL (BOOL_TO_USINT (NOT gMachine.bMachineON OR ((gMachine.enMode <> enMACH_MANUAL) AND (gMachine.enMode <> enMACH_AUTOMATIC))), VC_HIDE_BITPOS);
//Layer 7 Homing
gStatusVCControls.usLayersMainpage[7] := SHL (BOOL_TO_USINT (NOT gMachine.bMachineON OR (gMachine.enMode <> enMACH_HOMEPOS)), VC_HIDE_BITPOS);
@@ -125,6 +127,11 @@ gMachineAlarms.Alarm[5] := NOT gPS.DriveStatus.bTrigger2;
//Request MachineHoming
gMachineAlarms.Alarm[6] := lMachine.bRequestHoming;
IF (gusCurrentTool <> gusSelectedTool) AND gbST10ModuleOk THEN
gMachineAlarms.Alarm[7] := TRUE;
ELSIF (gusCurrentTool = gusSelectedTool) THEN
gMachineAlarms.Alarm[7] := FALSE;
END_IF
//Hardware faults
//Axis PS
@@ -174,5 +181,14 @@ gMachineAlarms.Alarm[56] := Tool1CylinderCheck4.bOuErrorCylinderBw;
gMachineAlarms.Alarm[57] := Tool1CylinderCheck4.bOuErrorCylinderFw;
//Lamps
// cond = Estop
// blink 0,5Hz = Ready to reset
gbOuLEDCabinet := (NOT gUE410_MU_MQD.bStRqA AND (NOT gUE410_MU_MQD.bX1 OR NOT gUE410_MU_MQD.bX2)) OR
(gUE410_MU_MQD.bStRqA AND bBlink0_5);
gbOuLEDToolslay1 := (NOT gUE410_MU_MQD.bStRqB AND (NOT gUE410_MU_MQD.bX3 OR NOT gUE410_MU_MQD.bX4)) OR
(gUE410_MU_MQD.bStRqB AND bBlink0_5);
END_PROGRAM

View File

@@ -367,7 +367,7 @@
<Text ID="171" Value="External Valve Block not OK"/>
<Text ID="172" Value="External IO Block (Toolslay 1) not OK"/>
<Text ID="314" Value="Request Homing"/>
<Text ID="315" Value=""/>
<Text ID="315" Value="Wrong Tool"/>
<Text ID="316" Value="Toolslay 1 Liftcylinder 1 not retraced"/>
<Text ID="317" Value="Toolslay 1 Liftcylinder 1 not extracted"/>
<Text ID="318" Value="Toolslay 1 Liftcylinder 2 not retraced"/>
@@ -396,7 +396,7 @@
<Text ID="171" Value="Modulfehler Ventilanschaltung"/>
<Text ID="172" Value="Modulfehler I/O Block auf Werkzeug 1"/>
<Text ID="314" Value="Anforderung Grundstellungsfahrt"/>
<Text ID="315" Value=""/>
<Text ID="315" Value="Falsches Werkzeug eingebaut / angewählt"/>
<Text ID="316" Value="Werkzeugschlitten 1 Hubzylinder 1 nicht eingefahren"/>
<Text ID="317" Value="Werkzeugschlitten 1 Hubzylinder 1 nicht ausgefahren"/>
<Text ID="318" Value="Werkzeugschlitten 1 Hubzylinder 2 nicht eingefahren"/>

View File

@@ -388,12 +388,12 @@
<Text ID="57" Value="Lichtvorhang 1 Kanal 2 unterbrochen"/>
<Text ID="58" Value="Sicherheitstür -Kette 2 Kanal 1 unterbrochen"/>
<Text ID="59" Value="Sicherheitstür -Kette 2 Kanal 2 unterbrochen"/>
<Text ID="65" Value="Sicherheitsmodul UE410 Ausgang 1 (A Kanal 1) ist AUS"/>
<Text ID="66" Value="Sicherheitsmodul UE410 Ausgang 2 (A Kanal 2) ist AUS"/>
<Text ID="67" Value="Sicherheitsmodul Kanal A muss quittiert werden"/>
<Text ID="74" Value="Sicherheitsmodul UE410 Ausgang 3 (B Kanal 1) ist AUS"/>
<Text ID="75" Value="Sicherheitsmodul UE410 Ausgang 4 (B Kanal 2) ist AUS"/>
<Text ID="76" Value="Sicherheitsmodul Kanal A muss quittiert werden"/>
<Text ID="65" Value="Sicherheitsmodul Ausgang 1 (A Kanal 1 / Hothalt) ist AUS"/>
<Text ID="66" Value="Sicherheitsmodul Ausgang 2 (A Kanal 2 / Nothalt) ist AUS"/>
<Text ID="67" Value="Sicherheitsmodul Kanal A (Nothalt) kann quittiert werden"/>
<Text ID="74" Value="Sicherheitsmodul Ausgang 3 (B Kanal 1 / Lichtvorhang Einlegebereich) ist AUS"/>
<Text ID="75" Value="Sicherheitsmodul Ausgang 4 (B Kanal 2 / Lichtvorhang Einlegebereich) ist AUS"/>
<Text ID="76" Value="Sicherheitsmodul Kanal B (Lichtvorhang Einlegebereich) kann quittiert werden"/>
<Text ID="87" Value="Not-Halt Werkzeugschlitten 1 links ist betätigt"/>
<Text ID="88" Value="Not-Halt Werkzeugschlitten 1 rechts ist betätigt"/>
<Text ID="95" Value="Not-Halt 3 ist betätigt"/>

View File

@@ -1174,6 +1174,94 @@
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<Folder Name="lPressParamActTool">
<Property Name="Description" Value=""/>
<Property Name="FolderType" Value="Struct"/>
<DataPoint Name="rPosHome">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="REAL"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter_0_1]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<DataPoint Name="rPosPremount">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="REAL"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter_0_1]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<DataPoint Name="rPosPress">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="REAL"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter_0_1]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<DataPoint Name="rPosMin">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="REAL"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter_0_1]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<DataPoint Name="rPosMax">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="REAL"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter_0_1]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Length]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<DataPoint Name="rSpeedPress">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="REAL"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Millimeter_0_1]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Velocity]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
<DataPoint Name="udPresstime">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="DPLimit" Value="Default"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="UDINT"/>
<Property Name="PLCUnit" Value="Source[relative:UnitGroup].Unit[Miliseconds]"/>
<Property Name="UnitGroup" Value="Source[global].UnitGroup[Time]"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="SCALED"/>
</DataPoint>
</Folder>
</Folder>
<Folder Name="AxisPS">
<Property Name="Description" Value=""/>
@@ -1596,6 +1684,148 @@
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
<Folder Name="Tool2">
<Property Name="Description" Value=""/>
<Property Name="FolderType" Value="Program"/>
<Folder Name="StatusVCControls">
<Property Name="Description" Value=""/>
<Property Name="FolderType" Value="Struct"/>
<DataPoint Name="usCylinder1Fw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="USINT"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
<DataPoint Name="usCylinder1Bw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="USINT"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
<DataPoint Name="usCylinder2Fw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="USINT"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
<DataPoint Name="usCylinder2Bw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="USINT"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
</Folder>
<Folder Name="ManualCommands">
<Property Name="Description" Value=""/>
<Property Name="FolderType" Value="Struct"/>
<DataPoint Name="bCylinder1Bw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
<DataPoint Name="bCylinder1Fw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
<DataPoint Name="bCylinder2Fw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
<DataPoint Name="bCylinder2Bw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
</Folder>
<Folder Name="MoveConditions">
<Property Name="Description" Value=""/>
<Property Name="FolderType" Value="Struct"/>
<DataPoint Name="bEnableCylinder1Fw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
<DataPoint Name="bEnableCylinder1Bw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
<DataPoint Name="bEnableCylinder2Fw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
<DataPoint Name="bEnableCylinder2Bw">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="BOOL"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="BOOL"/>
</DataPoint>
</Folder>
</Folder>
<DataPoint Name="gusCurrentTool">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="USINT"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
<DataPoint Name="gusSelectedTool">
<Property Name="ConnectedBySharedResource" Value="False"/>
<Property Name="ConnectingVisus" Value="Visualization\Visu"/>
<Property Name="Description" Value=""/>
<Property Name="PLCType" Value="USINT"/>
<Property Name="UpdateTime" Value="Default"/>
<Property Name="UserID" Value="None"/>
<Property Name="VCType" Value="INTEGER"/>
</DataPoint>
</Folder>
<Folder Name="Communication">
<Property Name="Description" Value=""/>

View File

@@ -28,6 +28,7 @@
<Source File="UnitGroups\Energy.vcug"/>
<Source File="UnitGroups\Percentage.vcug"/>
<Source File="UnitGroups\Time.vcug"/>
<Source File="UnitGroups\Velocity.vcug"/>
<Source File="AlarmGroups\AlarmSystem.alcfg"/>
<Source File="AlarmGroups\SystemAlarms.algrp"/>
<Source File="AlarmGroups\MachineAlarm.algrp"/>

View File

@@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<?AutomationStudio Version="3.0.90.24 SP06"?>
<UnitGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Velocity">
<Property Name="DefaultDisplayUnit" Value="Source[embedded].Unit[Millimeter]"/>
<Property Name="DefaultLimit" Value="None"/>
<Property Name="DefaultPLCUnit" Value="Source[embedded].Unit[PLCUnit]"/>
<Property Name="Description" Value="Unit group for length"/>
<Property Name="InternalUnitTextIndex" Value="0"/>
<Property Name="RuntimeUnitChange" Value="None"/>
<Property Name="RuntimeUnitCurrentDatapoint" Value="None"/>
<TextGroup Name="TextGroup_1">
<Property Name="Description" Value=""/>
<Property Name="Index" Value="65536"/>
<TextSnippets/>
<TextLayer LanguageId="en-US">
<Text ID="100162" Value="millimeter"/>
<Text ID="100163" Value="mm"/>
<Text ID="100166" Value="meter"/>
<Text ID="100167" Value="m"/>
<Text ID="100174" Value=""/>
<Text ID="100175" Value=""/>
<Text ID="100178" Value="millimeter"/>
<Text ID="100179" Value="mm"/>
<Text ID="100180" Value="meter"/>
</TextLayer>
<TextLayer LanguageId="de-DE">
<Text ID="100162" Value="Millimeter"/>
<Text ID="100163" Value="mm/s"/>
<Text ID="100166" Value="Meter"/>
<Text ID="100167" Value="m/s"/>
<Text ID="100174" Value=""/>
<Text ID="100175" Value=""/>
<Text ID="100178" Value="Millimeter_0_1"/>
<Text ID="100179" Value="0.1 mm/s"/>
<Text ID="100180" Value="Meter"/>
</TextLayer>
<IndexMap>
<Index ID="100162" Value="1"/>
<Index ID="100163" Value="2"/>
<Index ID="100166" Value="5"/>
<Index ID="100167" Value="6"/>
<Index ID="100174" Value="13"/>
<Index ID="100175" Value="14"/>
<Index ID="100178" Value="18"/>
<Index ID="100179" Value="17"/>
<Index ID="100180" Value="0"/>
</IndexMap>
</TextGroup>
<Units>
<Unit ClassId="0x00000602" Name="Millimeter">
<Property Name="DefaultPrecisionDatapoint" Value="None"/>
<Property Name="Description" Value=""/>
<Property Name="Factor" Value="1000"/>
<Property Name="Index" Value="4"/>
<Property Name="Offset" Value="0"/>
<Property Name="Text_Abbreviation_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Abbreviation_TextIndex" Value="2"/>
<Property Name="Text_Description_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Description_TextIndex" Value="1"/>
<Property Name="UnitFraction" Value="False"/>
<Property Name="Unit_DefaultPrecision" Value="1"/>
</Unit>
<Unit ClassId="0x00000602" Name="Meter">
<Property Name="DefaultPrecisionDatapoint" Value="None"/>
<Property Name="Description" Value=""/>
<Property Name="Factor" Value="1"/>
<Property Name="Index" Value="1"/>
<Property Name="Offset" Value="0"/>
<Property Name="Text_Abbreviation_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Abbreviation_TextIndex" Value="6"/>
<Property Name="Text_Description_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Description_TextIndex" Value="5"/>
<Property Name="UnitFraction" Value="False"/>
<Property Name="Unit_DefaultPrecision" Value="2"/>
</Unit>
<Unit ClassId="0x00000602" Name="PLCUnit">
<Property Name="DefaultPrecisionDatapoint" Value="None"/>
<Property Name="Description" Value=""/>
<Property Name="Factor" Value="1"/>
<Property Name="Index" Value="0"/>
<Property Name="Offset" Value="0"/>
<Property Name="Text_Abbreviation_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Abbreviation_TextIndex" Value="14"/>
<Property Name="Text_Description_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Description_TextIndex" Value="13"/>
<Property Name="UnitFraction" Value="False"/>
<Property Name="Unit_DefaultPrecision" Value="2"/>
</Unit>
<Unit ClassId="0x00000602" Name="Millimeter_0_1">
<Property Name="DefaultPrecisionDatapoint" Value="None"/>
<Property Name="Description" Value=""/>
<Property Name="Factor" Value="10000"/>
<Property Name="Index" Value="3"/>
<Property Name="Offset" Value="0"/>
<Property Name="Text_Abbreviation_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Abbreviation_TextIndex" Value="17"/>
<Property Name="Text_Description_TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="Text_Description_TextIndex" Value="18"/>
<Property Name="UnitFraction" Value="False"/>
<Property Name="Unit_DefaultPrecision" Value="0"/>
</Unit>
</Units>
<Limits/>
</UnitGroup>

View File

@@ -48,6 +48,7 @@
<Source File="TextGroups\StepsTool1.txtgrp"/>
<Source File="TextGroups\PressstepsHome.txtgrp"/>
<Source File="TextGroups\StepsToolHome.txtgrp"/>
<Source File="TextGroups\Tools.txtgrp"/>
<Source File="Fonts\Info.fninfo"/>
<Source File="Fonts\Html_SDM.fninfo"/>
<Source File="Fonts\Default.fninfo"/>

View File

@@ -18,7 +18,7 @@
<Property Name="OutlineDisplayName" Value="True"/>
<Property Name="OutlineHatched" Value="False"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Normal"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Z-Order" Value="0"/>
</LayerRef>
<LayerRef Source="Source[local].Layer[globalArea]">
@@ -31,7 +31,7 @@
<Property Name="OutlineDisplayName" Value="True"/>
<Property Name="OutlineHatched" Value="False"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Outline"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Z-Order" Value="1"/>
</LayerRef>
<Layer Name="PressInformation">
@@ -46,7 +46,7 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gStatusVCControls.usLayersMainpage[2]]"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Outline"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="2"/>
<TextGroup>
@@ -613,7 +613,7 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gStatusVCControls.usLayersMainpage[3]]"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Outline"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="3"/>
<TextGroup>
@@ -625,7 +625,8 @@
<Text ID="97575" Value="Reference Press"/>
<Text ID="97577" Value="Toolslay 1\ Reference"/>
<Text ID="97579" Value="Press Restore"/>
<Text ID="97722" Value="Tool1"/>
<Text ID="97722" Value="Tool 1"/>
<Text ID="99999" Value="Tool 2"/>
</TextLayer>
<TextLayer LanguageId="de-DE">
<Text ID="96322" Value="GEAR ON"/>
@@ -635,7 +636,8 @@
<Text ID="97575" Value="Presse Ref.fahrt"/>
<Text ID="97577" Value="Wkg. 1\n Ref.fahrt"/>
<Text ID="97579" Value="Presse\nRef.laden"/>
<Text ID="97722" Value="Werkzeug"/>
<Text ID="97722" Value="Werkzeug 1"/>
<Text ID="99999" Value="Werkzeug 2"/>
</TextLayer>
<IndexMap>
<Index ID="96322" Value="32"/>
@@ -646,6 +648,7 @@
<Index ID="97577" Value="49"/>
<Index ID="97579" Value="51"/>
<Index ID="97722" Value="53"/>
<Index ID="99999" Value="36"/>
</IndexMap>
</TextGroup>
<Controls>
@@ -1260,6 +1263,27 @@
<Property Name="VirtualKey" Value="Source[local].VirtualKey[ManToolslay1Up]"/>
<Property Name="Width" Value="56"/>
</Control>
<Control ClassId="0x00001002" Name="btnActToolOpLayerTool2">
<Property Name="BitmapAlignmentVertical" Value="Bottom"/>
<Property Name="BitmapIndexDatapoint" Value="None"/>
<Property Name="BitmapSource" Value="None"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="26"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndex" Value="36"/>
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="400"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[SetOpLayer5]"/>
<Property Name="Width" Value="148"/>
</Control>
</Controls>
<KeyMapping>
<VirtualKey Name="MachSwitchOn">
@@ -1594,6 +1618,21 @@
</KeyAction>
</KeyActions>
</VirtualKey>
<VirtualKey Name="SetOpLayer5">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
<KeyActions>
<KeyAction ClassId="0x00000161">
<Property Name="CompletionDatapoint" Value="None"/>
<Property Name="CompletionValue" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Locking" Value="Never"/>
<Property Name="Name" Value="Action_0"/>
<Property Name="SetValue" Value="5"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Machine.gusCurrentOpLayer]"/>
</KeyAction>
</KeyActions>
</VirtualKey>
</KeyMapping>
</Layer>
<Layer Name="OpTool1">
@@ -1608,7 +1647,7 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gStatusVCControls.usLayersMainpage[4]]"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Outline"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="4"/>
<TextGroup>
@@ -1635,7 +1674,7 @@
<Control ClassId="0x00001002" Name="btnTool1Cyl1Fw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool1.MoveConditions.bEnableCylinder1Fw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
@@ -1658,7 +1697,7 @@
<Control ClassId="0x00001002" Name="btnTool1Cyl1Bw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool1.MoveConditions.bEnableCylinder1Bw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
@@ -1681,7 +1720,7 @@
<Control ClassId="0x00001002" Name="btnTool1Cyl2Fw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool1.MoveConditions.bEnableCylinder2Fw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
@@ -1704,7 +1743,7 @@
<Control ClassId="0x00001002" Name="btnTool1Cyl2Bw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool1.MoveConditions.bEnableCylinder2Bw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
@@ -1727,7 +1766,7 @@
<Control ClassId="0x00001002" Name="btnTool1Cyl3Fw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool1.MoveConditions.bEnableCylinder3Fw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
@@ -1750,7 +1789,7 @@
<Control ClassId="0x00001002" Name="btnTool1Cyl3Bw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool1.MoveConditions.bEnableCylinder3Bw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
@@ -1966,16 +2005,239 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gStatusVCControls.usLayersMainpage[5]]"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Outline"/>
<Property Name="VisibilityMode" Value="Normal"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="5"/>
<TextGroup>
<TextLayer LanguageId="en-US"/>
<TextLayer LanguageId="de-DE"/>
<IndexMap/>
<TextLayer LanguageId="en-US">
<Text ID="99995" Value="Press"/>
<Text ID="99997" Value="Cylinder 1"/>
<Text ID="99998" Value="Cylinder 2"/>
</TextLayer>
<TextLayer LanguageId="de-DE">
<Text ID="99995" Value="Presse"/>
<Text ID="99997" Value="Zylinder 1"/>
<Text ID="99998" Value="Zylinder 2"/>
</TextLayer>
<IndexMap>
<Index ID="99995" Value="8"/>
<Index ID="99997" Value="10"/>
<Index ID="99998" Value="11"/>
</IndexMap>
</TextGroup>
<Controls/>
<KeyMapping/>
<Controls>
<Control ClassId="0x00001002" Name="btnTool2Cyl1Fw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.MoveConditions.bEnableCylinder1Fw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="520"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.StatusVCControls.usCylinder1Fw]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="None"/>
<Property Name="Top" Value="152"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[ManTool2Cyl1Fw]"/>
<Property Name="Width" Value="196"/>
</Control>
<Control ClassId="0x00001002" Name="btnTool1Cyl1Bw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.MoveConditions.bEnableCylinder1Bw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="216"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.StatusVCControls.usCylinder1Bw]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="None"/>
<Property Name="Top" Value="152"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[ManTool2Cyl1Bw]"/>
<Property Name="Width" Value="196"/>
</Control>
<Control ClassId="0x00001002" Name="btnTool2Cyl2Fw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="2"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.MoveConditions.bEnableCylinder2Fw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="520"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.StatusVCControls.usCylinder2Fw]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="None"/>
<Property Name="Top" Value="204"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[ManTool2Cyl2Fw]"/>
<Property Name="Width" Value="196"/>
</Control>
<Control ClassId="0x00001002" Name="btnTool2Cyl2Bw">
<Property Name="AlignmentHorizontal" Value="Right"/>
<Property Name="BitmapGroup" Value="Source[local].BitmapGroup[Buttons]"/>
<Property Name="BitmapIndex" Value="0"/>
<Property Name="BitmapIndexDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.MoveConditions.bEnableCylinder2Bw]"/>
<Property Name="BitmapSimulationValue" Value="0"/>
<Property Name="BitmapSource" Value="MultipleBitmaps"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="216"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.StatusVCControls.usCylinder2Bw]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="None"/>
<Property Name="Top" Value="204"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[ManTool2Cyl2Bw]"/>
<Property Name="Width" Value="196"/>
</Control>
<Control ClassId="0x00001002" Name="btnActToolOpLayerPress">
<Property Name="BitmapAlignmentVertical" Value="Bottom"/>
<Property Name="BitmapIndexDatapoint" Value="None"/>
<Property Name="BitmapSource" Value="None"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="0"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndex" Value="8"/>
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="336"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[SetOpLayer3]"/>
<Property Name="Width" Value="148"/>
</Control>
<Control ClassId="0x00001004" Name="Text_Cylinder1">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="24"/>
<Property Name="Left" Value="424"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="10"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="164"/>
<Property Name="Width" Value="80"/>
</Control>
<Control ClassId="0x00001004" Name="Text_Cylinder2">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="24"/>
<Property Name="Left" Value="424"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="11"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="216"/>
<Property Name="Width" Value="80"/>
</Control>
</Controls>
<KeyMapping>
<VirtualKey Name="ManTool2Cyl1Bw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
<KeyActions>
<KeyAction ClassId="0x0000016B">
<Property Name="CompletionDatapoint" Value="None"/>
<Property Name="CompletionValue" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Locking" Value="Never"/>
<Property Name="Name" Value="Action_0"/>
<Property Name="ResetValue" Value="0"/>
<Property Name="SetValue" Value="1"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.ManualCommands.bCylinder1Bw]"/>
</KeyAction>
</KeyActions>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl1Fw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
<KeyActions>
<KeyAction ClassId="0x0000016B">
<Property Name="CompletionDatapoint" Value="None"/>
<Property Name="CompletionValue" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Locking" Value="Never"/>
<Property Name="Name" Value="Action_0"/>
<Property Name="ResetValue" Value="0"/>
<Property Name="SetValue" Value="1"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.ManualCommands.bCylinder1Fw]"/>
</KeyAction>
</KeyActions>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl2Bw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
<KeyActions>
<KeyAction ClassId="0x0000016B">
<Property Name="CompletionDatapoint" Value="None"/>
<Property Name="CompletionValue" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Locking" Value="Never"/>
<Property Name="Name" Value="Action_0"/>
<Property Name="ResetValue" Value="0"/>
<Property Name="SetValue" Value="1"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.ManualCommands.bCylinder2Bw]"/>
</KeyAction>
</KeyActions>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl2Fw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
<KeyActions>
<KeyAction ClassId="0x0000016B">
<Property Name="CompletionDatapoint" Value="None"/>
<Property Name="CompletionValue" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Locking" Value="Never"/>
<Property Name="Name" Value="Action_0"/>
<Property Name="ResetValue" Value="0"/>
<Property Name="SetValue" Value="1"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.Tool2.ManualCommands.bCylinder2Fw]"/>
</KeyAction>
</KeyActions>
</VirtualKey>
</KeyMapping>
</Layer>
<Layer Name="AutomaticOp">
<Property Name="BackColor" Value="9"/>
@@ -1989,7 +2251,7 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gStatusVCControls.usLayersMainpage[6]]"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Normal"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="6"/>
<TextGroup>
@@ -2096,7 +2358,7 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="Source[global].Variable[DataSource.Machine.gStatusVCControls.usLayersMainpage[7]]"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Outline"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="7"/>
<TextGroup>
@@ -2158,7 +2420,7 @@
<Property Name="OutlineHatched" Value="False"/>
<Property Name="StatusDatapoint" Value="None"/>
<Property Name="Top" Value="0"/>
<Property Name="VisibilityMode" Value="Normal"/>
<Property Name="VisibilityMode" Value="Hidden"/>
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="8"/>
<TextGroup>

View File

@@ -51,9 +51,30 @@
<Property Name="Width" Value="800"/>
<Property Name="Z-Order" Value="2"/>
<TextGroup>
<TextLayer LanguageId="en-US"/>
<TextLayer LanguageId="de-DE"/>
<IndexMap/>
<TextLayer LanguageId="en-US">
<Text ID="100156" Value="Pos. Home"/>
<Text ID="100157" Value="Pos. Mount"/>
<Text ID="100158" Value="Pos. Press"/>
<Text ID="100159" Value="Presstime"/>
<Text ID="100160" Value="Tool mounted"/>
<Text ID="100161" Value="Pressspeed"/>
</TextLayer>
<TextLayer LanguageId="de-DE">
<Text ID="100156" Value="Pos. Grundstellung"/>
<Text ID="100157" Value="Pos. Vormontage"/>
<Text ID="100158" Value="Pos. Pressen"/>
<Text ID="100159" Value="Presszeit"/>
<Text ID="100160" Value="Werkzeug Eingebaut"/>
<Text ID="100161" Value="Pressgeschwindigkeit"/>
</TextLayer>
<IndexMap>
<Index ID="100156" Value="9"/>
<Index ID="100157" Value="10"/>
<Index ID="100158" Value="11"/>
<Index ID="100159" Value="12"/>
<Index ID="100160" Value="13"/>
<Index ID="100161" Value="14"/>
</IndexMap>
</TextGroup>
<Controls>
<Control ClassId="0x00001002" Name="btnAdjustHomeShaft1">
@@ -66,7 +87,7 @@
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="144"/>
<Property Name="Left" Value="378"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
@@ -75,7 +96,7 @@
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="MultipleTexts"/>
<Property Name="Top" Value="144"/>
<Property Name="Top" Value="237"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[AdjHomeShaft1]"/>
<Property Name="Width" Value="192"/>
</Control>
@@ -85,7 +106,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="348"/>
<Property Name="Left" Value="582"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -93,7 +114,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="152"/>
<Property Name="Top" Value="245"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -108,7 +129,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="348"/>
<Property Name="Left" Value="582"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -116,7 +137,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="196"/>
<Property Name="Top" Value="289"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -131,7 +152,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="348"/>
<Property Name="Left" Value="582"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -139,7 +160,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="240"/>
<Property Name="Top" Value="333"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -154,7 +175,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="348"/>
<Property Name="Left" Value="582"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -162,7 +183,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="280"/>
<Property Name="Top" Value="373"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -177,7 +198,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="452"/>
<Property Name="Left" Value="686"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -185,7 +206,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="152"/>
<Property Name="Top" Value="245"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -200,7 +221,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="452"/>
<Property Name="Left" Value="686"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -208,7 +229,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="196"/>
<Property Name="Top" Value="289"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -223,7 +244,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="452"/>
<Property Name="Left" Value="686"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -231,7 +252,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="240"/>
<Property Name="Top" Value="333"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -246,7 +267,7 @@
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="452"/>
<Property Name="Left" Value="686"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
@@ -254,7 +275,7 @@
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="280"/>
<Property Name="Top" Value="373"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
@@ -273,7 +294,7 @@
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="144"/>
<Property Name="Left" Value="378"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
@@ -282,7 +303,7 @@
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="MultipleTexts"/>
<Property Name="Top" Value="188"/>
<Property Name="Top" Value="281"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[AdjHomeShaft2]"/>
<Property Name="Width" Value="192"/>
</Control>
@@ -296,7 +317,7 @@
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="144"/>
<Property Name="Left" Value="378"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
@@ -305,7 +326,7 @@
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="MultipleTexts"/>
<Property Name="Top" Value="232"/>
<Property Name="Top" Value="325"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[AdjHomeShaft3]"/>
<Property Name="Width" Value="192"/>
</Control>
@@ -319,7 +340,7 @@
<Property Name="Description" Value=""/>
<Property Name="Height" Value="44"/>
<Property Name="KeyMatrixOffset" Value="None"/>
<Property Name="Left" Value="144"/>
<Property Name="Left" Value="378"/>
<Property Name="PressedBitmapSource" Value="Source[embedded].Property[BitmapSource]"/>
<Property Name="PressedTextSource" Value="Source[embedded].Property[TextSource]"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
@@ -328,10 +349,308 @@
<Property Name="TextIndexDatapoint" Value="None"/>
<Property Name="TextSimulationValue" Value="0"/>
<Property Name="TextSource" Value="MultipleTexts"/>
<Property Name="Top" Value="276"/>
<Property Name="Top" Value="369"/>
<Property Name="VirtualKey" Value="Source[local].VirtualKey[AdjHomeShaft4]"/>
<Property Name="Width" Value="192"/>
</Control>
<Control ClassId="0x00001004" Name="txtTool">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Status]"/>
<Property Name="Height" Value="30"/>
<Property Name="IndexDatapoint" Value="Source[global].Variable[DataSource.Axises.gusCurrentTool]"/>
<Property Name="Left" Value="102"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[local].TextGroup[Tools]"/>
<Property Name="TextIndexOffset" Value="0"/>
<Property Name="TextSource" Value="MultipleTexts"/>
<Property Name="Top" Value="71"/>
<Property Name="Width" Value="242"/>
</Control>
<Control ClassId="0x00001007" Name="numPosHome">
<Property Name="BackColor" Value="59"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Input" Value="True"/>
<Property Name="InputCancel" Value="Lost Focus"/>
<Property Name="InputComma" Value="Explicit"/>
<Property Name="InputConfirm" Value="Enter"/>
<Property Name="InputMinus" Value="Normal"/>
<Property Name="InputNext" Value="Enter"/>
<Property Name="InputStart" Value="Any Key"/>
<Property Name="InputTouchpad" Value="Source[local].TouchPad[NumPad]"/>
<Property Name="InputUpDown" Value="Disabled"/>
<Property Name="Left" Value="240"/>
<Property Name="MaxDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosMax]"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosMin]"/>
<Property Name="MinValue" Value="None"/>
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="140"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
<Property Name="UnitTextWidth" Value="0"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosHome]"/>
<Property Name="ValueMode" Value="Standard"/>
<Property Name="Width" Value="100"/>
</Control>
<Control ClassId="0x00001007" Name="numPosMount">
<Property Name="BackColor" Value="59"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Input" Value="True"/>
<Property Name="InputCancel" Value="Lost Focus"/>
<Property Name="InputComma" Value="Explicit"/>
<Property Name="InputConfirm" Value="Enter"/>
<Property Name="InputMinus" Value="Normal"/>
<Property Name="InputNext" Value="Enter"/>
<Property Name="InputStart" Value="Any Key"/>
<Property Name="InputTouchpad" Value="Source[local].TouchPad[NumPad]"/>
<Property Name="InputUpDown" Value="Slow"/>
<Property Name="Left" Value="240"/>
<Property Name="MaxDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosMax]"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosMin]"/>
<Property Name="MinValue" Value="None"/>
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="170"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
<Property Name="UnitTextWidth" Value="0"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosPremount]"/>
<Property Name="ValueMode" Value="Standard"/>
<Property Name="Width" Value="100"/>
</Control>
<Control ClassId="0x00001004" Name="Text_Home">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="100"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="9"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="140"/>
<Property Name="Width" Value="139"/>
</Control>
<Control ClassId="0x00001004" Name="Text_Mount">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="100"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="10"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="170"/>
<Property Name="Width" Value="139"/>
</Control>
<Control ClassId="0x00001007" Name="numPosMount1">
<Property Name="BackColor" Value="59"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Input" Value="True"/>
<Property Name="InputCancel" Value="Lost Focus"/>
<Property Name="InputComma" Value="Explicit"/>
<Property Name="InputConfirm" Value="Enter"/>
<Property Name="InputMinus" Value="Normal"/>
<Property Name="InputNext" Value="Enter"/>
<Property Name="InputStart" Value="Any Key"/>
<Property Name="InputTouchpad" Value="Source[local].TouchPad[NumPad]"/>
<Property Name="InputUpDown" Value="Slow"/>
<Property Name="Left" Value="240"/>
<Property Name="MaxDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosMax]"/>
<Property Name="MaxValue" Value="None"/>
<Property Name="MinDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosMin]"/>
<Property Name="MinValue" Value="None"/>
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="200"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
<Property Name="UnitTextWidth" Value="0"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rPosPress]"/>
<Property Name="ValueMode" Value="Standard"/>
<Property Name="Width" Value="100"/>
</Control>
<Control ClassId="0x00001004" Name="Text_PressPos">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="100"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="11"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="200"/>
<Property Name="Width" Value="139"/>
</Control>
<Control ClassId="0x00001007" Name="numPresstime">
<Property Name="BackColor" Value="59"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Input" Value="True"/>
<Property Name="InputCancel" Value="Lost Focus"/>
<Property Name="InputComma" Value="Explicit"/>
<Property Name="InputConfirm" Value="Enter"/>
<Property Name="InputMinus" Value="Normal"/>
<Property Name="InputNext" Value="Enter"/>
<Property Name="InputStart" Value="Any Key"/>
<Property Name="InputTouchpad" Value="Source[local].TouchPad[NumPad]"/>
<Property Name="InputUpDown" Value="Slow"/>
<Property Name="Left" Value="240"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="5000"/>
<Property Name="MinDatapoint" Value="None"/>
<Property Name="MinValue" Value="0"/>
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="230"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
<Property Name="UnitTextWidth" Value="0"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.udPresstime]"/>
<Property Name="ValueMode" Value="Standard"/>
<Property Name="Width" Value="100"/>
</Control>
<Control ClassId="0x00001004" Name="Text_PressTime">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="100"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="12"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="230"/>
<Property Name="Width" Value="139"/>
</Control>
<Control ClassId="0x00001018" Name="Dropdown_1">
<Property Name="ButtonsBitmapGroup" Value="None"/>
<Property Name="ButtonsPressedBitmapGroup" Value="None"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Height" Value="30"/>
<Property Name="IndexDatapoint" Value="Source[global].Variable[DataSource.Axises.gusSelectedTool]"/>
<Property Name="Left" Value="102"/>
<Property Name="LeftBitmap" Value="None"/>
<Property Name="LeftTextGroup" Value="None"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxIndex" Value="None"/>
<Property Name="MinDatapoint" Value="None"/>
<Property Name="MinIndex" Value="None"/>
<Property Name="OptionDatapoint" Value="None"/>
<Property Name="RightBitmap" Value="None"/>
<Property Name="RightTextGroup" Value="None"/>
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[local].TextGroup[Tools]"/>
<Property Name="TextIndexOffset" Value="0"/>
<Property Name="TextSource" Value="MultipleTexts"/>
<Property Name="Top" Value="107"/>
<Property Name="Width" Value="237"/>
</Control>
<Control ClassId="0x00001004" Name="Text_Tool">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="20"/>
<Property Name="Left" Value="19"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="13"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="73"/>
<Property Name="Width" Value="139"/>
</Control>
<Control ClassId="0x00001007" Name="numPressspeed">
<Property Name="BackColor" Value="59"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="ForeColor" Value="0"/>
<Property Name="Height" Value="30"/>
<Property Name="Input" Value="True"/>
<Property Name="InputCancel" Value="Lost Focus"/>
<Property Name="InputComma" Value="Explicit"/>
<Property Name="InputConfirm" Value="Enter"/>
<Property Name="InputMinus" Value="Normal"/>
<Property Name="InputNext" Value="Enter"/>
<Property Name="InputStart" Value="Any Key"/>
<Property Name="InputTouchpad" Value="Source[local].TouchPad[NumPad]"/>
<Property Name="InputUpDown" Value="Slow"/>
<Property Name="Left" Value="240"/>
<Property Name="MaxDatapoint" Value="None"/>
<Property Name="MaxValue" Value="0.1"/>
<Property Name="MinDatapoint" Value="None"/>
<Property Name="MinValue" Value="0.01"/>
<Property Name="SimulationValue" Value="0"/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TeachDatapoint" Value="None"/>
<Property Name="Top" Value="260"/>
<Property Name="UnitText" Value="Abbreviation"/>
<Property Name="UnitTextAlignment" Value="Left"/>
<Property Name="UnitTextPosition" Value="Right"/>
<Property Name="UnitTextWidth" Value="0"/>
<Property Name="ValueDatapoint" Value="Source[global].Variable[DataSource.Axises.PressCtrl.lPressParamActTool.rSpeedPress]"/>
<Property Name="ValueMode" Value="Standard"/>
<Property Name="Width" Value="100"/>
</Control>
<Control ClassId="0x00001004" Name="Text_PressSpeed">
<Property Name="AlignmentHorizontal" Value="Center"/>
<Property Name="AlignmentVertical" Value="Center"/>
<Property Name="ControlID" Value="0"/>
<Property Name="Description" Value=""/>
<Property Name="Font" Value="Source[local].Font[Header]"/>
<Property Name="Height" Value="30"/>
<Property Name="Left" Value="100"/>
<Property Name="SimulationValue" Value=""/>
<Property Name="StyleClass" Value="Source[relative:StyleGroup].StyleClass[Default]"/>
<Property Name="TextGroup" Value="Source[embedded].TextGroup"/>
<Property Name="TextIndexOffset" Value="14"/>
<Property Name="TextSource" Value="SingleText"/>
<Property Name="Top" Value="260"/>
<Property Name="Width" Value="139"/>
</Control>
</Controls>
<KeyMapping>
<VirtualKey Name="CalibTouch">
@@ -412,7 +731,44 @@
</KeyMapping>
</Layer>
</Layers>
<MovementOrder/>
<MovementOrder>
<MovementEntry Control="Source[embedded].Layer[Default].Control[numPosHome]">
<Property Name="Down" Value="Source[embedded].Layer[Default].Control[numPosMount]"/>
<Property Name="Left" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Right" Value="Source[embedded].Layer[Default].Control[numPosMount]"/>
<Property Name="Up" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
</MovementEntry>
<MovementEntry Control="Source[embedded].Layer[Default].Control[numPosMount]">
<Property Name="Down" Value="Source[embedded].Layer[Default].Control[numPosMount1]"/>
<Property Name="Left" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Right" Value="Source[embedded].Layer[Default].Control[numPosMount1]"/>
<Property Name="Up" Value="Source[embedded].Layer[Default].Control[numPosHome]"/>
</MovementEntry>
<MovementEntry Control="Source[embedded].Layer[Default].Control[numPosMount1]">
<Property Name="Down" Value="Source[embedded].Layer[Default].Control[numPresstime]"/>
<Property Name="Left" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Right" Value="Source[embedded].Layer[Default].Control[numPresstime]"/>
<Property Name="Up" Value="Source[embedded].Layer[Default].Control[numPosMount]"/>
</MovementEntry>
<MovementEntry Control="Source[embedded].Layer[Default].Control[numPresstime]">
<Property Name="Down" Value="Source[embedded].Layer[Default].Control[numPressspeed]"/>
<Property Name="Left" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Right" Value="Source[embedded].Layer[Default].Control[numPressspeed]"/>
<Property Name="Up" Value="Source[embedded].Layer[Default].Control[numPosMount1]"/>
</MovementEntry>
<MovementEntry Control="Source[embedded].Layer[Default].Control[Dropdown_1]">
<Property Name="Down" Value="Source[embedded].Layer[Default].Control[numPosHome]"/>
<Property Name="Left" Value="Source[embedded].Layer[Default].Control[numPosHome]"/>
<Property Name="Right" Value="Source[embedded].Layer[Default].Control[numPosHome]"/>
<Property Name="Up" Value="Source[embedded].Layer[Default].Control[numPressspeed]"/>
</MovementEntry>
<MovementEntry Control="Source[embedded].Layer[Default].Control[numPressspeed]">
<Property Name="Down" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Left" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Right" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<Property Name="Up" Value="Source[embedded].Layer[Default].Control[numPresstime]"/>
</MovementEntry>
</MovementOrder>
<TabSequence>
<TabSeqItem Index="0" Value="Source[embedded].Layer[Default].Control[numPosShaft1]"/>
<TabSeqItem Index="1" Value="Source[embedded].Layer[Default].Control[numPosShaft2]"/>
@@ -423,5 +779,11 @@
<TabSeqItem Index="6" Value="Source[embedded].Layer[Default].Control[numABSOffsetShaft3]"/>
<TabSeqItem Index="7" Value="Source[embedded].Layer[Default].Control[numABSOffsetShaft4]"/>
<TabSeqItem Index="8" Value="Source[local].Layer[globalArea].Control[Numeric_1]"/>
<TabSeqItem Index="9" Value="Source[embedded].Layer[Default].Control[numPosHome]"/>
<TabSeqItem Index="10" Value="Source[embedded].Layer[Default].Control[numPosMount]"/>
<TabSeqItem Index="11" Value="Source[embedded].Layer[Default].Control[numPosMount1]"/>
<TabSeqItem Index="12" Value="Source[embedded].Layer[Default].Control[numPresstime]"/>
<TabSeqItem Index="13" Value="Source[embedded].Layer[Default].Control[Dropdown_1]"/>
<TabSeqItem Index="14" Value="Source[embedded].Layer[Default].Control[numPressspeed]"/>
</TabSequence>
</Page>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<?AutomationStudio Version="3.0.90.24 SP06"?>
<TextGroup xmlns="http://br-automation.co.at/AS/VC/Project" Name="Tools">
<Property Name="Description" Value="Selected Tools"/>
<Property Name="Index" Value="5"/>
<TextSnippets/>
<TextLayer LanguageId="en-US">
<Text ID="100152" Value="No Tool"/>
<Text ID="100153" Value="Tool 1"/>
<Text ID="100154" Value="Tool 2"/>
</TextLayer>
<TextLayer LanguageId="de-DE">
<Text ID="100152" Value="kein Werkzeug"/>
<Text ID="100153" Value="Werkzeug 1"/>
<Text ID="100154" Value="Werkzeug 2"/>
</TextLayer>
<IndexMap>
<Index ID="100152" Value="0"/>
<Index ID="100153" Value="1"/>
<Index ID="100154" Value="2"/>
</IndexMap>
</TextGroup>

View File

@@ -1811,4 +1811,24 @@
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl1Bw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl1Fw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl2Bw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
</VirtualKey>
<VirtualKey Name="ManTool2Cyl2Fw">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
</VirtualKey>
<VirtualKey Name="SetOpLayer5">
<Property Name="Description" Value=""/>
<Property Name="VirtualKey_LED" Value="False"/>
</VirtualKey>
</KeyMapping>