Missin Feature IDs for Type Contact-Sensor #4
-
|
Hi i would like to configure my own projekt as an contact-sensor. But i am missing the Feature_ID for boolean state of contact sensors here in the /workspace/esp-lowcode-matter/components/low_code/low_code.h typedef enum { do you have any idea how i can update the feature with low_code_feature_data_t ? or is this completely the wrong direction? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi, even if the feature_ids are missing from this list, you can use the matter specific low_level struct from here: https://github.com/espressif/esp-lowcode-matter/blob/main/components/low_code/low_code.h#L107. Feature_id is like an abstraction layer for the application. But, for features where the feature_id is not handled internally in the system, you can still continue to use the low_level structs and it should work. |
Beta Was this translation helpful? Give feedback.
Hi, even if the feature_ids are missing from this list, you can use the matter specific low_level struct from here: https://github.com/espressif/esp-lowcode-matter/blob/main/components/low_code/low_code.h#L107.
Feature_id is like an abstraction layer for the application. But, for features where the feature_id is not handled internally in the system, you can still continue to use the low_level structs and it should work.