Raspberry Pi 4
Power supply
PM SDS011 Laser Air Quality monitor. I bought this one: https://es.aliexpress.com/item/1005005970932495.html
Removable USB stick to store the data
Install Raspberry Pi OS:
Set Up Network and SSH:
/etc/wpa_supplicant/wpa_supplicant.conf (if headless).Select Interface Options > SSH > Enable.
```bash
sudo raspi-config
```
Update your system:
sudo apt update && sudo apt upgrade -y
Install required dependencies:
sudo apt install python3 python3-pip python3-venv git -y
Create a project directory:
mkdir ~/py-sds011 && cd ~/py-sds011
Set up a virtual environment:
python3 -m venv myenv
source myenv/bin/activate
Install required Python packages inside the virtual environment:
pip install flask chart-studio sds011 psutil