Thanks - Instrument drivers works just fine Here is reference for others
using Instruments PXA = GenericInstrument() connect!(PXA,"GPIB0::18::INSTR") # Connect to Instrument with name PXA write(PXA, "system:preset") # Write to PXA instrument acp = split((query(PXA, "read:ACP?")),",") # read ACP from Inst On Monday, July 4, 2016 at 1:29:50 PM UTC-5, Keno Fischer wrote: > You may want to look at Instruments.jl: > https://github.com/BBN-Q/Instruments.jl > > On Mon, Jul 4, 2016 at 2:00 PM, Alex Mellnik <[email protected] > <javascript:>> wrote: > > Hi Yared, > > > > This should be possible, but it could be less than ideal in some > instances. > > What exactly are you hoping to automate? > > > > Like Isaiah, I don't know of a specific GPIB library for Julia, but if > you > > are using the NI drivers you can call them directly from Julia (see > > > http://docs.julialang.org/en/release-0.4/manual/calling-c-and-fortran-code/ > > and there's a bit of specific information about the GPIB libraries here: > > > http://alex.mellnik.net/application-notes/application-notesusing-nis-gpib-drivers-in-qt/). > > > > > > -A > > > > > > On Saturday, July 2, 2016 at 5:39:07 PM UTC-7, Yared Melese wrote: > >> > >> Can Julia be used as instrument test Automation? Send commands via GPIB > to > >> different instruments > >> > >> If so is there Visa library for it? > >> > >> Thanks > >> Yared >
