Alicat MC

AlicatMC provides a driver that can be used to instantiate an InstroFlowController.
Creating an InstroFlowController with AlicatMC
AlicatMC can be found in the SDK.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A driver for InstroFlowController

AlicatMC provides a driver that can be used to instantiate an InstroFlowController.
InstroFlowController with AlicatMCfrom 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",
),
)
AlicatMC can be found in the SDK.Was this page helpful?