components/esp_matter: add closure_dimension cluster in esp_matter

This commit is contained in:
mahesh
2025-12-01 13:41:03 +05:30
parent 405bc3d537
commit 82e9188dc2
11 changed files with 432 additions and 1 deletions
@@ -3036,5 +3036,22 @@ command_t *create_calibrate(cluster_t *cluster)
} /* command */
} /* closure_control */
namespace closure_dimension {
namespace command {
command_t *create_set_target(cluster_t *cluster)
{
return esp_matter::command::create(cluster, ClosureDimension::Commands::SetTarget::Id,
COMMAND_FLAG_ACCEPTED, NULL);
}
command_t *create_step(cluster_t *cluster)
{
return esp_matter::command::create(cluster, ClosureDimension::Commands::Step::Id,
COMMAND_FLAG_ACCEPTED, NULL);
}
} /* command */
} /* closure_dimension */
} /* cluster */
} /* esp_matter */