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
Replaced exception pass with log warning
[EVA-2020-02-2.git]
/
examples
/
light.py
diff --git
a/examples/light.py
b/examples/light.py
index 5700eb1f43fcbc42ccd1eca876375cc6d83fabea..3442fb489d0ac677636255458a2029a9c5511ad7 100755
(executable)
--- a/
examples/light.py
+++ b/
examples/light.py
@@
-2,9
+2,14
@@
import time
import ltr559
import time
import ltr559
+import logging
+logging.basicConfig(
+ format='%(asctime)s.%(msecs)03d %(levelname)-8s %(message)s',
+ level=logging.INFO,
+ datefmt='%Y-%m-%d %H:%M:%S')
-
print
("""light.py - Print readings from the LTR559 Light & Proximity sensor.
+
logging.info
("""light.py - Print readings from the LTR559 Light & Proximity sensor.
Press Ctrl+C to exit!
Press Ctrl+C to exit!
@@
-14,7
+19,7
@@
try:
while True:
lux = ltr559.get_lux()
prox = ltr559.get_proximity()
while True:
lux = ltr559.get_lux()
prox = ltr559.get_proximity()
-
print
("""Light: {:05.02f} Lux
+
logging.info
("""Light: {:05.02f} Lux
Proximity: {:05.02f}
""".format(lux, prox))
time.sleep(1.0)
Proximity: {:05.02f}
""".format(lux, prox))
time.sleep(1.0)