本文介绍了我想要代码打开modbus的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
任何人都可以告诉我打开modbus的c#代码
我尝试了什么:
private void btnConnect_Click(object sender,EventArgs e)
{
try
{
master = new Master(txtIPAddress.Text,502,true);
MessageBox.Show(建立连接);
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Can anyone tell me the c# code to open the modbus
What I have tried:
private void btnConnect_Click(object sender, EventArgs e)
{
try
{
master = new Master(txtIPAddress.Text, 502, true);
MessageBox.Show("Connection established");
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
推荐答案
这篇关于我想要代码打开modbus的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!