Forum >Plantower PM2.5 Sensor

Plantower PM2.5 Sensor

userHead Stanley.Parker 2025-02-13 01:34:17 619 Views2 Replies

hi,
I am trying to connect a plantower Pm2.5 sensor (PMS5003) to my Firebeetle ESP32 v
I cannot get a reading from it

2025-02-13 10:15:37

/*!
* MindPlus
* firebeetleesp32
*
*/
#include "DFRobot_AirQualitySensor.h"

DFRobot_AirQualitySensor_I2C particle(&Wire, 0x19);


void setup() {
Serial.begin(9600);
while(!particle.begin())
{
 delay(500);
}
}
void loop() {
Serial.println((particle.gainParticleConcentration_ugm3(PARTICLE_PM2_5_STANDARD)));
}
You can try like this. I hope this can help you.

userHeadPic sun.haihui
2025-02-13 01:42:55

Sorry some of the text got cut off in the main post, the firebeetle is a DFR0478,
I am looking for code that I can use to get readings from the sensor and test it is working,
Thank you

userHeadPic Stanley.Parker