using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections.ObjectModel;
namespace FLY.FeedbackRenZiJia.IService
{
interface IHeatCheck
{
///
/// 动作使能
///
bool Enable { get; set; }
///
/// 有电流, 输入。 需要与外部绑定
///
bool HasElectricity { get; set; }
///
/// 当前正在检测的加热棒号, 1~88
///
int CheckNo { get; }
#region 根据电流判断的加热棒状态
///
/// 坏的加热棒
///
bool[] Bads { get; }
///
/// 没加热,也有电流,电路板短路了
///
bool ShortCircuit { get; }
///
/// 没有上电, 或者电流计坏了
///
bool PowerOff { get; }
///
/// 有加热棒断路了
///
bool OpenCircuit { get; }
#endregion
}
}