2014-07-28 07:54:35 +00:00
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-07-31 15:04:09 +00:00
|
|
|
|
using TBF.Boxes;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IAmbient : IComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Events: Event.AmbientDone, Event.Error
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="temperature">FloatBox for the air temperature in [deg.C]</param>
|
|
|
|
|
|
/// <param name="pressure">FloatBox for the air pressure in [mBar]</param>
|
|
|
|
|
|
/// <param name="humidity">FloatBox for the air humidity in [%]</param>
|
|
|
|
|
|
/// <returns>Operation</returns>
|
|
|
|
|
|
IOperation ReadAmbientOp(FloatBox temperature, FloatBox pressure, FloatBox humidity);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|