19constexpr uint8_t UTF8_SINGLE_BYTE_MAX = 0x80;
20constexpr uint8_t UTF8_TWO_BYTE_LEAD_BASE = 0xC0;
21constexpr uint8_t UTF8_CONTINUATION_BASE = 0x80;
22constexpr uint8_t UTF8_CONTINUATION_MASK = 0x3F;
23constexpr uint8_t UTF8_TWO_BYTE_SHIFT = 6;
24constexpr uint8_t NAME_PADDING_NUL = 0x00;
25constexpr uint8_t NAME_PADDING_SPACE = 0x20;
26constexpr uint8_t UTF8_TWO_BYTE_MASK = 0xE0;
27constexpr uint8_t UTF8_TWO_BYTE_PREFIX = 0xC0;
28constexpr uint8_t UTF8_THREE_BYTE_MASK = 0xF0;
29constexpr uint8_t UTF8_THREE_BYTE_PREFIX = 0xE0;
30constexpr uint8_t UTF8_FOUR_BYTE_MASK = 0xF8;
31constexpr uint8_t UTF8_FOUR_BYTE_PREFIX = 0xF0;
32constexpr uint8_t UTF8_CONTINUATION_PREFIX_MASK = 0xC0;
33constexpr uint8_t UTF8_CONTINUATION_PREFIX = 0x80;
34constexpr uint8_t UTF8_TWO_BYTE_VALUE_MASK = 0x1F;
35constexpr uint8_t ASCII_MAX = 0x7F;
36constexpr uint8_t DISCOVERY_TIMESTAMP_MSB_SHIFT = 8;
38std::string latin1_to_utf8(
const uint8_t *data,
size_t len) {
40 result.reserve(len * 2);
42 for (
size_t index = 0; index < len; index++) {
43 uint8_t
const byte = data[index];
44 if (
byte < UTF8_SINGLE_BYTE_MAX) {
47 result.push_back(
static_cast<char>(
byte));
54 result.push_back(
static_cast<char>(UTF8_TWO_BYTE_LEAD_BASE | (
byte >> UTF8_TWO_BYTE_SHIFT)));
55 result.push_back(
static_cast<char>(UTF8_CONTINUATION_BASE | (
byte & UTF8_CONTINUATION_MASK)));
65 while (begin < value.length() && std::isspace(
static_cast<unsigned char>(value[begin])) != 0)
68 size_t end = value.length();
69 while (end > begin && std::isspace(
static_cast<unsigned char>(value[end - 1])) != 0)
72 return value.substr(begin, end - begin);
76 if (data ==
nullptr || len == 0)
79 const uint8_t begin = data[0] > NAME_PADDING_SPACE ? 0 : 1;
83 size_t raw_len = len - begin;
85 (data[begin + raw_len - 1] == NAME_PADDING_NUL || data[begin + raw_len - 1] == NAME_PADDING_SPACE))
91 return latin1_to_utf8(data + begin, raw_len);
96 std::string &normalized_name) {
97 if (payload ==
nullptr)
101 normalized_name.clear();
104 if (trimmed_name.empty())
107 uint8_t latin1_len = 0;
108 for (
size_t index = 0; index < trimmed_name.length();) {
109 const auto byte =
static_cast<uint8_t
>(trimmed_name[index]);
110 uint16_t codepoint = 0;
113 if (
byte <= ASCII_MAX) {
115 }
else if ((
byte & UTF8_TWO_BYTE_MASK) == UTF8_TWO_BYTE_PREFIX) {
116 if (index + 1 >= trimmed_name.length())
119 const auto continuation =
static_cast<uint8_t
>(trimmed_name[index + 1]);
120 if ((continuation & UTF8_CONTINUATION_PREFIX_MASK) != UTF8_CONTINUATION_PREFIX)
123 codepoint =
static_cast<uint16_t
>(((
byte & UTF8_TWO_BYTE_VALUE_MASK) << UTF8_TWO_BYTE_SHIFT) |
124 (continuation & UTF8_CONTINUATION_MASK));
125 if (codepoint < UTF8_SINGLE_BYTE_MAX)
128 }
else if ((
byte & UTF8_THREE_BYTE_MASK) == UTF8_THREE_BYTE_PREFIX ||
129 (
byte & UTF8_FOUR_BYTE_MASK) == UTF8_FOUR_BYTE_PREFIX) {
141 payload[latin1_len++] =
static_cast<uint8_t
>(codepoint);
145 normalized_name = latin1_to_utf8(payload, latin1_len);
158 return "INVALID_UTF8";
160 return "UNSUPPORTED_CHAR";
162 return "UNKNOWN_DEVICE_NAME_VALIDATION_ERROR";
169 return "name accepted";
171 return "device name must not be empty";
173 return "device name exceeds the 15-character write limit";
175 return "device name must be valid UTF-8";
177 return "device name contains characters outside Latin-1";
179 return "unknown device-name validation error";
188 bool const has_type_bits = (addr[1] != 0) || ((addr[2] & 0xC0) != 0);
201 if (addr[1] == 0 && addr[2] == 0)
208 switch (address_class) {
212 return "broadcast_all";
214 return "broadcast_type";
219 return "unknown_broadcast";
229 uint16_t
const type_raw =
243 snprintf(out, out_size,
"STOP");
248 snprintf(out, out_size,
"VENT");
250 snprintf(out, out_size,
"FAVORITE");
255 snprintf(out, out_size,
"UNCHANGED");
263 snprintf(out, out_size,
"FORCE_OPEN");
267 snprintf(out, out_size,
"SECURED_TARGET");
271 snprintf(out, out_size,
"DEFAULT");
277 uint8_t
const percent = main0 / 2;
279 snprintf(out, out_size,
"OPEN");
281 }
else if (percent == 100) {
282 snprintf(out, out_size,
"CLOSE");
284 snprintf(out, out_size,
"position %u%%", percent);
289 snprintf(out, out_size,
"0x%02X", main0);
304 uint8_t
const percent = main0 / 2;
305 return static_cast<float>(percent);
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").
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.
@ SWINGING_SHUTTER
Swinging shutter.
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...
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 ADDRESS_SUFFIX_DISCOVERY
Suffix for discovery-related broadcasts.
static constexpr uint8_t ACEI_LEVEL_MASK
Bits [7:5]: priority level (0–7).
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.
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.
@ NONE
Name is valid and encodable.
@ 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 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.
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).
uint8_t data[FRAME_MAX_DATA_SIZE]
Command parameters (0–23 bytes).
uint8_t src[NODE_ID_SIZE]
Source node ID (3 bytes).
uint8_t dst[NODE_ID_SIZE]
Destination node ID (3 bytes).
uint8_t data_len
Actual length of data.
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).