-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path__main__.py
25 lines (21 loc) · 864 Bytes
/
__main__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
##########################################################
### User Entry
##########################################################
instru_ip = '192.168.1.114'
##########################################################
### Code Overhead: Import and create objects
##########################################################
from rssd.yaVISA_socket import jaVisa
from rssd.FileIO import FileIO
OFile = FileIO().makeFile(__file__)
instr = jaVisa().jav_Open(instru_ip,OFile) #Create Object
##########################################################
### Code Start
##########################################################
instr.write('*CLS;*WAI')
rdStr = instr.query('*IDN?')
OFile.write(rdStr)
##########################################################
### Cleanup Automation
##########################################################
instr.jav_Close()