Skip to content

Commit 1c80547

Browse files
committedApr 13, 2011
Updated files for tagged release.
1 parent 0a69701 commit 1c80547

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed
 

‎ChangeLog.txt

+15-1
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,18 @@ Version History
133133
- Updated streamTest-threading.py to use streamData() and be less confusing.
134134
- Added a work-around for UE9s and Transaction IDs 64768 and 64769
135135
- 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.

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from distutils.core import setup
22
setup(name='LabJackPython',
3-
version='9-20-2010',
3+
version='4-13-2011',
44
description='The LabJack python module.',
55
url='http://www.labjack.com/support/labjackpython',
66
author='The LabJack crew',

‎src/LabJackPython.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import atexit # For auto-closing devices
2020
import threading # For a thread-safe device lock
2121

22-
LABJACKPYTHON_VERSION = "9-20-2010"
22+
LABJACKPYTHON_VERSION = "4-13-2011"
2323

2424
SOCKET_TIMEOUT = 3
2525
LJSOCKET_TIMEOUT = 62

0 commit comments

Comments
 (0)
Failed to load comments.