Sic.Framework-Nanjing-Baishi/MECF.Framework.RT.Equipment.../HardwareUnits/Temps/ITempSensor.cs

31 lines
964 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Temps
{
public interface ITempSensor
{
/// <summary>
/// 返回温度传感器所属模组。
/// </summary>
string Module { get; }
/// <summary>
/// 返回当前温度传感器所胡
/// </summary>
string Name { get; }
/// <summary>
/// 测温硬件测试温度下限,属于硬件特性,在相应测温代码中已经预先固定写死
/// </summary>
double MinimalTemp { get; }
/// <summary>
/// 测温硬件通道数量属于硬件特性在相应测温代码中已经预先固定写死AE、Akun都是四通道德国三铯是单通道
/// </summary>
int MaxChannels { get; }
/// <summary>
/// 返回温度测量值。该测量值用于PID温度反馈。
/// </summary>
double[] Temp { get; }
}
}