X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/blobdiff_plain/11b94e2cdea2bf33bb3c1c2143d938d4f2be0767..e9c93677beeb6c6416d8f15aa2bd29ce3cd4b726:/examples/gas.py?ds=inline diff --git a/examples/gas.py b/examples/gas.py index faf6eac..5d72cb9 100755 --- a/examples/gas.py +++ b/examples/gas.py @@ -1,9 +1,15 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import time from enviroplus import gas +import logging -print("""gas.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("""gas.py - Print readings from the MICS6814 Gas sensor. Press Ctrl+C to exit! @@ -12,7 +18,7 @@ Press Ctrl+C to exit! try: while True: readings = gas.read_all() - print(readings) + logging.info(readings) time.sleep(1.0) except KeyboardInterrupt: pass