Files
cardboy/Firmware/components/backend-esp/include/cardboy/backend/esp/shutdowner.hpp
2025-10-11 16:44:48 +02:00

20 lines
267 B
C++

//
// Created by Stepan Usatiuk on 02.03.2025.
//
#ifndef CB_SHUTDOWNER_HPP
#define CB_SHUTDOWNER_HPP
class Shutdowner {
public:
static Shutdowner& get();
void install_isr();
void shutdown();
private:
Shutdowner();
};
#endif // CB_SHUTDOWNER_HPP