> ## 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.

# AlicatMC

> A driver for [`InstroFlowController`](/flowcontroller)

<Card title="Alicat MC" horizontal href="/flowcontroller/AlicatMC">
  <img src="https://mintcdn.com/nominal/vd1fIohbHX0IE-nH/snippets/drivers/flowcontroller/alicat-mc/image.png?fit=max&auto=format&n=vd1fIohbHX0IE-nH&q=85&s=eb939602ccd884183e7dca3eba53ff9a" style={{ width: "100%", height: "100px", objectFit: "contain" }} noZoom alt="Alicat MC" width="500" height="141" data-path="snippets/drivers/flowcontroller/alicat-mc/image.png" />
</Card>

The [`AlicatMC`](https://nominal-io.github.io/instro/instruments/flowcontroller/#alicat-mc-series) provides a driver that can be used to instantiate an [InstroFlowController](/flowcontroller).

## Creating an [`InstroFlowController`](/flowcontroller) with [`AlicatMC`](https://nominal-io.github.io/instro/instruments/flowcontroller/#alicat-mc-series)

```python theme={null}
from instro.unstable.flowcontroller.drivers import AlicatMC
from instro.unstable.flowcontroller import InstroFlowController
from instro.lib.transports import SerialConfig, TerminatorConfig, VisaConfig

fc = InstroFlowController(
    name="myFlowController",
    driver=AlicatMC(
        VisaConfig(
            visa_resource="<visa_resource>",
            serial_config=SerialConfig(baud_rate=19200),
            terminator=TerminatorConfig(read="\r", write="\r"),
        ),
        device_id="M",
    ),
)
```

Parameters and methods specific to [`AlicatMC`](https://nominal-io.github.io/instro/instruments/flowcontroller/#alicat-mc-series) can be found in the [SDK](https://nominal-io.github.io/instro/).
