IOChangeTypes Enumeration |
A type of change which can occur to a Digital IOLine
Namespace: Brainboxes.IOAssembly: Brainboxes.IO (in Brainboxes.IO.dll) Version: 1.0.0.0 (1.0.0.0)
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