mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 03:12:20 +01:00
19 lines
559 B
C++
19 lines
559 B
C++
#pragma once
|
|
|
|
#include "esphome/components/remote_transmitter/remote_transmitter.h"
|
|
#include "esphome/core/automation.h"
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/helpers.h"
|
|
|
|
namespace esphome {
|
|
namespace remote_transmitter {
|
|
|
|
template<typename... Ts> class DigitalWriteAction : public Action<Ts...>, public Parented<RemoteTransmitterComponent> {
|
|
public:
|
|
TEMPLATABLE_VALUE(bool, value)
|
|
void play(Ts... x) override { this->parent_->digital_write(this->value_.value(x...)); }
|
|
};
|
|
|
|
} // namespace remote_transmitter
|
|
} // namespace esphome
|