From: Phil Howard Date: Thu, 12 Sep 2019 09:02:32 +0000 (+0100) Subject: Transitional fix for new LTR559 library X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/commitdiff_plain/bca04496c248701cca287451021eed9f3c7389ed?ds=sidebyside Transitional fix for new LTR559 library --- diff --git a/examples/all-in-one-no-pm.py b/examples/all-in-one-no-pm.py index 5486012..6bb6873 100755 --- a/examples/all-in-one-no-pm.py +++ b/examples/all-in-one-no-pm.py @@ -5,7 +5,12 @@ import colorsys import os import sys import ST7735 -import ltr559 +try: + # Transitional fix for breaking change in LTR559 + from ltr559 import LTR559 + ltr559 = LTR559() +except ImportError: + import ltr559 from bme280 import BME280 from enviroplus import gas diff --git a/examples/all-in-one.py b/examples/all-in-one.py index eef99c3..87acc6f 100755 --- a/examples/all-in-one.py +++ b/examples/all-in-one.py @@ -5,7 +5,12 @@ import colorsys import os import sys import ST7735 -import ltr559 +try: + # Transitional fix for breaking change in LTR559 + from ltr559 import LTR559 + ltr559 = LTR559() +except ImportError: + import ltr559 from bme280 import BME280 from pms5003 import PMS5003, ReadTimeoutError as pmsReadTimeoutError diff --git a/examples/light.py b/examples/light.py index 3442fb4..b18a78b 100755 --- a/examples/light.py +++ b/examples/light.py @@ -1,8 +1,14 @@ #!/usr/bin/env python import time -import ltr559 import logging +try: + # Transitional fix for breaking change in LTR559 + from ltr559 import LTR559 + ltr559 = LTR559() +except ImportError: + import ltr559 + logging.basicConfig( format='%(asctime)s.%(msecs)03d %(levelname)-8s %(message)s',