#include #include #include #include using namespace chip; // Cluster Init Functions void emberAfClusterInitCallback(EndpointId endpoint, ClusterId clusterId) { switch (clusterId) { case app::Clusters::AccessControl::Id: emberAfAccessControlClusterInitCallback(endpoint); break; case app::Clusters::AdministratorCommissioning::Id: emberAfAdministratorCommissioningClusterInitCallback(endpoint); break; case app::Clusters::BasicInformation::Id: emberAfBasicInformationClusterInitCallback(endpoint); break; case app::Clusters::Descriptor::Id: emberAfDescriptorClusterInitCallback(endpoint); break; case app::Clusters::FixedLabel::Id: emberAfFixedLabelClusterInitCallback(endpoint); break; case app::Clusters::GeneralCommissioning::Id: emberAfGeneralCommissioningClusterInitCallback(endpoint); break; case app::Clusters::GeneralDiagnostics::Id: emberAfGeneralDiagnosticsClusterInitCallback(endpoint); break; case app::Clusters::GroupKeyManagement::Id: emberAfGroupKeyManagementClusterInitCallback(endpoint); break; case app::Clusters::Groups::Id: emberAfGroupsClusterInitCallback(endpoint); break; case app::Clusters::Identify::Id: emberAfIdentifyClusterInitCallback(endpoint); break; case app::Clusters::LevelControl::Id: emberAfLevelControlClusterInitCallback(endpoint); break; case app::Clusters::LocalizationConfiguration::Id: emberAfLocalizationConfigurationClusterInitCallback(endpoint); break; case app::Clusters::NetworkCommissioning::Id: emberAfNetworkCommissioningClusterInitCallback(endpoint); break; case app::Clusters::OtaSoftwareUpdateProvider::Id: emberAfOtaSoftwareUpdateProviderClusterInitCallback(endpoint); break; case app::Clusters::OtaSoftwareUpdateRequestor::Id: emberAfOtaSoftwareUpdateRequestorClusterInitCallback(endpoint); break; case app::Clusters::OnOff::Id: emberAfOnOffClusterInitCallback(endpoint); break; case app::Clusters::OperationalCredentials::Id: emberAfOperationalCredentialsClusterInitCallback(endpoint); break; case app::Clusters::ScenesManagement::Id: emberAfScenesManagementClusterInitCallback(endpoint); break; case app::Clusters::SoftwareDiagnostics::Id: emberAfSoftwareDiagnosticsClusterInitCallback(endpoint); break; case app::Clusters::ThreadNetworkDiagnostics::Id: emberAfThreadNetworkDiagnosticsClusterInitCallback(endpoint); break; case app::Clusters::TimeFormatLocalization::Id: emberAfTimeFormatLocalizationClusterInitCallback(endpoint); break; case app::Clusters::WiFiNetworkDiagnostics::Id: emberAfWiFiNetworkDiagnosticsClusterInitCallback(endpoint); break; default: // Unrecognized cluster ID break; } }