Copyright (c) Peter Bingham (petersbingham@hotmail.co.uk)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Known Limitations and Assumptions
- Written and Tested in Python 2.7 and 3.5.
- 4 and 8 relay boards do not handle connection to multiple devices. Connects to first found Denkovi.
- Not thread safe.
- Possible race conditions with device plugging.
- Uses a VCP delay of 50ms. Documentation specifies 5ms but was still seeing corruption at 20ms. Could be improved for the gets by doing an initial sync and then keeping track of the states in the class.
Help
- Install using "python setup.py install" in this directory at thecommand line.
- Both installions require serial module. The Linux version requires pylibftdi. For Windows FTD2XX.dll will need to be in your path; you can get this by allowing windows to download and install the drivers for the board.
- Usage is pretty simple. Have a look at the examples and test code in the "Example & Test" folder. Look at the dae_RelayBoard file to see the interface functions.
- To run "Example & Test\example16.py", for example, set the com port in the file and then open a cmd and cd into "Example & Test" folder and type "python example16.py".
- For the case of multiple FTDI devices (4 & 8 relay boards) add a #num to the end of the, otherwise optional, deviceID (eg type4#3). num is zero indexed. See following example:
import dae_RelayBoard
dr = dae_RelayBoard.DAE_RelayBoard("type4")
dr.initialise("DAE#1") # initialise second board
Change Log
- 1.5.2 - Fix FT_handle type to match FTD2XX DLL library.
- 1.5.1 - Correctly shuts down FTDI on Linux.
- 1.5.0 - Adds ability to select from multiple FTDI devices.
- 1.4.0 - Adds Python 3 support.
- 1.3.2 - Uses case insensitive for the serial number comparison.
- 1.3.1 - Fixes premature return when trying to discover first device.
- 1.3 - setup.py package installer added.
- 1.2 - Linux support added.
- 1.1 - Fixed serial not being flagged as close on disconnect and failure to ensure disconnection on a reconnect.