Skip to content

Small python package to download and wrap the C library of LabBrick signal generators.

License

Notifications You must be signed in to change notification settings

qutech/vaunix_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Vaunix API

This is a small package to download and wrap the C library of LabBrick signal generators. It can be extended for other LabBrick devices. This package is not affiliated with Vaunix Technology Corporation.

pip install vaunix_api

The required binaries can be downloaded via vaunix_api.lsg.download_lsg_binaries() from vaunix website.

Example:

import vaunix_api.lsg as lsg

api = lsg.VNX_LSG_API.default()

# necessary to refresh device list
api.get_num_devices()

for device_id in api.get_dev_info():
    print(api.get_serial_number(device_id),
          api.get_model_name(device_id),
          lsg.LSGStatus(api.get_device_status(device_id)))

About

Small python package to download and wrap the C library of LabBrick signal generators.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages