Expand test coverage, bugfix
[EVA-2020-02-2.git] / examples / particulates.py
... / ...
CommitLineData
1#!/usr/bin/env python
2
3import time
4from pms5003 import PMS5003, ReadTimeoutError
5
6print("""particulates.py - Print readings from the PMS5003 particulate sensor.
7
8Press Ctrl+C to exit!
9
10""")
11
12pms5003 = PMS5003()
13time.sleep(1.0)
14
15try:
16 while True:
17 try:
18 readings = pms5003.read()
19 print(readings)
20 time.sleep(1.0)
21 except ReadTimeoutError:
22 pms5003 = PMS5003()
23except KeyboardInterrupt:
24 pass