AIOChangeTypes Enumeration |
A type of change which can occur to a Analog IOLine
Namespace:
Brainboxes.IO
Assembly:
Brainboxes.IO (in Brainboxes.IO.dll) Version: 1.5.0.8
Syntaxpublic enum AIOChangeTypes
Public Enumeration AIOChangeTypes
Members
| Member name | Value | Description |
---|
| Delta | 0 |
Delta event only:
When the differnce between the previous sampled value and the current sampled value is more than the delta value specified
|
| Below | 1 |
Target event only:
When the previous sampled value was above the target value and the current sampled value is below the target value
|
| Above | 2 |
Target event only:
When the previous sampled value was below the target value and the current sampled value is above the target value
|
| Enter | 3 |
Target range event only:
When the previous sampled value was outside of the delta range of the target value and the current sampled value
goes inside the delta range of the target value
|
| Exit | 4 |
Target range event only:
When the previous sampled value was inside of the delta range of the target value and the current sampled value
goes outside the delta range of the target value
|
See Also