Total Phase Aardvark

Aardvark provides a driver that can be used to instantiate an I2CInterface.
Creating an I2CInterface with Aardvark
Aardvark 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 I2CInterface

Aardvark provides a driver that can be used to instantiate an I2CInterface.
I2CInterface with Aardvarkfrom instro.i2c.drivers.totalphase import Aardvark
from instro.i2c import I2CInterface
from instro.i2c.types import SystemDefinition
# Create system definition (see the System Definition page for details)
system = SystemDefinition()
# ... add devices to system definition ...
i2c = I2CInterface(
name="main_i2c",
driver=Aardvark(serial_number="123456"),
system_definition=system,
)
Aardvark can be found in the SDK.Was this page helpful?