R&S罗德施瓦茨设备-NI-VISA、web control、程序控制

远程控制方法:

一.web control

1.打开浏览器,输入机器上的ip地址

2.点击‘web control’

3.输入密码:instrument

4.进入控制界面

二.NI-VISA

1.安装NI-VISA

  1. 下载链接:https://download.ni.com/support/nipkg/products/ni-v/ni-visa/19.0/online/ni-visa_19.0_online.exe
  2. 按默认步骤安装即可
  3. 将所有设备连接到同一局域网内
  4. 打开NI MAX

     

    5.选择需要控制的设备,点击“打开VISA测试面板”

     

   6.点击“Input/Output”,在中间的输入框中输入命令。例如:*IDN?\n 

    

2. NI MAX控制SMW200A

  1. 按照上一章操作即可,如果找不到该设备,点击“添加设备”即可

     

    2.按照上一章操作,输入命令“SYStem:RCL ‘/var/user/hil001.savrcltxt’”,点击“Write”即可。该操作为调用之前配置好的HIL001文件,并且可在SMW200A中观察到已经完成了该命令

     

三.远程程序控制

 点击链接,里面啥都有. C++.Python.MATLAB等....

4. VISA in Programming Languages - Rohde & Schwarz China

以下是使用C#语言控制罗德施瓦茨R&S信号源的示例代码: ```csharp using System; using System.Collections.Generic; using System.Linq; using System.Text; using RohdeSchwarz.ViCom.Net; using RohdeSchwarz.ViCom.Net.CSharp; using RohdeSchwarz.ViCom.Net.DeviceControl; using RohdeSchwarz.ViCom.Net.DeviceControl.CSharp; using RohdeSchwarz.ViCom.Net.DeviceStatus; using RohdeSchwarz.ViCom.Net.DeviceStatus.CSharp; using System.Threading; namespace R_S_Signal_Generator { class Program { static void Main(string[] args) { string resourceName = "TCPIP::192.168.1.1::INSTR"; // R&S信号源的资源名称 ViComMessageBroker messageBroker = new ViComMessageBroker(); ViComMessageBrokerFactory.CreateMessageBroker(ref messageBroker); // 创建设备控制器和设备状态控制器 DeviceControl deviceControl = new DeviceControl(resourceName, messageBroker); DeviceStatus deviceStatus = new DeviceStatus(resourceName, messageBroker); // 打开ViCom连接 deviceControl.Open(); deviceStatus.Open(); // 读取设备信息 string deviceName = deviceStatus.GetDeviceName(); string deviceSerial = deviceStatus.GetDeviceSerialNumber(); Console.WriteLine("Connected to device: {0}, S/N: {1}", deviceName, deviceSerial); // 设置频率和功率 double frequency = 1.0e9; // 1 GHz double powerLevel = 10.0; // 10 dBm deviceControl.SetFrequency(frequency); deviceControl.SetPowerLevel(powerLevel); // 打开RF输出 deviceControl.SetRFOutputState(true); // 等待3秒 Thread.Sleep(3000); // 关闭RF输出 deviceControl.SetRFOutputState(false); // 关闭ViCom连接 deviceControl.Close(); deviceStatus.Close(); Console.WriteLine("Done"); Console.ReadLine(); } } } ``` 请注意,此示例代码使用RohdeSchwarz.ViCom.Net库来控制R&S信号源。在运行代码之前,您需要先安装ViCom库并在Visual Studio中添加对该库的引用。此外,您还需要将示例代码中的资源名称更改为R&S信号源的实际资源名称。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值