Using devices

Using devices#

TODO#

todo

Sensors#

AHT20 Libraries#

TODO: these notes are incorrect, but could serve as a useful template for a device reference.

The main module for this sensor is provided by Seeed in this Github repository and can be installed with the grove.py library.

Follow official Step by step installation for python 3 (see below). Don’t use the one-click installation or it will install to the wrong location

git clone [https://github.com/Seeed-Studio/grove.py](https://github.com/Seeed-Studio/grove.py)
cd grove.py
sudo pip3 install .

Alternatively, it’s also possible to use Adafruit’s adafruit-circuitpython-ahtx0 library to communicate with the sensor (see library’s Pypi page). However, to instantiate the provided sensor class, you will need to pass it an I2C bus instance. To instantiate an I2C bus instance, install and use the adafruit-extended-bus library (see Pypi page).