mobile-sensebox/libraries/SDS011-select-serial
noerw ada3c1ea8c add lora-gps sketch
GPS tracked SDS011 sensor, transmitting data

via Lora through TTN to opensensemap.org

based on Arduino Mega
2017-09-23 16:23:19 +02:00
..
examples add lora-gps sketch 2017-09-23 16:23:19 +02:00
library.properties add lora-gps sketch 2017-09-23 16:23:19 +02:00
Readme.md add lora-gps sketch 2017-09-23 16:23:19 +02:00
SDS011-select-serial.cpp add lora-gps sketch 2017-09-23 16:23:19 +02:00
SDS011-select-serial.h add lora-gps sketch 2017-09-23 16:23:19 +02:00

SDS011 library selectable serialport

Arduino library for dust Sensor SDS011 (Nova Fitness Co.,Ltd) which allows to choose the serial port used to communicate with the sensor. Based on the work of ricky-z

Usage

  • Define SDS object:
SDS011(Stream& serial);

i.e. SDS011 mySDS(Serial1);

  • Start serial communication:
Serial1.begin(9600);
  • Read values:
int read(float *p25, float *p10);

i.e. error = mySDS(pm25,pm10);

Reads the PM2.5 and PM10 values, return code is 0, if new values were read, and 1 if there were no new values.