tbf/TBF/Rig/GenericDevices/IAmbient.cs
2021-10-26 19:38:09 +02:00

21 lines
624 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using TBF.Rig.Generic;
using TBF.Boxes;
namespace TBF.Rig.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);
}
}