Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ This driver depends on:
* `Adafruit BMP280 <https://github.com/adafruit/Adafruit_CircuitPython_BMP280>`_
* `Adafruit SHT31D <https://github.com/adafruit/Adafruit_CircuitPython_SHT31D>`_
* `Adafruit NeoPixel <https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel>`_
* `Adafruit Display Text <https://github.com/adafruit/Adafruit_CircuitPython_Display_Text>`_

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://circuitpython.org/libraries>`_.

Demos may require libraries not listed here.

Installing from PyPI
=====================
.. note:: This library is not available on PyPI yet. Install documentation is included
Expand Down
4 changes: 2 additions & 2 deletions examples/clue_spirit_level.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@

while True:
x, y, _ = clue.acceleration
bubble_group.x = int(x * 10)
bubble_group.y = int(y * 10)
bubble_group.x = int(x * -10)
bubble_group.y = int(y * -10)