Skip to content

2.0.18

Compare
Choose a tag to compare
@brentru brentru released this 31 Dec 14:21
· 150 commits to master since this release
19f8cea
  • Breaking Change: Updated keyword argument order within method send_location_data(). Specifically, value has been moved to the end of the call and is optional.

Previous function calls:
ioClient.send_location_data(locationFeed.key, value, lat, lon, ele)

New function calls:
ioClient.send_location_data(locationFeed.key, lat, lon, ele, value)

Example of send_location_data() usage

Other release notes:

  • Added descriptive docstrings to methods in client.py for Sphinx/ReadTheDocs.
  • Slowed down TravisCI tests to avoid throttling.
  • Updated location examples to reflect breaking change to send_location_data

To use in CPython, pip3 install adafruit-io.

Read the docs for info on how to use it.