Skip to main content

Python I2C library supporting multiple driver implementations

Project description

Python I2C library supporting multiple driver implementations

Introduction

I2C is a two-wire protocol for communicating between devices. At the physical level it consists of 2 wires: SCL and SDA, the clock and data lines respectively.

I2C objects are created attached to a specific bus. They can be initialized when created, or initialized later on.

This library is designed to support different I2C driver implementations. It’s interface is similar to MicroPython’s machine.I2C as well as CircuitPython’s board.I2C classes.

Example usage:

from i2cpy import I2C

i2c = I2C()                      # create I2C peripheral

i2c.writeto(42, b'123')          # write 3 bytes to peripheral with 7-bit address 42
i2c.readfrom(42, 4)              # read 4 bytes from peripheral with 7-bit address 42

i2c.readfrom_mem(42, 8, 3)       # read 3 bytes from memory of peripheral 42,
                                 #   starting at memory address 8 in the peripheral
i2c.writeto_mem(42, 2, b'\x10')  # write 1 byte to memory of peripheral 42,
                                 #   starting at memory address 2 in the peripheral

Class I2C

Constructor

I2C.__init__(*, id=None, driver=None, freq=400000, auto_init=True, **kwargs)

Constructor.

  • Parameters:
    • id (Union[int, str, None]) – Identifies a particular I2C peripheral. Allowed values depend on the particular driver implementation.
    • freq (int) – I2C bus baudrate, defaults to 400000
    • driver (Optional[str]) – I2C driver name. It corresponds to the I2C driver sub module name shipped with this library. For example “foo” means module “i2cpy.driver.foo”. If not specified, it looks at environment variable “I2CPY_DRIVER”. And if that’s not defined or empty, it finally falls back to “ch341”.
    • auto_init (bool) – Call init() on object initialization, defaults to True

General methods

I2C.init()

Initialize the I2C bus.

I2C.deinit()

Close the I2C bus.

I2C.scan(start=8, stop=119)

Scan all I2C addresses between start and stop inclusive and return a list of those that respond. A device responds if it pulls the SDA line low after its address (including a write bit) is sent on the bus.

  • Parameters:
    • start (int) – start address, defaults to 0x08
    • stop (int) – stop address, defaults to 0x77
  • Return type: List[int]
  • Returns: a list of addresses that respond to scan

Standard bus operations

I2C.writeto(addr, buf, /)

Write the bytes from buf to the peripheral specified by addr.

  • Parameters:
    • addr (int | Buffer) – I2C peripheral deivce address
    • buf (Buffer) – bytes to write

I2C.readfrom(addr, nbytes, /)

Read nbytes from the peripheral specified by addr.

  • Parameters:
    • addr (int | Buffer) – I2C peripheral device address
    • nbytes (int) – number of bytes to read
  • Return type: bytes
  • Returns: the bytes read

Memory operations

I2C.writeto_mem(addr, memaddr, buf, *, addrsize=8)

Write buf to the peripheral specified by addr starting from the memory address specified by memaddr.

  • Parameters:
    • addr (int | Buffer) – I2C peripheral device address
    • memaddr (int | Buffer) – memory address
    • buf (Buffer) – bytes to write
    • addrsize (int) – _description_, defaults to 8

I2C.readfrom_mem(addr, memaddr, nbytes, *, addrsize=8)

Read nbytes from the peripheral specified by addr starting from the memory address specified by memaddr.

  • Parameters:
    • addr (int | Buffer) – I2C peripheral device address
    • memaddr (int | Buffer) – memory address
    • nbytes (int) – number of bytes to read
    • addrsize (int) – _description_, defaults to 8
  • Return type: bytes
  • Returns: the bytes read

I2C.readfrom_mem_into(addr, memaddr, buf, *, addrsize=8)

Read into buf from the peripheral specified by addr starting from the memory address specified by memaddr. The number of bytes read is the length of buf.

  • Parameters:
    • addr (int | Buffer) – I2C peripheral device address
    • memaddr (int | Buffer) – memory address
    • buf (bytearray) – buffer to store the bytes read
    • addrsize (int) – _description_, defaults to 8

Supported I2C drivers

ch341

The CH341 series chip (like CH341A) is USB bus converter which converts USB to UART, parallel port, and common synchronous serial communication interfaces (I2C, SPI). The chip is manufactured by the company Qinheng Microelectronics.

The ch341 driver shipped with this library is a Python interface to CH341’s official DLLs.

You need the driver DLL files, which are downloadable from Qinheng’s website.

Windows: https://www.wch-ic.com/downloads/CH341PAR_ZIP.html

On Windows it’s recommended to place them under Windows System32 folder. Or if you place them under a different directory, you can add that directory to PATH environment variable.

Linux: https://www.wch-ic.com/downloads/CH341PAR_LINUX_ZIP.html

On Linux you need to build the kernel module from source under the downloaded zipball’s driver sub-directory like,

$ cd driver
$ sudo make && sudo make install

Also you need to either place the libch347.so file for your platform to system supported path like /usr/local/lib, or you make the so file loadable by adding its directory to LD_LIBRARY_PATH environment variable.

MacOS: https://www.wch-ic.com/download/CH341SER_MAC_ZIP.html

I don’t use this library on Mac myself. But let me know if it does not work, and I can give it a try on Mac.

Example usage:

from i2cpy import I2C

i2c = I2C(driver="ch341")                       # explicitly specify driver

i2c = I2C(0, driver="ch341")                    # override usb id on Windows

i2c = I2C("/dev/ch34x_pis0", driver="ch341")    # override usb device on Linux

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

i2cpy-0.1.0b2.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

i2cpy-0.1.0b2-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file i2cpy-0.1.0b2.tar.gz.

File metadata

  • Download URL: i2cpy-0.1.0b2.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for i2cpy-0.1.0b2.tar.gz
Algorithm Hash digest
SHA256 5ba85a3c3a079584342de5227940a487f5a2ccaedb2d41f4f89ca1013c8f2fac
MD5 5eb7e6dde8458b0d860a787e74f04d3e
BLAKE2b-256 06cb404515fad00554dd916458b0910ecf4f9183ae61a8fce918fb2a484e7d5b

See more details on using hashes here.

File details

Details for the file i2cpy-0.1.0b2-py3-none-any.whl.

File metadata

  • Download URL: i2cpy-0.1.0b2-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for i2cpy-0.1.0b2-py3-none-any.whl
Algorithm Hash digest
SHA256 0684fd2a677a03a06777ddb0b20f1f12a9a6306ead37782737a6d523674729a7
MD5 a6a23b029dd49f86f41b2b04f0e2493c
BLAKE2b-256 11edcac98765ee42abb0e170aed1e6c78b6ab51fde9c91f92d3af7cb19b73503

See more details on using hashes here.

Supported by

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