mirror of
https://github.com/esphome/esphome.git
synced 2025-11-15 14:25:45 +00:00
87 lines
2.2 KiB
C++
87 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "remote_base.h"
|
|
|
|
#include <cinttypes>
|
|
#include <vector>
|
|
|
|
namespace esphome {
|
|
namespace remote_base {
|
|
|
|
class RawBinarySensor : public RemoteReceiverBinarySensorBase {
|
|
public:
|
|
bool matches(RemoteReceiveData src) override {
|
|
for (size_t i = 0; i < this->len_; i++) {
|
|
auto val = this->data_[i];
|
|
if (val < 0) {
|
|
if (!src.expect_space(static_cast<uint32_t>(-val)))
|
|
return false;
|
|
} else {
|
|
if (!src.expect_mark(static_cast<uint32_t>(val)))
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
void set_data(const int32_t *data) { data_ = data; }
|
|
void set_len(size_t len) { len_ = len; }
|
|
|
|
protected:
|
|
const int32_t *data_;
|
|
size_t len_;
|
|
};
|
|
|
|
class RawTrigger : public Trigger<RawTimings>, public Component, public RemoteReceiverListener {
|
|
protected:
|
|
bool on_receive(RemoteReceiveData src) override {
|
|
this->trigger(src.get_raw_data());
|
|
return false;
|
|
}
|
|
};
|
|
|
|
template<typename... Ts> class RawAction : public RemoteTransmitterActionBase<Ts...> {
|
|
public:
|
|
void set_code_template(RawTimings (*func)(Ts...)) {
|
|
this->code_.func = func;
|
|
this->len_ = -1; // Sentinel value indicates template mode
|
|
}
|
|
void set_code_static(const int32_t *code, size_t len) {
|
|
this->code_.data = code;
|
|
this->len_ = len; // Length >= 0 indicates static mode
|
|
}
|
|
TEMPLATABLE_VALUE(uint32_t, carrier_frequency);
|
|
|
|
void encode(RemoteTransmitData *dst, Ts... x) override {
|
|
if (this->len_ >= 0) {
|
|
for (size_t i = 0; i < static_cast<size_t>(this->len_); i++) {
|
|
auto val = this->code_.data[i];
|
|
if (val < 0) {
|
|
dst->space(static_cast<uint32_t>(-val));
|
|
} else {
|
|
dst->mark(static_cast<uint32_t>(val));
|
|
}
|
|
}
|
|
} else {
|
|
dst->set_data(this->code_.func(x...));
|
|
}
|
|
dst->set_carrier_frequency(this->carrier_frequency_.value(x...));
|
|
}
|
|
|
|
protected:
|
|
ssize_t len_{-1}; // -1 = template mode, >=0 = static mode with length
|
|
union Code {
|
|
RawTimings (*func)(Ts...);
|
|
const int32_t *data;
|
|
} code_;
|
|
};
|
|
|
|
class RawDumper : public RemoteReceiverDumperBase {
|
|
public:
|
|
bool dump(RemoteReceiveData src) override;
|
|
bool is_secondary() override { return true; }
|
|
};
|
|
|
|
} // namespace remote_base
|
|
} // namespace esphome
|