tbf/TestBenchFramework/BenchControl/GenericDevices/IPump.cs

18 lines
377 B
C#

using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IPump : IComponent
{
/// <summary>
/// Pump state: true = on, false = off
/// </summary>
bool State { get; }
/// <summary>
/// Delay of the valve in [s] (open or close time, whichever is larger)
/// </summary>
int Delay { get; }
}
}