Metadata-Version: 2.4
Name: k2450-gpib
Version: 1.0.0
Summary: Keithley 2450 SourceMeter GPIB driver for current sourcing and 4-wire measurements
License-Expression: MIT
Keywords: keithley,2450,sourcemeter,gpib,scpi,current-source
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

# K2450 GPIB

Keithley 2450 SourceMeter GPIB driver for current sourcing and 4-wire resistance measurements.

## Installation

```bash
pip install k2450-gpib
```

## Usage

```python
from ki488 import KI488
from k2450_gpib import Keithley2450GPIB

ki = KI488(board=0)
smu = Keithley2450GPIB(ki)
smu.connect(18)
smu.set_current_source(0.001)  # 1mA
smu.output_on()
smu.set_current_level(-0.001)  # Current reversal
smu.output_off()
smu.disconnect()
```

## License

MIT
