From c71b54fb5b18fe8bbb49518207f8d9540c3fe7e6 Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 13 Dec 2025 11:21:57 +0100 Subject: [PATCH] auto-formatting --- src/core/analogsensor.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/core/analogsensor.h b/src/core/analogsensor.h index 947094980..e7bda53b2 100644 --- a/src/core/analogsensor.h +++ b/src/core/analogsensor.h @@ -104,14 +104,14 @@ class AnalogSensor { uint32_t last_polltime_ = 0; // for timer private: - uint8_t gpio_; - char name_[20]; - double offset_; - double factor_; - uint8_t uom_; - double value_; // double because of the factor is a double - int8_t type_; // one of the AnalogType enum - bool is_system_; // if true, the sensor is a system sensor + uint8_t gpio_; + char name_[20]; + double offset_; + double factor_; + uint8_t uom_; + double value_; // double because of the factor is a double + int8_t type_; // one of the AnalogType enum + bool is_system_; // if true, the sensor is a system sensor }; AnalogSensor() = default;