ASCEND Flight Software
Loading...
Searching...
No Matches
OzoneSensor.h
Go to the documentation of this file.
1#ifndef OZONE_SENSOR_H
2#define OZONE_SENSOR_H
3
4#include "DFRobot_OzoneSensor.h"
5#include "PayloadConfig.h"
6#include "Sensor.h"
7
12class OzoneSensor : public Sensor {
13 private:
14 DFRobot_OzoneSensor ozone;
15
16 public:
18 OzoneSensor(unsigned long minium_period);
19
20 bool verify() override;
21 String readData() override;
22 void readDataPacket(uint8_t*& packet) override;
23 String decodeToCSV(uint8_t*& packet) override;
24};
25
26#endif // OZONE_SENSOR_H
Central location for pinout and config defines.
int attempt_number
Definition Device.h:19
Implementation of a Sensor for the onboard temperature sensor.
Definition OzoneSensor.h:12
String readData() override
Reads ozone concentration data in PPB.
Definition OzoneSensor.cpp:39
DFRobot_OzoneSensor ozone
Definition OzoneSensor.h:14
String decodeToCSV(uint8_t *&packet) override
Decodes ozone concentration data from a packet to CSV.
Definition OzoneSensor.cpp:60
void readDataPacket(uint8_t *&packet) override
Reads ozone concentration data in PPB to packet.
Definition OzoneSensor.cpp:48
bool verify() override
Tests if the Ozone sensor can be reached.
Definition OzoneSensor.cpp:24
OzoneSensor()
Construct a new Ozone Sensor object with default minimum_period of 0 ms.
Definition OzoneSensor.cpp:8
Parent class for sensor objects.
Definition Sensor.h:13