--- /dev/null
+#!/usr/bin/env python
+
+import time
+from envirophatplus import gas
+
+
+print("""gas.py - Print readings from the MICS6812 Gas sensor.
+
+Press Ctrl+C to exit!
+
+""")
+
+try:
+ while True:
+ readings = gas.read_all()
+ print(readings)
+ time.sleep(1.0)
+except KeyboardInterrupt:
+ pass
--- /dev/null
+#!/usr/bin/env python
+
+import time
+import ltr559
+
+
+print("""light.py - Print readings from the LTR559 Light & Proximity sensor.
+
+Press Ctrl+C to exit!
+
+""")
+
+try:
+ while True:
+ lux = ltr559.get_lux()
+ prox = ltr559.get_proximity()
+ print("""Light: {:05.02f} Lux
+Proximity: {:05.02f}
+""".format(lux, prox))
+ time.sleep(1.0)
+except KeyboardInterrupt:
+ pass
--- /dev/null
+#!/usr/bin/env python
+
+import time
+from pms5003 import PMS5003
+
+
+print("""particles.py - Print readings from the PM5003 Particle sensor.
+
+Press Ctrl+C to exit!
+
+""")
+
+pms5003 = PMS5003()
+time.sleep(1.0)
+
+
+try:
+ while True:
+ readings = pms5003.read()
+ print(readings)
+ time.sleep(1.0)
+except KeyboardInterrupt:
+ pass