diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf5d509 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +### TwinCAT3 ### +# website: https://www.beckhoff.com/twincat3/ + +# TwinCAT PLC +*.plcproj.bak +*.plcproj.orig +*.tpy +*.tclrs +#*.library +#*.compiled-library +*.compileinfo +*.asm +*.core +LineIDs.dbg +LineIDs.dbg.bak + +# TwinCAT C++ and shared types +# ignoring the TMC file is only useful for plain PLC programming +# as soon as shared data types (via tmc), C++ or in general TcCom-Module are used, the TMC file has to be part of the repository +*.tmc +*.tmcRefac + +# TwinCAT project files +*.tsproj.bak +*.tspproj.bak +*.tsproj.b?k +*.tsproj.orig +*.xti.bak +*.xti.bk? +*.xti.orig +*.xtv +*.xtv.bak +*.xtv.bk? +*.tnzip + +# Multiuser specific +**/.TcGit/ + +# exclude not required folders +**/_Boot/ +**/_CompileInfo/ +#**/_Libraries/ +**/_ModuleInstall/ +**/_Deployment/ +**/_Repository/ + +# VS Shell project specific files and folders +**/.vs/ +*.~u +*.project.~u +*.suo + +# Own Ignores +commit.txt +*.txt +*.exe +*.xlsx \ No newline at end of file diff --git a/TwinCAT Projekt1/PLC/PLC.plcproj b/TwinCAT Projekt1/PLC/PLC.plcproj new file mode 100644 index 0000000..0de6a5c --- /dev/null +++ b/TwinCAT Projekt1/PLC/PLC.plcproj @@ -0,0 +1,149 @@ + + + + 1.0.0.0 + 2.0 + {4e62d9e7-436c-457d-8dc4-82d2fef91c96} + true + true + false + false + PLC + 3.1.4026.19 + {7cc9c530-510c-48e6-a294-2e6b5e6fa820} + {951d7a0c-817c-4013-8204-ecd29ee0162e} + {e6d3915d-876b-4120-9e42-92be330ed750} + {86bdbf68-2971-41b8-9b27-17e052a7f55d} + {173a046e-fc1b-4ea3-9ec8-0d52397c403c} + {c870d3c5-a637-481e-9586-ab8eaa6f8f36} + + + + Code + + + Code + + + Code + + + + + + + + + + + SLM_Base, * (Nikon SLM Solutions) + SLM_Base + + + Tc2_Standard, * (Beckhoff Automation GmbH) + Tc2_Standard + + + Tc2_System, * (Beckhoff Automation GmbH) + Tc2_System + + + Tc3_EventLogger, * (Beckhoff Automation GmbH) + Tc3_EventLogger + + + Tc3_Module, * (Beckhoff Automation GmbH) + Tc3_Module + true + + + + + Content + + + + + + + + "<ProjectRoot>" + + {192FAD59-8248-4824-A8DE-9177C94C195A} + + "{192FAD59-8248-4824-A8DE-9177C94C195A}" + + + + {246001F4-279D-43AC-B241-948EB31120E1} + + "{246001F4-279D-43AC-B241-948EB31120E1}" + + + + {29BD8D0C-3586-4548-BB48-497B9A01693F} + + "{29BD8D0C-3586-4548-BB48-497B9A01693F}" + + NamingConventions + + "NamingConventions" + + + + Rules + + "Rules" + + + + + + + {40450F57-0AA3-4216-96F3-5444ECB29763} + + "{40450F57-0AA3-4216-96F3-5444ECB29763}" + + + + {8A0FB252-96EB-4DCC-A5B4-B4804D05E2D6} + + "{8A0FB252-96EB-4DCC-A5B4-B4804D05E2D6}" + + + WriteLineIDs + False + + + {8F99A816-E488-41E4-9FA3-846536012284} + + "{8F99A816-E488-41E4-9FA3-846536012284}" + + + DisabledWarningIds + 410,5410 + + + {F66C7017-BDD8-4114-926C-81D6D687E35F} + + "{F66C7017-BDD8-4114-926C-81D6D687E35F}" + + + CalcActiveTransOnly + True + + + + + + + + System.Boolean + System.Collections.Hashtable + {54dd0eac-a6d8-46f2-8c27-2f43c7e49861} + System.String + + + + + \ No newline at end of file diff --git a/TwinCAT Projekt1/PLC/POUs/FB_Machine.TcPOU b/TwinCAT Projekt1/PLC/POUs/FB_Machine.TcPOU new file mode 100644 index 0000000..ec9ad88 --- /dev/null +++ b/TwinCAT Projekt1/PLC/POUs/FB_Machine.TcPOU @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/TwinCAT Projekt1/PLC/POUs/MAIN.TcPOU b/TwinCAT Projekt1/PLC/POUs/MAIN.TcPOU new file mode 100644 index 0000000..9263abd --- /dev/null +++ b/TwinCAT Projekt1/PLC/POUs/MAIN.TcPOU @@ -0,0 +1,25 @@ + + + + + + + + + \ No newline at end of file diff --git a/TwinCAT Projekt1/PLC/PlcTask.TcTTO b/TwinCAT Projekt1/PLC/PlcTask.TcTTO new file mode 100644 index 0000000..79b9911 --- /dev/null +++ b/TwinCAT Projekt1/PLC/PlcTask.TcTTO @@ -0,0 +1,17 @@ + + + + + 10000 + 20 + + MAIN + + {a83be5e0-d5cf-4aec-b38e-29e42c090d19} + {4deed5d2-49a0-440e-8d82-d09251814781} + {fec05c77-54d5-4195-ac02-ecdaaad52f09} + {7536800f-d7c6-464d-a9c4-0b4ee7a1d592} + {6dbfee29-f644-435d-b6e8-122b6f086f52} + + + \ No newline at end of file diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_Standard/3.4.5.0/Tc2_Standard.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_Standard/3.4.5.0/Tc2_Standard.compiled-library-ge33 new file mode 100644 index 0000000..c4c4fb0 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_Standard/3.4.5.0/Tc2_Standard.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_System/3.9.1.0/Tc2_System.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_System/3.9.1.0/Tc2_System.compiled-library-ge33 new file mode 100644 index 0000000..7055541 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_System/3.9.1.0/Tc2_System.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_Utilities/3.10.1.0/Tc2_Utilities.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_Utilities/3.10.1.0/Tc2_Utilities.compiled-library-ge33 new file mode 100644 index 0000000..31570ec Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc2_Utilities/3.10.1.0/Tc2_Utilities.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_DynamicMemory/1.1.4.0/Tc3_DynamicMemory.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_DynamicMemory/1.1.4.0/Tc3_DynamicMemory.compiled-library-ge33 new file mode 100644 index 0000000..f41a9b4 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_DynamicMemory/1.1.4.0/Tc3_DynamicMemory.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_EventLogger/3.3.13.0/Tc3_EventLogger.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_EventLogger/3.3.13.0/Tc3_EventLogger.compiled-library-ge33 new file mode 100644 index 0000000..21a69e3 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_EventLogger/3.3.13.0/Tc3_EventLogger.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_IotBase/3.5.3.0/Tc3_IotBase.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_IotBase/3.5.3.0/Tc3_IotBase.compiled-library-ge33 new file mode 100644 index 0000000..9511e9c Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_IotBase/3.5.3.0/Tc3_IotBase.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_JsonXml/3.4.7.0/Tc3_JsonXml.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_JsonXml/3.4.7.0/Tc3_JsonXml.compiled-library-ge33 new file mode 100644 index 0000000..206aa42 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_JsonXml/3.4.7.0/Tc3_JsonXml.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_Module/3.4.5.0/Tc3_Module.compiled-library-ge33 b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_Module/3.4.5.0/Tc3_Module.compiled-library-ge33 new file mode 100644 index 0000000..f60ac24 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Beckhoff Automation GmbH/Tc3_Module/3.4.5.0/Tc3_Module.compiled-library-ge33 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/Nikon SLM Solutions/SLM_Base/0.2.0.22/SLM_Base_0_2_0_22.library b/TwinCAT Projekt1/PLC/_Libraries/Nikon SLM Solutions/SLM_Base/0.2.0.22/SLM_Base_0_2_0_22.library new file mode 100644 index 0000000..7b92112 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/Nikon SLM Solutions/SLM_Base/0.2.0.22/SLM_Base_0_2_0_22.library differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/System/Base Interfaces/3.5.17.0/Base_Itfs.compiled-library-v3 b/TwinCAT Projekt1/PLC/_Libraries/System/Base Interfaces/3.5.17.0/Base_Itfs.compiled-library-v3 new file mode 100644 index 0000000..afeedf1 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/System/Base Interfaces/3.5.17.0/Base_Itfs.compiled-library-v3 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/System/CmpErrors2 Interfaces/3.5.19.0/CmpErrors2_Itfs.compiled-library-v3 b/TwinCAT Projekt1/PLC/_Libraries/System/CmpErrors2 Interfaces/3.5.19.0/CmpErrors2_Itfs.compiled-library-v3 new file mode 100644 index 0000000..a0618b9 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/System/CmpErrors2 Interfaces/3.5.19.0/CmpErrors2_Itfs.compiled-library-v3 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/System/SysDir/3.5.17.0/SysDir.compiled-library-v3 b/TwinCAT Projekt1/PLC/_Libraries/System/SysDir/3.5.17.0/SysDir.compiled-library-v3 new file mode 100644 index 0000000..1982691 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/System/SysDir/3.5.17.0/SysDir.compiled-library-v3 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/System/SysFile/3.5.17.0/SysFile.compiled-library-v3 b/TwinCAT Projekt1/PLC/_Libraries/System/SysFile/3.5.17.0/SysFile.compiled-library-v3 new file mode 100644 index 0000000..d763bea Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/System/SysFile/3.5.17.0/SysFile.compiled-library-v3 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/System/SysTypes2 Interfaces/3.5.17.0/SysTypes2_Itfs.compiled-library-v3 b/TwinCAT Projekt1/PLC/_Libraries/System/SysTypes2 Interfaces/3.5.17.0/SysTypes2_Itfs.compiled-library-v3 new file mode 100644 index 0000000..9494204 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/System/SysTypes2 Interfaces/3.5.17.0/SysTypes2_Itfs.compiled-library-v3 differ diff --git a/TwinCAT Projekt1/PLC/_Libraries/www.tcunit.org/TcUnit/1.3.1/TcUnit.library b/TwinCAT Projekt1/PLC/_Libraries/www.tcunit.org/TcUnit/1.3.1/TcUnit.library new file mode 100644 index 0000000..a74a6a9 Binary files /dev/null and b/TwinCAT Projekt1/PLC/_Libraries/www.tcunit.org/TcUnit/1.3.1/TcUnit.library differ diff --git a/TwinCAT Projekt1/TwinCAT Projekt1.sln b/TwinCAT Projekt1/TwinCAT Projekt1.sln new file mode 100644 index 0000000..146b0bc --- /dev/null +++ b/TwinCAT Projekt1/TwinCAT Projekt1.sln @@ -0,0 +1,89 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# TcXaeShell Solution File, Format Version 11.00 +VisualStudioVersion = 17.10.35827.194 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{B1E792BE-AA5F-4E3C-8C82-674BF9C0715B}") = "TwinCAT Projekt1", "TwinCAT Projekt1.tsproj", "{775BE4FD-89CE-48D5-8E68-5C84AF95981A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|TwinCAT OS (ARMV7-A) = Debug|TwinCAT OS (ARMV7-A) + Debug|TwinCAT OS (ARMV7-M) = Debug|TwinCAT OS (ARMV7-M) + Debug|TwinCAT OS (ARMV8-A) = Debug|TwinCAT OS (ARMV8-A) + Debug|TwinCAT OS (x64) = Debug|TwinCAT OS (x64) + Debug|TwinCAT OS (x64-E) = Debug|TwinCAT OS (x64-E) + Debug|TwinCAT RT (x64) = Debug|TwinCAT RT (x64) + Debug|TwinCAT RT (x86) = Debug|TwinCAT RT (x86) + Release|TwinCAT OS (ARMV7-A) = Release|TwinCAT OS (ARMV7-A) + Release|TwinCAT OS (ARMV7-M) = Release|TwinCAT OS (ARMV7-M) + Release|TwinCAT OS (ARMV8-A) = Release|TwinCAT OS (ARMV8-A) + Release|TwinCAT OS (x64) = Release|TwinCAT OS (x64) + Release|TwinCAT OS (x64-E) = Release|TwinCAT OS (x64-E) + Release|TwinCAT RT (x64) = Release|TwinCAT RT (x64) + Release|TwinCAT RT (x86) = Release|TwinCAT RT (x86) + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (ARMV7-A).ActiveCfg = Debug|TwinCAT OS (ARMV7-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (ARMV7-A).Build.0 = Debug|TwinCAT OS (ARMV7-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (ARMV7-M).ActiveCfg = Debug|TwinCAT OS (ARMV7-M) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (ARMV7-M).Build.0 = Debug|TwinCAT OS (ARMV7-M) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (ARMV8-A).ActiveCfg = Debug|TwinCAT OS (ARMV8-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (ARMV8-A).Build.0 = Debug|TwinCAT OS (ARMV8-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (x64).ActiveCfg = Debug|TwinCAT OS (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (x64).Build.0 = Debug|TwinCAT OS (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (x64-E).ActiveCfg = Debug|TwinCAT OS (x64-E) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT OS (x64-E).Build.0 = Debug|TwinCAT OS (x64-E) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT RT (x64).ActiveCfg = Debug|TwinCAT RT (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT RT (x64).Build.0 = Debug|TwinCAT RT (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT RT (x86).ActiveCfg = Debug|TwinCAT RT (x86) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Debug|TwinCAT RT (x86).Build.0 = Debug|TwinCAT RT (x86) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (ARMV7-A).ActiveCfg = Release|TwinCAT OS (ARMV7-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (ARMV7-A).Build.0 = Release|TwinCAT OS (ARMV7-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (ARMV7-M).ActiveCfg = Release|TwinCAT OS (ARMV7-M) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (ARMV7-M).Build.0 = Release|TwinCAT OS (ARMV7-M) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (ARMV8-A).ActiveCfg = Release|TwinCAT OS (ARMV8-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (ARMV8-A).Build.0 = Release|TwinCAT OS (ARMV8-A) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (x64).ActiveCfg = Release|TwinCAT OS (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (x64).Build.0 = Release|TwinCAT OS (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (x64-E).ActiveCfg = Release|TwinCAT OS (x64-E) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT OS (x64-E).Build.0 = Release|TwinCAT OS (x64-E) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT RT (x64).ActiveCfg = Release|TwinCAT RT (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT RT (x64).Build.0 = Release|TwinCAT RT (x64) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT RT (x86).ActiveCfg = Release|TwinCAT RT (x86) + {775BE4FD-89CE-48D5-8E68-5C84AF95981A}.Release|TwinCAT RT (x86).Build.0 = Release|TwinCAT RT (x86) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (ARMV7-A).ActiveCfg = Debug|TwinCAT OS (ARMV7-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (ARMV7-A).Build.0 = Debug|TwinCAT OS (ARMV7-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (ARMV7-M).ActiveCfg = Debug|TwinCAT OS (ARMV7-M) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (ARMV7-M).Build.0 = Debug|TwinCAT OS (ARMV7-M) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (ARMV8-A).ActiveCfg = Debug|TwinCAT OS (ARMV8-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (ARMV8-A).Build.0 = Debug|TwinCAT OS (ARMV8-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (x64).ActiveCfg = Debug|TwinCAT OS (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (x64).Build.0 = Debug|TwinCAT OS (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (x64-E).ActiveCfg = Debug|TwinCAT OS (x64-E) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT OS (x64-E).Build.0 = Debug|TwinCAT OS (x64-E) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT RT (x64).ActiveCfg = Debug|TwinCAT RT (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT RT (x64).Build.0 = Debug|TwinCAT RT (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT RT (x86).ActiveCfg = Debug|TwinCAT RT (x86) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Debug|TwinCAT RT (x86).Build.0 = Debug|TwinCAT RT (x86) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (ARMV7-A).ActiveCfg = Release|TwinCAT OS (ARMV7-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (ARMV7-A).Build.0 = Release|TwinCAT OS (ARMV7-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (ARMV7-M).ActiveCfg = Release|TwinCAT OS (ARMV7-M) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (ARMV7-M).Build.0 = Release|TwinCAT OS (ARMV7-M) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (ARMV8-A).ActiveCfg = Release|TwinCAT OS (ARMV8-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (ARMV8-A).Build.0 = Release|TwinCAT OS (ARMV8-A) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (x64).ActiveCfg = Release|TwinCAT OS (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (x64).Build.0 = Release|TwinCAT OS (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (x64-E).ActiveCfg = Release|TwinCAT OS (x64-E) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT OS (x64-E).Build.0 = Release|TwinCAT OS (x64-E) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT RT (x64).ActiveCfg = Release|TwinCAT RT (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT RT (x64).Build.0 = Release|TwinCAT RT (x64) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT RT (x86).ActiveCfg = Release|TwinCAT RT (x86) + {4E62D9E7-436C-457D-8DC4-82D2FEF91C96}.Release|TwinCAT RT (x86).Build.0 = Release|TwinCAT RT (x86) + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {774463EE-2F3E-4F1B-B601-3BD67A7A2115} + EndGlobalSection +EndGlobal diff --git a/TwinCAT Projekt1/TwinCAT Projekt1.tsproj b/TwinCAT Projekt1/TwinCAT Projekt1.tsproj new file mode 100644 index 0000000..728b3c8 --- /dev/null +++ b/TwinCAT Projekt1/TwinCAT Projekt1.tsproj @@ -0,0 +1,58 @@ + + + + + TestAlarms + + + TestError + + Error + + + TestWarning + + Warning + + + + + + + + + + + PlcTask + + + + + + + PLC Instance + {08500001-0000-0000-F000-000000000064} + + + 0 + PlcTask + + #x02010030 + + 20 + 10000000 + + + + + + + + + + ANALYTICS + 437 + Hauptstraße 5, 32567 Berlin123.4143.4555LatestBoot Project PathFILE%TC_BOOTPRJPATH%127.0.0.11883false3000000060000000032768NO_SECURITYfalsefalsefalsefalsefalseHexKeyNonefalse]]> + + +