# Instruments.jl **Repository Path**: Julialang/Instruments.jl ## Basic Information - **Project Name**: Instruments.jl - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-03-12 - **Last Updated**: 2024-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Instruments Instrument control with Julia. ## Documentation Available [online](http://instrumentsjl.readthedocs.org/). ## Quick Start ``` using Instruments instruments = find_resources() # returns a list of VISA strings for all found instruments uwSource = Instrument() connect!(uwSource, "GPIB0::28::INSTR") query(uwSource, "*IDN?") # prints "Rohde&Schwarz,SMIQ...." disconnect!(uwSource) ```