Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to create a composed device in a bridge device? (CON-1380) #1121

Closed
LinKvFM opened this issue Oct 17, 2024 · 13 comments
Closed

How to create a composed device in a bridge device? (CON-1380) #1121

LinKvFM opened this issue Oct 17, 2024 · 13 comments

Comments

@LinKvFM
Copy link

LinKvFM commented Oct 17, 2024

As shown in Figure 47 in the Matter-1.3-Core-Specification file, the endpoint 24, 25, and 26 are combined into a composed device. Now I want to create a multi-button switch as a bridge device according to this topology. How can I create it and what type of switch should it be?
_20241017153404

@github-actions github-actions bot changed the title How to create a composed device in a bridge device? How to create a composed device in a bridge device? (CON-1380) Oct 17, 2024
@jadhavrohit924
Copy link
Contributor

You can create multiple endpoints representing multiple device types on the bridged node. You have to use set_parent_endpoint to set the bridged node as a parent of your other endpoints.

what type of switch should it be?

It's up to you, matter supports Latching, Momentary and Action (Development is in progress) switch.

@LinKvFM
Copy link
Author

LinKvFM commented Oct 21, 2024

I think I'm stupid, I could not create it because Apple home doesn't show what I want correctly. Is there an example that can help me?

@jadhavrohit924
Copy link
Contributor

We don’t have a bridge example that has composite bridged devices. We have showcased composite devices in a refrigerator example.

@dhrishi
Copy link
Collaborator

dhrishi commented Oct 26, 2024

I think I'm stupid, I could not create it because Apple home doesn't show what I want correctly. Is there an example that can help me?

You are not. No one is :-) Please check the refrigerator example and see if it helps. Let us know in case of any questions/issues

@LinKvFM
Copy link
Author

LinKvFM commented Oct 28, 2024

@dhrishi Thanks. Back to the point, the composite switch still cannot be displayed in Apple home, but I can use chip-tool to access this endpoint.
Similarly, Matter bridges from other manufacturer can display composite devices in Apple home. I want to know how they do it.

My code for creating switch:

esp_err_t create_bridge_devices(esp_matter::endpoint_t *ep, uint32_t device_type_id, void *priv_data)
{
...
    case ESP_MATTER_ON_OFF_SWITCH_DEVICE_TYPE_ID: {
        on_off_switch::config_t switch_config;
        // err = on_off_switch::add(ep, &switch_config);
        node_t *node = node::get();
        for (uint8_t i = 0; i < count; i++)
        {
             endpoint_t *endpoint = on_off_switch::create(node, &switch_config, ENDPOINT_FLAG_NONE, (void*)switch_priv_data);
             uint16_t device_endpoint_id = esp_matter::endpoint::get_id(endpoint);
             uint16_t parent_endpoint_id = esp_matter::endpoint::get_id(ep);
             if (set_parent_endpoint(endpoint, ep) != ESP_OK) {
                    ESP_LOGE(TAG, "Failed to set parent endpoint for the bridged device");
                    endpoint::destroy(node, endpoint);
                    continue;
             }
             esp_matter::endpoint::enable(endpoint);
        }
        break;
    }
...
}

@jonsmirl
Copy link
Contributor

jonsmirl commented Oct 31, 2024

Arbitrary composed devices do not work in Google Home, Apple Home or Amazon. You can certainly create the devices, but none of the big controller apps will support them. (I built my own composed devices and tested on all of the controllers). None of the big controllers support the bridge Actions cluster either. This is not a problem with the spec or the device, Apple/Google/Amazon simply have not written the necessary code to support composed devices.

Anyway, multi-button switch should not be a composed device. Each of the switches should be exposed as separate endpoints then add a FixedLabel to identify them.

@LinKvFM
Copy link
Author

LinKvFM commented Nov 1, 2024

How to set label value for endpoint? Is there a fixed format?

...
case ESP_MATTER_ON_OFF_SWITCH_DEVICE_TYPE_ID: {
        on_off_switch::config_t switch_config;
        err = on_off_switch::add(ep, &switch_config);
        cluster::fixed_label::config_t fixed_label_config;
        esp_matter::cluster::fixed_label::create(ep, &fixed_label_config, esp_matter::CLUSTER_FLAG_SERVER);

        esp_matter_attr_val_t attr_val = esp_matter_array("orientation/01", strlen("orientation/01"), 1);
        attribute_t *attribute = attribute::get(fixed_label_cluster, FixedLabel::Attributes::LabelList::Id);
        attribute::set_val(attribute, &attr_val);
        ...

The next key is marked as "orientation/02", the format is: orientation/<key zone>

@jonsmirl
Copy link
Contributor

jonsmirl commented Nov 1, 2024

Each bridged device has a Bridged Device Basic Information 0x39 cluster on the endpoint.
Attribute 5, Node label.

image

@jonsmirl
Copy link
Contributor

jonsmirl commented Nov 4, 2024

Matter 1.3 adds a TAGLIST on the descriptor cluster to disambiguate multiple identical endpoints.
#1141

You can still used Fixed Label which is free-form. The new scheme via TAGLIST is well defined.

I haven't tried making arbitrary composed bridge devices on Google/Apple/Amazon in the last six months. Maybe this works now, but I doubt it. Back when I tested I also coded up the Actions cluster with the endpoints list, none of Google/Apple/Amazon did anything with that either.

@LinKvFM
Copy link
Author

LinKvFM commented Nov 5, 2024

It would be great if there was an example. I'm having trouble creating a bridge node for Multi-button switch.

@jonsmirl
Copy link
Contributor

jonsmirl commented Nov 5, 2024

It is not required to make it a bridge composed device, start with independent bridged devices which is much easier.

@LinKvFM
Copy link
Author

LinKvFM commented Nov 6, 2024

I submitted another issue #1144

@jadhavrohit924
Copy link
Contributor

Please close the issue, if your original issue is solved.

@LinKvFM LinKvFM closed this as completed Dec 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants