IOChangeTypes Enumeration |
A type of change which can occur to a Digital IOLine
Namespace:
Brainboxes.IO
Assembly:
Brainboxes.IO (in Brainboxes.IO.dll) Version: 1.5.0.8
Syntax[FlagsAttribute]
public enum IOChangeTypes
<FlagsAttribute>
Public Enumeration IOChangeTypes
[<FlagsAttribute>]
type IOChangeTypes
Members
| Member name | Value | Description |
---|
| NoChange | 0 |
No Change occurred
|
| RisingEdge | 1 |
Rising Edge
Digital Input went from low to high or 0 to 1
Digital Output/Relay went from open to closed or 0 to 1
|
| FallingEdge | 2 |
Falling Edge
Digital Input went from high to low or 1 to 0
Digital Output/Relay went from closed to open or 1 to 0
|
| Latched | 7 |
Within the sample interval the IOLine has had 1 or more falling edges and 1 or more rising edges
|
| Undefined | 99 |
undefined
|
See Also