18 lines
348 B
C++
18 lines
348 B
C++
#pragma once
|
|
|
|
#include "esphome/components/button/button.h"
|
|
#include "../hon_climate.h"
|
|
|
|
namespace esphome {
|
|
namespace haier {
|
|
|
|
class SteriCleaningButton : public button::Button, public Parented<HonClimate> {
|
|
public:
|
|
SteriCleaningButton() = default;
|
|
|
|
protected:
|
|
void press_action() override;
|
|
};
|
|
|
|
} // namespace haier
|
|
} // namespace esphome
|