ESPHome 2026.5.0b1
Loading...
Searching...
No Matches
reset_radar_button.h
Go to the documentation of this file.
1#pragma once
2
4#include "../seeed_mr60fda2.h"
5
7
8class ResetRadarButton : public button::Button, public Parented<MR60FDA2Component> {
9 public:
10 ResetRadarButton() = default;
11
12 protected:
13 void press_action() override;
14};
15
16} // namespace esphome::seeed_mr60fda2
Helper class to easily give an object a parent of type T.
Definition helpers.h:1861
Base class for all buttons.
Definition button.h:25