Skip to main content

Enum AIOChangeTypes

A type of change which can occur to a Analog IOLine

Assembly: Brainboxes.IO.dll
View Source
Declaration
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
Declaration
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
Declaration
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
Declaration
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
Declaration
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
Declaration
Exit = 4