🔥 Removes unused functions and constants

This commit is contained in:
Rune Harlyk
2025-09-14 21:09:32 +02:00
committed by Rune Harlyk
parent 3ce8c88a84
commit e1e11346b4
2 changed files with 0 additions and 18 deletions
-7
View File
@@ -59,13 +59,6 @@ class Barometer {
float getTemperature() { return temperature; }
void readBarometer(JsonObject& root) {
if (!bmp_success) return;
root["pressure"] = round2(getPressure());
root["altitude"] = round2(getAltitude());
root["bmp_temp"] = round2(getTemperature());
}
bool active() { return bmp_success; }
private: