ASCEND Flight Software
Loading...
Searching...
No Matches
BMP390Sensor.h
Go to the documentation of this file.
1#ifndef BMP384_SENSOR_H
2#define BMP384_SENSOR_H
3
4#include "Adafruit_BMP3XX.h"
5#include "Sensor.h"
6
11class BMP390Sensor : public Sensor {
12 private:
13 Adafruit_BMP3XX bmp;
14
15 public:
17 BMP390Sensor(unsigned long minium_period);
18
19 bool verify() override;
20 String readData() override;
21 void readDataPacket(uint8_t*& packet) override;
22 String decodeToCSV(uint8_t*& packet) override;
23};
24
25#endif // BMP384_SENSOR_H
Implementation of a Sensor for BMP384 Pressure and Temperature sensor.
Definition BMP390Sensor.h:11
bool verify() override
Tests if the sensor is can be reached on I2C, sets up oversampling and filter configuration.
Definition BMP390Sensor.cpp:27
void readDataPacket(uint8_t *&packet) override
Copies data to the packet.
Definition BMP390Sensor.cpp:59
String decodeToCSV(uint8_t *&packet) override
Decodes data from the packet.
Definition BMP390Sensor.cpp:91
String readData() override
Reads data to a csv stub.
Definition BMP390Sensor.cpp:45
BMP390Sensor()
Construct a new BMP384 Sensor object with default minimum_period of 0 ms.
Definition BMP390Sensor.cpp:10
Adafruit_BMP3XX bmp
Definition BMP390Sensor.h:13
Parent class for sensor objects.
Definition Sensor.h:13