1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-17 02:32:20 +01:00
Files
esphome/esphome/components/ld2450/button/factory_reset_button.h

19 lines
348 B
C++

#pragma once
#include "esphome/components/button/button.h"
#include "../ld2450.h"
namespace esphome {
namespace ld2450 {
class FactoryResetButton : public button::Button, public Parented<LD2450Component> {
public:
FactoryResetButton() = default;
protected:
void press_action() override;
};
} // namespace ld2450
} // namespace esphome