10#include "esphome/core/log.h"
15static constexpr const char *
TAG =
"home_io_control";
20 if (devices_.count(device_id) != 0)
24 ESP_LOGW(
TAG,
"Ignoring invalid device ID %s", device_id.c_str());
32 devices_[device_id] = dev;
38 auto it = devices_.find(device_id);
39 return (it != devices_.end()) ? &it->second :
nullptr;
50 auto it = devices_.find(device_id);
51 if (it == devices_.end())
53 for (
auto &cb : callbacks_)
54 cb(device_id, it->second);
58 linked_remotes_[remote_id].push_back(device_id);
62 auto it = linked_remotes_.find(remote_id);
63 return (it != linked_remotes_.end()) ? &it->second :
nullptr;
67 linked_remote_classes_[type].push_back(device_id);
71 auto it = linked_remote_classes_.find(type);
72 return (it != linked_remote_classes_.end()) ? &it->second :
nullptr;
76 auto it = devices_.find(device_id);
77 if (it == devices_.end() || !it->second.optimistic_state)
83 ESP_LOGD(
TAG,
"Device %s: optimistic target=%.0f (inverted=%s, last reported position=unknown)", device_id.c_str(),
84 target_io_position, YESNO(it->second.inverted));
86 ESP_LOGD(
TAG,
"Device %s: optimistic target=%.0f (inverted=%s, last reported position=%.0f)", device_id.c_str(),
87 target_io_position, YESNO(it->second.inverted), it->second.position);
89 it->second.target = target_io_position;
90 it->second.is_stopped =
false;
96 auto it = devices_.find(device_id);
97 if (it == devices_.end() || !it->second.optimistic_state)
99 ESP_LOGD(
TAG,
"Device %s: optimistic stop", device_id.c_str());
101 it->second.is_stopped =
true;
107 auto it = devices_.find(device_id);
108 if (it == devices_.end() || !it->second.optimistic_state)
118 ESP_LOGD(
TAG,
"Device %s: optimistic tilt=%.0f (last reported tilt=unknown)", device_id.c_str(), tilt_percent);
120 ESP_LOGD(
TAG,
"Device %s: optimistic tilt=%.0f (last reported tilt=%.0f)", device_id.c_str(), tilt_percent,
123 it->second.tilt = tilt_percent;
129 const std::function<
void(
const std::string &,
const std::vector<std::string> &)> &fn)
const {
130 for (
const auto &pair : linked_remotes_)
131 fn(pair.first, pair.second);
const std::vector< std::string > * linked_devices(const std::string &remote_id) const
Retrieve the list of device IDs linked to a remote.
void set_dimmable(const std::string &device_id, bool dimmable)
Set a device's dimmable flag (see IoDevice::dimmable).
bool apply_optimistic_tilt(const std::string &device_id, float tilt_percent)
Set an optimistic slat angle ahead of a confirming poll, and notify.
const std::vector< std::string > * linked_devices_for_class(DeviceType type) const
Retrieve the list of device IDs linked to a device class.
void add_linked_remote_class(DeviceType type, const std::string &device_id)
Record that a remote's typed-broadcast presses (e.g.
void put(const std::string &device_id, IoDevice device)
Insert or overwrite a device entry without deduplication or hex-validation checks.
bool apply_optimistic_target(const std::string &device_id, float target_io_position)
Set an optimistic target position ahead of a confirming poll/response, and notify.
void notify(const std::string &device_id)
Invoke all registered callbacks for device_id.
void add_linked_remote(const std::string &remote_id, const std::string &device_id)
Record that a remote node controls a registered device.
void subscribe(DeviceUpdateCallback cb)
Register a callback that fires whenever a device's state changes.
IoDevice * get(const std::string &device_id)
Retrieve a registered device by ID.
bool clear_optimistic_target(const std::string &device_id)
Clear a device's optimistic target (e.g.
void for_each_linked_remote(const std::function< void(const std::string &, const std::vector< std::string > &)> &fn) const
Invoke fn(remote_id, device_id_list) for every linked-remote entry.
void add(const std::string &device_id)
Register a device by ID with default metadata (UNKNOWN type, subtype 0, not inverted).
Per-hub device table, update-callback fan-out, and linked-remote map.
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").
DeviceType
Device type identifiers reported by IO‑Homecontrol products.
static constexpr const char * TAG
std::function< void(const std::string &device_id, const IoDevice &device)> DeviceUpdateCallback
Callback type invoked when a device's state changes.
bool device_supports_tilt(DeviceType type)
Does this device type support tilt (slat angle) control?
bool hex_to_bytes(const std::string &hex, uint8_t *out, uint8_t len)
Convert a hex string (e.g., "123ABC") to a byte array.
IO-Homecontrol 2W frame container: control bytes, IoFrame and (de)serialization.
Fundamental IO-Homecontrol frame and crypto size constants.
YAML-declared device metadata for registration; defaults match an undeclared device.
bool optimistic_state
Whether apply_optimistic_target/clear_optimistic_target may fire.
bool inverted
Position-inversion flag.
uint8_t subtype
Device subtype byte.
DeviceType type
Device type from YAML declaration.
Runtime state of a paired IO‑Homecontrol device.
bool inverted
True if open/close positions are swapped (e.g., horizontal awning).
uint8_t subtype
Device subtype (manufacturer‑specific).
uint8_t node_id[NODE_ID_SIZE]
Device's 3‑byte radio address.
bool dimmable
True for a LIGHT-class device configured dimmable: true in YAML.
bool optimistic_state
True if target may be set ahead of a confirming poll/response.
DeviceType type
Device type (shutter, awning, etc.).