This library provides a simple yet useful interface for using the function generator of the actuator quantification teststand
Go to file
2024-07-29 15:51:14 +02:00
dist Fix: Added dist folder 2024-03-01 12:58:24 +01:00
docs Fix: removed unecessary dependencies 2024-03-01 10:58:44 +01:00
examples feat: first communication 2024-07-29 15:51:14 +02:00
manuals merged changes 2024-01-19 11:35:15 +01:00
src/fn_gen Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
uml Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
.gitignore Fix: Added dist folder 2024-03-01 12:58:24 +01:00
.gitlab-ci.yml Fix: add to the build step 2024-03-01 12:23:49 +01:00
.pdm-python feat: first communication 2024-07-29 15:51:14 +02:00
pdm.lock feat: first communication 2024-07-29 15:51:14 +02:00
pyproject.toml Feature: added tag 2024-03-01 12:48:07 +01:00
README.md Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
requirements.txt Fix: Added pyvisa-py and setuptools 2024-03-01 11:53:50 +01:00

Rigol DG2052 Python Library

[fn_gen] The Function Generator SCPI library in Python

Description:

A library for usage with SCPI compliant function generators (for now the DG2000 series from rigol)

Installation:

python -m build
pip install dist/fn_gen-0.0.2-py3-none-any.whl

Usage:

from fn_gen import DG2052

if __name__ == "__main__":
  fg = DG2052("TCPIP::192.168.1.11::INSTR")
  print(fg.whoami())

other examples are available in the examples folder.