3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -133,4 +133,18 @@ Version History
133
133
- Updated streamTest-threading.py to use streamData() and be less confusing.
134
134
- Added a work-around for UE9s and Transaction IDs 64768 and 64769
135
135
- Various improvements to skymote support, including spontaneous data.
136
- - Fixed a bug in U12.py's eDigitalOut
136
+ - Fixed a bug in U12.py's eDigitalOut.
137
+ - April 13, 2011
138
+ - Added AddressByte to i2c function in ue9.py.
139
+ - Added better support for special channels in streaming.
140
+ - Fixed a typo in SetNetworkPassword.
141
+ - Added a function for pulling a big chuck of commands into individual packets.
142
+ - Added how to parse a spontaneous data packet to Modbus.py.
143
+ - Fixed no U12 connected problems.
144
+ - Fixed ListAll for SkyMotes. Moved from serial number to MAC Address for SkyMotes.
145
+ - Fixed some errors relating to SkyMote devices on Windows.
146
+ - Added U3 timer mode 14 support.
147
+ - Fixed getting calibration constants for U3s with hardware revisions < 1.30.
148
+ - Fixed UE9 Modbus over TCP on Windows.
149
+ - Added DAC and EEPROM address variables to LJTickDAC example.
150
+ - Turned off debugging by default in U12 class.
Original file line number Diff line number Diff line change 1
1
from distutils .core import setup
2
2
setup (name = 'LabJackPython' ,
3
- version = '9-20-2010 ' ,
3
+ version = '4-13-2011 ' ,
4
4
description = 'The LabJack python module.' ,
5
5
url = 'http://www.labjack.com/support/labjackpython' ,
6
6
author = 'The LabJack crew' ,
Original file line number Diff line number Diff line change 19
19
import atexit # For auto-closing devices
20
20
import threading # For a thread-safe device lock
21
21
22
- LABJACKPYTHON_VERSION = "9-20-2010 "
22
+ LABJACKPYTHON_VERSION = "4-13-2011 "
23
23
24
24
SOCKET_TIMEOUT = 3
25
25
LJSOCKET_TIMEOUT = 62
0 commit comments