Skip to content

BBN-Q/Instruments.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Instruments

Updated to work with v1.0

Instrument control with Julia.

Documentation

Available online.

Quick Start

using Instruments

rm = ResourceManager()
instruments = find_resources(rm) # returns a list of VISA strings for all found instruments
uwSource = GenericInstrument()
connect!(rm, uwSource, "GPIB0::28::INSTR")
query(uwSource, "*IDN?") # prints "Rohde&Schwarz,SMIQ...."
disconnect!(uwSource)