using TBF.BenchControl.Generic;
using TBF.Boxes;
namespace TBF.BenchControl.GenericDevices
{
///
/// Basic temperature meter functions
///
public interface ITempMeter : IComponent
{
///
/// Events: TempDone, Error
///
/// Reference to a variable for the temperature in Celsius
/// ReadTempInOp instance reference casted to IOperaton
IOperation ReadTempOp(ref FloatBox temp);
///
/// Events: tempDone, Error
///
/// Reference to a variable for the temperature in Celsius
/// ReadTempInOp instance reference casted to IOperaton
IOperation ReadTempOp(ref FloatBox temp, Event tempDone);
}
}