目录
1、前期了解
(1)SCPI
(2)VISA
2、开始准备工作
3、Visual Studio2017软件编程
想用C#去做控制矢量网络分析仪的一个软件,并且是用网线连接控制,现在要用WINFORM来做一个控制程序,经过几天研究和请教大牛,终于与矢网连接成功并成功发送命令。下面我将这几天的成果分享一下,以便于自己或者其他朋友在以后再做这方面的时候少走弯路,谢谢。
要完成PC控制仪器需要了解两方面知识:SCPI和VISA。
SCPI(可编程仪器的标准命令)是一种基于 ASCII 的仪器命令语言,供测试和测量仪器使用,简单来说就是你发送给一个设备一串SCPI格式的字符串,它就能完成相应操作,这就是它们的通用语言。SCPI分为标准SCPI和扩展的SCPI,前者是各种设备通用的,如重置命令RST,后者是各个厂家各种设备自己扩展的命令。如果相应设备支持SCPI,在其操作手册中会对SCPI详细说明,最好是查看需要控制的设备说明文档。
VISA(Virtual Instrument Software Architecture,简称为"Visa"),即虚拟仪器软件结构,是VXI plug&play联盟制定的I/O接口软件标准及其规范的总称。VISA提供用于仪器编程的标准I/O函数库,称为VISA库。计算机通过它来控制仪器。
VISA的适用和各种仪器接口通信,无论仪器使用的串口还是其他任何一种总线,诸如USB、GPIB、VXI、PXI和LXI等,都具有相同的操作函数,从而实现了控制操作上的统一。
安捷伦等仪表通讯需要用到VISA的库。库的获取方法目前知道两个,1个是下载是德科技的IO Library,还有就是上NI下载NI-VISA.
我们在这里使用的是德科技的IO Library提供的VISA库。官网地址:https://www.keysight.com/zh-CN/pd-1985909/io-libraries-suite?pm=DL&nid=-33002.977662&cc=CN&lc=chi
下图为IO Library的软件界面:
VISA Address:自动获取矢网的IP。(这个ip之后会用到)
(1)将电脑与矢网用网线连接起来。
(2)将电脑的ip地址和网关设置为矢网的ip地址、网关。(ip 地址不能完全一样,在同一个段上就可以)
(3) 打开IO Library软件,选择LAN口,添加矢网设备。
1、搭建简单的winform界面。
2、在项目中添加引用,引用VISA的库。
3、开始上代码吧 。代码参考:《基于C#的数字存储示波器控制软件设计与实现》
网址:http://www.doc88.com/p-2794529955293.html
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Ivi.Visa.Interop;
namespace Demo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string address;//地址
bool isConnect=false;//连接状态,true表示已连接
public void Connect(string address)
{
ResourceManager con = new ResourceManager();
FormattedIO488 ioobj = new FormattedIO488();
try
{
ioobj.IO = (IMessage)con.Open(address, AccessMode.NO_LOCK, 0, "");
ioobj.WriteString("*IDN?", true);
string message = ioobj.ReadString();
if (message != "")
{
isConnect = true;
string mes = "Connect Success!\r\n" + message;
MessageText.Text = mes;
}
}
catch (Exception ee)
{
string message = ee.Message;
string mes = "Connect Failed!\r\nAn error occurred:"+message;
MessageText.Text = mes;
}
finally
{
try
{
ioobj.IO.Close();
}
catch (Exception)
{
}
try
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(ioobj);
}
catch (Exception)
{
throw;
}
try
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(con);
}
catch (Exception)
{
throw;
}
}
}
private void Connectbutton_Click(object sender, EventArgs e)
{
address = AddressText.Text.Trim();
if (address!="")
{
Connect(address);
}
else
{
MessageBox.Show("Address can't be null", "Information", MessageBoxButtons.OK);
}
}
private void Sendbutton_Click(object sender, EventArgs e)
{
if (isConnect)
{
ResourceManager con = new ResourceManager();
FormattedIO488 ioobj = new FormattedIO488();
ioobj.IO = (IMessage)con.Open(address, AccessMode.NO_LOCK, 0, "");
string[] commands = new string[CommandText.Lines.Length];
try
{
for (int i = 0; i < CommandText.Lines.Length; i++)
{
commands[i] = CommandText.Lines[i];
if (commands[i]=="")
{
MessageBox.Show("Command can't be null", "information", MessageBoxButtons.OK);
break;
}
else
{
try
{
ioobj.WriteString(commands[i], true);
//string mes = "->" + command[i] + "\r\n";
//MessageText.Text = mes;
//string message = ioobj.ReadString();
//if (message != "")
//{
// string mes = message + "\r\n";
// MessageText.Text = mes;
//}
}
catch (Exception ee)
{
MessageBox.Show("An Error occurred! Command lines:"+(i+1), "Information", MessageBoxButtons.OK);//第i+1行指令报错
// break;
//string message = ee.Message;
//string mes = "An error occurred: " + message;
//MessageText.Text = mes ;
}
}
}
ioobj.WriteString(" *TST?", true);//*TST?自我测试查询结果
string message = ioobj.ReadString();
if (message=="+0")
{
MessageText.Text = "测试完成,没有错误";
}
else
{
MessageText.Text = "测试完成,有错误";
}
}
catch (Exception ee)
{
//string message = ee.Message;
//string mes = "An error occurred: " + message;
//MessageText.Text = mes ;
}
}
else
{
MessageBox.Show("You can't send the command before connecting the instrument ", "information", MessageBoxButtons.OK);
}
}
}
}
4、开始测试。连接失败是因为网线没有插上,插上网线就ok了。
初次发表,请多多见谅!若哪儿有问题或者需要交流,可以评论交流。谢谢!