Introduction: Arduino Powered Dust Particles Monitoring Station
You can fairly easily build a DIY internet of things device that monitors dust pollution in your home for less than $50 and get notified when the dust level gets too high so you can aerate the room, or you can set it outside and get notified if it's safe to go outside if you live in a highly polluted area.
I made this as a school project, so I didn't have enough time to find a service that will take MQTT messages and send them to you like notifications or emails.
Also note that keeping the sensor powered at all times will reduce the fan's lifetime.
Step 1: Parts Needed
What you'll need
- Arduino Uno
- Arduino Ethernet shield
- Particulate matter laser sensor (usually go for $10-$30 on eBay/aliexpress)
- DHT11 temperature and humidity sensor (optional)
- Breadboard
- Jumper cables
Step 2: Assemble the Parts
First, you need to plug the ethernet shield on the Arduino
The PM sensor has multiple wires, but the ones we need are VCC, GND, TX, RX.
Connect the VCC and GND to + and - on the breadboard respectively.
The Arduino has hardware RX and TX pins, but we'll use software emulation of RX and TX pins on pins 2 and 3 respectively. Plug the RX of the sensor to TX of the Arduino and TX of the sensor to RX of the Arduino.
If you are going to be using the temperature sensor, plug the VCC and GND lines to + and - on the Breadboard and the data line to pin 7.
Step 3: The Code
You can either install MQTT broker on a raspberry pi or a computer you have always on at home, or use a cloud MQTT service, like Cloud MQTT. Then you can write a script that sends the data as HTTP to an IFTT webhook, as they don't yet support MQTT webhooks and set up notifications for when dust levels in your home get too high.
Step 4: Assemble the Box
I just used a box I had lying around and drilled a hole for the sensor to get air from and cut out a hole for the cables to go out (although it was a bit too big).
I used glue pads to attach the sensor to the box, aligning the input hole of the sensor with the drilled hole on the box.
Finally, I plugged in the ethernet and power cables.