18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
|
|
namespace DTS.Common.Enums.Sensors
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// describes different ways of filtering channels and sensors by type
|
||
|
|
/// </summary>
|
||
|
|
public enum PossibleFilters
|
||
|
|
{
|
||
|
|
All,
|
||
|
|
Analog,
|
||
|
|
Squib,
|
||
|
|
DigitalIn,
|
||
|
|
DigitalOut,
|
||
|
|
UART,
|
||
|
|
StreamOut,
|
||
|
|
StreamIn
|
||
|
|
}
|
||
|
|
}
|