Skip to main content

smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python

Project description

smbus2

A drop-in replacement for smbus-cffi/smbus-python in pure Python

travis

Introduction

smbus2 is (yet another) pure Python implementation of the python-smbus package.

It was designed from the ground up with two goals in mind:

  1. It should be a drop-in replacement of smbus. The syntax shall be the same.

  2. Use the inherent i2c structs and unions to a greater extent than other pure Python implementations like pysmbus does. By doing so, it will be more feature complete and easier to extend.

Currently supported features are:

  • Get i2c capabilities (I2C_FUNCS)

  • read_byte

  • write_byte

  • read_byte_data

  • write_byte_data

  • read_word_data

  • write_word_data

  • read_i2c_block_data

  • write_i2c_block_data

It is developed on Python 2.7 but works without any modifications in Python 3.X too.

Code examples

smbus2 installs next to smbus as the package, so it’s not really a 100% replacement. You must change the module name.

Example 1a: Read a byte

from smbus2 import SMBus

# Open i2c bus 1 and read one byte from address 80, offset 0
bus = SMBus(1)
b = bus.read_byte_data(80, 0)
print(b)
bus.close()

Example 1b: Read a byte using ‘with’

This is the very same example but safer to use since the smbus will be closed automatically when exiting the with block.

from smbus2 import SMBusWrapper

with SMBusWrapper(1) as bus:
    b = bus.read_byte_data(80, 0)
    print(b)

Example 2: Read a block of data

You can read up to 32 bytes at once.

from smbus2 import SMBusWrapper

with SMBusWrapper(1) as bus:
    # Read a block of 16 bytes from address 80, offset 0
    block = bus.read_i2c_block_data(80, 0, 16)
    # Returned value is a list of 16 bytes
    print(block)

Example 3: Write a byte

from smbus2 import SMBusWrapper

with SMBusWrapper(1) as bus:
    # Write a byte to address 80, offset 0
    data = 45
    bus.write_byte_data(80, 0, data)

Example 4: Write a block of data

It is possible to write 32 bytes at the time, but I have found that error-prone. Write less and add a delay in between if you run into trouble.

from smbus2 import SMBusWrapper

with SMBusWrapper(1) as bus:
    # Write a block of 8 bytes to address 80 from offset 0
    data = [1, 2, 3, 4, 5, 6, 7, 8]
    bus.write_i2c_block_data(80, 0, data)

Installation instructions

smbus2 is pure Python code and requires no compilation. Installation is easy:

python setup.py install

Or just use pip

pip install smbus2

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

smbus2-0.1.5.tar.gz (5.5 kB view details)

Uploaded Source

File details

Details for the file smbus2-0.1.5.tar.gz.

File metadata

  • Download URL: smbus2-0.1.5.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for smbus2-0.1.5.tar.gz
Algorithm Hash digest
SHA256 2b1dbed61bb9e8714b0f1207826e463920aa305474969a80671ecda216863494
MD5 509f68ff20f636502c20b052b84bedee
BLAKE2b-256 dfab17f0a6a6b3ede9d9938d657ff25341c58c139d8547b83bcad70dc6c7f116

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