> ## Documentation Index
> Fetch the complete documentation index at: https://instro.nominal.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Keysight34980A

> A driver for [`InstroDAQ`](/daq)

<Card title="Keysight 34980A" horizontal href="/daq/Keysight34980A">
  <img src="https://mintcdn.com/nominal/vd1fIohbHX0IE-nH/snippets/drivers/daq/keysight-34980a/image.png?fit=max&auto=format&n=vd1fIohbHX0IE-nH&q=85&s=04a9b5735d0e2adc1df5466c20625c0c" style={{ width: "100%", height: "100px", objectFit: "contain" }} noZoom alt="Keysight 34980A" width="600" height="206" data-path="snippets/drivers/daq/keysight-34980a/image.png" />
</Card>

The [`Keysight34980A`](https://nominal-io.github.io/instro/instruments/daq/#keysight-34980a) provides a driver that can be used to instantiate an [InstroDAQ](/daq). Unlike the other DAQ drivers, it owns its own `VisaDriver` and connects over SCPI/VISA rather than a vendor SDK.

## Creating an [`InstroDAQ`](/daq) with [`Keysight34980A`](https://nominal-io.github.io/instro/instruments/daq/#keysight-34980a)

```python theme={null}
from instro.daq import InstroDAQ
from instro.daq.drivers import Keysight34980A

daq = InstroDAQ(
    name="keysightDAQ",
    driver=Keysight34980A("TCPIP0::<IP_ADDRESS>::INSTR"),
)
```

Parameters and methods specific to [`Keysight34980A`](https://nominal-io.github.io/instro/instruments/daq/#keysight-34980a) can be found in the [SDK](https://nominal-io.github.io/instro/).
