UE9 Ethernet on Linux | LabJack
 

UE9 Ethernet on Linux

3 posts / 0 new
Last post
Raphaël
Raphael's picture
UE9 Ethernet on Linux

Hello,

I want to use a LabJack UE9 with Ethernet on Linux, but how do I configure the IP address ? It seems that LJControlPanel is not available on Linux.

Thanks for your help!

LabJack Support
labjack support's picture
We do only support our low

We do only support our low level Exodriver on Linux:

https://labjack.com/support/software/installers/exodriver

You would set a new IP using the low level CommConfig function and if you use DHCP you could discover the device using the DiscoveryUDP function:

https://labjack.com/support/datasheets/ue9/low-level-function-reference/...

Raphaël
Raphael's picture
Thanks for your reply!

Thanks for your reply!

I changed the IP address using the CommConfig function as you mentionned. Here is the code, if it helps somebody:

import ue9 labjack = ue9.UE9() labjack.commConfig(IPAddress="192.168.0.4", Gateway="192.168.0.1")

Don't forget to power cycle the LabJack, you can display the configuration like so:

print(labjack.commConfig())