@@ -2202,6 +2202,10 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2202
2202
}
2203
2203
2204
2204
if (flags & CLUSTER_FLAG_SERVER) {
2205
+ if (config -> delegate != nullptr ) {
2206
+ static const auto delegate_init_cb = OperationalStateDelegateInitCB;
2207
+ set_delegate_and_init_callback (cluster, delegate_init_cb, config->delegate );
2208
+ }
2205
2209
add_function_list (cluster, function_list, function_flags);
2206
2210
}
2207
2211
if (flags & CLUSTER_FLAG_CLIENT) {
@@ -3440,6 +3444,93 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
3440
3444
}
3441
3445
} /* rvc_clean_mode */
3442
3446
3447
+ namespace microwave_oven_mode {
3448
+ const function_generic_t *function_list = NULL ;
3449
+ const int function_flags = CLUSTER_FLAG_NONE;
3450
+
3451
+ cluster_t *create (endpoint_t *endpoint, config_t *config, uint8_t flags)
3452
+ {
3453
+ cluster_t *cluster = cluster::create (endpoint, MicrowaveOvenMode::Id, flags);
3454
+ if (!cluster) {
3455
+ ESP_LOGE (TAG, " Could not create cluster" );
3456
+ return NULL ;
3457
+ }
3458
+
3459
+ if (flags & CLUSTER_FLAG_SERVER) {
3460
+ if (config -> delegate != nullptr ) {
3461
+ static const auto delegate_init_cb = MicrowaveOvenModeDelegateInitCB;
3462
+ set_delegate_and_init_callback (cluster, delegate_init_cb, config->delegate );
3463
+ }
3464
+ add_function_list (cluster, function_list, function_flags);
3465
+
3466
+ /* Attributes managed internally */
3467
+ global::attribute::create_feature_map (cluster, 0 );
3468
+ global::attribute::create_event_list (cluster, NULL , 0 , 0 );
3469
+ mode_base::attribute::create_supported_modes (cluster, NULL , 0 , 0 );
3470
+
3471
+ /* Attributes not managed internally */
3472
+ if (config) {
3473
+ global::attribute::create_cluster_revision (cluster, config->cluster_revision );
3474
+ mode_base::attribute::create_current_mode (cluster, config->current_mode );
3475
+ } else {
3476
+ ESP_LOGE (TAG, " Config is NULL. Cannot add some attributes." );
3477
+ }
3478
+ }
3479
+
3480
+ return cluster;
3481
+ }
3482
+ } /* microwave_oven_mode */
3483
+
3484
+ namespace microwave_oven_control {
3485
+ const function_generic_t *function_list = NULL ;
3486
+ const int function_flags = CLUSTER_FLAG_NONE;
3487
+
3488
+ cluster_t *create (endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features)
3489
+ {
3490
+ cluster_t *cluster = cluster::create (endpoint, MicrowaveOvenControl::Id, flags);
3491
+ if (!cluster) {
3492
+ ESP_LOGE (TAG, " Could not create cluster" );
3493
+ return NULL ;
3494
+ }
3495
+
3496
+ if (flags & CLUSTER_FLAG_SERVER) {
3497
+ if (config -> delegate != nullptr ) {
3498
+ static const auto delegate_init_cb = MicrowaveOvenControlDelegateInitCB;
3499
+ set_delegate_and_init_callback (cluster, delegate_init_cb, config->delegate );
3500
+ }
3501
+ add_function_list (cluster, function_list, function_flags);
3502
+
3503
+ /* Attributes managed internally */
3504
+ global::attribute::create_feature_map (cluster, 0 );
3505
+ global::attribute::create_event_list (cluster, NULL , 0 , 0 );
3506
+ microwave_oven_control::attribute::create_cook_time (cluster, 0 );
3507
+ microwave_oven_control::attribute::create_max_cook_time (cluster, 0 );
3508
+
3509
+ /* Attributes not managed internally */
3510
+ if (config) {
3511
+ global::attribute::create_cluster_revision (cluster, config->cluster_revision );
3512
+ } else {
3513
+ ESP_LOGE (TAG, " Config is NULL. Cannot add some attributes." );
3514
+ }
3515
+ }
3516
+
3517
+ /* Commands */
3518
+ command::create_set_cooking_parameters (cluster);
3519
+
3520
+ if (features & feature::power_as_number::get_id ()) {
3521
+ feature::power_as_number::add (cluster);
3522
+ }
3523
+ if (features & feature::power_in_watts::get_id ()) {
3524
+ feature::power_in_watts::add (cluster);
3525
+ }
3526
+ if (features & feature::power_number_limits::get_id ()) {
3527
+ feature::power_number_limits::add (cluster);
3528
+ }
3529
+
3530
+ return cluster;
3531
+ }
3532
+ } /* microwave_oven_control */
3533
+
3443
3534
namespace rvc_operational_state {
3444
3535
const function_generic_t *function_list = NULL ;
3445
3536
const int function_flags = CLUSTER_FLAG_NONE;
0 commit comments