18 lines
582 B
C#
18 lines
582 B
C#
using TBF.BenchControl.Generic;
|
|
using TBF.Boxes;
|
|
|
|
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);
|
|
}
|
|
}
|