22 lines
494 B
C#
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();
|
|
}
|
|
}
|