This repository contains additional tools and examples for QDAC-II. See https://qdevil.com/w82mkw6a/ for more information and examples.
usb_detector: Detect a QDAC-II connected through USB and display port and setup information.
Most applications and examples are written in Python 3, so you will need to set up a virtual python environment, see First-time Setup below.
Each subfolder contains a separate tool or example.
For instance, to use the USB Detector, enter the python virtual environment and run the app in the subfolder:
In a Terminal:
$ source venv/bin/activate
$ python src/usb_detector.py
In PowerShell:
PS> venv\Scripts\activate.ps1
PS> python src\usb_detector.py
In a Terminal:
$ scripts/setup-virtual-env.sh
$ scripts/install-libs.sh
In PowerShell:
PS> python -m venv venv
PS> scripts\install-libs.bat