This commit is contained in:
2026-01-08 11:08:17 +01:00
commit fe882dc444
311 changed files with 511562 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4026.12">
<EnumerationTextList Name="eSpinnerRecipeProcessType" Id="{7ac21142-7f63-47ff-82eb-e856739e3aa7}">
<Declaration><![CDATA[{attribute 'to_string'}
TYPE eSpinnerRecipeProcessType :
(
TypeA := 0,
TypeB := 1
);
END_TYPE
]]></Declaration>
<XmlArchive>
<Data>
<o xml:space="preserve" t="TextListEnumerationTextListObject">
<l n="TextList" t="ArrayList" cet="TextListRow">
<o>
<v n="TextID">"TypeA"</v>
<v n="TextDefault">"0"</v>
<l n="LanguageTexts" t="ArrayList" cet="String">
<v>A</v>
<v>A</v>
</l>
</o>
<o>
<v n="TextID">"TypeB"</v>
<v n="TextDefault">"1"</v>
<l n="LanguageTexts" t="ArrayList" cet="String">
<v>B</v>
<v>B</v>
</l>
</o>
<o>
<v n="TextID">""</v>
<v n="TextDefault">""</v>
<l n="LanguageTexts" t="ArrayList" cet="String">
<v></v>
<v></v>
</l>
</o>
</l>
<l n="Languages" t="ArrayList" cet="String">
<v>en</v>
<v>de</v>
</l>
<v n="GuidInit">{0e9851c4-68a8-4c44-9672-9e4ec224d234}</v>
<v n="GuidReInit">{cad8a279-ea6f-417b-ac1f-88c6aec6b36b}</v>
<v n="GuidExitX">{fc4be63a-484b-4d8b-bda0-20228f0cca56}</v>
</o>
</Data>
<TypeList>
<Type n="ArrayList">System.Collections.ArrayList</Type>
<Type n="Guid">System.Guid</Type>
<Type n="String">System.String</Type>
<Type n="TextListEnumerationTextListObject">{4b60233c-f940-4beb-b331-82133b520151}</Type>
<Type n="TextListRow">{53da1be7-ad25-47c3-b0e8-e26286dad2e0}</Type>
</TypeList>
</XmlArchive>
</EnumerationTextList>
</TcPlcObject>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4026.8">
<DUT Name="eSpinnerStepEnd" Id="{ca1625a8-c03c-484a-8b38-f6ad6e54f4c4}">
<Declaration><![CDATA[TYPE eSpinnerStepEnd :
(
never,
EndbyStepTime,
EndbyChuckSpeed,
EndbyArm1,
EndbyArm2,
EndbyBSR,
EndbySyringe,
EndbyCover,
EndbyDChuck,
EndbyRobot
);
END_TYPE
]]></Declaration>
</DUT>
</TcPlcObject>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4026.12">
<DUT Name="sSpinnerRecipe" Id="{85be9af8-6fc1-4a80-8768-765e3887f0d0}">
<Declaration><![CDATA[TYPE sSpinnerRecipe:
STRUCT
STEP_COUNT : USINT := 1;
NozzlesCheck : BOOL;
ProcessType : eSpinnerRecipeProcessType;
DATA : ARRAY [1..maxRecipeSteps] OF sSpinnerStepData;
END_STRUCT
END_TYPE]]></Declaration>
</DUT>
</TcPlcObject>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4026.8">
<DUT Name="sSpinnerRecipeBSR" Id="{08ff30cf-7c16-4347-8bfc-56b8281dfb5e}">
<Declaration><![CDATA[TYPE sSpinnerRecipeBSR :
STRUCT
PrePosition : USINT(1..180);
Speed : LREAL := 10;
END_STRUCT
END_TYPE
]]></Declaration>
</DUT>
</TcPlcObject>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4026.8">
<DUT Name="sSpinnerRecipeRobotStep" Id="{baf8dc95-f7f5-4400-a437-56de54aaeb9e}">
<Declaration><![CDATA[TYPE sSpinnerRecipeRobotStep :
STRUCT
Speed : LREAL;
PrePosition : INT := 0;
END_STRUCT
END_TYPE
]]></Declaration>
</DUT>
</TcPlcObject>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1" ProductVersion="3.1.4026.8">
<DUT Name="sSpinnerStepData" Id="{b71b768c-a875-48a7-9bd6-37c30bb67ab2}">
<Declaration><![CDATA[TYPE sSpinnerStepData :
STRUCT
StepTime : LREAL := 0;
Chuck : sSpinnerStepChuck;
Robot : sSpinnerRecipeRobotStep;
BSR : sSpinnerRecipeBSR;
MEDIA : UDINT;
StepEndCond : eSpinnerStepEnd := 1;
LOOPS : USINT := 0; (*für Schleifen *)
STEPWITH : USINT := 0; (*für Schleifen *)
Comment : STRING := '';
END_STRUCT
END_TYPE]]></Declaration>
</DUT>
</TcPlcObject>