tbf/TestBenchFramework/BenchControl/GenericDevices/IPump.cs
2015-05-15 16:44:13 +02:00

27 lines
563 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
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; }
/// <summary>
/// Current pump power in [%] (0 .. 100.0f)
/// </summary>
/// <returns></returns>
float Power { get; }
}
}