Skip to content

Connecting to ATS9870-8 bit, 1 GS/s by Alazartech in Python

Instrument Card

ATS9870 is the worldโ€™s first Giga-sample waveform digitizer based on the 8-lane PCI Express interface

ATS9870-8 bit, 1 GS/s

Device Specification: here

Manufacturer card: ALAZARTECH

ALAZARTECH

Alazar Technologies Inc. (AlazarTech) was founded in 2003 with the goal of serving the test and measurement market, in general, and the embedded waveform digitizer (OEM) market segment, in particular, by providing highly differentiated, high performance instrumentation products at affordable prices.

  • Headquarters: CANADA - QC
  • Yearly Revenue (millions, USD): 4
  • Vendor Website: here

Demo: Record temperature over time with a LabJack DAQ board

Connect to the ATS9870-8 bit, 1 GS/s in Python

PROTOCOLS > SCPI

To connect to an ATS9870-8 bit, 1 GS/s DAQ board using Qcodes, you can use the following Python script:

from qcodes.instrument_drivers.AlazarTech.ATS9870 import AlazarTechATS9870
# Create an instance of the AlazarTechATS9870 driver
daq = AlazarTechATS9870('daq', dll_path='C:\\WINDOWS\\System32\\ATSApi.dll')
# Connect to the DAQ board
daq.connect('ATS9870')
# Print the IDN information of the DAQ board
print(daq.get_idn())
# Set the sample rate to 1 GS/s
daq.sample_rate(1e9)
# Set other parameters as needed
# Disconnect from the DAQ board
daq.disconnect()

This script creates an instance of the AlazarTechATS9870 driver, connects to the ATS9870-8 bit, 1 GS/s DAQ board, and sets the sample rate to 1 GS/s. You can modify the script to set other parameters or perform data acquisition as required.