@@ -2333,6 +2333,52 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2333
2333
}
2334
2334
} /* laundry_washer_controls */
2335
2335
2336
+ namespace laundry_dryer_controls {
2337
+
2338
+ const function_generic_t function_list[] = {
2339
+ (function_generic_t )MatterLaundryDryerControlsClusterServerPreAttributeChangedCallback,
2340
+ };
2341
+ const int function_flags = CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION;
2342
+
2343
+ cluster_t *create (endpoint_t *endpoint, config_t *config, uint8_t flags)
2344
+ {
2345
+ cluster_t *cluster = cluster::create (endpoint, LaundryDryerControls::Id, flags);
2346
+ if (!cluster) {
2347
+ ESP_LOGE (TAG, " Could not create cluster" );
2348
+ return NULL ;
2349
+ }
2350
+
2351
+ if (flags & CLUSTER_FLAG_SERVER) {
2352
+ if (config -> delegate != nullptr ) {
2353
+ static const auto delegate_init_cb = LaundryDryerControlsDelegateInitCB;
2354
+ set_delegate_and_init_callback (cluster, delegate_init_cb, config->delegate );
2355
+ }
2356
+ add_function_list (cluster, function_list, function_flags);
2357
+ }
2358
+ if (flags & CLUSTER_FLAG_CLIENT) {
2359
+ create_default_binding_cluster (endpoint);
2360
+ }
2361
+
2362
+ if (flags & CLUSTER_FLAG_SERVER) {
2363
+ /* Attributes managed internally */
2364
+ global::attribute::create_feature_map (cluster, 0 );
2365
+ #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE
2366
+ global::attribute::create_event_list (cluster, NULL , 0 , 0 );
2367
+ #endif
2368
+ attribute::create_supported_dryness_levels (cluster, NULL , 0 , 0 );
2369
+ /* Attributes not managed internally */
2370
+ if (config) {
2371
+ global::attribute::create_cluster_revision (cluster, config->cluster_revision );
2372
+ attribute::create_selected_dryness_level (cluster, config->selected_dryness_level );
2373
+ } else {
2374
+ ESP_LOGE (TAG, " Config is NULL. Cannot add some attributes." );
2375
+ }
2376
+ }
2377
+
2378
+ return cluster;
2379
+ }
2380
+ } /* laundry_dryer_controls */
2381
+
2336
2382
namespace dish_washer_mode {
2337
2383
const function_generic_t *function_list = NULL ;
2338
2384
const int function_flags = CLUSTER_FLAG_NONE;
0 commit comments