使用 C# 从梅特勒-托利多 (IND560) 秤设备读取数据

本文关键字:IND560 数据 读取 使用 | 更新日期: 2023-09-27 18:35:09

使用 C# 从梅特勒-托利多 (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);
}

使用 C# 从梅特勒-托利多 (IND560) 秤设备读取数据

我找到了解决方案!我只需要更改秤配置即可正常工作!!如果有人遇到同样的问题,只需将COM配置(Configuration > Comunication > Conections)更改为SICS设备,我的代码就会运行良好!!啧啧!