Home IO Control
ESPHome add-on for IO-Homecontrol devices
Loading...
Searching...
No Matches
proto_codecs.cpp
Go to the documentation of this file.
1/// @file proto_codecs.cpp
2/// @brief Device-name, address-classification and 1W-frame codec implementations.
3/// @ingroup hioc_protocol
4
5#include "proto_codecs.h"
6#include "proto_constants.h"
7#include "proto_crypto.h"
8#include "proto_frame.h"
9
10#include <cctype>
11#include <cstdio>
12#include <cstring>
13#include <string>
14
15namespace esphome {
16namespace home_io_control {
17
18namespace {
19
20constexpr uint8_t UTF8_SINGLE_BYTE_MAX = 0x80;
21constexpr uint8_t UTF8_TWO_BYTE_LEAD_BASE = 0xC0;
22constexpr uint8_t UTF8_CONTINUATION_BASE = 0x80;
23constexpr uint8_t UTF8_CONTINUATION_MASK = 0x3F;
24constexpr uint8_t UTF8_TWO_BYTE_SHIFT = 6;
25constexpr uint8_t NAME_PADDING_NUL = 0x00;
26constexpr uint8_t NAME_PADDING_SPACE = 0x20;
27constexpr uint8_t UTF8_TWO_BYTE_MASK = 0xE0;
28constexpr uint8_t UTF8_TWO_BYTE_PREFIX = 0xC0;
29constexpr uint8_t UTF8_THREE_BYTE_MASK = 0xF0;
30constexpr uint8_t UTF8_THREE_BYTE_PREFIX = 0xE0;
31constexpr uint8_t UTF8_FOUR_BYTE_MASK = 0xF8;
32constexpr uint8_t UTF8_FOUR_BYTE_PREFIX = 0xF0;
33constexpr uint8_t UTF8_CONTINUATION_PREFIX_MASK = 0xC0;
34constexpr uint8_t UTF8_CONTINUATION_PREFIX = 0x80;
35constexpr uint8_t UTF8_TWO_BYTE_VALUE_MASK = 0x1F;
36constexpr uint8_t ASCII_MAX = 0x7F;
37constexpr uint8_t DISCOVERY_TIMESTAMP_MSB_SHIFT = 8; ///< Shift for the timestamp field's big-endian MSB.
38
39// CMD_ONEWAY_ADD_CONTROLLER (0x30) declared-payload layout: enc_key[16] + man_id[1] + data[1] +
40// sequence[2] = 20 bytes. Offsets are into `frame.data`, never into the out-of-length MAC trailer
41// (`frame.mac`, see IoFrame::has_mac) which decode_1w_add_controller() reads separately.
42constexpr uint8_t ONEWAY_ADD_CONTROLLER_ENC_KEY_OFFSET = 0;
43constexpr uint8_t ONEWAY_ADD_CONTROLLER_MANUFACTURER_OFFSET = AES_KEY_SIZE; // 16
44constexpr uint8_t ONEWAY_ADD_CONTROLLER_SEQUENCE_OFFSET = AES_KEY_SIZE + 2; // 18: man_id(1) + data(1) skipped
45constexpr uint8_t ONEWAY_ADD_CONTROLLER_PAYLOAD_SIZE = AES_KEY_SIZE + 4; // 20: enc_key+man_id+data+sequence
46constexpr uint8_t ONEWAY_ADD_CONTROLLER_SEQUENCE_MSB_SHIFT = 8; ///< Shift for the sequence field's big-endian MSB.
47// The only span CMD_ONEWAY_ADD_CONTROLLER authenticates (create_1w_hmac()'s @warning): cmd byte
48// followed by the 16 encrypted-key bytes, NOT the whole declared payload.
49constexpr uint8_t ONEWAY_ADD_CONTROLLER_MAC_SPAN_SIZE = 1 + AES_KEY_SIZE; // 17
50
51std::string latin1_to_utf8(const uint8_t *data, size_t len) {
52 std::string result;
53 result.reserve(len * 2);
54
55 for (size_t index = 0; index < len; index++) {
56 uint8_t const byte = data[index];
57 if (byte < UTF8_SINGLE_BYTE_MAX) {
58 if (result.length() + 1 >= DEVICE_NAME_BUFFER_SIZE)
59 break;
60 result.push_back(static_cast<char>(byte));
61 continue;
62 }
63
64 if (result.length() + 2 >= DEVICE_NAME_BUFFER_SIZE)
65 break;
66
67 result.push_back(static_cast<char>(UTF8_TWO_BYTE_LEAD_BASE | (byte >> UTF8_TWO_BYTE_SHIFT)));
68 result.push_back(static_cast<char>(UTF8_CONTINUATION_BASE | (byte & UTF8_CONTINUATION_MASK)));
69 }
70
71 return result;
72}
73
74} // namespace
75
76std::string trim_ascii_whitespace(const std::string &value) {
77 size_t begin = 0;
78 while (begin < value.length() && std::isspace(static_cast<unsigned char>(value[begin])) != 0)
79 begin++;
80
81 size_t end = value.length();
82 while (end > begin && std::isspace(static_cast<unsigned char>(value[end - 1])) != 0)
83 end--;
84
85 return value.substr(begin, end - begin);
86}
87
88std::string decode_device_name_payload(const uint8_t *data, uint8_t len) {
89 if (data == nullptr || len == 0)
90 return {};
91
92 const uint8_t begin = data[0] > NAME_PADDING_SPACE ? 0 : 1;
93 if (begin >= len)
94 return {};
95
96 size_t raw_len = len - begin;
97 while (raw_len > 0 &&
98 (data[begin + raw_len - 1] == NAME_PADDING_NUL || data[begin + raw_len - 1] == NAME_PADDING_SPACE))
99 raw_len--;
100
101 if (raw_len == 0)
102 return {};
103
104 return latin1_to_utf8(data + begin, raw_len);
105}
106
108 uint8_t payload[DEVICE_NAME_WRITE_PAYLOAD_SIZE],
109 std::string &normalized_name) {
110 if (payload == nullptr)
112
113 std::memset(payload, 0, DEVICE_NAME_WRITE_PAYLOAD_SIZE);
114 normalized_name.clear();
115
116 const std::string trimmed_name = trim_ascii_whitespace(name);
117 if (trimmed_name.empty())
119
120 uint8_t latin1_len = 0;
121 for (size_t index = 0; index < trimmed_name.length();) {
122 const auto byte = static_cast<uint8_t>(trimmed_name[index]);
123 uint16_t codepoint = 0;
124 size_t advance = 1;
125
126 if (byte <= ASCII_MAX) {
127 codepoint = byte;
128 } else if ((byte & UTF8_TWO_BYTE_MASK) == UTF8_TWO_BYTE_PREFIX) {
129 if (index + 1 >= trimmed_name.length())
131
132 const auto continuation = static_cast<uint8_t>(trimmed_name[index + 1]);
133 if ((continuation & UTF8_CONTINUATION_PREFIX_MASK) != UTF8_CONTINUATION_PREFIX)
135
136 codepoint = static_cast<uint16_t>(((byte & UTF8_TWO_BYTE_VALUE_MASK) << UTF8_TWO_BYTE_SHIFT) |
137 (continuation & UTF8_CONTINUATION_MASK));
138 if (codepoint < UTF8_SINGLE_BYTE_MAX)
140 advance = 2;
141 } else if ((byte & UTF8_THREE_BYTE_MASK) == UTF8_THREE_BYTE_PREFIX ||
142 (byte & UTF8_FOUR_BYTE_MASK) == UTF8_FOUR_BYTE_PREFIX) {
144 } else {
146 }
147
148 if (codepoint > LATIN1_CODEPOINT_MAX)
150
151 if (latin1_len >= DEVICE_NAME_WRITE_CHAR_LIMIT)
153
154 payload[latin1_len++] = static_cast<uint8_t>(codepoint);
155 index += advance;
156 }
157
158 normalized_name = latin1_to_utf8(payload, latin1_len);
160}
161
163 switch (error) {
165 return "NONE";
167 return "EMPTY";
169 return "TOO_LONG";
171 return "INVALID_UTF8";
173 return "UNSUPPORTED_CHAR";
174 default:
175 return "UNKNOWN_DEVICE_NAME_VALIDATION_ERROR";
176 }
177}
178
180 switch (error) {
182 return "name accepted";
184 return "device name must not be empty";
186 return "device name exceeds the 15-character write limit";
188 return "device name must be valid UTF-8";
190 return "device name contains characters outside Latin-1";
191 default:
192 return "unknown device-name validation error";
193 }
194}
195
197 if (addr[0] != 0x00)
199
200 uint8_t const suffix = addr[2] & ADDRESS_SUFFIX_MASK;
201 bool const has_type_bits = (addr[1] != 0) || ((addr[2] & 0xC0) != 0);
202
203 // Discovery suffix (0x3B) takes priority — typed discovery (e.g., 00 01 3B) is still DISCOVERY.
204 if (suffix == ADDRESS_SUFFIX_DISCOVERY)
206
207 // When type bits are present with broadcast suffix (0x3F), this is a typed broadcast
208 // addressing all devices of a specific type (e.g., 00 01 BF = "all light devices").
209 // Only 00 00 3F (no type bits) is the true "all device types" broadcast.
210 if (has_type_bits)
212 if (suffix == ADDRESS_SUFFIX_BROADCAST)
214 if (addr[1] == 0 && addr[2] == 0)
216
218}
219
220const char *address_class_name(AddressClass address_class) {
221 switch (address_class) {
223 return "unicast";
225 return "broadcast_all";
227 return "broadcast_type";
229 return "discovery";
231 default:
232 return "unknown_broadcast";
233 }
234}
235
237 if (addr[0] != 0x00)
238 return DeviceType::UNKNOWN;
239
240 // Device type is encoded in bits [9:2] of the combined bytes 1–2:
241 // type = (addr[1] << 2) | (addr[2] >> 6)
242 uint16_t const type_raw =
243 (static_cast<uint16_t>(addr[1]) << DEVICE_TYPE_LOW_BITS_SHIFT) | (addr[2] >> DEVICE_TYPE_HIGH_BITS_SHIFT);
244
245 if (type_raw > static_cast<uint16_t>(DeviceType::SWINGING_SHUTTER))
246 return DeviceType::UNKNOWN;
247
248 return static_cast<DeviceType>(type_raw);
249}
250
252 const auto type_raw = static_cast<uint16_t>(type);
253 out[0] = 0;
254 out[1] = static_cast<uint8_t>(type_raw >> DEVICE_TYPE_LOW_BITS_SHIFT);
255 out[2] = static_cast<uint8_t>((type_raw << DEVICE_TYPE_HIGH_BITS_SHIFT) | DEVICE_SUBTYPE_MASK);
256}
257
258void decode_1w_main_intent(uint8_t main0, uint8_t main1, char *out, size_t out_size) {
259 if (out_size == 0)
260 return;
261 // Special command codes (same wire values as 2W).
262 if (main0 == POS_STOP) {
263 snprintf(out, out_size, "STOP");
264 return;
265 }
266 if (main0 == POS_FAVORITE) {
267 if (main1 == POS_VENT_MODIFIER) {
268 snprintf(out, out_size, "VENT");
269 } else {
270 snprintf(out, out_size, "FAVORITE");
271 }
272 return;
273 }
274 if (main0 == POS_UNKNOWN) {
275 snprintf(out, out_size, "UNCHANGED");
276 return;
277 }
278 if (main0 == POS_FORCE_OPEN) {
279 // Note: 0x64 (100) is also the wire value for position 50% (50*2=100). The protocol
280 // uses the same byte value for both. In practice, physical remotes rarely send numeric
281 // 50% positions — they use open/close/stop/favorite. FORCE_OPEN is the more likely
282 // interpretation for diagnostic decode of overheard 1W traffic.
283 snprintf(out, out_size, "FORCE_OPEN");
284 return;
285 }
286 if (main0 == POS_SECURED_TARGET) {
287 snprintf(out, out_size, "SECURED_TARGET");
288 return;
289 }
290 if (main0 == POS_DEFAULT) {
291 snprintf(out, out_size, "DEFAULT");
292 return;
293 }
294 // Numeric position: wire value is position_percent * POSITION_WIRE_SCALE (0=open, 200=closed).
295 if (main0 <= POSITION_WIRE_MAX) {
296 uint8_t const percent = main0 / POSITION_WIRE_SCALE;
297 if (percent == 0) {
298 snprintf(out, out_size, "OPEN");
299 // NOLINTNEXTLINE(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
300 } else if (percent == 100) {
301 snprintf(out, out_size, "CLOSE");
302 } else {
303 snprintf(out, out_size, "position %u%%", percent);
304 }
305 return;
306 }
307 // Unknown special code.
308 snprintf(out, out_size, "0x%02X", main0);
309}
310
311std::optional<float> oneway_intent_to_target(uint8_t main0, uint8_t main1) {
312 (void) main1;
313 // Special codes with no settled position (or explicitly "stop") never resolve to a target;
314 // mirrors decode_1w_main_intent()'s branch order so the two stay in agreement.
315 if (main0 == POS_STOP || main0 == POS_FAVORITE || main0 == POS_UNKNOWN || main0 == POS_FORCE_OPEN ||
316 main0 == POS_SECURED_TARGET || main0 == POS_DEFAULT) {
317 return std::nullopt;
318 }
319 // Wire value is position_percent * POSITION_WIRE_SCALE (0=open, 200=closed); divide as an
320 // integer first, matching decode_1w_main_intent()'s percent computation, then convert to float.
321 if (main0 <= POSITION_WIRE_MAX) {
322 uint8_t const percent = main0 / POSITION_WIRE_SCALE;
323 return static_cast<float>(percent);
324 }
325 return std::nullopt;
326}
327
328/// @brief Minimum data bytes for decode of execute/activate‑mode intent fields.
329static constexpr uint8_t ONEWAY_EXECUTE_MIN_DATA_LEN = 4; // originator(1) + ACEI(1) + main[2].
330
332 OneWayFrameInfo info{};
333 memcpy(info.src, frame.src, NODE_ID_SIZE);
334 info.address_class = classify_address(frame.dst);
336 info.cmd = frame.cmd;
337 info.data_len = frame.data_len;
338
339 // CMD 0x00 (execute) and 0x01 (activate mode) share the same initial payload layout:
340 // originator(1) + ACEI(1) + main[2]. CMD 0x20 (write private) has a different layout
341 // (register-based) and is not decoded here.
342 if ((frame.cmd == CMD_EXECUTE || frame.cmd == CMD_ACTIVATE_MODE) && frame.data_len >= ONEWAY_EXECUTE_MIN_DATA_LEN) {
343 info.has_intent = true;
344 info.originator = frame.data[0];
345 info.acei_level = (frame.data[1] & ACEI_LEVEL_MASK) >> ACEI_LEVEL_SHIFT;
346 info.main0 = frame.data[2];
347 info.main1 = frame.data[3];
348 decode_1w_main_intent(frame.data[2], frame.data[3], info.intent, sizeof(info.intent));
349 }
350
351 return info;
352}
353
354DiscoveryResponseInfo decode_discovery_response(const IoFrame &frame, IoDevice &device, std::string &device_id) {
356
357 memcpy(device.node_id, frame.src, NODE_ID_SIZE);
359 if (info.metadata_complete) {
360 device.type = decode_packed_device_type(frame.data[0], frame.data[1]);
361 device.subtype = decode_packed_device_subtype(frame.data[1]);
362 device.inverted = default_inverted_for_type(device.type);
363 } else {
364 device.type = DeviceType::UNKNOWN;
365 device.subtype = 0;
366 device.inverted = false;
367 }
368 device.position = UNKNOWN_POSITION;
369 device.target = UNKNOWN_POSITION;
370 device.is_stopped = true;
371 device_id = node_id_to_string(device.node_id);
372
376 }
379 }
382 }
384 info.timestamp =
385 static_cast<uint16_t>((frame.data[DISCOVERY_RESP_TIMESTAMP_OFFSET] << DISCOVERY_TIMESTAMP_MSB_SHIFT) |
387 }
388
389 return info;
390}
391
392// ============================================================================
393// 1W Add-Controller Key Adoption (CMD 0x30)
394// ============================================================================
395
397 out = OneWayAdoptedKey{};
398
399 // Validate before decrypting -- reject rather than decrypt garbage. Order matches how a reader
400 // would narrow down "what kind of frame is this" (protocol bit, then command, then shape).
401 if ((frame.ctrl0 & CTRL0_PROTOCOL_1W) == 0)
403 if (frame.cmd != CMD_ONEWAY_ADD_CONTROLLER)
405 if (frame.data_len != ONEWAY_ADD_CONTROLLER_PAYLOAD_SIZE)
407
408 const uint8_t *enc_key = &frame.data[ONEWAY_ADD_CONTROLLER_ENC_KEY_OFFSET];
409 // Self-inverse wrap (crypto::crypt_1w_key()'s @warning) -- no direction flag: this same call
410 // decrypts the overheard ciphertext back to the plaintext network key.
411 if (!crypto::crypt_1w_key(frame.src, enc_key, out.system_key))
413
414 out.manufacturer = frame.data[ONEWAY_ADD_CONTROLLER_MANUFACTURER_OFFSET];
415 memcpy(out.sender_node, frame.src, NODE_ID_SIZE);
416 out.sequence = static_cast<uint16_t>(
417 (frame.data[ONEWAY_ADD_CONTROLLER_SEQUENCE_OFFSET] << ONEWAY_ADD_CONTROLLER_SEQUENCE_MSB_SHIFT) |
418 frame.data[ONEWAY_ADD_CONTROLLER_SEQUENCE_OFFSET + 1]);
419
420 // A frame with no MAC is not an error (the reference _p0x30 struct omits the field entirely) --
421 // report NOT_PRESENT and stop; there is nothing to verify.
422 if (!frame.has_mac) {
425 }
426
427 // MAC span is command-specific: cmd + enc_key (17 bytes), NOT the whole declared payload --
428 // see create_1w_hmac()'s @warning. Verified under the *recovered* key: a match is strong
429 // evidence the decryption above landed on the correct key, before any device is ever commanded.
430 uint8_t mac_span[ONEWAY_ADD_CONTROLLER_MAC_SPAN_SIZE];
431 mac_span[0] = frame.cmd;
432 memcpy(&mac_span[1], enc_key, AES_KEY_SIZE);
433
434 uint8_t expected_mac[HMAC_SIZE];
435 if (!crypto::create_1w_hmac(mac_span, sizeof(mac_span), out.sequence, out.system_key, expected_mac)) {
438 }
439
440 // Constant-time comparison, matching crypto::verify_hmac()'s convention.
441 uint8_t diff = 0;
442 for (uint8_t i = 0; i < HMAC_SIZE; i++)
443 diff |= static_cast<uint8_t>(frame.mac[i] ^ expected_mac[i]);
445
447}
448
449} // namespace home_io_control
450} // namespace esphome
bool crypt_1w_key(const uint8_t node[NODE_ID_SIZE], const uint8_t in[AES_KEY_SIZE], uint8_t out[AES_KEY_SIZE])
Encrypt or decrypt a 1W controller key during add-controller key adoption (CMD 0x30).
bool create_1w_hmac(const uint8_t *data, uint8_t len, uint16_t sequence, const uint8_t controller_key[AES_KEY_SIZE], uint8_t hmac[HMAC_SIZE])
Create the 6-byte authenticator for a 1W frame.
static constexpr uint8_t DEVICE_NAME_BUFFER_SIZE
Device name storage including null terminator.
static constexpr uint8_t DEVICE_METADATA_SIZE
Packed device metadata uses two bytes where the high 8 bits carry the upper type bits and the low byt...
static constexpr float UNKNOWN_POSITION
Sentinel value meaning "position is not known yet".
static constexpr uint8_t NODE_ID_SIZE
Device/node addresses are 3 bytes (e.g., "123ABC").
Definition proto_sizes.h:20
@ VERIFIED
frame.has_mac was true and the MAC verified under the recovered key.
@ NOT_PRESENT
frame.has_mac was false; nothing to verify.
@ FAILED
frame.has_mac was true and the MAC did NOT verify under the recovered key.
static constexpr uint8_t ONEWAY_EXECUTE_MIN_DATA_LEN
Minimum data bytes for decode of execute/activate‑mode intent fields.
static constexpr uint8_t CMD_ACTIVATE_MODE
Activate device mode (scene, ventilation) — requires auth.
static constexpr uint8_t DEVICE_TYPE_HIGH_BITS_SHIFT
DeviceType
Device type identifiers reported by IO‑Homecontrol products.
@ UNKNOWN
Unknown/unspecified device.
void encode_broadcast_address(DeviceType type, uint8_t out[NODE_ID_SIZE])
Encode a device type into its typed-broadcast destination address — the exact inverse of broadcast_ta...
static constexpr uint8_t DISCOVERY_RESP_MANUFACTURER_OFFSET
Manufacturer ID at data[5].
static constexpr uint8_t POS_UNKNOWN
Wire value: position unknown / keep current.
static constexpr uint8_t POS_FORCE_OPEN
Ambiguous wire value used only for passive 1W-traffic intent decoding (decode_1w_main_intent() / onew...
OneWayAddControllerDecodeError decode_1w_add_controller(const IoFrame &frame, OneWayAdoptedKey &out)
Decode a CMD_ONEWAY_ADD_CONTROLLER (0x30) frame into a recovered controller identity.
bool default_inverted_for_type(DeviceType type)
Determine whether a device type has inverted position mapping by default.
static constexpr uint16_t LATIN1_CODEPOINT_MAX
Highest Unicode code point representable in Latin-1.
static constexpr uint8_t ADDRESS_SUFFIX_BROADCAST
Suffix for "all devices of this type" broadcast.
std::optional< float > oneway_intent_to_target(uint8_t main0, uint8_t main1)
Resolve a 1W main-byte pair to an optimistic IO target position, if unambiguous.
static constexpr uint8_t POSITION_WIRE_MAX
Highest doubled-position wire value: 100% * POSITION_WIRE_SCALE.
static constexpr uint8_t ADDRESS_SUFFIX_DISCOVERY
Suffix for discovery-related broadcasts.
static constexpr uint8_t POSITION_WIRE_SCALE
Scale factor between a 0-100 percent position and its CMD_EXECUTE main-byte wire value.
static constexpr uint8_t CTRL0_PROTOCOL_1W
Bit 5: 1=OneWay protocol, 0=TwoWay protocol.
Definition proto_frame.h:43
static constexpr uint8_t ACEI_LEVEL_MASK
Bits [7:5]: priority level (0–7).
static constexpr uint8_t HMAC_SIZE
Authentication HMAC is 6 bytes (truncated AES output).
Definition proto_sizes.h:22
OneWayAddControllerDecodeError
Decoding outcome for decode_1w_add_controller().
@ WRONG_COMMAND
frame.cmd is not CMD_ONEWAY_ADD_CONTROLLER.
@ NOT_ONEWAY
CTRL0_PROTOCOL_1W is not set — not a 1W frame at all.
@ BAD_LENGTH
Declared payload is not exactly the expected 20 bytes.
@ KEY_UNWRAP_FAILED
crypto::crypt_1w_key() itself reported failure.
static constexpr uint8_t ADDRESS_SUFFIX_MASK
Well-known address suffix values in the broadcast address space.
OneWayFrameInfo decode_1w_frame(const IoFrame &frame)
Decode a parsed 1W frame into a structured OneWayFrameInfo.
static constexpr uint8_t DISCOVERY_RESP_BACKBONE_OFFSET
Byte offsets within CMD_DISCOVER_RESP (0x29) payload data.
static constexpr uint8_t DEVICE_NAME_WRITE_PAYLOAD_SIZE
Fixed write payload: 15 visible chars plus trailing null/padding.
static constexpr uint8_t POS_VENT_MODIFIER
Modifier byte for the ventilation command.
DeviceType decode_packed_device_type(uint8_t type_msb, uint8_t type_subtype)
Decode a protocol-packed device type from two metadata bytes.
static constexpr uint8_t POS_DEFAULT
Wire value for the default position command.
const char * device_name_validation_error_name(DeviceNameValidationError error)
Return a stable symbolic name for a device-name validation result.
static constexpr uint8_t CMD_ONEWAY_ADD_CONTROLLER
1W "add controller" — a 1W device broadcasts this while its key-copy gesture is active,...
DeviceNameValidationError
Validation result for outbound device-name writes.
@ UNSUPPORTED_CHAR
Name contains characters outside Latin-1.
@ TOO_LONG
Name exceeds the 15-character write limit.
@ EMPTY
Name is empty after normalization.
@ INVALID_UTF8
Name contains malformed UTF-8 bytes.
static constexpr uint8_t DISCOVERY_RESP_FLAGS_OFFSET
Flags byte at data[6].
std::string trim_ascii_whitespace(const std::string &value)
Trim leading and trailing ASCII whitespace from a string.
static constexpr uint8_t CMD_EXECUTE
Set position/open/close/stop — requires authentication.
static constexpr uint8_t DEVICE_NAME_WRITE_CHAR_LIMIT
Reference write limit before the trailing null.
DeviceNameValidationError encode_device_name_payload(const std::string &name, uint8_t payload[DEVICE_NAME_WRITE_PAYLOAD_SIZE], std::string &normalized_name)
Validate and encode a user-supplied UTF-8 device name into the fixed Latin-1 write payload.
AddressClass classify_address(const uint8_t addr[NODE_ID_SIZE])
Classify an IO-Homecontrol 3-byte address.
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.
static constexpr uint8_t ACEI_LEVEL_SHIFT
Shift for priority level extraction.
std::string decode_device_name_payload(const uint8_t *data, uint8_t len)
Decode a device-name payload from IO-homecontrol's Latin-1 wire format into UTF-8.
DeviceType broadcast_target_type(const uint8_t addr[NODE_ID_SIZE])
Extract the target device type from a typed broadcast address.
static constexpr uint8_t POS_FAVORITE
Wire value: move to favorite/"My" position.
uint8_t decode_packed_device_subtype(uint8_t type_subtype)
Decode a protocol-packed device subtype from the second metadata byte.
static constexpr uint8_t DISCOVERY_RESP_FULL_SIZE
Full discovery response payload size.
static constexpr uint8_t DISCOVERY_RESP_TIMESTAMP_OFFSET
Timestamp starts at data[7] (2 bytes).
AddressClass
Address classification categories for diagnostic purposes.
@ UNKNOWN_BROADCAST
Broadcast pattern that does not match known suffixes.
@ UNICAST
Normal device-to-device unicast address (first byte != 0x00).
@ BROADCAST_TYPE
Broadcast to specific device type with non-standard suffix.
@ BROADCAST_ALL
Broadcast to all devices of a type (address suffix 0x3F).
@ DISCOVERY
Discovery-related broadcast (address suffix 0x3B).
const char * address_class_name(AddressClass address_class)
Get a human-readable name for an address classification.
static constexpr uint8_t DEVICE_SUBTYPE_MASK
static constexpr uint8_t AES_KEY_SIZE
AES-128 key size.
Definition proto_sizes.h:23
static constexpr uint8_t POS_STOP
Position values in the IO protocol.
static constexpr uint8_t DEVICE_TYPE_LOW_BITS_SHIFT
DiscoveryResponseInfo decode_discovery_response(const IoFrame &frame, IoDevice &device, std::string &device_id)
Decode a discovery-response payload (CMD_DISCOVER_RESP 0x29 or CMD_DISCOVER_SPE_RESP 0x2B — both carr...
const char * device_name_validation_error_description(DeviceNameValidationError error)
Return a human-readable explanation for a device-name validation result.
void decode_1w_main_intent(uint8_t main0, uint8_t main1, char *out, size_t out_size)
Decode the "main" position/command bytes from a 1W execute payload.
static constexpr uint8_t POS_SECURED_TARGET
Wire value for the secured target position command.
Device-name, address-classification and 1W-frame codecs.
IO-Homecontrol command IDs, result codes and protocol enumerations.
Cryptographic helpers for the IO‑Homecontrol protocol.
IO-Homecontrol 2W frame container: control bytes, IoFrame and (de)serialization.
Extended discovery-response fields (manufacturer, Multi Information Byte, backbone address,...
bool has_extended
data_len >= DISCOVERY_RESP_FULL_SIZE (mfr/flags/timestamp present).
uint8_t backbone[NODE_ID_SIZE]
Backbone address as reported by the device.
bool metadata_complete
data_len >= DEVICE_METADATA_SIZE (type/subtype present).
uint8_t manufacturer
Raw manufacturer ID; name via manufacturer_name().
uint8_t flags
Multi Information Byte; decode with DISCOVERY_FLAGS_* masks.
uint16_t timestamp
Device timestamp field (advances between replies).
Runtime state of a paired IO‑Homecontrol device.
float target
Target position the device is moving toward.
bool inverted
True if open/close positions are swapped (e.g., horizontal awning).
float position
Current position: 0=open, 100=closed, or UNKNOWN_POSITION.
uint8_t subtype
Device subtype (manufacturer‑specific).
uint8_t node_id[NODE_ID_SIZE]
Device's 3‑byte radio address.
DeviceType type
Device type (shutter, awning, etc.).
bool is_stopped
True if device is not moving.
Parsed IO‑Homecontrol frame (CTRL0/1 + addresses + command + data).
Definition proto_frame.h:88
uint8_t data[FRAME_MAX_DATA_SIZE]
Command parameters (0–23 bytes). Never includes mac.
Definition proto_frame.h:94
uint8_t mac[HMAC_SIZE]
Out-of-length authenticator trailer; meaningful only when has_mac.
Definition proto_frame.h:97
bool has_mac
True if this frame carries the mac trailer (see struct doc).
Definition proto_frame.h:98
uint8_t ctrl0
Control byte 0: flags + length.
Definition proto_frame.h:89
uint8_t src[NODE_ID_SIZE]
Source node ID (3 bytes).
Definition proto_frame.h:92
uint8_t dst[NODE_ID_SIZE]
Destination node ID (3 bytes).
Definition proto_frame.h:91
uint8_t data_len
Actual length of data.
Definition proto_frame.h:95
Recovered controller identity from a decoded CMD_ONEWAY_ADD_CONTROLLER (0x30) frame.
uint8_t manufacturer
Manufacturer ID byte from the payload (man_id).
OneWayMacStatus mac_status
MAC-verification outcome; see OneWayMacStatus.
uint8_t system_key[AES_KEY_SIZE]
Recovered network system key (crypto::crypt_1w_key() output).
uint8_t sender_node[NODE_ID_SIZE]
Sender's node address (frame.src) — the new identity's node.
uint16_t sequence
2-byte rolling sequence from the payload (big-endian on wire).
Decoded representation of a 1W remote frame.
bool has_intent
True if originator/ACEI/intent fields were decoded.
uint8_t originator
Command originator byte (e.g., ORIGINATOR_USER_REMOTE).
DeviceType target_type
Target device class from broadcast address.
uint8_t main0
Raw first main byte (has_intent only); feeds oneway_intent_to_target().
uint8_t acei_level
ACEI priority level (0–7).
uint8_t main1
Raw second main byte (has_intent only); feeds oneway_intent_to_target().
uint8_t cmd
Command ID (e.g., CMD_EXECUTE, CMD_ACTIVATE_MODE).
AddressClass address_class
Classification of the broadcast address.
char intent[ONEWAY_INTENT_BUFFER_SIZE]
Human-readable command intent (e.g., "CLOSE").
uint8_t src[NODE_ID_SIZE]
Remote source node ID (3 bytes).
uint8_t data_len
Raw data length (for commands without decoded intent).