diff --git a/src/Logger-MCC_DAQ/main.py b/src/Logger-MCC_DAQ/main.py index 80550317..00f9e353 100644 --- a/src/Logger-MCC_DAQ/main.py +++ b/src/Logger-MCC_DAQ/main.py @@ -48,15 +48,21 @@ class Device(EmptyDevice): """Driver to read out MCC DAQ devices.""" - description = """ -

MCC High-Speed Multifunction DAQ

- -

To use this driver, installation of Universal Library™ from the MCC DAQ Software package is needed. - Please download it from the MCC Homepage

-

If your device supports additional AI ranges, they can be added by extending the - available_ai_ranges dictionary.

- """ + description = """ +

MCC High-Speed Multifunction DAQ

+

Setup

+

To use this driver, installation of Universal Library™ from the MCC DAQ Software package is needed. Please + download it from the Digilent Reference

+

Parameters

+ + """ def __init__(self) -> None: """Initialize driver parameters.""" @@ -96,7 +102,7 @@ def set_GUIparameter(self) -> dict: # noqa: N802 """Set standard GUI parameter.""" return { "Analog input mode": list(self.measurement_modes.keys()), - "Analog input channels": "1, 2", + "Analog input channels": "0, 1", "Analog input range": list(self.available_ai_ranges.keys()), }