@@ -2021,6 +2021,25 @@ const function_generic_t function_list[] = {
2021
2021
};
2022
2022
const int function_flags = CLUSTER_FLAG_INIT_FUNCTION;
2023
2023
2024
+ static bool check_feature_map (uint32_t features) {
2025
+ if ((features & feature::other::get_id ()) == feature::other::get_id ())
2026
+ return true ;
2027
+ if ((features & feature::passive_infrared::get_id ()) == feature::passive_infrared::get_id ())
2028
+ return true ;
2029
+ if ((features & feature::ultrasonic::get_id ()) == feature::ultrasonic::get_id ())
2030
+ return true ;
2031
+ if ((features & feature::physical_contact::get_id ()) == feature::physical_contact::get_id ())
2032
+ return true ;
2033
+ if ((features & feature::active_infrared::get_id ()) == feature::active_infrared::get_id ())
2034
+ return true ;
2035
+ if ((features & feature::radar::get_id ()) == feature::radar::get_id ())
2036
+ return true ;
2037
+ if ((features & feature::rf_sensing::get_id ()) == feature::rf_sensing::get_id ())
2038
+ return true ;
2039
+ if ((features & feature::vision::get_id ()) == feature::vision::get_id ())
2040
+ return true ;
2041
+ return false ;
2042
+ }
2024
2043
cluster_t *create (endpoint_t *endpoint, config_t *config, uint8_t flags)
2025
2044
{
2026
2045
cluster_t *cluster = cluster::create (endpoint, OccupancySensing::Id, flags);
@@ -2049,6 +2068,34 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2049
2068
create_default_binding_cluster (endpoint);
2050
2069
}
2051
2070
2071
+ if (config != nullptr && check_feature_map (config->features )) {
2072
+ if (config->features & feature::other::get_id ()) {
2073
+ feature::other::add (cluster);
2074
+ }
2075
+ if (config->features & feature::passive_infrared::get_id ()) {
2076
+ feature::passive_infrared::add (cluster);
2077
+ }
2078
+ if (config->features & feature::ultrasonic::get_id ()) {
2079
+ feature::ultrasonic::add (cluster);
2080
+ }
2081
+ if (config->features & feature::physical_contact::get_id ()) {
2082
+ feature::physical_contact::add (cluster);
2083
+ }
2084
+ if (config->features & feature::active_infrared::get_id ()) {
2085
+ feature::active_infrared::add (cluster);
2086
+ }
2087
+ if (config->features & feature::radar::get_id ()) {
2088
+ feature::radar::add (cluster);
2089
+ }
2090
+ if (config->features & feature::rf_sensing::get_id ()) {
2091
+ feature::rf_sensing::add (cluster);
2092
+ }
2093
+ if (config->features & feature::vision::get_id ()) {
2094
+ feature::vision::add (cluster);
2095
+ }
2096
+ } else {
2097
+ ESP_LOGE (TAG, " Config is NULL or mandatory features are missing." );
2098
+ }
2052
2099
return cluster;
2053
2100
}
2054
2101
} /* occupancy_sensing */
@@ -2324,6 +2371,20 @@ const function_generic_t function_list[] = {
2324
2371
const int function_flags =
2325
2372
CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_ATTRIBUTE_CHANGED_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION;
2326
2373
2374
+ static bool check_feature_map (uint32_t features) {
2375
+ if ((features & feature::constant_pressure::get_id ()) == feature::constant_pressure::get_id ())
2376
+ return true ;
2377
+ if ((features & feature::compensated_pressure::get_id ()) == feature::compensated_pressure::get_id ())
2378
+ return true ;
2379
+ if ((features & feature::constant_flow::get_id ()) == feature::constant_flow::get_id ())
2380
+ return true ;
2381
+ if ((features & feature::constant_speed::get_id ()) == feature::constant_speed::get_id ())
2382
+ return true ;
2383
+ if ((features & feature::constant_temperature::get_id ()) == feature::constant_temperature::get_id ())
2384
+ return true ;
2385
+ return false ;
2386
+ }
2387
+
2327
2388
cluster_t *create (endpoint_t *endpoint, config_t *config, uint8_t flags)
2328
2389
{
2329
2390
cluster_t *cluster = cluster::create (endpoint, PumpConfigurationAndControl::Id, flags);
@@ -2355,6 +2416,31 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2355
2416
create_default_binding_cluster (endpoint);
2356
2417
}
2357
2418
2419
+ if (config != nullptr && check_feature_map (config->features )) {
2420
+ if (config->features & feature::constant_pressure::get_id ()) {
2421
+ feature::constant_pressure::add (cluster, &config->constant_pressure );
2422
+ }
2423
+ if (config->features & feature::compensated_pressure::get_id ()) {
2424
+ feature::compensated_pressure::add (cluster, &config->compensated_pressure );
2425
+ }
2426
+ if (config->features & feature::constant_flow::get_id ()) {
2427
+ feature::constant_flow::add (cluster, &config->constant_flow );
2428
+ }
2429
+ if (config->features & feature::constant_speed::get_id ()) {
2430
+ feature::constant_speed::add (cluster, &config->constant_speed );
2431
+ }
2432
+ if (config->features & feature::constant_temperature::get_id ()) {
2433
+ feature::constant_temperature::add (cluster, &config->constant_temperature );
2434
+ }
2435
+ if (config->features & feature::automatic::get_id ()) {
2436
+ feature::automatic::add (cluster);
2437
+ }
2438
+ if (config->features & feature::local_operation::get_id ()) {
2439
+ feature::local_operation::add (cluster);
2440
+ }
2441
+ } else {
2442
+ ESP_LOGE (TAG, " Config is NULL or mandatory features are missing." );
2443
+ }
2358
2444
return cluster;
2359
2445
}
2360
2446
} /* pump_configuration_and_control */
@@ -2561,6 +2647,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2561
2647
2562
2648
/* Commands */
2563
2649
mode_base::command::create_change_to_mode (cluster);
2650
+ mode_base::command::create_change_to_mode_response (cluster);
2564
2651
2565
2652
return cluster;
2566
2653
}
@@ -2598,6 +2685,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2598
2685
2599
2686
/* Commands */
2600
2687
mode_base::command::create_change_to_mode (cluster);
2688
+ mode_base::command::create_change_to_mode_response (cluster);
2601
2689
2602
2690
return cluster;
2603
2691
}
@@ -2634,6 +2722,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2634
2722
2635
2723
/* Commands */
2636
2724
mode_base::command::create_change_to_mode (cluster);
2725
+ mode_base::command::create_change_to_mode_response (cluster);
2637
2726
2638
2727
return cluster;
2639
2728
}
@@ -2726,6 +2815,12 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2726
2815
/* Attributes managed internally */
2727
2816
global::attribute::create_feature_map (cluster, 0 );
2728
2817
2818
+ operational_state::attribute::create_phase_list (cluster, NULL , 0 , 0 );
2819
+ operational_state::attribute::create_current_phase (cluster, 0 );
2820
+ operational_state::attribute::create_operational_state_list (cluster, NULL , 0 , 0 );
2821
+ operational_state::attribute::create_operational_state (cluster, 0 );
2822
+ operational_state::attribute::create_operational_error (cluster, 0 );
2823
+
2729
2824
/* Attributes not managed internally */
2730
2825
global::attribute::create_cluster_revision (cluster, cluster_revision);
2731
2826
}
@@ -2947,6 +3042,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
2947
3042
2948
3043
/* Commands */
2949
3044
mode_base::command::create_change_to_mode (cluster);
3045
+ mode_base::command::create_change_to_mode_response (cluster);
2950
3046
2951
3047
return cluster;
2952
3048
}
@@ -3150,6 +3246,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
3150
3246
}
3151
3247
3152
3248
/* Commands */
3249
+ mode_base::command::create_change_to_mode_response (cluster);
3153
3250
mode_base::command::create_change_to_mode (cluster);
3154
3251
3155
3252
return cluster;
@@ -3363,7 +3460,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_
3363
3460
global::attribute::create_cluster_revision (cluster, cluster_revision);
3364
3461
attribute::create_heater_types (cluster, config->heater_types );
3365
3462
attribute::create_heat_demand (cluster, config->heat_demand );
3366
- attribute::create_tank_volume (cluster, config->tank_volume );
3463
+ attribute::create_boost_state (cluster, config->boost_state );
3367
3464
}
3368
3465
3369
3466
if (features & feature::energy_management::get_id ()) {
@@ -3414,6 +3511,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags)
3414
3511
3415
3512
/* Commands */
3416
3513
mode_base::command::create_change_to_mode (cluster);
3514
+ mode_base::command::create_change_to_mode_response (cluster);
3417
3515
3418
3516
return cluster;
3419
3517
}
0 commit comments