Skip to content

Commit 9350d9d

Browse files
committed
Merge branch 'fix_door_sensor' into 'main'
components/esp-matter: Fix the inconsistencies in door lock sensor See merge request app-frameworks/esp-matter!888
2 parents b3028d8 + 9a509d4 commit 9350d9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/esp_matter/esp_matter_attribute.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ namespace attribute {
670670
attribute_t *create_lock_state(cluster_t *cluster, nullable<uint8_t> value);
671671
attribute_t *create_lock_type(cluster_t *cluster, uint8_t value);
672672
attribute_t *create_actuator_enabled(cluster_t *cluster, bool value);
673-
attribute_t *create_door_state(cluster_t *cluster, uint8_t value);
673+
attribute_t *create_door_state(cluster_t *cluster, nullable<uint8_t> value);
674674
attribute_t *create_door_open_events(cluster_t *cluster, uint32_t value);
675675
attribute_t *create_door_close_events(cluster_t *cluster, uint32_t value);
676676
attribute_t *create_open_period(cluster_t *cluster, uint16_t value);

components/esp_matter/esp_matter_feature.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4064,7 +4064,7 @@ uint32_t get_id()
40644064
return (uint32_t)DoorLock::Feature::kDoorPositionSensor;
40654065
}
40664066

4067-
esp_err_t add(cluster_t *cluster, config_t *config)
4067+
esp_err_t add(cluster_t *cluster)
40684068
{
40694069
if (!cluster) {
40704070
ESP_LOGE(TAG, "Cluster cannot be NULL");

0 commit comments

Comments
 (0)