forked from PLCnext/CSharpExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FB_ENENO.cs
73 lines (63 loc) · 1.66 KB
/
FB_ENENO.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
67
68
69
70
71
72
73
#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
using System;
using System.Iec61131Lib;
using Iec61131.Engineering.Prototypes.Types;
using Iec61131.Engineering.Prototypes.Variables;
using Iec61131.Engineering.Prototypes.Methods;
using Iec61131.Engineering.Prototypes.Common;
using Iec61131.Engineering.Prototypes.Ports;
namespace ExampleLib
{
[FunctionBlock]
public class Counter_ENENO
{
// define EN as first input parameter
[Input]
public bool EN;
[Input]
public bool xDOWN;
// define ENO as first output parameter
[Output]
public bool ENO;
[Output]
public int iOUT;
[Initialization]
public void __Init()
{
}
[Execution]
public void __Process()
{
// EN/ENO handlin must be implemented by the developer
ENO = EN;
if (ENO == false)
{
SetOutputValuesToDefault();
return;
}
if(xDOWN)
{
iOUT--;
}
else
{
iOUT++;
}
// going into error state can be defined by the developer by setting ENO to false
if(iOUT <0 || iOUT > 1000)
{
ENO = false;
}
}
// Outputs musst be well defined on error return
private void SetOutputValuesToDefault()
{
iOUT = 0;
}
}
}