olavt
olavt
When you install ESP-Matter by selecting the "Install ESP-Matter" command in the ESP-IDF extension for VS Code, which version gets installed? It looks like the latest bits are installed, but...
- ESP-Matter Commit Id: 2da935fcfec26d566f2fc7bbea3a4905783c90dc - ESP-IDF Commit Id: v5.4.1 - SoC (eg: ESP32 or ESP32-C3): ESP32-C6 - Device Logs (Please attach the log file): This logic was added in...
I updated to the latest version of ESP Matter, created a new project based on the light examples and tried to build it. It failed. See log below for details....
How do I create a new Matter project based on an example app with the 1.11.0 version of the VS Code Extension? The "Show Examples" option seems to be gone.
I have installed the latest version of the ESP Matter SDK (using IDF v5.5.1) and test the light example. I can add the device to Apple Home and from there...
Is there a good reason for the light example not exposing all the RGB LED capabilities when added to Apple Home? I think the light example should be properly configured...
I'm working on an Occypancy Sensor device. I would like to be able to set the sensors sensitivity level from the controller (or chip-tool). Is using the Boolean State Configuration...
How can I properly populate this attribute? 
I have written a Matter over Thread occupancy sensor using a DFRobot SEN610 sensor in i2c mode. The code is mostly working fine, but from time to time there are...
I'm creating an Occupancy Sensor endpoint using this code: ```cpp occupancy_sensor::config_t occupancy_sensor_config; // Set the Occupancy Sensing Features if (occupancySensor->SupportsSensingTechnology(OccupancySensor::SensingTechnology::Radar)) { occupancy_sensor_config.occupancy_sensing.feature_flags |= cluster::occupancy_sensing::feature::radar::get_id(); } endpoint_t* endpoint = occupancy_sensor::create(matterNode->GetNode(), &occupancy_sensor_config,...