/// © MiroZ 2024 #ifndef __BMP280_H__ #define __BMP280_H__ #include #include class Bmp280 { protected: BMP280_DEV * m_sensor; TwoWire & m_bus; bool m_operational = false; public: Bmp280(TwoWire & bus); bool init(); bool read(); }; #endif