LabjackU3-Digitimer | LabJack
 

LabjackU3-Digitimer

2 posts / 0 new
Last post
S
s.thie's picture
LabjackU3-Digitimer

Hello everyone, 

How can I control the DB15 pins of the Labjack U3-LV with Matlab? What are the addresses?
Does anyone have an example code for me?

 

 

LabJack Support
labjack support's picture
You can see the pin numbers

You can see the pin numbers defined here:

https://labjack.com/support/datasheets/u3/hardware-description/dio

https://labjack.com/support/datasheets/u3/hardware-description/db15

0-7    FIO0-FIO7
8-15   EIO0-EIO7
16-19  CIO0-CIO3

For Windows, the code to work with digital I/O is documented here:

https://labjack.com/support/datasheets/u3/high-level-driver/example-pseu...

https://labjack.com/support/datasheets/u3/high-level-driver/example-pseu...

So to set EIO1 to output-low, you might do:

eDO(lngHandle, 9, 0);