X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/blobdiff_plain/a155e335d1f16716fe7c8a80491773a450c10fed..27156d25c1b1c310a64f31ba9f22aaf27569c4fd:/examples/particulates.py diff --git a/examples/particulates.py b/examples/particulates.py index 99803ec..e71ca5d 100755 --- a/examples/particulates.py +++ b/examples/particulates.py @@ -1,7 +1,7 @@ #!/usr/bin/env python import time -from pms5003 import PMS5003 +from pms5003 import PMS5003, ReadTimeoutError print("""particulates.py - Print readings from the PMS5003 particulate sensor. @@ -14,8 +14,11 @@ time.sleep(1.0) try: while True: - readings = pms5003.read() - print(readings) - time.sleep(1.0) + try: + readings = pms5003.read() + print(readings) + time.sleep(1.0) + except ReadTimeoutError: + pms5003 = PMS5003() except KeyboardInterrupt: pass