From fe52399c9c638328e3c82533e4687128cad97218 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 6 Feb 2020 15:30:50 -0500 Subject: [PATCH 1/2] Make the bubble 'rise' like the real thing would. --- examples/clue_spirit_level.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/clue_spirit_level.py b/examples/clue_spirit_level.py index 80c6a1f..1ab2eb0 100755 --- a/examples/clue_spirit_level.py +++ b/examples/clue_spirit_level.py @@ -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) From 128bf8cf1e53b0368be1a121111f543d8d8b8ec5 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 6 Feb 2020 15:34:21 -0500 Subject: [PATCH 2/2] Add req. and note to README. --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index 663a629..389d6af 100644 --- a/README.rst +++ b/README.rst @@ -29,11 +29,14 @@ This driver depends on: * `Adafruit BMP280 `_ * `Adafruit SHT31D `_ * `Adafruit NeoPixel `_ +* `Adafruit Display Text `_ Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading `the Adafruit library and driver bundle `_. +Demos may require libraries not listed here. + Installing from PyPI ===================== .. note:: This library is not available on PyPI yet. Install documentation is included