forked from PLCnext/CSharpExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFBWithMethods.cs
66 lines (55 loc) · 1.6 KB
/
FBWithMethods.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#region Copyright
//
// Copyright (c) Phoenix Contact GmbH & Co. KG. All rights reserved.
// Licensed under the MIT. See LICENSE file in the project root for full license information.
//
#endregion Copyright
using Iec61131.Engineering.Prototypes.Methods;
using Iec61131.Engineering.Prototypes.Types;
using Iec61131.Engineering.Prototypes.Variables;
using Iec61131.Engineering.Prototypes.Common;
namespace ExampleLib
{
[FunctionBlock]
public class FB_with_methods
{
//reuse of the struct in FBWithUserStruct.cs
private Position CurrentPosition;
[Initialization]
public void __Init()
{
}
[Execution]
public void __Process()
{
}
//the attribute "User" indicates a method for the PLCnext Engineer
//and make it available for the user in IEC code
[User]
public void SetX([Input, DataType("DINT")] int x)
{
CurrentPosition.x = x;
}
[User]
public void SetY([Input, DataType("DINT")] int y)
{
CurrentPosition.y = y;
}
[User, DataType("DINT")]
public int GetX()
{
return CurrentPosition.x;
}
[User, DataType("DINT")]
public int GetY()
{
return CurrentPosition.y;
}
//Complex data types are returned as referenced parameter
[User]
public void GetPosition([Output] ref Position GetPosition)
{
GetPosition = CurrentPosition;
}
}
}