#ifndef BAROMETERDATA_H #define BAROMETERDATA_H #include /** data received from a barometer sensor */ struct BarometerData { float hPa; explicit BarometerData() : hPa(0) {;} explicit BarometerData(const float hPa) : hPa(hPa) {;} }; #endif // BAROMETERDATA_H