Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
example.py | 2013-04-23 | 1.9 kB | |
Totals: 1 Item | 1.9 kB | 0 |
ftdidevice is a simple python 3 interface for object oriented access to devices with FTDI chipset using libFTDI library. It mainly consist of two classes. - Ftdi class is static class that find and load libFTDI, than load all functions and perform simple argument checking. You can call all API from libFTDI just like "Ftdi.set_baudrate(..)" Also has a function to list all pluged ftdi devices. - Device class based on Ftdi class. It has object oriented interface for accessing ftdi devices. Not all function from libFTDI are implemented yet. Please see example code for usage or wiki for documentation. Project homepage: http://sourceforge.net/projects/ftdidevice How to install: Just copy whole "device" folder to you project. Then you can than access ftdidevice objects simple by: from device import ftdidevice print(ftdidevice.Ftdi.list_devices()) changelog: version: 0.1.250413 -add constants for bits, stop bits, parity and break types -removed default parameter values for serial_string and description from device.__init__() version: 0.1.220413 -first public release