Releases: adafruit/Adafruit_CircuitPython_Thermistor
Now on PyPi!
- Added
setup.py - Added PyPI release info to
.travis.yml - Updated
requirements.txt - Added a more comprehensive
.gitignore
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-thermistor.
Read the docs for info on how to use it.
More doc refinement
Thanks to @sommersoft for the documentation refinement.
To use in CircuitPython, download the .mpy file and copy it to the lib folder on the CIRCUITPY drive. Or, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Sphinx update.
Thanks to @brentru for the great work!
Added an examples folder and an example .py file.
To use in CircuitPython, simply install the Adafruit CircuitPython bundle or the zip from here that matches the version of CircuitPython you are using.
Added examples/display_temperature.py to project
Updated with lint and autobundling!
Thanks to @tannewt for the great work!
2.1.0 release supports both high and low side wiring
Change to add high_side boolean to initializer. This defaults to true and keeps the old behavior of the library which assumes a high side connection (thermistor from ADC input up to high logic/5 or 3.3 volts). However if high_side is set to false the logic changes appropriately so a low side connected thermistor (ADC input down to ground) works correctly too. No functional change for current library users--the default high side parameter will behave exactly as before.
2.0.0 release for CircuitPython 2.0+
This is a new release to trigger mpy generation with CircuitPython 2.0+ compatible mpy files. No functional change to the code.
0.2.0 - analogio
This requires CircuitPython 0.9.4+!
- Switch to
nativeiosplit APIs.
Second release for CircuitPython 0.9.4
Second release for TravisCI generation. Requires CircuitPython 0.9.4!
0.1 - Initial Release
Driver works. :-)