9#include "Adafruit_SGP30.h"
int attempt_number
Definition Device.h:19
Implementation of a Sensor for the SGP Air Quality sensor.
Definition SGP30Sensor.h:16
void readDataPacket(uint8_t *&packet) override
Appends the SGP30 sensor data (eCO2, TVOC) plus a simple 16-bit checksum to the packet buffer.
Definition SGP30Sensor.cpp:50
bool verify() override
Verifies that the SGP30 sensor is connected and operational.
Definition SGP30Sensor.cpp:21
String readData() override
Reads the SGP30 data as a CSV string ("eCO2,TVOC,").
Definition SGP30Sensor.cpp:31
String decodeToCSV(uint8_t *&packet) override
Decodes the SGP30 sensor data (eCO2, TVOC) plus checksum from the packet buffer, and returns a CSV st...
Definition SGP30Sensor.cpp:78
SGP30Sensor()
Default constructor for the SGP30Sensor.
Definition SGP30Sensor.cpp:6
Adafruit_SGP30 sgp
Definition SGP30Sensor.h:18
Parent class for sensor objects.
Definition Sensor.h:13
unsigned long minimum_period
Definition Sensor.h:15