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
+
+ - For Single-Ended measurements, the High-Pins (CH0H-CHXH) correspond to the first 0-X Analog Channels and the Low
+ -Pins (CH0L-CHXL) correspond to the remaining X+1 - 2X Analog Inputs.
+ - For Differential measurements, the difference between High and Low Pin of the same number (CH0H-CH0L) is
+ measured.
+ - The Analog Input Channels should be set as colon-separated integers according to the CH.
+
+ """
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()),
}