11#include "esphome/core/application.h"
12#include "esphome/core/hal.h"
13#include "esphome/core/log.h"
20constexpr const char *
const TAG =
"home_io_control.oneway_tx";
25 for (
const auto &identity : this->identities_.all())
26 this->sequences_.add_identity(identity.node_id, identity.initial_sequence);
29bool OneWayTransmitter::send_(
const std::string &controller_id,
31 const char *explicit_intent) {
33 if (identity ==
nullptr) {
34 ESP_LOGW(
TAG,
"1W tx: no controller identity '%s'", controller_id.c_str());
35 this->report_failure_(controller_id, 0,
false);
40 uint16_t sequence = 0;
41 if (!this->sequences_.
next(identity->
node_id, sequence)) {
43 this->report_failure_(controller_id, 0,
false);
48 if (!build(frame, *identity, sequence)) {
51 ESP_LOGW(
TAG,
"1W tx: could not build a frame for '%s'", controller_id.c_str());
52 this->report_failure_(controller_id, sequence,
true);
56 const bool transmitted = this->
send_burst(frame);
62 std::string intent = explicit_intent;
71 this->report_attempt_(controller_id, intent, identity->
io_device_type, sequence,
true,
76void OneWayTransmitter::report_attempt_(
const std::string &controller_id,
const std::string &intent,
77 DeviceType target_type, uint16_t sequence,
bool sequence_reserved,
81 OneWayCommandReport report{};
82 report.controller_id = controller_id;
83 report.intent = intent;
84 report.target_type = target_type;
85 report.sequence = sequence;
86 report.sequence_reserved = sequence_reserved;
87 report.transmitted = transmitted;
88 this->report_(report);
91void OneWayTransmitter::report_failure_(
const std::string &controller_id, uint16_t sequence,
bool sequence_reserved) {
92 this->report_attempt_(controller_id,
"",
DeviceType::UNKNOWN, sequence, sequence_reserved,
false);
114 if (identity ==
nullptr) {
115 ESP_LOGW(
TAG,
"1W tx: no controller identity '%s'", controller_id.c_str());
116 this->report_failure_(controller_id, 0,
false);
120 return this->send_velux_kli_enrollment_(*identity);
121 return this->send_somfy_enrollment_(*identity);
134 const bool removed = this->send_(
137 return create_1w_remove_controller(frame, id.node_id, id.io_device_type, sequence, id.system_key);
141 ESP_LOGW(
TAG,
"1W tx: enrollment's 0x39 prelude did not reach the radio for '%s' -- trying 0x30 anyway",
142 identity.
id.c_str());
147 [](IoFrame &frame,
const OneWayControllerIdentity &
id, uint16_t sequence) {
148 return create_1w_add_controller(frame, id.node_id, id.io_device_type, id.manufacturer, sequence, id.system_key,
149 id.enrollment_with_mac);
154bool OneWayTransmitter::send_velux_kli_enrollment_(
const OneWayControllerIdentity &identity) {
160 const bool removed = this->send_(
162 [](IoFrame &frame,
const OneWayControllerIdentity &
id, uint16_t sequence) {
163 return create_1w_remove_controller(frame, id.node_id, DeviceType::UNKNOWN, sequence, id.system_key);
167 ESP_LOGW(
TAG,
"1W tx: VELUX enrollment's 0x39 prelude did not reach the radio for '%s' -- continuing",
168 identity.id.c_str());
175 ESP_LOGW(
TAG,
"1W tx: VELUX 0x30 sweep transmitted nothing for '%s' -- skipping the STOP+DOWN follow-up",
176 identity.id.c_str());
184 const bool stopped = this->send_(
186 [acei](IoFrame &frame,
const OneWayControllerIdentity &
id, uint16_t sequence) {
187 return create_1w_execute_command(frame, id.node_id, id.io_device_type, CoverCommand::STOP, sequence,
188 id.system_key, acei, true);
191 const bool lowered = this->send_(
193 [acei](IoFrame &frame,
const OneWayControllerIdentity &
id, uint16_t sequence) {
194 return create_1w_execute_position(frame, id.node_id, id.io_device_type, ONEWAY_POSITION_FULLY_CLOSED, sequence,
195 id.system_key, acei, true);
198 if (!stopped || !lowered) {
199 ESP_LOGW(
TAG,
"1W tx: VELUX enrollment's STOP+DOWN follow-up did not fully reach the radio for '%s'",
200 identity.id.c_str());
206 const std::array<DeviceType, 3> &classes) {
209 uint16_t sequence = 0;
210 if (!this->sequences_.next(identity.node_id, sequence)) {
211 this->report_failure_(identity.id, 0,
false);
215 bool any_transmitted =
false;
216 for (
const DeviceType target_type : classes) {
221 identity.system_key, identity.enrollment_with_mac)) {
222 ESP_LOGW(
TAG,
"1W tx: could not build a 0x30 for class 0x%02X on '%s'",
static_cast<unsigned>(target_type),
223 identity.id.c_str());
227 any_transmitted =
true;
230 this->report_attempt_(identity.id,
"ENROLL", identity.io_device_type, sequence,
true,
232 return any_transmitted;
const OneWayControllerIdentity * get(const std::string &id) const
Look up an identity by its YAML handle.
bool next(const uint8_t node_id[NODE_ID_SIZE], uint16_t &out)
Reserve and return the next sequence for an identity.
bool send_position(const std::string &controller_id, uint8_t position)
Send a numeric position as the identity's controller.
void setup()
Open each registered identity's persistent sequence counter.
bool send_burst(const IoFrame &frame)
Transmit one already-built, already-signed 1W frame as a burst.
bool send_unenrollment(const std::string &controller_id)
Un-register this identity from every device of its class currently in association mode (CMD 0x39) alo...
bool send_enrollment(const std::string &controller_id)
Register this identity as a controller on every device currently in association mode (a physical PROG...
bool send_command(const std::string &controller_id, CoverCommand cmd)
Send a named command as the identity's controller.
static constexpr uint8_t ONEWAY_BURST_REPEATS
One-way (1W) transmit cadence.
DeviceType
Device type identifiers reported by IO‑Homecontrol products.
@ UNKNOWN
Unknown/unspecified device.
static constexpr uint32_t ONEWAY_BURST_INTERVAL_MS
Gap between those copies.
static constexpr const char * TAG
CoverCommand
Named device commands for cover-type actuators.
bool create_1w_remove_controller(IoFrame &f, const uint8_t src[NODE_ID_SIZE], DeviceType target_type, uint16_t sequence, const uint8_t controller_key[AES_KEY_SIZE])
Build a 1W remove-controller frame (CMD 0x39).
const char * device_type_name(DeviceType type)
Convert a DeviceType to a lowercase string identifier.
bool create_1w_execute_command(IoFrame &f, const uint8_t src[NODE_ID_SIZE], DeviceType target_type, CoverCommand cmd, uint16_t sequence, const uint8_t controller_key[AES_KEY_SIZE], uint8_t acei, bool broadcast_all)
Build a 1W named-command execute frame (CMD 0x00) targeting a device class.
OneWayFrameInfo decode_1w_frame(const IoFrame &frame)
Decode a parsed 1W frame into a structured OneWayFrameInfo.
std::array< DeviceType, 3 > effective_enrollment_classes(const OneWayControllerIdentity &identity)
The device classes this identity's 0x30 enrollment sweep will actually target.
uint8_t effective_execute_acei(const OneWayControllerIdentity &identity)
The ACEI byte a given identity will put on air for a 1W EXECUTE frame.
static constexpr uint32_t FREQ_CH2
Channel 2: 868.95 MHz (1W and 2W, TX channel).
std::string node_id_to_string(const uint8_t id[NODE_ID_SIZE])
Format a 3‑byte node ID as a 6‑character uppercase hex string.
OneWayWireProfile resolve_oneway_wire_profile(uint8_t manufacturer)
Resolve an identity's 1W wire profile from its manufacturer byte.
static constexpr uint16_t LONG_PREAMBLE
Preamble is a sequence of 0xAA bytes that precedes every frame.
bool create_1w_execute_position(IoFrame &f, const uint8_t src[NODE_ID_SIZE], DeviceType target_type, uint8_t position, uint16_t sequence, const uint8_t controller_key[AES_KEY_SIZE], uint8_t acei, bool broadcast_all)
Build a 1W position execute frame (CMD 0x00) targeting a device class.
bool create_1w_add_controller(IoFrame &f, const uint8_t src[NODE_ID_SIZE], DeviceType target_type, uint8_t manufacturer, uint16_t sequence, const uint8_t controller_key[AES_KEY_SIZE], bool with_mac)
Build a 1W add-controller frame (CMD 0x30).
One-way (1W) transmit collaborator.
Device-name, address-classification and 1W-frame codecs.
Command builders for the IO‑Homecontrol protocol.
Physical-layer radio and timing parameters for the IO-Homecontrol protocol.
Parsed IO‑Homecontrol frame (CTRL0/1 + addresses + command + data).
uint8_t src[NODE_ID_SIZE]
Source node ID (3 bytes).
One configured 1W controller identity.
uint8_t node_id[NODE_ID_SIZE]
Source address we transmit as (configured or derived).
std::string id
YAML handle entities reference.
bool execute_broadcast_all
When true (execute_broadcast: all), 1W EXECUTE frames go to the all-devices address 00 00 3F regardle...
uint8_t system_key[AES_KEY_SIZE]
Network key for this identity; may differ per identity.
DeviceType io_device_type
Device class this identity commands.
uint8_t manufacturer
Manufacturer ID; unused until the enrollment phase.
Decoded representation of a 1W remote frame.
bool has_intent
True if originator/ACEI/intent fields were decoded.
DeviceType target_type
Target device class from broadcast address.
char intent[ONEWAY_INTENT_BUFFER_SIZE]
Human-readable command intent (e.g., "CLOSE").
EnrollGesture enroll_gesture
Which enrollment gesture this manufacturer's actuators expect.