MetcalManager.cs
6.9 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TSA_V.Common;
namespace TSA_V.DeviceLibrary
{
/// <summary>
/// Metcal烙铁
/// </summary>
public class MetcalManager
{
private static string Temp_Addr = "P31";
private static string Power_Addr = "P02";
private static string PartNum_Addr = "P13";
public delegate void TempRevice();
public delegate void PowerRevice();
public static event TempRevice OnTempRevice;
public static event PowerRevice OnPowerRevice;
public static MetcalInfo MInfo = new MetcalInfo();
private static Dictionary<string, SerialBean> serialBeanMap = new Dictionary<string, SerialBean>();
private static object lockObj = new object();
private static SerialBean GetSerialBean(string portName)
{
if (serialBeanMap.ContainsKey(portName))
{
return serialBeanMap[portName];
}
return null;
}
public static bool OpenPort(string portName)
{
try
{
lock (lockObj)
{
if (serialBeanMap.ContainsKey(portName))
{
return true;
}
SerialBean bean = new SerialBean(portName, 115200, Parity.None, 8, StopBits.One);
bean.DataReceived += Bean_DataReceived;
bool result = bean.openPort();
if (!result)
{
LogUtil.info("打开串口【" + portName + "】失败");
return false;
}
MInfo.PortName = portName;
LogUtil.info("打开串口【" + portName + "】成功");
if (serialBeanMap.ContainsKey(portName))
{
serialBeanMap.Remove(portName);
}
serialBeanMap.Add(portName, bean);
return true;
}
}
catch (Exception ex)
{
LogUtil.info("串口【" + portName + "】打开异常:" + ex.ToString());
return false;
}
}
private static string spiltStr = ":";
private static void Bean_DataReceived(string portName, object sender, SerialDataReceivedEventArgs e, byte[] bits)
{
string msg = System.Text.Encoding.Default.GetString(bits);
try
{
List<string> striparr = msg.Split(new string[] { "\r\n" }, StringSplitOptions.None).ToList();
striparr = striparr.Where(s => !string.IsNullOrEmpty(s)).ToList();
if (striparr.Count > 0)
{
foreach (string str in striparr)
{
if (str.Equals(""))
{
continue;
}
LogUtil.MetcalDataInfo("端口【" + portName + "】收到数据:" + str);
if (str.StartsWith(Power_Addr))
{
string power = str.Replace(Power_Addr + spiltStr, "");
MInfo.LastPower = StrToDouble(power) / 10;
OnTempRevice?.Invoke();
}
else if (str.StartsWith(Temp_Addr))
{
string temp = str.Replace(Temp_Addr + spiltStr, "").Replace("C", "");
MInfo.LastTemp = StrToDouble(temp) ;
OnTempRevice?.Invoke();
}
else if (str.StartsWith(PartNum_Addr))
{
string pt = str.Replace(PartNum_Addr + spiltStr, "");
MInfo.PartNum = pt;
}
}
}
}catch(Exception ex)
{
LogUtil.error("端口【" + portName + "】收到数据:" + msg+"处理出错:"+ex.ToString());
}
}
private static double StrToDouble(string str)
{
try
{
return Convert.ToDouble(str.Trim());
}
catch (Exception ex)
{
}
return 0;
}
public static void ColsePort(string portName)
{
SerialBean bean = GetSerialBean(portName);
if (bean == null)
{
LogUtil.info("串口【" + portName + "】未打开,不需要关闭");
return;
}
//清理缓存
bean.clearInBuffer();
bean.clearOutBuffer();
bean.closePort();
if (serialBeanMap.ContainsKey(portName))
{
serialBeanMap.Remove(portName);
}
}
public static void ColseAllPort()
{
List<SerialBean> beans = new List<SerialBean>(serialBeanMap.Values);
foreach(SerialBean bean in beans)
{
ColsePort(bean.PortName);
}
}
}
public class MetcalInfo
{
/// <summary>
/// 端口号
/// </summary>
public string PortName = "";
/// <summary>
/// 烙铁头型号
/// </summary>
public string PartNum = "";
public string LotCode = "";
private DateTime lastTempTime = DateTime.Now;
/// <summary>
/// 最后一次温度
/// </summary>
private double lastTemp = 0;
public double LastTemp
{
get
{
TimeSpan span = DateTime.Now - lastTempTime;
if (span.TotalSeconds < 3)
{
return lastTemp;
}
else
{
return 0;
}
}
set
{
lastTemp = value;
lastTempTime = DateTime.Now;
}
}
/// <summary>
/// 最后一次功率
/// </summary>
private double lastPower = 0;
private DateTime lastPowerTime = DateTime.Now;
public double LastPower
{
get
{
TimeSpan span = DateTime.Now - lastPowerTime;
if (span.TotalSeconds < 3)
{
return lastPower;
}
else
{
return 0;
}
}
set
{
lastPower = value;
lastPowerTime = DateTime.Now;
}
}
}
}