如何将Sigma PLC连接到C#
我有BaudRate
,Parity
,StopBits
和DataBits
。
并将数据从C#写入/发送到PLC。
System.IO.Ports.SerialPort por = new System.IO.Ports.SerialPort();
private void Form_Load(object sender, EventArgs e)
{
por.BaudRate = 9600;
por.Parity = None;
por.StopBits = 1;
por.DataBits = 8;
por.DataReceived += new SerialDataReceivedEventHandler(por_DataReceived);
por.Open();
}
答案 0 :(得分:0)
看起来Sigma支持ModbusRTU。您可以使用AdvancedHMI,其中包含一个Modbus驱动程序,使其易于使用VB或C#