Skip to main content

Python bindings to d2xx and libftdi to access FT232 chips with the same interface as pyserial. Using this method gives easy access to the additional features on the chip like CBUS GPIO.

Project description

# pyft232

This module provides a simple Serial-Like interface to FT232 chips while still
allowing access to the CBUS pins for controlling simple signals.

Ctypes is used to interface with either FTDI's d2xx library (when available)
or libftdi. In this way this package works on both Windows and Linux (and other
libftdi supported OS's) without needing to mess with the FTDI drivers on windows.

In contrast, pyftdi is more feature rich and also cross platform but requires
special drivers on windows so you can't also use the FTDI chip as a pure
COM port.


## Usage

```python
import ft232

try:
sp = ft232.Ft232(serial, baudrate=115200)
except ft232.Ft232Exception:
print("Unable to open the ftdi device: %s" % serial)
sys.exit(1)

#You may use sp as you would a Serial object
sp.writeline("Hello World!\n")
resp = sp.read(100)

#If you want to use the CBUS pins, you enable them with cbus_setup
# 'mask' is a bitmask which specifies which pins to enable
# 'init' is a bitmask for the initial value for each pin
sp.cbus_setup(mask=3, init=3)

#Change the current value of all setup pins
sp.cbus_write(2)

```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyft232-0.5.tar.gz (15.5 kB view details)

Uploaded Source

File details

Details for the file pyft232-0.5.tar.gz.

File metadata

  • Download URL: pyft232-0.5.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyft232-0.5.tar.gz
Algorithm Hash digest
SHA256 f6a46467b0cf7e55eaea1da3de3489f20530e97b1f1ac72b4527600622b4e686
MD5 93e870011d5dd9ced4448e90c39b82f5
BLAKE2b-256 df1230404905810083fd53f88e4b6a14f623fefe95ab524c13dbb311a474578c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page