Merge branch 'master' into improved-logging
[EVA-2020-02-2.git] / examples / all-in-one.py
index bfefe7ad4c0824f58514da53d894ec5d0402dcbd..87840901fd5efd3610d2aecbb943ed6c27432d41 100755 (executable)
@@ -14,8 +14,14 @@ from subprocess import PIPE, Popen
 from PIL import Image
 from PIL import ImageDraw
 from PIL import ImageFont
+import logging
 
-print("""all-in-one.py - Displays readings from all of Enviro plus' sensors
+logging.basicConfig(
+    format='%(asctime)s.%(msecs)03d %(levelname)-8s %(message)s',
+    level=logging.INFO,
+    datefmt='%Y-%m-%d %H:%M:%S')
+
+logging.info("""all-in-one.py - Displays readings from all of Enviro plus' sensors
 
 Press Ctrl+C to exit!
 
@@ -64,7 +70,7 @@ def display_text(variable, data, unit):
                - min(values[variable]) + 1) for v in values[variable]]
     # Format the variable name and value
     message = "{}: {:.1f} {}".format(variable[:4], data, unit)
-    print(message)
+    logging.info(message)
     draw.rectangle((0, 0, WIDTH, HEIGHT), (255, 255, 255))
     for i in range(len(colours)):
         # Convert the values to colours from red to blue
@@ -183,7 +189,7 @@ try:
             display_text(variables[mode], data, unit)
 
         if mode == 7:
-            #variable = "pm1"
+            # variable = "pm1"
             unit = "ug/m3"
             try:
                 data = pms5003.read()