gpt4 book ai didi

c# - 使用 C# 从 Mettler Toledo (IND560) 秤设备读取数据

转载 作者:太空宇宙 更新时间:2023-11-03 12:51:09 25 4
gpt4 key购买 nike

我在使用 C# 从 Mettler Toledo (IND560) 秤设备接收数据时遇到了一些问题。

当我向设备发送“去皮重”命令 (T) 时,它工作正常但没有任何响应。 BytesToRead 始终为空,“while”处于无限循环中。

当我发送“发送稳定的重量值”命令 (S) 时,我面临同样的无限循环问题。我猜命令运行正常但没有响应。

代码如下:

private decimal? BalancaIND560(string porta, string comando) {
SerialPort SerialObj = new SerialPort(porta);
if (!SerialObj.IsOpen)
SerialObj.Open();

string retorno = "";
try {
SerialObj.BaudRate = 9600;
SerialObj.Parity = Parity.Even;
SerialObj.DataBits = 7;
SerialObj.StopBits = StopBits.One;
SerialObj.Handshake = Handshake.XOnXOff;

SerialObj.DiscardInBuffer();
SerialObj.DiscardOutBuffer();

SerialObj.Write(comando);

while ((SerialObj.BytesToRead == 0))
Application.DoEvents();

Thread.Sleep(500);
retorno = SerialObj.ReadExisting();

SerialObj.DiscardInBuffer();
SerialObj.DiscardOutBuffer();
} finally {
try { SerialObj.Close(); } catch { }
}

decimal? resultado = null;
try {
string[] aux = retorno.Split(' '); //"S S 100.52 kg"

StringBuilder sb = new StringBuilder();
for (int i = 0; i < aux.Length; i++)
sb.Append(String.Format("aux[{0}]: {1}" + Environment.NewLine, i, aux[i]));
MessageBox.Show(sb.ToString());

decimal peso = 0.0M;
if (!Decimal.TryParse(aux[6].Trim(), NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture, out peso))
Decimal.TryParse(aux[7].Trim(), NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture, out peso);
resultado = peso;
} catch { }

return resultado;
}

// Sending command
try {
decimal? peso = BalancaIND560("COM1", "S");
if (peso.HasValue)
MessageBox.Show(String.Format("Peso: {0}", peso.Value));
else
MessageBox.Show("Peso não foi encontrado", "ATENÇÃO", MessageBoxButtons.OK, MessageBoxIcon.Warning);
} catch {
MessageBox.Show("Erro ao executar comando", "ERRO", MessageBoxButtons.OK, MessageBoxIcon.Error);
}

最佳答案

我找到了解决方案!我只需要更改秤配置,它就可以工作了!!!如果有人遇到同样的问题,只需将设备中的 COM 配置(Configuration > Comunication > Conections)更改为 SICS,我的代码就可以正常工作!!谢谢大家!

关于c# - 使用 C# 从 Mettler Toledo (IND560) 秤设备读取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35483240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com