using TBF.BenchControl.Generic;
using TBF.Boxes;
namespace TBF.BenchControl.GenericDevices
{
public interface IAmbient : IComponent
{
///
/// Events: Event.AmbientDone, Event.Error
///
/// FloatBox for the air temperature in [deg.C]
/// FloatBox for the air pressure in [mBar]
/// FloatBox for the air humidity in [%]
/// Operation
IOperation ReadAmbientOp(FloatBox temperature, FloatBox pressure, FloatBox humidity);
}
}