// SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "PowerMeterSml.h" #include class PowerMeterSerialSml : public PowerMeterSml { public: ~PowerMeterSerialSml(); bool init() final; void loop() final; private: std::unique_ptr _upSmlSerial = nullptr; };