@@ -3921,7 +3921,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_
3921
3921
}
3922
3922
}
3923
3923
3924
- /* Features */
3924
+ /* Features */
3925
3925
if (features & feature::charging_preferences::get_id ()) {
3926
3926
feature::charging_preferences::add (cluster);
3927
3927
}
@@ -3946,6 +3946,66 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_
3946
3946
}
3947
3947
} /* energy_evse */
3948
3948
3949
+ namespace valve_configuration_and_control {
3950
+ const function_generic_t *function_list = NULL ;
3951
+ const int function_flags = CLUSTER_FLAG_NONE;
3952
+
3953
+ cluster_t *create (endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features)
3954
+ {
3955
+ cluster_t *cluster = cluster::create (endpoint, ValveConfigurationAndControl::Id, flags);
3956
+ if (!cluster) {
3957
+ ESP_LOGE (TAG, " Could not create cluster" );
3958
+ return NULL ;
3959
+ }
3960
+ if (flags & CLUSTER_FLAG_SERVER) {
3961
+ if (config -> delegate != nullptr ) {
3962
+ static const auto delegate_init_cb = ValveConfigurationAndControlDelegateInitCB;
3963
+ set_delegate_and_init_callback (cluster, delegate_init_cb, config->delegate );
3964
+ }
3965
+ static const auto plugin_server_init_cb = CALL_ONCE (MatterValveConfigurationAndControlPluginServerInitCallback);
3966
+ set_plugin_server_init_callback (cluster, plugin_server_init_cb);
3967
+ add_function_list (cluster, function_list, function_flags);
3968
+ }
3969
+ if (flags & CLUSTER_FLAG_CLIENT) {
3970
+ create_default_binding_cluster (endpoint);
3971
+ }
3972
+
3973
+ if (flags & CLUSTER_FLAG_SERVER) {
3974
+ /* Attributes managed internally */
3975
+ global::attribute::create_feature_map (cluster, 0 );
3976
+ attribute::create_remaining_duration (cluster, 0 );
3977
+ #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE
3978
+ global::attribute::create_event_list (cluster, NULL , 0 , 0 );
3979
+ #endif
3980
+
3981
+ /* * Attributes not managed internally **/
3982
+ if (config) {
3983
+ global::attribute::create_cluster_revision (cluster, config->cluster_revision );
3984
+ attribute::create_open_duration (cluster, config->open_duration );
3985
+ attribute::create_default_open_duration (cluster, config->default_open_duration );
3986
+ attribute::create_current_state (cluster, config->current_state );
3987
+ attribute::create_target_state (cluster, config->target_state );
3988
+ } else {
3989
+ ESP_LOGE (TAG, " Config is NULL. Cannot add some attributes." );
3990
+ }
3991
+ }
3992
+
3993
+ /* Commands */
3994
+ command::create_open (cluster);
3995
+ command::create_close (cluster);
3996
+
3997
+ /* Features */
3998
+ if (features & feature::time_sync::get_id ()) {
3999
+ feature::time_sync::add (cluster, &(config->time_sync ));
4000
+ }
4001
+ if (features & feature::level::get_id ()) {
4002
+ feature::level::add (cluster, &(config->level ));
4003
+ }
4004
+
4005
+ return cluster;
4006
+ }
4007
+ } /* valve_configuration_and_control */
4008
+
3949
4009
// namespace binary_input_basic {
3950
4010
// // ToDo
3951
4011
// } /* binary_input_basic */
0 commit comments