Metadata-Version: 2.4
Name: daq-gpib
Version: 1.0.0
Summary: Keithley DAQ6510 GPIB driver with 7702/7704 multiplexer relay control
License-Expression: MIT
Keywords: keithley,daq6510,7702,gpib,multiplexer,relay,4-wire
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ki488
Dynamic: license-file

# DAQ GPIB

Keithley DAQ6510 GPIB driver with 7702/7704 multiplexer relay control for 4-wire measurements.

## Installation

```bash
pip install daq-gpib
```

## Usage

```python
from ki488 import KI488
from daq_gpib import DAQ6510GPIB

ki = KI488(board=1)
daq = DAQ6510GPIB(ki)
daq.connect(20)
daq.setup_channel("1", "VOLT", "RESISTOR")
voltage = daq.read_voltage_4wire("101,121,143,145")
print(f"Voltage: {voltage} V")
daq.disconnect()
```

## License

MIT
