Skip to content

Releases: adafruit/Adafruit_CircuitPython_BusDevice

Minor fixes

07 Aug 22:09
442431b
Compare
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
Compare
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
Compare
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
Compare
Choose a tag to compare

from March updates.

Added an examples folder and two example .py files.

18 Jan 18:22
eb7720b
Compare
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
Compare
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
Compare
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.

2.0 Release for CircuitPython 2.x

10 Nov 20:52
Compare
Choose a tag to compare

2.0 Release with binaries for CircuitPython 2.x. This also includes the latest change to modify I2C read_into to be readinto and is needed to work with updated drivers. Note that this might not work with CircuitPython 3.0+ releases!

Doc updates

06 Sep 01:38
Compare
Choose a tag to compare

Update the docs to correct examples.

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.

Read the docs for info on how to use it.

0.3.0

10 Apr 23:54
Compare
Choose a tag to compare

This requires CircuitPython 0.9.4+!

  • Add option to clock SPI after a transaction.
  • Switch to new BusDevice API.
  • Switch to nativeio split APIs.