Skip to content

melloa/pylibft260

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pyLibFT260 - Python Wrapper for FT260

Currently a work-in-progress and untested!

Requirements

LibFT260 - This is a free download from FTDI found here and the DLL should be placed in the root directory of this library. Alternatively, you can specify a path in your code if you have LibFT260 in a different location.

Usage

Example application to talk to a device on address 0x30

from ft260 import FT260

TARGET_ADDRESS = 0x30

device = FT260()
device.open()
address_on_bus = device.i2c.scan()
if TARGET_ADDRESS in address_on_bus:
    device.i2c.write(TARGET_ADDRESS, length=2)

About

Python wrapper for LibFT260

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages