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