forked from labjack/LabJackPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
83 lines (62 loc) · 1.96 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
LabJackPython: Cross-platform (Windows, Linux, Mac OS X) Python modules and
examples for the LabJack U3, U6, UE9 and U12.
01/23/2019
LabJackPython requires Python 2.6, 2.7 or 3.x. Please report bugs to
[email protected] or on GitHub:
https://github.com/labjack/LabJackPython
To use Modbus first check that your LabJack device meets the minimum required
firmware version listed on this page:
https://labjack.com/support/software/api/modbus/ud-modbus
To upgrade firmware look at this page:
https://labjack.com/support/firmware
To use Modbus on a UE9 over Ethernet, install Comm firmware 1.50 or higher.
To install LabJackPython, run the following command in a terminal (remove "sudo"
on Windows):
$ sudo python setup.py install
If there are multiple versions Python installed, run the install command with
the Python version you want to install to. For example, on Linux if both
Python 2.7 and 3.5 are installed, you can install to Python 3.5 with:
$ sudo python3.5 setup.py install
From there, interacting with your devices is easy.
For U3:
>>> import u3
>>> d = u3.U3()
>>> d.configU3()
{'BootloaderVersion': '0.27',
'CIODirection': 0,
...,
}
>>> d.close()
For U6:
>>> import u6
>>> d = u6.U6()
>>> d.configU6()
{'BootloaderVersion': '6.15',
'FirmwareVersion': '0.88',
...,
}
>>> d.close()
For UE9:
>>> import ue9
>>> d = ue9.UE9()
>>> d.commConfig()
{'IPAddress' : '192.168.1.209'
...,
}
>>> d.close()
For U12:
>>> import u12
>>> d = u12.U12()
>>> d.eAnalogIn(0)
{'overVoltage': 0,
'idnum': 0,
'voltage': 1.42578125
}
>>> d.close()
For examples, check the Examples directory. For additional information, go to
the LabJackPython page on LabJack's website:
https://labjack.com/support/software/examples/ud/labjackpython
LICENSE
All LabJackPython library and example source code are licensed under MIT X11.
The license can be found in the LICENSE file.