Files
tbf/TBF/BenchControl/GenericDevices/IDiverter.cs
T

37 lines
996 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IDiverter : IComponent
{
/// <summary>
/// 1-based diverter number in case of Elde control board connected diverter (>= 1)
/// 0 = dummy diverter
/// </summary>
int DiverterNr { get; }
/// <summary>
/// Diverter state: true = to tank, false = bypass tank
/// </summary>
bool State { get; }
/// <summary>
/// Threshold for the ADC value to start the test in %, 0..100
/// </summary>
int ThresholdGate { get; }
/// <summary>
/// Threshold for low level when diverter transition time is measured in %, 0..100
/// </summary>
int ThresholdLo { get; }
/// <summary>
/// Threshold for high level when diverter transition time is measured in %, 0..100
/// </summary>
int ThresholdHi { get; }
}
}