We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e22bb4 commit cd7a775Copy full SHA for cd7a775
libraries/Matter/src/Matter.cpp
@@ -68,7 +68,7 @@ static esp_err_t app_attribute_update_cb(
68
// This callback is invoked when clients interact with the Identify Cluster.
69
// In the callback implementation, an endpoint can identify itself. (e.g., by flashing an LED or light).
70
static esp_err_t app_identification_cb(identification::callback_type_t type, uint16_t endpoint_id, uint8_t effect_id, uint8_t effect_variant, void *priv_data) {
71
- log_d("Identification callback to endpoint %d: type: %u, effect: %u, variant: %u", endpoint_id, effect_id, effect_variant);
+ log_d("Identification callback to endpoint %d: type: %u, effect: %u, variant: %u", endpoint_id, type, effect_id, effect_variant);
72
esp_err_t err = ESP_OK;
73
MatterEndPoint *ep = (MatterEndPoint *)priv_data; // endpoint pointer to base class
74
// Identify the endpoint sending a counter to the application
0 commit comments