espressif / esp-matter

Espressif's SDK for Matter
Apache License 2.0
692 stars 155 forks source link

Endpoints (CON-1393) #1131

Closed Nezaemmy closed 1 week ago

Nezaemmy commented 1 week ago

Hi, I use esp32s3 as matter device, I tried to add 21 endpoints on it but it seems like it can not support more than 15 endpoints.

I want to ask you, is there a way to increase the number of endpoints more than 15 with one Matter device?

shubhamdp commented 1 week ago

I want to ask you, is there a way to increase the number of endpoints more than 15 with one Matter device?

Yes, there is a way to increase the number of endpoints, CONFIG_ESP_MATTER_MAX_DYNAMIC_ENDPOINT_COUNT=16, by default it is configured to 16.

You can adjust the dynamic endpoint count as described in the programming guide. (NOTE: It reduces it from 16 to 4 for optimization purpose. But, you can bump it up as per your need.

Nezaemmy commented 1 week ago

thank you