1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Collections.ObjectModel;
namespace FLY.FeedbackRenZiJia.Server
{
public interface IPLCLink:INotifyPropertyChanged
{
#region 输出
/// <summary>
/// 加热通道数
/// </summary>
UInt16 ChannelCnt { get; set; }
/// <summary>
/// 加热量更新 写
/// </summary>
UInt16 HeatUpdate { get; set; }
/// <summary>
/// 设置加热量
/// </summary>
/// <param name="values"></param>
void SetHeat(IEnumerable<UInt16> values);
#endregion
#region 当前值
/// <summary>
/// 当前电流 有没?
/// </summary>
bool HasElectricity { get; }
/// <summary>
/// 风机是否启动?
/// </summary>
bool HasFan { get; }
/// <summary>
/// 加热量更新 读
/// </summary>
UInt16 HeatUpdate_R { get; }
#endregion
#region 状态
int Errno { get; set; }
#endregion
}
}