tbf/TestBenchFramework/BenchControl/GenericDevices/IPumpFM.cs
2014-07-28 09:56:40 +02:00

22 lines
494 B
C#

using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
/// <summary>
/// A pump controlled by a frequency inverter
/// using the test parameter 'Power' (0 .. 100.0f %)
/// </summary>
public interface IPumpFM : IPump
{
/// <summary>
/// Turns the frequency inverter on using the test parameter 'Power' (0 .. 100.0f %)
/// </summary>
IOperation TurnOn();
/// <summary>
/// Turns the frequency inverter off
/// </summary>
IOperation TurnOff();
}
}