forked from awendt/pyrelacs
17 lines
317 B
Python
17 lines
317 B
Python
import uldaq
|
|
from IPython import embed
|
|
import typer
|
|
|
|
class Output_daq():
|
|
def __init__(self) -> None:
|
|
devices = uldaq.get_daq_device_inventory(uldaq.InterfaceType.USB)
|
|
daq_device = uldaq.DaqDevice(devices[0])
|
|
daq_device.connect()
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
daq_input = Input_daq()
|
|
|