Skip to content

Commit

Permalink
Library_03
Browse files Browse the repository at this point in the history
  • Loading branch information
runtimevic committed May 12, 2024
1 parent cd98cea commit 5b53293
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/publicacion.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Seguimos con el curso de 👩‍💻 OOP IEC 61131-3 PLC 👨‍💻,
ya esta disponible el Video numero 59 de Youtube:
en este video veremos: Library - 03.

👉 https://youtu.be/krtj_cOGvzA
👉 https://youtu.be/dck-307PAjg

🐙 Repositorio de GitHub:
- 👉 https://github.com/runtimevic/OOP-IEC61131-3--Curso-Youtube
Expand Down Expand Up @@ -76,7 +76,7 @@ Lista de Videos del Curso OOP Programación Orientada a Objetos IEC61131-3 PLC:
- 056 - https://youtu.be/_LmpfAeulgQ
- 057 - https://youtu.be/Kox2D_l65CA
- 058 - https://youtu.be/krtj_cOGvzA
- 059 -
- 059 - https://youtu.be/dck-307PAjg

Se busca colaborador para traducir la documentación al idioma que desee... 👀

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<Id xmlns="">{4c30be10-0c29-4796-921e-62ecfda40191}</Id>
<Id xmlns="">{e42e9899-3114-40a3-911f-5f44e2769932}</Id>
</SelectedLibraryCategories>
<DocFormat>reStructuredText</DocFormat>
</PropertyGroup>
<ItemGroup>
<Compile Include="Components\Cylinder\Interfaces\I_AtHome.TcIO">
Expand All @@ -69,6 +70,18 @@
<Compile Include="POUs\MAIN.TcPOU">
<SubType>Code</SubType>
</Compile>
<Compile Include="Project Information\F_GetCompany.TcPOU">
<SubType>Code</SubType>
<SystemCall>true</SystemCall>
</Compile>
<Compile Include="Project Information\F_GetTitle.TcPOU">
<SubType>Code</SubType>
<SystemCall>true</SystemCall>
</Compile>
<Compile Include="Project Information\F_GetVersion.TcPOU">
<SubType>Code</SubType>
<SystemCall>true</SystemCall>
</Compile>
<Compile Include="Units\DigitalInput\Class\FB_DigitalInput.TcPOU">
<SubType>Code</SubType>
</Compile>
Expand All @@ -94,6 +107,7 @@
<Folder Include="FCs" />
<Folder Include="FBs" />
<Folder Include="Components" />
<Folder Include="Project Information" />
<Folder Include="Units" />
<Folder Include="Units\DigitalInput" />
<Folder Include="Units\DigitalInput\Class" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1">
<POU Name="F_GetCompany" Id="{6a927c5c-ed4a-0468-0986-1a3737a00842}" SpecialFunc="None">
<Declaration><![CDATA[// This function has been automatically generated from the project information.
{attribute 'signature_flag' := '1073741824'}
{attribute 'TcGenerated'}
{attribute 'no-analysis'}
FUNCTION F_GetCompany : WSTRING
VAR_INPUT
END_VAR]]></Declaration>
<Implementation>
<ST><![CDATA[F_GetCompany := "Course_OOP";
]]></ST>
</Implementation>
</POU>
</TcPlcObject>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1">
<POU Name="F_GetTitle" Id="{cf1d2fa5-4562-0076-0554-34ee66c96922}" SpecialFunc="None">
<Declaration><![CDATA[// This function has been automatically generated from the project information.
{attribute 'signature_flag' := '1073741824'}
{attribute 'TcGenerated'}
{attribute 'no-analysis'}
FUNCTION F_GetTitle : WSTRING
VAR_INPUT
END_VAR]]></Declaration>
<Implementation>
<ST><![CDATA[F_GetTitle := "Library_OOP_Course";
]]></ST>
</Implementation>
</POU>
</TcPlcObject>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<TcPlcObject Version="1.1.0.1">
<POU Name="F_GetVersion" Id="{10c189f9-ba2c-04eb-27a4-c10daa4b056e}" SpecialFunc="None">
<Declaration><![CDATA[// This function has been automatically generated from the project information.
{attribute 'signature_flag' := '1073741824'}
{attribute 'TcGenerated'}
{attribute 'no-analysis'}
FUNCTION F_GetVersion : ST_LibVersion
VAR_INPUT
END_VAR]]></Declaration>
<Implementation>
<ST><![CDATA[F_GetVersion.iMajor := 0;
F_GetVersion.iMinor := 0;
F_GetVersion.iBuild := 0;
F_GetVersion.iRevision := 2;
F_GetVersion.sVersion := '0.0.0.2';
F_GetVersion.nFlags := 0;
]]></ST>
</Implementation>
</POU>
</TcPlcObject>

0 comments on commit 5b53293

Please sign in to comment.