X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/blobdiff_plain/a73ee7811dc8302651b4a2eb324431ff5dd4ea1e..a1a12d7adabe5fd7dfb5710596fb44cb17dcf062:/examples/adc.py diff --git a/examples/adc.py b/examples/adc.py index c4cf45c..a345d23 100755 --- a/examples/adc.py +++ b/examples/adc.py @@ -1,9 +1,15 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import time from enviroplus import gas +import logging -print("""adc.py - Print readings from the MICS6814 Gas sensor. +logging.basicConfig( + format='%(asctime)s.%(msecs)03d %(levelname)-8s %(message)s', + level=logging.INFO, + datefmt='%Y-%m-%d %H:%M:%S') + +logging.info("""adc.py - Print readings from the MICS6814 Gas sensor. Press Ctrl+C to exit! @@ -15,7 +21,7 @@ gas.set_adc_gain(4.096) try: while True: readings = gas.read_all() - print(readings) + logging.info(readings) time.sleep(1.0) except KeyboardInterrupt: pass