mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
0e547390da
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
21 lines
454 B
C++
21 lines
454 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/automation.h"
|
|
#include "sen5x.h"
|
|
|
|
namespace esphome {
|
|
namespace sen5x {
|
|
|
|
template<typename... Ts> class StartFanAction : public Action<Ts...> {
|
|
public:
|
|
explicit StartFanAction(SEN5XComponent *sen5x) : sen5x_(sen5x) {}
|
|
|
|
void play(Ts... x) override { this->sen5x_->start_fan_cleaning(); }
|
|
|
|
protected:
|
|
SEN5XComponent *sen5x_;
|
|
};
|
|
|
|
} // namespace sen5x
|
|
} // namespace esphome
|