4#include "Adafruit_BMP3XX.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