Skip to content

Commit 2e5aedf

Browse files
authored
Merge pull request #9 from kattni/fix-up
Update version info, README
2 parents 893c5ec + dca1bb7 commit 2e5aedf

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

README.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,30 @@ Please ensure all dependencies are available on the CircuitPython filesystem.
2828
This is easily achieved by downloading
2929
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.
3030

31+
Installing from PyPI
32+
=====================
33+
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
34+
PyPI <https://pypi.org/project/adafruit-circuitpython-thermistor/>`_. To install for current user:
35+
36+
.. code-block:: shell
37+
38+
pip3 install adafruit-circuitpython-thermistor
39+
40+
To install system-wide (this may be required in some cases):
41+
42+
.. code-block:: shell
43+
44+
sudo pip3 install adafruit-circuitpython-thermistor
45+
46+
To install in a virtual environment in your current project:
47+
48+
.. code-block:: shell
49+
50+
mkdir project-name && cd project-name
51+
python3 -m venv .env
52+
source .env/bin/activate
53+
pip3 install adafruit-circuitpython-thermistor
54+
3155
Usage Example
3256
=============
3357

adafruit_thermistor.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_thermistor` - Read temperature with a thermistor
23+
`adafruit_thermistor`
2424
===========================================================
2525
2626
A thermistor is a resistor that varies with temperature. This driver takes the
@@ -57,6 +57,10 @@
5757
import math
5858
import analogio
5959

60+
__version__ = "0.0.0-auto.0"
61+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Thermistor.git"
62+
63+
6064
class Thermistor:
6165
"""Thermistor driver"""
6266

0 commit comments

Comments
 (0)