PYvisa使用GPIB接口连接设备时出错.Below是我运行的简单代码。
>>> import visa;
>>> rm = visa.ResourceManager('C:/Windows/System32/visa32.dll');
>>> rm.list_resources();
('ASRL10::INSTR', 'ASRL71::INSTR')
但我没有看到它们自己被检测为GPIB接口。(如GPIB :: 25 :: INSTR)。我已经安装了正确版本的python和PyVISA。以下是相同的输出。
C:\>python -c "from pyvisa import util; util.get_debug_info()"
Machine Details:
Platform ID: Windows-7-6.1.7600
Processor: x86 Family 6 Model 58 Stepping 9, GenuineIntel
Python:
Implementation: CPython
Executable: C:\Python34\python.exe
Version: 3.4.3
Compiler: MSC v.1600 32 bit (Intel)
Bits: 32bit
Build: Feb 24 2015 22:43:06 (#v3.4.3:9b73f1c3e601)
Unicode: UCS4
PyVISA Version: 1.8
Backends:
ni:
Version: 1.8 (bundled with PyVISA)
#1: C:\Windows\system32\visa32.dll:
found by: auto
bitness: 32
Vendor: National Instruments
Impl. Version: 14680064
Spec. Version: 5243904
#2: C:\Windows\system32\visa32.dll:
found by: auto
bitness: 32
Vendor: National Instruments
Impl. Version: 14680064
Spec. Version: 5243904
谷歌搜索,我发现版本和库路径可能是原因。但我想这不是我的问题。任何人都可以指出我哪里出错了,因为我对Python和pyVISA非常陌生。
答案 0 :(得分:0)
检查您的GPIB设备是否通过NIMax面板连接/检测到。如果它没有显示在NIMax上,那么您的设备未连接。 另外,您不需要将visa32.dll路径放在visa.ResourceManager()中。