4 Designed for environmental monitoring, Enviro+ lets you measure air
5 quality (pollutant gases and particulates), temperature, pressure,
6 humidity, light, and noise level. Learn more -
7 https://shop.pimoroni.com/products/enviro-plus
9 |Build Status| |Coverage Status| |PyPi Package| |Python Versions|
14 You're best using the "One-line" install method if you want all of the
15 UART serial configuration for the PMS5003 particulate matter sensor to
18 One-line (Installs from GitHub)
19 -------------------------------
23 curl -sSL https://get.pimoroni.com/enviroplus | bash
25 **Note** report issues with one-line installer here:
26 https://github.com/pimoroni/get
28 Or... Install and configure dependencies from GitHub:
29 -----------------------------------------------------
31 - ``git clone https://github.com/pimoroni/enviroplus-python``
32 - ``cd enviroplus-python``
33 - ``sudo ./install.sh``
35 **Note** Raspbian Lite users may first need to install git:
36 ``sudo apt install git``
38 Or... Install from PyPi and configure manually:
39 -----------------------------------------------
41 - Run ``sudo pip install enviroplus``
43 **Note** this wont perform any of the required configuration changes on
44 your Pi, you may additionally need to:
46 - Enable i2c: ``raspi-config nonint do_i2c 0``
47 - Enable SPI: ``raspi-config nonint do_spi 0``
49 And if you're using a PMS5003 sensor you will need to:
52 ``raspi-config nonint set_config_var enable_uart 1 /boot/config.txt``
53 - Disable serial terminal: ``sudo raspi-config nonint do_serial 1``
54 - Add ``dtoverlay=pi3-miniuart-bt`` to your ``/boot/config.txt``
56 And install additional dependencies:
60 sudo apt install python-numpy python-smbus python-pil python-setuptools
65 - GPIO Pinout - https://pinout.xyz/pinout/enviro\_plus
66 - Support forums - http://forums.pimoroni.com/c/support
67 - Discord - https://discord.gg/hr93ByC
69 .. |Build Status| image:: https://travis-ci.com/pimoroni/enviroplus-python.svg?branch=master
70 :target: https://travis-ci.com/pimoroni/enviroplus-python
71 .. |Coverage Status| image:: https://coveralls.io/repos/github/pimoroni/enviroplus-python/badge.svg?branch=master
72 :target: https://coveralls.io/github/pimoroni/enviroplus-python?branch=master
73 .. |PyPi Package| image:: https://img.shields.io/pypi/v/enviroplus.svg
74 :target: https://pypi.python.org/pypi/enviroplus
75 .. |Python Versions| image:: https://img.shields.io/pypi/pyversions/enviroplus.svg
76 :target: https://pypi.python.org/pypi/enviroplus
81 * Fix "self.noise_floor" bug in get_noise_profile
86 * Add support for extra ADC channel in Gas
87 * Handle breaking change in new ltr559 library
88 * Add Noise functionality