2.0.18
- 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.