X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02-2.git/blobdiff_plain/b17f34b42aa5e6ca959d8f3d748012c87d4d8999..786bc3cb264e05b9d254e4dbb02eb6bb717095f6:/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