English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어
PMS3003 is a kind of digital and universal particle concentration sensor,which can be used to obtain the number of suspended particles in the air,i.e.the concentration of particles,and output them in the form of digital interface. This sensor can be inserted into variable instruments related to the concentration of suspended particles in the air or other environmental improvement equipments to provide correct concentration data in time.
LibDriver PMS3003 is a full-featured driver for PMS3003, launched by LibDriver.It provides air quality reading and additional features. LibDriver is MISRA compliant.
/src includes LibDriver PMS3003 source files.
/interface includes LibDriver PMS3003 UART platform independent template.
/test includes LibDriver PMS3003 driver test code and this code can test the chip necessary function simply.
/example includes LibDriver PMS3003 sample code.
/doc includes LibDriver PMS3003 offline document.
/datasheet includes PMS3003 datasheet.
/project includes the common Linux and MCU development board sample code. All projects use the shell script to debug the driver and the detail instruction can be found in each project's README.md.
/misra includes the LibDriver MISRA code scanning results.
Reference /interface UART platform independent template and finish your platform UART driver.
Add the /src directory, the interface driver for your platform, and your own drivers to your project, if you want to use the default example drivers, add the /example directory to your project.
You can refer to the examples in the /example directory to complete your own driver. If you want to use the default programming examples, here's how to use them.
#include "driver_pms3003_basic.h"
uint8_t res;
uint32_t i;
/* init */
res = pms3003_basic_init();
if (res != 0)
{
return 1;
}
...
for (i = 0; i < 3; i++)
{
pms3003_data_t data;
/* delay 1000ms */
pms3003_interface_delay_ms(1000);
/* read data */
res = pms3003_basic_read(&data);
if (res != 0)
{
(void)pms3003_basic_deinit();
return 1;
}
/* output */
pms3003_interface_debug_print("pms3003: %d/%d.\n", i + 1, 3);
pms3003_interface_debug_print("pms3003: pm1p0 standard is %d ug/m3.\n", data.pm1p0_standard_ug_m3);
pms3003_interface_debug_print("pms3003: pm2p5 standard is %d ug/m3.\n", data.pm2p5_standard_ug_m3);
pms3003_interface_debug_print("pms3003: pm10 standard is %d ug/m3.\n", data.pm10_standard_ug_m3);
pms3003_interface_debug_print("pms3003: pm1p0 atmospheric is %d ug/m3.\n", data.pm1p0_atmospheric_ug_m3);
pms3003_interface_debug_print("pms3003: pm2p5 atmospheric is %d ug/m3.\n", data.pm2p5_atmospheric_ug_m3);
pms3003_interface_debug_print("pms3003: pm10 atmospheric is %d ug/m3.\n", data.pm10_atmospheric_ug_m3);
...
}
...
/* sleep */
res = pms3003_basic_sleep();
if (res != 0)
{
(void)pms3003_basic_deinit();
return 1;
}
...
/* wake up */
res = pms3003_basic_wake_up();
if (res != 0)
{
(void)pms3003_basic_deinit();
return 1;
}
...
/* deinit */
(void)pms3003_basic_deinit();
return 0;Online documents: https://www.libdriver.com/docs/pms3003/index.html.
Offline documents: /doc/html/index.html.
Please refer to CONTRIBUTING.md.
Copyright (c) 2015 - present LibDriver All rights reserved
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Please send an e-mail to lishifenging@outlook.com.