Skip to content

Releases: adafruit/Adafruit_CircuitPython_BusDevice

pylint fix

01 Nov 21:34

Choose a tag to compare

No code changes.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-busdevice.

Read the docs for info on how to use it.

Bugfixes for write_then_readinto support on Linux/CircuitPython

19 Aug 20:00
97d4129

Choose a tag to compare

Merge pull request #21 from ladyada/master specifically name arguments now that we require it

Add write_then_readinto function for linux (and possibly others!)

17 Aug 18:23
76bce0d

Choose a tag to compare

Linux (and possibly other smbus-supporting OS's) can't set 'stop' on individual writes, instead, we must call a separate ioctl. We add a check so that if busio doesn't support it, we fall back to two calls instead of one

Minor fixes

07 Aug 22:09
442431b

Choose a tag to compare

  • Added requirements.txt for Sphinx build
  • Added pylint 1.9.2 force install to .travis.yml

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-busdevice.

Read the docs for info on how to use it.

Now on pypi!

28 Jun 20:05
0791964

Choose a tag to compare

Update to install from pypi (using pip.)

To use in CircuitPython, download the .mpy file and copy it to the lib folder on the CIRCUITPY drive. Or, simply install the Adafruit bundle.

To use in CPython, pip install adafruit-circuitpython-busdevice.

Read the docs for info on how to use it.

Allow chip select to be None

22 May 16:59
376a80e

Choose a tag to compare

Merge pull request #17 from cerickson/issue8_spi_nochipselect Made chip_select default to None

Update documentation

03 May 20:20
de2d0d3

Choose a tag to compare

from March updates.

Added an examples folder and two example .py files.

18 Jan 18:22
eb7720b

Choose a tag to compare

Merge pull request #15 from mrmcwethy/examples added examples folder and two example .py

Update doc, build logic, require keywords for optional args in constructor

26 Dec 21:13
9a49ca0

Choose a tag to compare

Merge pull request #12 from tannewt/lint Update to new build process and turn on lint. I tested and showed that the default and overrides are correctly passed to spi.config(). Since I do not have a oscilloscope i cannot say whether the configuration values were acted upon by the busio.SPI, but i did show that the changes to the project were correct.

Remove redundant I2CDevice.read_into method

17 Nov 19:44

Choose a tag to compare

A new method (readinto) was added a while ago to replace the read_into method. The origin read_into method is now being removed.