mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
a62b6548d2
Apparently play()/stop() etc. are not meant to be called directly by users of the class and if they're called directly that would not give the expected result for the classes that have an empty play(). Make all methods except play_complex, stop_comples and is_running protected. While there also make RemoteTransmitterActionBase::encode protected.
37 lines
909 B
C++
37 lines
909 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "remote_base.h"
|
|
|
|
namespace esphome {
|
|
namespace remote_base {
|
|
|
|
struct SamsungData {
|
|
uint32_t data;
|
|
|
|
bool operator==(const SamsungData &rhs) const { return data == rhs.data; }
|
|
};
|
|
|
|
class SamsungProtocol : public RemoteProtocol<SamsungData> {
|
|
public:
|
|
void encode(RemoteTransmitData *dst, const SamsungData &data) override;
|
|
optional<SamsungData> decode(RemoteReceiveData src) override;
|
|
void dump(const SamsungData &data) override;
|
|
};
|
|
|
|
DECLARE_REMOTE_PROTOCOL(Samsung)
|
|
|
|
template<typename... Ts> class SamsungAction : public RemoteTransmitterActionBase<Ts...> {
|
|
public:
|
|
TEMPLATABLE_VALUE(uint32_t, data)
|
|
|
|
protected:
|
|
void encode_(RemoteTransmitData *dst, Ts... x) override {
|
|
SamsungData data{};
|
|
data.data = this->data_.value(x...);
|
|
SamsungProtocol().encode(dst, data);
|
|
}
|
|
};
|
|
|
|
} // namespace remote_base
|
|
} // namespace esphome
|