ASCEND Flight Software
Loading...
Searching...
No Matches
SGP30Sensor.h
Go to the documentation of this file.
1
2#ifndef SGP30SENSOR_H
3#define SGP30SENSOR_H
4
5#include <Arduino.h>
6#include <stdint.h>
7#include <string.h>
8
9#include "Adafruit_SGP30.h"
10#include "Sensor.h"
11
16class SGP30Sensor : public Sensor {
17 private:
18 Adafruit_SGP30 sgp;
19
20 public:
22 SGP30Sensor(unsigned long minimum_period);
23 bool verify() override;
24 String readData() override;
25
26 void readDataPacket(uint8_t*& packet) override;
27 String decodeToCSV(uint8_t*& packet) override;
28};
29#endif
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