Files
cardboy/Firmware/main/include/power_helper.hpp
2025-03-03 01:31:30 +01:00

22 lines
279 B
C++

//
// Created by Stepan Usatiuk on 03.03.2025.
//
#ifndef POWER_HELPER_HPP
#define POWER_HELPER_HPP
class PowerHelper {
public:
static PowerHelper& get();
bool is_slow();
void set_slow(bool slow);
private:
bool _slow = false;
};
#endif // POWER_HELPER_HPP