Enum AIOChangeTypes
A type of change which can occur to a Analog IOLine
Assembly: Brainboxes.IO.dll
View Source
public enum AIOChangeTypes
Fields
Delta
Delta event only: When the differnce between the previous sampled value and the current sampled value is more than the delta value specified
View Source
Delta = 0
Below
Target event only: When the previous sampled value was above the target value and the current sampled value is below the target value
View Source
Below = 1
Above
Target event only: When the previous sampled value was below the target value and the current sampled value is above the target value
View Source
Above = 2
Enter
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
View Source
Enter = 3
Exit
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
View Source
Exit = 4