ASCEND Flight Software
Loading...
Searching...
No Matches
BME280Sensor.h
Go to the documentation of this file.
1#ifndef BME280_SENSOR_H
2#define BME280_SENSOR_H
3
4#include "Sensor.h"
5#include "SparkFunBME280.h"
6
11class BME280Sensor : public Sensor {
12 private:
13 BME280 bme;
14
15 public:
17 BME280Sensor(unsigned long minium_period);
18 bool verify() override;
19 String readData() override;
20
21 // Function to integrate sensor data into a packet buffer.
22 void readDataPacket(uint8_t*& packet) override;
23
24 // Function to decode sensor data from a packet and return a CSV string
25 String decodeToCSV(uint8_t*& packet) override;
26};
27
28#endif
Implementation of a Sensor for the BME280.
Definition BME280Sensor.h:11
BME280 bme
Definition BME280Sensor.h:13
String decodeToCSV(uint8_t *&packet) override
Used for onboard decoding of packets.
Definition BME280Sensor.cpp:68
BME280Sensor()
Construct a new Temp Sensor object with default minimum_period of 0 ms.
Definition BME280Sensor.cpp:10
String readData() override
Reads Relative Humidity (%), Pressure (Pa), Altitude (m), Temp (C) from the BME280.
Definition BME280Sensor.cpp:40
bool verify() override
Returns if sensor is connected and working.
Definition BME280Sensor.cpp:28
void readDataPacket(uint8_t *&packet) override
Used for creating packets, reads data from the sensor and appends it to the passed uint8_t array poin...
Definition BME280Sensor.cpp:48
Parent class for sensor objects.
Definition Sensor.h:13