Simple python library to control Arbitrary Waveform Generators from various manufacturers.
Project description
PyAWG
A simple (unofficial) python library to control some functions of Arbitrary Waveform Generators (aka Function / Signal Generators) from various manufacturers.
Currently following function generators are supported. Volunteers are welcome to extend it to support other models keeping the basic functions same.
Siglent
- Siglent SDG1000X Series Arbitrary Waveform Generator
- SDG1032X
- SDG1062X
Rigol
- Rigol DG1000Z Series Arbitrary Waveform Generator
- DG1032Z
- DG1062Z
System Requirements
- Python (>=3.8,<4.0)
Installation
Installation of the library is very simple via pip command as shown below.
>>> pip install pyawg
Usage
Here is an exmaple with Rigol DG1032Z Arbitrary Waveform Generator. For the variants from other manufacturers, the DEBUG logs would be printed slightly different based on their respective syntax.
>>> from pyawg import awg_control, AmplitudeUnit, FrequencyUnit, WaveformType
>>> # Example for Square Wave of 10KHz, 5VPP with offset of 2.5V and phase shift of 90°
>>> awg = awg_control('192.168.1.100')
[2025.03.06 21:12:46][DEBUG] Connected to AWG at 192.168.1.100
[2025.03.06 21:12:46][DEBUG] Sent query: *IDN?, Received: Rigol Technologies,DG1032Z,DG1ZA2012604407,03.01.12
[2025.03.06 21:12:46][DEBUG] RigolDG1000Z instance created.
>>> awg.set_waveform(1, WaveformType.SQUARE)
[2025.03.06 21:15:51][DEBUG] Sent command: SOUR1:FUNC SQU
[2025.03.06 21:15:51][DEBUG] Channel 1 waveform set to SQU
>>> awg.set_frequency(1, 10, FrequencyUnit.KHZ)
[2025.03.06 21:16:41][DEBUG] Sent command: SOUR1:FREQ 10KHZ
[2025.03.06 21:16:41][DEBUG] Channel 1 frequency set to 10KHZ
>>> awg.set_amplitude(1, 5, AmplitudeUnit.VPP)
[2025.03.06 21:18:19][DEBUG] Sent command: SOUR1:VOLT 5VPP
[2025.03.06 21:18:19][DEBUG] Channel 1 amplitude set to 5VPP
>>> awg.set_offset(1, 2.5)
[2025.03.06 21:20:02][DEBUG] Sent command: SOUR1:VOLT:OFFS 2.5
[2025.03.06 21:20:02][DEBUG] Channel 1 offset voltage set to 2.5 Vdc
>>> awg.set_phase(1, 90)
[2025.03.06 21:25:08][DEBUG] Sent command: SOUR1:PHAS 90
[2025.03.06 21:25:08][DEBUG] Channel 1 phase set to 90°
>>> awg.set_output(1, True)
[2025.03.06 21:25:34][DEBUG] Sent command: OUTP1 ON
[2025.03.06 21:25:34][DEBUG] Channel 1 output has been set to ON
>>> awg.close()
[2025.03.06 21:35:13][DEBUG] Disconnected from AWG
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyawg-0.3.10.1.tar.gz.
File metadata
- Download URL: pyawg-0.3.10.1.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.1 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1435c57522a4d1efd14485f80b274563d1d181cc8cf3dc86acfb4387205bc29a
|
|
| MD5 |
e4fc7b6f35b121da01c84e6fabc75ada
|
|
| BLAKE2b-256 |
d6ae971bb1384a9f82b60b4544831ad4d8cc15add73a8e79e69c600d861dbc53
|
File details
Details for the file pyawg-0.3.10.1-py3-none-any.whl.
File metadata
- Download URL: pyawg-0.3.10.1-py3-none-any.whl
- Upload date:
- Size: 27.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.1 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0d148f01287c91aedda3d87ebb4f23db21645ce966356474ee553308d6f64b0
|
|
| MD5 |
ad3c4f2f5e70c73a7ee1c423c7c78e2e
|
|
| BLAKE2b-256 |
46dc61ef9ffb6d1812b1cb0bcf214dba66e164772c8ff8ff3ad34a2ad9a5459c
|