This library provides a simple yet useful interface for using the function generator of the actuator quantification teststand
Go to file
2024-03-01 10:57:34 +01:00
docs Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
examples Feature: Added Documentation in 2024-03-01 10:44:15 +01: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 Moved some constants and changed OutputChannel to literal[1, 2] 2024-02-01 18:37:36 +01:00
.gitlab-ci.yml Update .gitlab-ci.yml file 2024-03-01 10:57:34 +01:00
.pdm-python refactoring 2024-02-22 10:00:00 +01:00
pdm.lock Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
pyproject.toml Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
README.md Feature: Added Documentation in 2024-03-01 10:44:15 +01:00
requirements.txt refactoring 2024-02-22 10:00:00 +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.