21 lines
233 B
C++

/// © MiroZ 2024
#ifndef __BMP280_H__
#define __BMP280_H__
#include <Wire.h>
#include <BMP280_DEV.h>
class Bmp280
{
protected:
BMP280_DEV * m_sensor;
TwoWire & m_wire;
public:
Bmp280(TwoWire & wire);
bool test();
};
#endif