mirror of
https://github.com/esphome/esphome.git
synced 2025-04-03 17:30:28 +01:00
19 lines
339 B
C++
19 lines
339 B
C++
#pragma once
|
|
|
|
#include "esphome/components/button/button.h"
|
|
#include "esphome/core/component.h"
|
|
|
|
namespace esphome {
|
|
namespace restart {
|
|
|
|
class RestartButton : public button::Button, public Component {
|
|
public:
|
|
void dump_config() override;
|
|
|
|
protected:
|
|
void press_action() override;
|
|
};
|
|
|
|
} // namespace restart
|
|
} // namespace esphome
|