projects
/
EVA-2020-02-2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Transitional fix for new LTR559 library
[EVA-2020-02-2.git]
/
examples
/
all-in-one.py
diff --git
a/examples/all-in-one.py
b/examples/all-in-one.py
index eef99c36b7eea36846073685af9f371823e5642b..87acc6fd8fbf09e4f5ebd9fd72a90ec2b674f3dc 100755
(executable)
--- 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 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
from bme280 import BME280
from pms5003 import PMS5003, ReadTimeoutError as pmsReadTimeoutError