// Copyright 2021 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include #include #include #include #include #include #include #include static const char *TAG = "esp_matter_cluster"; using namespace chip::app::Clusters; using namespace esp_matter::cluster::delegate_cb; #define CALL_ONCE(cb) \ [](){ \ static bool is_called = false; \ if (!is_called) { \ cb(); \ is_called = true; \ } \ } namespace esp_matter { namespace cluster { void plugin_init_callback_common() { ESP_LOGI(TAG, "Cluster plugin init common callback"); node_t *node = node::get(); if (!node) { /* Skip plugin_init_callback_common when ESP Matter data model is not used */ return; } endpoint_t *endpoint = endpoint::get_first(node); while (endpoint) { cluster_t *cluster = get_first(endpoint); while (cluster) { /* Plugin server init callback */ plugin_server_init_callback_t plugin_server_init_callback = get_plugin_server_init_callback(cluster); if (plugin_server_init_callback) { plugin_server_init_callback(); } cluster = get_next(cluster); } endpoint = endpoint::get_next(endpoint); } } void delegate_init_callback_common() { node_t *node = node::get(); if (!node) { /* Skip delegate_init_callback_common when ESP Matter data model is not used */ return; } endpoint_t *endpoint = endpoint::get_first(node); while (endpoint) { uint16_t endpoint_id = endpoint::get_id(endpoint); cluster_t *cluster = get_first(endpoint); while (cluster) { /* Delegate server init callback */ delegate_init_callback_t delegate_init_callback = get_delegate_init_callback(cluster); if (delegate_init_callback) { delegate_init_callback(get_delegate_impl(cluster), endpoint_id); } cluster = get_next(cluster); } endpoint = endpoint::get_next(endpoint); } } cluster_t *create_default_binding_cluster(endpoint_t *endpoint) { /* Don't create binding cluster if it already exists on the endpoint */ cluster_t *cluster = get(endpoint, Binding::Id); if (cluster) { return cluster; } ESP_LOGI(TAG, "Creating default binding cluster"); binding::config_t config; return binding::create(endpoint, &config, CLUSTER_FLAG_SERVER); } #if CONFIG_ESP_MATTER_ENABLE_DATA_MODEL namespace descriptor { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Descriptor::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterDescriptorPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ attribute::create_device_list(cluster, NULL, 0, 0); attribute::create_server_list(cluster, NULL, 0, 0); attribute::create_client_list(cluster, NULL, 0, 0); attribute::create_parts_list(cluster, NULL, 0, 0); /* Attributes updated later */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* descriptor */ namespace actions { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Actions::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { set_plugin_server_init_callback(cluster, NULL); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_cluster_revision(cluster, 1); global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_action_list(cluster, NULL, 0, 0); attribute::create_endpoint_lists(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_action_failed(cluster); event::create_state_changed(cluster); return cluster; } } /* actions */ namespace access_control { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, AccessControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterAccessControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ attribute::create_acl(cluster, NULL, 0, 0); attribute::create_subjects_per_access_control_entry(cluster, 0); attribute::create_access_control_entries_per_fabric(cluster, 0); attribute::create_targets_per_access_control_entry(cluster, 0); /* Attributes updated later */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_access_control_entry_changed(cluster); event::create_access_control_extension_changed(cluster); return cluster; } } /* access_control */ namespace basic_information { const function_generic_t * function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, BasicInformation::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterBasicInformationPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_data_model_revision(cluster, 0); attribute::create_location(cluster, NULL, 0); attribute::create_vendor_name(cluster, NULL, 0); attribute::create_vendor_id(cluster, 0); attribute::create_product_name(cluster, NULL, 0); attribute::create_product_id(cluster, 0); attribute::create_hardware_version(cluster, 0); attribute::create_hardware_version_string(cluster, NULL, 0); attribute::create_software_version(cluster, 0); attribute::create_software_version_string(cluster, NULL, 0); attribute::create_capability_minima(cluster, NULL, 0, 0); attribute::create_specification_version(cluster, 0); attribute::create_max_paths_per_invoke(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_node_label(cluster, config->node_label, strlen(config->node_label)); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_start_up(cluster); return cluster; } } /* basic_information */ namespace binding { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Binding::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterBindingPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } /* Extra initialization */ client::binding_init(); if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_binding(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* binding */ namespace ota_provider { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, OtaSoftwareUpdateProvider::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterOtaSoftwareUpdateProviderPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_query_image(cluster); command::create_query_image_response(cluster); command::create_apply_update_request(cluster); command::create_apply_update_response(cluster); command::create_notify_update_applied(cluster); return cluster; } } /* ota_provider */ namespace ota_requestor { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, OtaSoftwareUpdateRequestor::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterOtaSoftwareUpdateRequestorPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_default_ota_providers(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_update_possible(cluster, config->update_possible); attribute::create_update_state(cluster, config->update_state); attribute::create_update_state_progress(cluster, config->update_state_progress); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_download_error(cluster); event::create_state_transition(cluster); event::create_version_applied(cluster); /* Commands */ command::create_announce_ota_provider(cluster); return cluster; } } /* ota_requestor */ namespace general_commissioning { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, GeneralCommissioning::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterGeneralCommissioningPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_regulatory_config(cluster, 0); attribute::create_location_capability(cluster, 0); attribute::create_basic_commissioning_info(cluster, NULL, 0, 0); attribute::create_supports_concurrent_connection(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_breadcrumb(cluster, config->breadcrumb); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_arm_fail_safe(cluster); command::create_arm_fail_safe_response(cluster); command::create_set_regulatory_config(cluster); command::create_set_regulatory_config_response(cluster); command::create_commissioning_complete(cluster); command::create_commissioning_complete_response(cluster); return cluster; } } /* general_commissioning */ namespace network_commissioning { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, NetworkCommissioning::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterNetworkCommissioningPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ attribute::create_max_networks(cluster, 0); attribute::create_networks(cluster, NULL, 0, 0); attribute::create_scan_max_time_seconds(cluster, 0); attribute::create_connect_max_time_seconds(cluster, 0); attribute::create_interface_enabled(cluster, 0); attribute::create_last_networking_status(cluster, nullable()); attribute::create_last_network_id(cluster, NULL, 0); attribute::create_last_connect_error_value(cluster, nullable()); #if CHIP_DEVICE_CONFIG_ENABLE_WIFI attribute::create_supported_wifi_bands(cluster, NULL, 0, 0); #endif #if CHIP_DEVICE_CONFIG_ENABLE_THREAD attribute::create_supported_thread_features(cluster, 0); attribute::create_thread_version(cluster, 0); #endif global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_scan_networks(cluster); command::create_scan_networks_response(cluster); command::create_add_or_update_wifi_network(cluster); command::create_add_or_update_thread_network(cluster); command::create_remove_network(cluster); command::create_network_config_response(cluster); command::create_connect_network(cluster); command::create_connect_network_response(cluster); command::create_reorder_network(cluster); return cluster; } } /* network_commissioning */ namespace general_diagnostics { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, GeneralDiagnostics::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterGeneralDiagnosticsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ attribute::create_network_interfaces(cluster, NULL, 0, 0); attribute::create_reboot_count(cluster, 0); attribute::create_up_time(cluster, 0); attribute::create_test_event_triggers_enabled(cluster, 0); global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_boot_reason(cluster); command::create_test_event_trigger(cluster); command::create_time_snap_shot(cluster); command::create_time_snap_shot_response(cluster); return cluster; } } /* general_diagnostics */ namespace administrator_commissioning { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, AdministratorCommissioning::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterAdministratorCommissioningPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_window_status(cluster, 0); attribute::create_admin_fabric_index(cluster, 0); attribute::create_admin_vendor_id(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::basic::get_id()) { feature::basic::add(cluster); } /* Commands */ command::create_open_commissioning_window(cluster); command::create_revoke_commissioning(cluster); return cluster; } } /* administrator_commissioning */ namespace operational_credentials { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, OperationalCredentials::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterOperationalCredentialsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_nocs(cluster, NULL, 0, 0); attribute::create_supported_fabrics(cluster, 0); attribute::create_commissioned_fabrics(cluster, 0); attribute::create_fabrics(cluster, NULL, 0, 0); attribute::create_trusted_root_certificates(cluster, NULL, 0, 0); attribute::create_current_fabric_index(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_attestation_request(cluster); command::create_attestation_response(cluster); command::create_certificate_chain_request(cluster); command::create_certificate_chain_response(cluster); command::create_csr_request(cluster); command::create_csr_response(cluster); command::create_add_noc(cluster); command::create_update_noc(cluster); command::create_noc_response(cluster); command::create_update_fabric_label(cluster); command::create_remove_fabric(cluster); command::create_add_trusted_root_certificate(cluster); return cluster; } } /* operational_credentials */ namespace group_key_management { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, GroupKeyManagement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterGroupKeyManagementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif global::attribute::create_cluster_revision(cluster, 0); attribute::create_group_key_map(cluster, NULL, 0, 0); attribute::create_group_table(cluster, NULL, 0, 0); attribute::create_max_groups_per_fabric(cluster, 0); attribute::create_max_group_keys_per_fabric(cluster, 0); } /* Commands */ command::create_key_set_write(cluster); command::create_key_set_read(cluster); command::create_key_set_read_response(cluster); command::create_key_set_remove(cluster); command::create_key_set_read_all_indices(cluster); command::create_key_set_read_all_indices_response(cluster); return cluster; } } /* group_key_management */ namespace diagnostics_network_wifi { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, WiFiNetworkDiagnostics::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterWiFiNetworkDiagnosticsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_bssid(cluster, NULL, 0); attribute::create_security_type(cluster, nullable()); attribute::create_wifi_version(cluster, nullable()); attribute::create_channel_number(cluster, nullable()); attribute::create_rssi(cluster, nullable()); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* diagnostics_network_wifi */ namespace diagnostics_network_thread { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, ThreadNetworkDiagnostics::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterThreadNetworkDiagnosticsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_channel(cluster, nullable(0)); attribute::create_routing_role(cluster, nullable(0)); attribute::create_network_name(cluster, NULL, 0); attribute::create_pan_id(cluster, nullable(0)); attribute::create_extended_pan_id(cluster, nullable(0)); attribute::create_mesh_local_prefix(cluster, NULL, 0); attribute::create_neighbor_table(cluster, NULL, 0, 0); attribute::create_route_table(cluster, NULL, 0, 0); attribute::create_partition_id(cluster, nullable(0)); attribute::create_weighting(cluster, nullable(0)); attribute::create_data_version(cluster, nullable(0)); attribute::create_stable_data_version(cluster, nullable(0)); attribute::create_leader_router_id(cluster, nullable(0)); attribute::create_security_policy(cluster, NULL, 0, 0); attribute::create_channel_page0_mask(cluster, NULL, 0); attribute::create_operational_dataset_components(cluster, NULL, 0, 0); attribute::create_active_network_faults(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* diagnostics_network_thread */ namespace diagnostics_network_ethernet { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, EthernetNetworkDiagnostics::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterEthernetNetworkDiagnosticsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_reset_counts(cluster); return cluster; } } /* diagnostics_network_ethernet */ namespace time_synchronization { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, TimeSynchronization::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterTimeSynchronizationPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_time_failure(cluster); return cluster; } } /* time_synchronization */ namespace unit_localization { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, UnitLocalization::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::temperature_unit::get_id()) { feature::temperature_unit::add(cluster, &(config->temperature_unit)); } return cluster; } } /* unit_localization */ namespace bridged_device_basic_information { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, BridgedDeviceBasicInformation::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { // There is not PluginServer(Client)InitCallback for this cluster add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_reachable(cluster, config->reachable); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_reachable_changed(cluster); return cluster; } } /* bridged_device_basic_information */ namespace power_source { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, PowerSource::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterPowerSourcePluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_status(cluster, config->status); attribute::create_order(cluster, config->order, 0x00, 0xFF); attribute::create_description(cluster, config->description, strlen(config->description)); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::wired::get_id()) { feature::wired::add(cluster, &(config->wired)); } if (features & feature::battery::get_id()) { feature::battery::add(cluster, &(config->battery)); } if (features & feature::rechargeable::get_id()) { feature::rechargeable::add(cluster, &(config->rechargeable)); } if (features & feature::replaceable::get_id()) { feature::replaceable::add(cluster, &(config->replaceable)); } return cluster; } } /* power_source */ namespace icd_management { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, IcdManagement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } #if CONFIG_ENABLE_ICD_SERVER if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterIcdManagementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); attribute::create_idle_mode_duration(cluster, CONFIG_ICD_ACTIVE_MODE_INTERVAL_MS); attribute::create_active_mode_duration(cluster, CONFIG_ICD_IDLE_MODE_INTERVAL_SEC); attribute::create_active_mode_threshold(cluster, CONFIG_ICD_ACTIVE_MODE_THRESHOLD_MS); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } #if defined(CHIP_CONFIG_ENABLE_ICD_CIP) && CHIP_CONFIG_ENABLE_ICD_CIP if (features & feature::long_idle_time_support::get_id()) { feature::long_idle_time_support::add(cluster); if (features & feature::user_active_mode_trigger::get_id()) { feature::user_active_mode_trigger::add(cluster, &config->user_active_mode_trigger); } if (features & feature::check_in_protocol_support::get_id()) { feature::check_in_protocol_support::add(cluster); } } #endif // defined(CHIP_CONFIG_ENABLE_ICD_CIP) && CHIP_CONFIG_ENABLE_ICD_CIP #endif // CONFIG_ENABLE_ICD_SERVER return cluster; } } /* icd_management */ namespace user_label { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, UserLabel::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterUserLabelPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_label_list(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* user_label */ namespace fixed_label { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, FixedLabel::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterFixedLabelPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_label_list(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* fixed_label */ namespace identify { const function_generic_t function_list[] = { (function_generic_t)emberAfIdentifyClusterServerInitCallback, (function_generic_t)MatterIdentifyClusterServerAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Identify::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterIdentifyPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } /* Extra initialization */ uint16_t endpoint_id = endpoint::get_id(endpoint); identification::init(endpoint_id, config->identify_type); if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_identify_time(cluster, config->identify_time, 0x0, 0xFE); attribute::create_identify_type(cluster, config->identify_type); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_identify(cluster); return cluster; } } /* identify */ namespace groups { const function_generic_t function_list[] = { (function_generic_t)emberAfGroupsClusterServerInitCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Groups::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterGroupsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 1); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_group_name_support(cluster, config->group_name_support); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_add_group(cluster); command::create_view_group(cluster); command::create_get_group_membership(cluster); command::create_remove_group(cluster); command::create_remove_all_groups(cluster); command::create_add_group_if_identifying(cluster); command::create_add_group_response(cluster); command::create_view_group_response(cluster); command::create_get_group_membership_response(cluster); command::create_remove_group_response(cluster); return cluster; } } /* groups */ namespace scenes_management { const function_generic_t function_list[] = { (function_generic_t)emberAfScenesManagementClusterServerInitCallback, (function_generic_t)MatterScenesManagementClusterServerShutdownCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_SHUTDOWN_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, ScenesManagement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterScenesManagementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_scene_table_size(cluster, config->scene_table_size); attribute::create_fabric_scene_info(cluster, NULL, 0, 0); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_add_scene(cluster); command::create_view_scene(cluster); command::create_remove_scene(cluster); command::create_remove_all_scenes(cluster); command::create_store_scene(cluster); command::create_recall_scene(cluster); command::create_get_scene_membership(cluster); command::create_add_scene_response(cluster); command::create_view_scene_response(cluster); command::create_remove_scene_response(cluster); command::create_remove_all_scenes_response(cluster); command::create_store_scene_response(cluster); command::create_get_scene_membership_response(cluster); return cluster; } } /* scenes_management */ namespace on_off { const function_generic_t function_list[] = { (function_generic_t)emberAfOnOffClusterServerInitCallback, (function_generic_t)MatterOnOffClusterServerShutdownCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_SHUTDOWN_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, OnOff::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterOnOffPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_on_off(cluster, config->on_off); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::off_only::get_id()) { feature::off_only::add(cluster); } else { if (features & feature::lighting::get_id()) { feature::lighting::add(cluster, &(config->lighting)); } if (features & feature::dead_front_behavior::get_id()) { feature::dead_front_behavior::add(cluster); } } /* Commands */ command::create_off(cluster); if (!(features & feature::off_only::get_id())) { command::create_on(cluster); command::create_toggle(cluster); } return cluster; } } /* on_off */ namespace level_control { const function_generic_t function_list[] = { (function_generic_t)emberAfLevelControlClusterServerInitCallback, (function_generic_t)MatterLevelControlClusterServerShutdownCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_SHUTDOWN_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, LevelControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterLevelControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_current_level(cluster, config->current_level); attribute::create_on_level(cluster, config->on_level); attribute::create_options(cluster, config->options, 0x0, 0x3); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_move_to_level(cluster); command::create_move(cluster); command::create_step(cluster); command::create_stop(cluster); command::create_move_to_level_with_on_off(cluster); command::create_move_with_on_off(cluster); command::create_step_with_on_off(cluster); command::create_stop_with_on_off(cluster); /* Features */ if (features & feature::on_off::get_id()) { feature::on_off::add(cluster); } if (features & feature::lighting::get_id()) { feature::lighting::add(cluster, &(config->lighting)); } return cluster; } } /* level_control */ namespace color_control { const function_generic_t function_list[] = { (function_generic_t)emberAfColorControlClusterServerInitCallback, (function_generic_t)MatterColorControlClusterServerShutdownCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_SHUTDOWN_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, ColorControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterColorControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_color_mode(cluster, config->color_mode); attribute::create_color_control_options(cluster, config->color_control_options); attribute::create_enhanced_color_mode(cluster, config->enhanced_color_mode, 0, 3); attribute::create_color_capabilities(cluster, config->color_capabilities, 0, 0x001f); attribute::create_number_of_primaries(cluster, config->number_of_primaries); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } /* Attributes managed internally */ attribute::create_remaining_time(cluster, 0); for (uint8_t idx = 1; idx <= config->number_of_primaries.value_or(0); ++idx) { attribute::create_primary_n_x(cluster, 0, idx); attribute::create_primary_n_y(cluster, 0, idx); attribute::create_primary_n_intensity(cluster, nullable(), idx); } } /* Commands */ if (features & feature::hue_saturation::get_id() || features & feature::color_temperature::get_id() || features & feature::xy::get_id()) { command::create_stop_move_step(cluster); } /* Features */ if (features & feature::hue_saturation::get_id()) { feature::hue_saturation::add(cluster, &(config->hue_saturation)); } if (features & feature::color_temperature::get_id()) { feature::color_temperature::add(cluster, &(config->color_temperature)); } if (features & feature::xy::get_id()) { feature::xy::add(cluster, &(config->xy)); } if (features & feature::enhanced_hue::get_id()) { feature::enhanced_hue::add(cluster, &(config->enhanced_hue)); } if (features & feature::color_loop::get_id()) { feature::color_loop::add(cluster, &(config->color_loop)); } return cluster; } } /* color_control */ namespace fan_control { const function_generic_t function_list[] = { (function_generic_t)MatterFanControlClusterServerAttributeChangedCallback, (function_generic_t)MatterFanControlClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_ATTRIBUTE_CHANGED_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, FanControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = FanControlDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } static const auto plugin_server_init_cb = CALL_ONCE(MatterFanControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_fan_mode(cluster, config->fan_mode, 0, 6); attribute::create_fan_mode_sequence(cluster, config->fan_mode_sequence, 0, 5); attribute::create_percent_setting(cluster, config->percent_setting, 0, 100); attribute::create_percent_current(cluster, config->percent_current, 0, 100); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* fan_control */ namespace thermostat { const function_generic_t function_list[] = { (function_generic_t)emberAfThermostatClusterServerInitCallback, (function_generic_t)MatterThermostatClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, Thermostat::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterThermostatPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_local_temperature(cluster, config->local_temperature); attribute::create_control_sequence_of_operation(cluster, config->control_sequence_of_operation, 0x0, 0x5); attribute::create_system_mode(cluster, config->system_mode, 0x0, 0x7); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_setpoint_raise_lower(cluster); /* Features */ if (!(features & (feature::heating::get_id() | feature::cooling::get_id()))) { ESP_LOGE(TAG, "Cluster shall support at least one of heating or cooling features."); } if (features & feature::heating::get_id()) { feature::heating::add(cluster, &(config->heating)); } if (features & feature::cooling::get_id()) { feature::cooling::add(cluster, &(config->cooling)); } if (features & feature::setback::get_id()) { feature::setback::add(cluster, &(config->setback)); } if (features & feature::occupancy::get_id()) { feature::occupancy::add(cluster, &(config->occupancy)); } if (features & feature::schedule_configuration::get_id()) { feature::schedule_configuration::add(cluster, &(config->schedule_configuration)); } if (features & feature::auto_mode::get_id()) { feature::auto_mode::add(cluster, &(config->auto_mode)); } if (features & feature::local_temperature_not_exposed::get_id()) { feature::local_temperature_not_exposed::add(cluster, &(config->local_temperature_not_exposed)); } return cluster; } } /* thermostat */ namespace thermostat_user_interface_configuration { const function_generic_t function_list[] = { (function_generic_t)MatterThermostatClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, ThermostatUserInterfaceConfiguration::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_temperature_display_mode(cluster, config->temperature_display_mode); attribute::create_keypad_lockout(cluster, config->keypad_lockout); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* thermostat_user_interface_configuration */ namespace air_quality { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, AirQuality::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_air_quality(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* air_quality */ namespace hepa_filter_monitoring { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, HepaFilterMonitoring::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = HepaFilterMonitoringDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_change_indication(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* hepa_filter_monitoring */ namespace activated_carbon_filter_monitoring { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, HepaFilterMonitoring::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = ActivatedCarbonFilterMonitoringDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_change_indication(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* activated_carbon_filter_monitoring */ namespace carbon_monoxide_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, CarbonMonoxideConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* carbon_monoxide_concentration_measurement */ namespace carbon_dioxide_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, CarbonDioxideConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* carbon_dioxide_concentration_measurement */ namespace nitrogen_dioxide_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, NitrogenDioxideConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* nitrogen_dioxide_concentration_measurement */ namespace ozone_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, OzoneConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* ozone_concentration_measurement */ namespace formaldehyde_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, FormaldehydeConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* formaldehyde_concentration_measurement */ namespace pm1_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Pm1ConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* pm1_concentration_measurement */ namespace pm25_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Pm25ConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* pm25_concentration_measurement */ namespace pm10_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Pm10ConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* pm10_concentration_measurement */ namespace radon_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RadonConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* radon_concentration_measurement */ namespace total_volatile_organic_compounds_concentration_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, TotalVolatileOrganicCompoundsConcentrationMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_measurement_medium(cluster, config->measurement_medium); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* total_volatile_organic_compounds_concentration_measurement */ namespace operational_state { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, OperationalState::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = OperationalStateDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_phase_list(cluster, NULL, 0, 0); attribute::create_current_phase(cluster, 0); attribute::create_operational_state_list(cluster, NULL, 0, 0); attribute::create_operational_state(cluster, 0); attribute::create_operational_error(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_operational_error(cluster); return cluster; } } /* operational_state */ namespace laundry_washer_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, LaundryWasherMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config && config -> delegate != nullptr) { static const auto delegate_init_cb = LaundryWasherModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* laundry_washer_mode */ namespace laundry_washer_controls { const function_generic_t function_list[] = { (function_generic_t)MatterLaundryWasherControlsClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, LaundryWasherControls::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* laundry_washer_controls */ namespace laundry_dryer_controls { const function_generic_t function_list[] = { (function_generic_t)MatterLaundryDryerControlsClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, LaundryDryerControls::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = LaundryDryerControlsDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_supported_dryness_levels(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_selected_dryness_level(cluster, config->selected_dryness_level); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* laundry_dryer_controls */ namespace dish_washer_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, DishwasherMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { if (config && config -> delegate != nullptr) { static const auto delegate_init_cb = DishWasherModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* dish_washer_mode */ namespace dish_washer_alarm { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, DishwasherAlarm::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* dish_washer_alarm */ namespace smoke_co_alarm { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, SmokeCoAlarm::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_expressed_state(cluster, 0); attribute::create_battery_alert(cluster, 0); attribute::create_test_in_progress(cluster, false); attribute::create_hardware_fault_alert(cluster, false); attribute::create_end_of_service_alert(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_low_battery(cluster); event::create_hardware_fault(cluster); event::create_end_of_service(cluster); event::create_self_test_complete(cluster); event::create_all_clear(cluster); /* Features */ feature::smoke_alarm::add(cluster); return cluster; } } /* smoke_co_alarm */ namespace door_lock { const function_generic_t function_list[] = { (function_generic_t)MatterDoorLockClusterServerAttributeChangedCallback, (function_generic_t)MatterDoorLockClusterServerShutdownCallback, (function_generic_t)MatterDoorLockClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_ATTRIBUTE_CHANGED_FUNCTION | CLUSTER_FLAG_SHUTDOWN_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, DoorLock::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterDoorLockPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_lock_state(cluster, config->lock_state); attribute::create_lock_type(cluster, config->lock_type); attribute::create_actuator_enabled(cluster, config->actuator_enabled); attribute::create_operating_mode(cluster, config->operating_mode, 0x0, 0x4); attribute::create_supported_operating_modes(cluster, config->supported_operating_modes); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } event::create_door_lock_alarm(cluster); event::create_lock_operation(cluster); event::create_lock_operation_error(cluster); /* Commands */ command::create_lock_door(cluster); command::create_unlock_door(cluster); return cluster; } } /* door_lock */ namespace window_covering { const function_generic_t function_list[] = { (function_generic_t)MatterWindowCoveringClusterServerAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, WindowCovering::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterWindowCoveringPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_type(cluster, config->type); attribute::create_config_status(cluster, config->config_status); attribute::create_operational_status(cluster, config->operational_status); attribute::create_end_product_type(cluster, config->end_product_type); attribute::create_mode(cluster, config->mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_up_or_open(cluster); command::create_down_or_close(cluster); command::create_stop_motion(cluster); /* Features */ if (features & feature::lift::get_id()) { feature::lift::add(cluster, &(config->lift)); } return cluster; } } /* window_covering */ namespace switch_cluster { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, Switch::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterSwitchPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_number_of_positions(cluster, config->number_of_positions); attribute::create_current_position(cluster, config->current_position); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* switch_cluster */ namespace temperature_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, TemperatureMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterTemperatureMeasurementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_temperature_measured_value(cluster, config->measured_value); attribute::create_temperature_min_measured_value(cluster, config->min_measured_value); attribute::create_temperature_max_measured_value(cluster, config->max_measured_value); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* temperature_measurement */ namespace relative_humidity_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RelativeHumidityMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterRelativeHumidityMeasurementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_relative_humidity_measured_value(cluster, config->measured_value); attribute::create_relative_humidity_min_measured_value(cluster, config->min_measured_value); attribute::create_relative_humidity_max_measured_value(cluster, config->max_measured_value); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* relative_humidity_measurement */ namespace occupancy_sensing { const function_generic_t function_list[] = { (function_generic_t)emberAfOccupancySensingClusterServerInitCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, OccupancySensing::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterOccupancySensingPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_occupancy(cluster, config->occupancy); attribute::create_occupancy_sensor_type(cluster, config->occupancy_sensor_type); attribute::create_occupancy_sensor_type_bitmap(cluster, config->occupancy_sensor_type_bitmap); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* occupancy_sensing */ namespace boolean_state { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, BooleanState::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterBooleanStatePluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_state_value(cluster, config->state_value); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* boolean_state */ namespace boolean_state_configuration { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, BooleanStateConfiguration::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterBooleanStateConfigurationPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::visual::get_id()) { feature::visual::add(cluster, &(config->visual)); } if (features & feature::audible::get_id()) { feature::audible::add(cluster, &(config->audible)); } if (features & feature::alarm_suppress::get_id()) { feature::alarm_suppress::add(cluster, &(config->alarm_suppress)); } if (features & feature::sensitivity_level::get_id()) { feature::sensitivity_level::add(cluster, &(config->sensitivity_level)); } return cluster; } } /* boolean_state_configuration */ namespace localization_configuration { const function_generic_t function_list[] = { (function_generic_t)emberAfLocalizationConfigurationClusterServerInitCallback, (function_generic_t)MatterLocalizationConfigurationClusterServerPreAttributeChangedCallback}; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, LocalizationConfiguration::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterLocalizationConfigurationPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes not managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif if (config) { /* Attributes not managed internally */ global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_active_locale(cluster, config->active_locale, strlen(config->active_locale)); /* Attributes managed internally */ attribute::create_supported_locales(cluster, NULL, 0, 0); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* localization_configuration */ namespace time_format_localization { const function_generic_t function_list[] = { (function_generic_t)emberAfTimeFormatLocalizationClusterServerInitCallback, (function_generic_t)MatterTimeFormatLocalizationClusterServerPreAttributeChangedCallback}; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, TimeFormatLocalization::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterTimeFormatLocalizationPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes not managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif if (config) { /* Attributes not managed internally */ global::attribute::create_cluster_revision(cluster, config->cluster_revision); /* Attributes managed internally */ attribute::create_hour_format(cluster, config->hour_format); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::calendar_format::get_id()) { feature::calendar_format::add(cluster, &(config->calendar_format)); } return cluster; } } /* time_format_localization */ namespace illuminance_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, IlluminanceMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterIlluminanceMeasurementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_illuminance_measured_value(cluster, config->illuminance_measured_value, 0x0000, 0xFFFF); attribute::create_illuminance_min_measured_value(cluster, config->illuminance_min_measured_value, 0x0001, 0xFFFD); attribute::create_illuminance_max_measured_value(cluster, config->illuminance_max_measured_value, 0x0002, 0xFFFE); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* illuminance_measurement */ namespace pressure_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, PressureMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterPressureMeasurementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_pressure_measured_value(cluster, config->pressure_measured_value); attribute::create_pressure_min_measured_value(cluster, config->pressure_min_measured_value); attribute::create_pressure_max_measured_value(cluster, config->pressure_max_measured_value); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* pressure_measurement */ namespace flow_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, FlowMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterFlowMeasurementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_flow_measured_value(cluster, config->flow_measured_value); attribute::create_flow_min_measured_value(cluster, config->flow_min_measured_value); attribute::create_flow_max_measured_value(cluster, config->flow_max_measured_value); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* flow_measurement */ namespace pump_configuration_and_control { const function_generic_t function_list[] = { (function_generic_t)emberAfPumpConfigurationAndControlClusterServerInitCallback, (function_generic_t)MatterPumpConfigurationAndControlClusterServerAttributeChangedCallback, (function_generic_t)MatterPumpConfigurationAndControlClusterServerPreAttributeChangedCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION | CLUSTER_FLAG_ATTRIBUTE_CHANGED_FUNCTION | CLUSTER_FLAG_PRE_ATTRIBUTE_CHANGED_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, PumpConfigurationAndControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterPumpConfigurationAndControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_max_pressure(cluster, config->max_pressure); attribute::create_max_speed(cluster, config->max_speed); attribute::create_max_flow(cluster, config->max_flow); attribute::create_effective_operation_mode(cluster, config->effective_operation_mode); attribute::create_effective_control_mode(cluster, config->effective_control_mode); attribute::create_capacity(cluster, config->capacity); attribute::create_operation_mode(cluster, config->operation_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* pump_configuration_and_control */ namespace mode_select { const function_generic_t function_list[] = { (function_generic_t)emberAfModeSelectClusterServerInitCallback, }; const int function_flags = CLUSTER_FLAG_INIT_FUNCTION; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, ModeSelect::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterModeSelectPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_supported_modes(cluster, NULL, 0, 0); /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_mode_select_description(cluster, config->mode_select_description, strlen(config->mode_select_description)); attribute::create_standard_namespace(cluster, config->standard_namespace); attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } /* Commands */ command::create_change_to_mode(cluster); /* Features */ if (features & feature::on_off::get_id()) { feature::on_off::add(cluster, &(config->on_off)); } return cluster; } } /* mode_select */ namespace diagnostic_logs { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, DiagnosticLogs::Id, flags); if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterDiagnosticLogsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* commands */ command::create_retrieve_logs_request(cluster); command::create_retrieve_logs_response(cluster); return cluster; } } /* diagnostic_logs */ namespace software_diagnostics { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, SoftwareDiagnostics::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterSoftwareDiagnosticsPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::watermarks::get_id()) { feature::watermarks::add(cluster); } return cluster; } } /* software_diagnostics */ namespace temperature_control { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, TemperatureControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterTemperatureControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_set_temperature(cluster); /* Features */ if (features & feature::temperature_number::get_id()) { feature::temperature_number::add(cluster, &(config->temperature_number)); } if (features & feature::temperature_level::get_id()) { feature::temperature_level::add(cluster, &(config->temperature_level)); } if (features & feature::temperature_step::get_id()) { feature::temperature_step::add(cluster, &(config->temperature_step)); } return cluster; } } /* temperature_control */ namespace refrigerator_alarm { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RefrigeratorAlarm::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { static const auto plugin_server_init_cb = CALL_ONCE(MatterRefrigeratorAlarmPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_mask(cluster, config->mask); attribute::create_state(cluster, config->state); attribute::create_supported(cluster, config->supported); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* refrigerator_alarm */ namespace refrigerator_and_tcc_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RefrigeratorAndTemperatureControlledCabinetMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config && config -> delegate != nullptr) { static const auto delegate_init_cb = RefrigeratorAndTCCModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif mode_base::attribute::create_supported_modes(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ mode_base::command::create_change_to_mode(cluster); return cluster; } } /* refrigerator_and_tcc_mode */ namespace rvc_run_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RvcRunMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config && config -> delegate != nullptr) { static const auto delegate_init_cb = RvcRunModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif mode_base::attribute::create_supported_modes(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ mode_base::command::create_change_to_mode(cluster); return cluster; } } /* rvc_run_mode */ namespace rvc_clean_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RvcCleanMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config && config -> delegate != nullptr) { static const auto delegate_init_cb = RvcCleanModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); mode_base::attribute::create_supported_modes(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ mode_base::command::create_change_to_mode(cluster); return cluster; } } /* rvc_clean_mode */ namespace microwave_oven_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, MicrowaveOvenMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = MicrowaveOvenModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); mode_base::attribute::create_supported_modes(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* microwave_oven_mode */ namespace microwave_oven_control { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, MicrowaveOvenControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = MicrowaveOvenControlDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); microwave_oven_control::attribute::create_cook_time(cluster, 0); microwave_oven_control::attribute::create_max_cook_time(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_set_cooking_parameters(cluster); if (features & feature::power_as_number::get_id()) { feature::power_as_number::add(cluster); } if (features & feature::power_in_watts::get_id()) { feature::power_in_watts::add(cluster); } if (features & feature::power_number_limits::get_id()) { feature::power_number_limits::add(cluster); } return cluster; } } /* microwave_oven_control */ namespace rvc_operational_state { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, RvcOperationalState::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } return cluster; } } /* rvc_operational_state */ namespace keypad_input { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, KeypadInput::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_send_key(cluster); command::create_send_key_response(cluster); return cluster; } } /* keypad_input */ namespace power_topology { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, PowerTopology::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::node_topology::get_id()) { feature::node_topology::add(cluster); } else if (features & feature::tree_topology::get_id()) { feature::tree_topology::add(cluster); } else if (features & feature::set_topology::get_id()) { feature::set_topology::add(cluster); if (features & feature::dynamic_power_flow::get_id()) { feature::dynamic_power_flow::add(cluster); } } return cluster; } } /* power_topology */ namespace electrical_power_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, ElectricalPowerMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_power_mode(cluster, 0); attribute::create_number_of_measurement_types(cluster, 0); attribute::create_accuracy(cluster, NULL, 0, 0); attribute::create_active_power(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if((features & feature::direct_current::get_id()) || (features & feature::alternating_current::get_id())) { if (features & feature::direct_current::get_id()) { feature::direct_current::add(cluster); } if (features & feature::alternating_current::get_id()) { feature::alternating_current::add(cluster); if (features & feature::polyphase_power::get_id()) { feature::polyphase_power::add(cluster); } if (features & feature::harmonics::get_id()) { feature::harmonics::add(cluster); } if (features & feature::power_quality::get_id()) { feature::power_quality::add(cluster); } } } else { ESP_LOGE(TAG, "At least one of the feature from Direct Current, Alternating Current shall be supported."); return NULL; } return cluster; } } /* electrical_power_measurement */ namespace electrical_energy_measurement { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, ElectricalEnergyMeasurement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif attribute::create_accuracy(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if((features & feature::imported_energy::get_id()) || (features & feature::exported_energy::get_id())) { if (features & feature::imported_energy::get_id()) { feature::imported_energy::add(cluster); } if (features & feature::exported_energy::get_id()) { feature::exported_energy::add(cluster); } } else { ESP_LOGE(TAG, "At least one of the feature from Imported Energy, Exported Energy shall be supported."); return NULL; } if((features & feature::cumulative_energy::get_id()) || (features & feature::periodic_energy::get_id())) { if (features & feature::cumulative_energy::get_id()) { feature::cumulative_energy::add(cluster); } if (features & feature::periodic_energy::get_id()) { feature::periodic_energy::add(cluster); } } else { ESP_LOGE(TAG, "At least one of the feature from Cumulative Energy, Periodic Energy shall be supported."); return NULL; } return cluster; } } /* electrical_energy_measurement */ namespace energy_evse_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, EnergyEvseMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = EnergyEvseModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); mode_base::attribute::create_supported_modes(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ mode_base::command::create_change_to_mode(cluster); return cluster; } } /* energy_evse_mode */ namespace energy_evse { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, EnergyEvse::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = EnergyEvseDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); attribute::create_state(cluster, 0); attribute::create_supply_state(cluster, 0); attribute::create_fault_state(cluster, 0); attribute::create_charging_enabled_until(cluster, 0); attribute::create_circuit_capacity(cluster, 0); attribute::create_minimum_charge_current(cluster, 0); attribute::create_maximum_charge_current(cluster, 0); attribute::create_session_id(cluster, 0); attribute::create_session_duration(cluster, 0); attribute::create_session_energy_charged(cluster, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::charging_preferences::get_id()) { feature::charging_preferences::add(cluster); } if (features & feature::soc_reporting::get_id()) { feature::soc_reporting::add(cluster); } if (features & feature::plug_and_charge::get_id()) { feature::plug_and_charge::add(cluster); } if (features & feature::rfid::get_id()) { feature::rfid::add(cluster); } if (features & feature::v2x::get_id()) { feature::v2x::add(cluster); } /* Commands */ command::create_disable(cluster); command::create_enable_charging(cluster); return cluster; } } /* energy_evse */ namespace valve_configuration_and_control { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, ValveConfigurationAndControl::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = ValveConfigurationAndControlDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } static const auto plugin_server_init_cb = CALL_ONCE(MatterValveConfigurationAndControlPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); attribute::create_remaining_duration(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); attribute::create_open_duration(cluster, config->open_duration); attribute::create_default_open_duration(cluster, config->default_open_duration); attribute::create_current_state(cluster, config->current_state); attribute::create_target_state(cluster, config->target_state); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ command::create_open(cluster); command::create_close(cluster); /* Features */ if (features & feature::time_sync::get_id()) { feature::time_sync::add(cluster, &(config->time_sync)); } if (features & feature::level::get_id()) { feature::level::add(cluster, &(config->level)); } return cluster; } } /* valve_configuration_and_control */ namespace device_energy_management { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags, uint32_t features) { cluster_t *cluster = cluster::create(endpoint, DeviceEnergyManagement::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = DeviceEnergyManagementDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } static const auto plugin_server_init_cb = CALL_ONCE(MatterDeviceEnergyManagementPluginServerInitCallback); set_plugin_server_init_callback(cluster, plugin_server_init_cb); add_function_list(cluster, function_list, function_flags); } if (flags & CLUSTER_FLAG_CLIENT) { create_default_binding_cluster(endpoint); } if (flags & CLUSTER_FLAG_SERVER) { /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); #if CHIP_CONFIG_ENABLE_EVENTLIST_ATTRIBUTE global::attribute::create_event_list(cluster, NULL, 0, 0); #endif /* Attributes should managed by application */ attribute::create_esa_type(cluster, 0); attribute::create_esa_can_generate(cluster, 0); attribute::create_esa_state(cluster, 0); attribute::create_abs_min_power(cluster, 0); attribute::create_abs_max_power(cluster, 0); /** Attributes not managed internally **/ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Features */ if (features & feature::power_adjustment::get_id()) { feature::power_adjustment::add(cluster); } if (features & feature::power_forecast_reporting::get_id()) { feature::power_forecast_reporting::add(cluster); } if (features & feature::state_forecast_reporting::get_id()) { if ((!(features & feature::power_adjustment::get_id()) || (features & feature::start_time_adjustment::get_id()) || (features & feature::pausable::get_id()) || (features & feature::forecast_adjustment::get_id()) || (features & feature::constraint_based_adjustment::get_id())) && !(features & feature::power_forecast_reporting::get_id())) { feature::state_forecast_reporting::add(cluster); } } if (features & feature::pausable::get_id()) { feature::pausable::add(cluster); } if (features & feature::forecast_adjustment::get_id()) { feature::forecast_adjustment::add(cluster); } if (features & feature::constraint_based_adjustment::get_id()) { feature::constraint_based_adjustment::add(cluster); } return cluster; } } /* device_energy_management */ namespace device_energy_management_mode { const function_generic_t *function_list = NULL; const int function_flags = CLUSTER_FLAG_NONE; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) { cluster_t *cluster = cluster::create(endpoint, DeviceEnergyManagementMode::Id, flags); if (!cluster) { ESP_LOGE(TAG, "Could not create cluster"); return NULL; } if (flags & CLUSTER_FLAG_SERVER) { if (config -> delegate != nullptr) { static const auto delegate_init_cb = DeviceEnergyManagementModeDelegateInitCB; set_delegate_and_init_callback(cluster, delegate_init_cb, config->delegate); } add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ global::attribute::create_feature_map(cluster, 0); global::attribute::create_event_list(cluster, NULL, 0, 0); mode_base::attribute::create_supported_modes(cluster, NULL, 0, 0); /* Attributes not managed internally */ if (config) { global::attribute::create_cluster_revision(cluster, config->cluster_revision); mode_base::attribute::create_current_mode(cluster, config->current_mode); } else { ESP_LOGE(TAG, "Config is NULL. Cannot add some attributes."); } } /* Commands */ mode_base::command::create_change_to_mode(cluster); return cluster; } } /* device_energy_management_mode */ // namespace binary_input_basic { // // ToDo // } /* binary_input_basic */ // namespace pulse_width_modulation { // // ToDo // } /* pulse_width_modulation */ // namespace powersource_configuration { // // ToDo // } /* powersource_configuration */ // namespace proxy_configuration { // // ToDo // } /* proxy_configuration */ // namespace proxy_discovery { // // ToDo // } /* proxy_discovery */ // namespace proxy_valid { // // ToDo // } /* proxy_valid */ // namespace barrier_control { // // ToDo // } /* barrier_control */ // namespace ballast_configuration { // // ToDo // } /* ballast_configuration */ // namespace wakeonlan { // // ToDo // } /* wakeonlan */ // namespace channel { // // ToDo // } /* channel */ // namespace target_navigator { // // ToDo // } /* target_navigator */ // namespace media_playback { // // ToDo // } /* media_playback */ // namespace media_input { // // ToDo // } /* media_input */ // namespace lowpower { // // ToDo // } /* lowpower */ // namespace content_launcher { // // ToDo // } /* content_launcher */ // namespace audio_output { // // ToDo // } /* audio_output */ #endif /* CONFIG_ESP_MATTER_ENABLE_DATA_MODEL */ } /* cluster */ } /* esp_matter */