mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
c466b7ce81
Skip the Network Commissioning cluster on the root node when CONFIG_CUSTOM_NETWORK_CONFIG is enabled, per Matter spec condition (!CustomNetworkConfig). This allows devices with out-of-band network configuration (rich UI, manufacturer-specific means) to omit the cluster as the spec permits. - Add CONFIG_CUSTOM_NETWORK_CONFIG Kconfig option - Conditionally skip network_commissioning in root_node config/add - Exclude integration.cpp from build when custom config enabled - Add weak stubs for Plugin callbacks as fallback - Also guarded secondary network device type and all the attributes and commands that are part of network commissioning cluster
2354 lines
76 KiB
C++
2354 lines
76 KiB
C++
// 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 "esp_matter_cluster.h"
|
|
#include <esp_log.h>
|
|
#include <esp_matter.h>
|
|
#include <esp_matter_endpoint.h>
|
|
#include <esp_matter_icd_configuration.h>
|
|
|
|
static const char *TAG = "esp_matter_endpoint";
|
|
|
|
using namespace chip::app::Clusters;
|
|
namespace esp_matter {
|
|
using namespace cluster;
|
|
|
|
namespace endpoint {
|
|
|
|
namespace common {
|
|
|
|
template <typename T>
|
|
using add_fn = esp_err_t (*)(endpoint_t *endpoint, T *config);
|
|
|
|
template <typename T>
|
|
endpoint_t *create(node_t *node, T *config, uint8_t flags, void *priv_data, add_fn<T> add)
|
|
{
|
|
endpoint_t *endpoint = endpoint::create(node, flags, priv_data);
|
|
VerifyOrReturnValue(endpoint != nullptr, NULL, ESP_LOGE(TAG, "Failed to create endpoint"));
|
|
|
|
cluster_t *descriptor_cluster = descriptor::create(endpoint, &(config->descriptor), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(descriptor_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create descriptor cluster"));
|
|
|
|
VerifyOrReturnValue(ESP_OK == add(endpoint, config), NULL, ESP_LOGE(TAG, "Failed to add cluster"));
|
|
return endpoint;
|
|
}
|
|
|
|
} // namespace common
|
|
|
|
namespace root_node {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ROOT_NODE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ROOT_NODE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
access_control::create(endpoint, &(config->access_control), CLUSTER_FLAG_SERVER);
|
|
basic_information::create(endpoint, &(config->basic_information), CLUSTER_FLAG_SERVER);
|
|
general_commissioning::create(endpoint, &(config->general_commissioning), CLUSTER_FLAG_SERVER);
|
|
#ifndef CONFIG_CUSTOM_NETWORK_CONFIG
|
|
network_commissioning::create(endpoint, &(config->network_commissioning), CLUSTER_FLAG_SERVER);
|
|
#endif
|
|
general_diagnostics::create(endpoint, &(config->general_diagnostics), CLUSTER_FLAG_SERVER);
|
|
administrator_commissioning::create(endpoint, &(config->administrator_commissioning), CLUSTER_FLAG_SERVER);
|
|
operational_credentials::create(endpoint, &(config->operational_credentials), CLUSTER_FLAG_SERVER);
|
|
group_key_management::create(endpoint, CLUSTER_FLAG_SERVER);
|
|
#if CHIP_CONFIG_ENABLE_ICD_SERVER
|
|
if (icd::get_icd_server_enabled()) {
|
|
cluster_t *icd_management_cluster = icd_management::create(endpoint, &(config->icd_management), CLUSTER_FLAG_SERVER);
|
|
#if CHIP_CONFIG_ENABLE_ICD_LIT
|
|
icd_management::feature::long_idle_time_support::add(icd_management_cluster);
|
|
#if CHIP_CONFIG_ENABLE_ICD_CIP
|
|
icd_management::feature::check_in_protocol_support::add(icd_management_cluster);
|
|
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
|
|
#if CHIP_CONFIG_ENABLE_ICD_UAT
|
|
icd_management::feature::user_active_mode_trigger::add(icd_management_cluster, &(config->icd_user_active_mode_trigger));
|
|
#endif // CHIP_CONFIG_ENABLE_ICD_UAT
|
|
#endif // CHIP_CONFIG_ENABLE_ICD_LIT
|
|
}
|
|
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER
|
|
#if defined(CONFIG_SUPPORT_WIFI_NETWORK_DIAGNOSTICS_CLUSTER)
|
|
wifi_network_diagnostics::create(endpoint, nullptr, CLUSTER_FLAG_SERVER);
|
|
#endif
|
|
#if defined(CONFIG_SUPPORT_THREAD_NETWORK_DIAGNOSTICS_CLUSTER)
|
|
thread_network_diagnostics::create(endpoint, nullptr, CLUSTER_FLAG_SERVER);
|
|
#endif
|
|
return ESP_OK;
|
|
}
|
|
} /* root_node */
|
|
|
|
namespace ota_requestor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_OTA_REQUESTOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_OTA_REQUESTOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
#ifdef CONFIG_ENABLE_OTA_REQUESTOR
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
#else
|
|
ESP_LOGE(TAG, "Need enable CONFIG_ENABLE_OTA_REQUESTOR to enable ota requestor function");
|
|
return nullptr;
|
|
#endif
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
#ifdef CONFIG_ENABLE_OTA_REQUESTOR
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *cluster_p = cluster::ota_software_update_provider::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
cluster_t *cluster_r = cluster::ota_software_update_requestor::create(endpoint, &(config->ota_software_update_requestor), CLUSTER_FLAG_SERVER);
|
|
if (!cluster_p || !cluster_r) {
|
|
return ESP_FAIL;
|
|
}
|
|
|
|
return ESP_OK;
|
|
#else
|
|
ESP_LOGE(TAG, "Need enable CONFIG_ENABLE_OTA_REQUESTOR to enable ota requestor function");
|
|
return ESP_FAIL;
|
|
#endif
|
|
}
|
|
|
|
} /** ota_requestor **/
|
|
|
|
namespace ota_provider {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_OTA_PROVIDER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_OTA_PROVIDER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *cluster = cluster::ota_software_update_provider::create(endpoint, &(config->ota_software_update_provider), CLUSTER_FLAG_SERVER);
|
|
if (!cluster) {
|
|
return ESP_FAIL;
|
|
}
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /** ota_provider **/
|
|
|
|
namespace power_source {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_POWER_SOURCE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_POWER_SOURCE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *cluster = cluster::power_source::create(endpoint, &(config->power_source), CLUSTER_FLAG_SERVER);
|
|
if (!cluster) {
|
|
return ESP_ERR_INVALID_STATE;
|
|
}
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /** power_source **/
|
|
|
|
namespace on_off_light {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ON_OFF_LIGHT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ON_OFF_LIGHT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /* on_off_light */
|
|
|
|
namespace dimmable_light {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_DIMMABLE_LIGHT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_DIMMABLE_LIGHT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *level_control_cluster = level_control::create(endpoint, &(config->level_control), CLUSTER_FLAG_SERVER);
|
|
level_control::feature::on_off::add(level_control_cluster);
|
|
level_control::feature::lighting::add(level_control_cluster, &(config->level_control_lighting));
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* dimmable_light */
|
|
|
|
namespace color_temperature_light {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_COLOR_TEMPERATURE_LIGHT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_COLOR_TEMPERATURE_LIGHT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *level_control_cluster = level_control::create(endpoint, &(config->level_control), CLUSTER_FLAG_SERVER);
|
|
level_control::feature::on_off::add(level_control_cluster);
|
|
level_control::feature::lighting::add(level_control_cluster, &(config->level_control_lighting));
|
|
cluster_t *color_control_cluster = color_control::create(endpoint, &(config->color_control), CLUSTER_FLAG_SERVER);
|
|
color_control::feature::color_temperature::add(color_control_cluster, &(config->color_control_color_temperature));
|
|
color_control::attribute::create_remaining_time(color_control_cluster, config->color_control_remaining_time);
|
|
color_control::command::create_stop_move_step(color_control_cluster);
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* color_temperature_light */
|
|
|
|
namespace extended_color_light {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_EXTENDED_COLOR_LIGHT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_EXTENDED_COLOR_LIGHT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *level_control_cluster = level_control::create(endpoint, &(config->level_control), CLUSTER_FLAG_SERVER);
|
|
level_control::feature::on_off::add(level_control_cluster);
|
|
level_control::feature::lighting::add(level_control_cluster, &(config->level_control_lighting));
|
|
cluster_t *color_control_cluster = color_control::create(endpoint, &(config->color_control), CLUSTER_FLAG_SERVER);
|
|
color_control::feature::color_temperature::add(color_control_cluster, &(config->color_control_color_temperature));
|
|
color_control::feature::xy::add(color_control_cluster, &(config->color_control_xy));
|
|
color_control::attribute::create_remaining_time(color_control_cluster, config->color_control_remaining_time);
|
|
color_control::command::create_stop_move_step(color_control_cluster);
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
return ESP_OK;
|
|
}
|
|
} /* extended_color_light */
|
|
|
|
namespace on_off_light_switch {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ON_OFF_LIGHT_SWITCH_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ON_OFF_LIGHT_SWITCH_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
endpoint_t * endpoint = common::create<config_t>(node, config, flags, priv_data, add);
|
|
VerifyOrReturnError(endpoint != nullptr, NULL);
|
|
|
|
cluster_t *binding_cluster = binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(binding_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create binding cluster"));
|
|
|
|
return endpoint;
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER | CLUSTER_FLAG_CLIENT);
|
|
on_off::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* on_off_light_switch */
|
|
|
|
namespace dimmer_switch {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_DIMMER_SWITCH_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_DIMMER_SWITCH_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
endpoint_t * endpoint = common::create<config_t>(node, config, flags, priv_data, add);
|
|
VerifyOrReturnError(endpoint != nullptr, NULL);
|
|
|
|
cluster_t *binding_cluster = binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(binding_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create binding cluster"));
|
|
|
|
return endpoint;
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER | CLUSTER_FLAG_CLIENT);
|
|
on_off::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
level_control::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /* dimmer_switch */
|
|
|
|
namespace color_dimmer_switch {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_COLOR_DIMMER_SWITCH_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_COLOR_DIMMER_SWITCH_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
endpoint_t * endpoint = common::create<config_t>(node, config, flags, priv_data, add);
|
|
VerifyOrReturnError(endpoint != nullptr, NULL);
|
|
|
|
cluster_t *binding_cluster = binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(binding_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create binding cluster"));
|
|
|
|
return endpoint;
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER | CLUSTER_FLAG_CLIENT);
|
|
on_off::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
level_control::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
color_control::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* color_dimmer_switch */
|
|
|
|
namespace generic_switch {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_GENERIC_SWITCH_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_GENERIC_SWITCH_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
switch_cluster::create(endpoint, &(config->switch_cluster), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* generic_switch */
|
|
|
|
namespace on_off_plug_in_unit {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ON_OFF_PLUG_IN_UNIT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ON_OFF_PLUG_IN_UNIT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* on_off_plug_in_unit */
|
|
|
|
namespace dimmable_plug_in_unit {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_DIMMABLE_PLUG_IN_UNIT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_DIMMABLE_PLUG_IN_UNIT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *level_control_cluster = level_control::create(endpoint, &(config->level_control), CLUSTER_FLAG_SERVER);
|
|
level_control::feature::on_off::add(level_control_cluster);
|
|
level_control::feature::lighting::add(level_control_cluster, &(config->level_control_lighting));
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* dimmable_plug_in_unit */
|
|
|
|
namespace fan {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_FAN_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_FAN_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
fan_control::create(endpoint, &(config->fan_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* fan */
|
|
|
|
namespace thermostat {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_THERMOSTAT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_THERMOSTAT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* thermostat */
|
|
|
|
namespace aggregator {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_AGGREGATOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_AGGREGATOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* aggregator */
|
|
|
|
namespace control_bridge {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CONTROL_BRIDGE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CONTROL_BRIDGE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
endpoint_t * endpoint = common::create<config_t>(node, config, flags, priv_data, add);
|
|
VerifyOrReturnError(endpoint != nullptr, NULL);
|
|
|
|
cluster_t *binding_cluster = binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(binding_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create binding cluster"));
|
|
|
|
return endpoint;
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER | CLUSTER_FLAG_CLIENT);
|
|
groups::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
on_off::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
level_control::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
color_control::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
return ESP_OK;
|
|
}
|
|
} /* control_bridge */
|
|
|
|
namespace air_quality_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_AIR_QUALITY_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_AIR_QUALITY_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
air_quality::create(endpoint, &(config->air_quality), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* air_quality_sensor */
|
|
|
|
namespace air_purifier {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_AIR_PURIFIER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_AIR_PURIFIER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
fan_control::create(endpoint, &(config->fan_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* air_purifier */
|
|
|
|
namespace dish_washer {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_DISH_WASHER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_DISH_WASHER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *operational_state_cluster = operational_state::create(endpoint, &(config->operational_state), CLUSTER_FLAG_SERVER);
|
|
operational_state::event::create_operation_completion(operational_state_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* dish_washer */
|
|
|
|
namespace laundry_washer {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_LAUNDRY_WASHER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_LAUNDRY_WASHER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *operational_state_cluster = operational_state::create(endpoint, &(config->operational_state), CLUSTER_FLAG_SERVER);
|
|
operational_state::event::create_operation_completion(operational_state_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* laundry_washer */
|
|
|
|
namespace laundry_dryer {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_LAUNDRY_DRYER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_LAUNDRY_DRYER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *operational_state_cluster = operational_state::create(endpoint, &(config->operational_state), CLUSTER_FLAG_SERVER);
|
|
operational_state::event::create_operation_completion(operational_state_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* laundry_dryer */
|
|
|
|
namespace smoke_co_alarm {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_SMOKE_CO_ALARM_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_SMOKE_CO_ALARM_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void * priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t * endpoint, config_t * config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster::smoke_co_alarm::create(endpoint, &(config->smoke_co_alarm), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* smoke_co_alarm */
|
|
|
|
namespace bridged_node {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_BRIDGED_NODE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_BRIDGED_NODE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
// bridged node endpoints are always deletable
|
|
return common::create<config_t>(node, config, flags | ENDPOINT_FLAG_DESTROYABLE, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
bridged_device_basic_information::create(endpoint, &(config->bridged_device_basic_information), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
endpoint_t *resume(node_t *node, config_t *config, uint8_t flags, uint16_t endpoint_id, void *priv_data)
|
|
{
|
|
endpoint_t *endpoint = endpoint::resume(node, flags | ENDPOINT_FLAG_DESTROYABLE, endpoint_id, priv_data);
|
|
VerifyOrReturnValue(endpoint != nullptr, NULL, ESP_LOGE(TAG, "Failed to create endpoint"));
|
|
|
|
cluster_t *descriptor_cluster = descriptor::create(endpoint, &(config->descriptor), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(descriptor_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create descriptor cluster"));
|
|
|
|
VerifyOrReturnValue(ESP_OK == add(endpoint, config), NULL, ESP_LOGE(TAG, "Failed to add cluster"));
|
|
return endpoint;
|
|
}
|
|
} /* bridged_node */
|
|
|
|
namespace door_lock {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_DOOR_LOCK_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_DOOR_LOCK_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster::door_lock::create(endpoint, &(config->door_lock), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* door_lock */
|
|
|
|
namespace window_covering {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_WINDOW_COVERING_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_WINDOW_COVERING_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void * priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster::window_covering::create(endpoint, &(config->window_covering), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* window_covering */
|
|
|
|
namespace temperature_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_TEMPERATURE_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_TEMPERATURE_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
temperature_measurement::create(endpoint, &(config->temperature_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* temperature_sensor */
|
|
|
|
namespace humidity_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_HUMIDITY_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_HUMIDITY_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
relative_humidity_measurement::create(endpoint, &(config->relative_humidity_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* humidity_sensor */
|
|
|
|
namespace occupancy_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_OCCUPANCY_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_OCCUPANCY_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
occupancy_sensing::create(endpoint, &(config->occupancy_sensing), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* occupancy_sensor */
|
|
|
|
namespace contact_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CONTACT_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CONTACT_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster_t * cluster = boolean_state::create(endpoint, &(config->boolean_state), CLUSTER_FLAG_SERVER);
|
|
boolean_state::event::create_state_change(cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* contact_sensor */
|
|
|
|
namespace light_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_LIGHT_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_LIGHT_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
illuminance_measurement::create(endpoint, &(config->illuminance_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* light_sensor */
|
|
|
|
namespace pressure_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_PRESSURE_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_PRESSURE_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
pressure_measurement::create(endpoint, &(config->pressure_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* pressure_sensor */
|
|
|
|
namespace flow_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_FLOW_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_FLOW_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
flow_measurement::create(endpoint, &(config->flow_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* flow_sensor */
|
|
|
|
namespace pump {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_PUMP_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_PUMP_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
pump_configuration_and_control::create(endpoint, &(config->pump_configuration_and_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** pump **/
|
|
|
|
namespace pump_controller {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_PUMP_CONTROLLER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_PUMP_CONTROLLER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
on_off::create(endpoint, nullptr, CLUSTER_FLAG_CLIENT);
|
|
pump_configuration_and_control::create(endpoint, nullptr, CLUSTER_FLAG_CLIENT);
|
|
binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** pump_controller **/
|
|
|
|
namespace mode_select {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_MODE_SELECT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_MODE_SELECT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *cluster = cluster::mode_select::create(endpoint, &(config->mode_select), CLUSTER_FLAG_SERVER);
|
|
if (!cluster) {
|
|
return ESP_ERR_INVALID_STATE;
|
|
}
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** mode_select **/
|
|
|
|
namespace room_air_conditioner {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ROOM_AIR_CONDITIONER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ROOM_AIR_CONDITIONER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::dead_front_behavior::add(on_off_cluster);
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
config->thermostat.feature_flags |= cluster::thermostat::feature::cooling::get_id();
|
|
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** room_air_conditioner **/
|
|
|
|
namespace temperature_controlled_cabinet {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_TEMPERATURE_CONTROLLED_CABINET_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_TEMPERATURE_CONTROLLED_CABINET_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
temperature_control::create(endpoint, &(config->temperature_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** temperature_controlled_cabinet**/
|
|
|
|
namespace refrigerator {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_REFRIGERATOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_REFRIGERATOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** refrigerator **/
|
|
|
|
namespace oven {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_OVEN_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_OVEN_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /** oven **/
|
|
|
|
namespace robotic_vacuum_cleaner {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ROBOTIC_VACUUM_CLEANER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ROBOTIC_VACUUM_CLEANER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
rvc_run_mode::create(endpoint, &(config->rvc_run_mode), CLUSTER_FLAG_SERVER);
|
|
cluster_t *rvc_operational_state_cluster = rvc_operational_state::create(endpoint, &(config->rvc_operational_state), CLUSTER_FLAG_SERVER);
|
|
operational_state::event::create_operation_completion(rvc_operational_state_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** robotic_vacuum_cleaner **/
|
|
|
|
namespace water_leak_detector {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_WATER_LEAK_DETECTOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_WATER_LEAK_DETECTOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster_t *cluster = boolean_state::create(endpoint, &(config->boolean_state), CLUSTER_FLAG_SERVER);
|
|
boolean_state::event::create_state_change(cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* water_leak_detector */
|
|
|
|
namespace water_freeze_detector {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_WATER_FREEZE_DETECTOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_WATER_FREEZE_DETECTOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster_t *cluster = boolean_state::create(endpoint, &(config->boolean_state), CLUSTER_FLAG_SERVER);
|
|
boolean_state::event::create_state_change(cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* water_freeze_detector */
|
|
|
|
namespace rain_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_RAIN_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_RAIN_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster_t *cluster = boolean_state::create(endpoint, &(config->boolean_state), CLUSTER_FLAG_SERVER);
|
|
boolean_state::event::create_state_change(cluster);
|
|
return ESP_OK;
|
|
}
|
|
} /* rain_sensor */
|
|
|
|
namespace electrical_sensor {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
config->power_topology.feature_flags |= power_topology::feature::node_topology::get_id();
|
|
power_topology::create(endpoint, &(config->power_topology), CLUSTER_FLAG_SERVER);
|
|
|
|
electrical_power_measurement::create(endpoint, &(config->electrical_power_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* electrical_sensor */
|
|
|
|
namespace cook_surface {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_COOK_SURFACE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_COOK_SURFACE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
config->temperature_control.feature_flags = cluster::temperature_control::feature::temperature_level::get_id();
|
|
temperature_control::create(endpoint, &(config->temperature_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* cook_surface */
|
|
|
|
namespace cooktop {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_COOKTOP_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_COOKTOP_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::off_only::add(cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* cooktop */
|
|
|
|
namespace energy_evse {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ENERGY_EVSE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ENERGY_EVSE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster::energy_evse::create(endpoint, &(config->energy_evse), CLUSTER_FLAG_SERVER);
|
|
energy_evse_mode::create(endpoint, &(config->energy_evse_mode), CLUSTER_FLAG_SERVER);
|
|
cluster::device_energy_management::create(endpoint, &(config->device_energy_management), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* energy_evse */
|
|
|
|
namespace microwave_oven {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_MICROWAVE_OVEN_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_MICROWAVE_OVEN_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *cluster = operational_state::create(endpoint, &(config->operational_state), CLUSTER_FLAG_SERVER);
|
|
operational_state::attribute::create_countdown_time(cluster, 0);
|
|
operational_state::event::create_operation_completion(cluster);
|
|
microwave_oven_mode::create(endpoint, &(config->microwave_oven_mode), CLUSTER_FLAG_SERVER);
|
|
microwave_oven_control::create(endpoint, &(config->microwave_oven_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* microwave_oven */
|
|
|
|
namespace extractor_hood {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_EXTRACTOR_HOOD_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_EXTRACTOR_HOOD_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
fan_control::create(endpoint, &(config->fan_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* extractor_hood */
|
|
|
|
namespace water_valve {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_WATER_VALVE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_WATER_VALVE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
valve_configuration_and_control::create(endpoint, &(config->valve_configuration_and_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** water_valve **/
|
|
|
|
namespace device_energy_management {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_DEVICE_ENERGY_MANAGEMENT_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_DEVICE_ENERGY_MANAGEMENT_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster::device_energy_management::create(endpoint, &(config->device_energy_management), CLUSTER_FLAG_SERVER);
|
|
device_energy_management_mode::create(endpoint, &(config->device_energy_management_mode), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /** device_energy_management **/
|
|
|
|
namespace thread_border_router {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_THREAD_BORDER_ROUTER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_THREAD_BORDER_ROUTER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
thread_network_diagnostics::create(endpoint, &(config->thread_network_diagnostics), CLUSTER_FLAG_SERVER);
|
|
thread_border_router_management::create(endpoint, &(config->thread_border_router_management), CLUSTER_FLAG_SERVER);
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /* thread_border_router */
|
|
|
|
#ifndef CONFIG_CUSTOM_NETWORK_CONFIG
|
|
namespace secondary_network_interface {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_SECONDARY_NETWORK_INTERFACE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_SECONDARY_NETWORK_INTERFACE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
network_commissioning::create(endpoint, &(config->network_commissioning), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* secondary_network_interface */
|
|
#endif // CONFIG_CUSTOM_NETWORK_CONFIG
|
|
|
|
namespace mounted_on_off_control {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_MOUNTED_ON_OFF_CONTROL_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_MOUNTED_ON_OFF_CONTROL_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /* mounted_on_off_control */
|
|
|
|
namespace mounted_dimmable_load_control {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_MOUNTED_DIMMABLE_LOAD_CONTROL_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_MOUNTED_DIMMABLE_LOAD_CONTROL_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
identify::command::create_trigger_effect(identify_cluster);
|
|
groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER);
|
|
cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER);
|
|
on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting));
|
|
on_off::command::create_on(on_off_cluster);
|
|
on_off::command::create_toggle(on_off_cluster);
|
|
cluster_t *level_control_cluster = level_control::create(endpoint, &(config->level_control), CLUSTER_FLAG_SERVER);
|
|
level_control::feature::lighting::add(level_control_cluster, &(config->level_control_lighting));
|
|
level_control::feature::on_off::add(level_control_cluster);
|
|
cluster_t *scenes_management_cluster = scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER);
|
|
scenes_management::command::create_copy_scene(scenes_management_cluster);
|
|
scenes_management::command::create_copy_scene_response(scenes_management_cluster);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* mounted_dimmable_load_control */
|
|
|
|
namespace water_heater {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_WATER_HEATER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_WATER_HEATER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER);
|
|
water_heater_management::create(endpoint, &(config->water_heater_management), CLUSTER_FLAG_SERVER);
|
|
water_heater_mode::create(endpoint, &(config->water_heater_mode), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* water_heater */
|
|
|
|
namespace solar_power {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_SOLAR_POWER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_SOLAR_POWER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *descriptor_cluster = cluster::get(endpoint, Descriptor::Id);
|
|
descriptor::feature::tag_list::add(descriptor_cluster);
|
|
|
|
config->power_source_device.power_source.feature_flags = cluster::power_source::feature::wired::get_id();
|
|
endpoint::power_source::add(endpoint, &config->power_source_device);
|
|
|
|
config->electrical_energy_measurement.feature_flags = electrical_energy_measurement::feature::exported_energy::get_id() | electrical_energy_measurement::feature::cumulative_energy::get_id();
|
|
config->electrical_sensor.electrical_power_measurement.feature_flags |= electrical_power_measurement::feature::alternating_current::get_id();
|
|
electrical_sensor::add(endpoint, &config->electrical_sensor);
|
|
electrical_energy_measurement::create(endpoint, &(config->electrical_energy_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
cluster_t *elec_power_measurement_cluster = cluster::get(endpoint, ElectricalPowerMeasurement::Id);
|
|
|
|
nullable<int64_t> voltage = 0, active_current = 0;
|
|
electrical_power_measurement::attribute::create_voltage(elec_power_measurement_cluster, voltage);
|
|
electrical_power_measurement::attribute::create_active_current(elec_power_measurement_cluster, active_current);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* solar_power */
|
|
|
|
namespace battery_storage {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_BATTERY_STORAGE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_BATTERY_STORAGE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *descriptor_cluster = cluster::get(endpoint, Descriptor::Id);
|
|
descriptor::feature::tag_list::add(descriptor_cluster);
|
|
|
|
config->power_source_device.power_source.feature_flags = cluster::power_source::feature::battery::get_id() | cluster::power_source::feature::wired::get_id();
|
|
endpoint::power_source::add(endpoint, &config->power_source_device);
|
|
|
|
cluster_t *power_source_cluster = cluster::get(endpoint, PowerSource::Id);
|
|
|
|
cluster::power_source::attribute::create_bat_voltage(power_source_cluster, config->bat_voltage, 0x00, 0xFFFF);
|
|
cluster::power_source::attribute::create_bat_percent_remaining(power_source_cluster, config->bat_percent_remaining, 0, 200);
|
|
cluster::power_source::attribute::create_bat_time_remaining(power_source_cluster, config->bat_time_remaining, 0x00, 0xFFFF);
|
|
cluster::power_source::attribute::create_active_bat_faults(power_source_cluster, NULL, 0, 0);
|
|
cluster::power_source::attribute::create_bat_capacity(power_source_cluster, config->bat_capacity, 0x00, 0xFFFF);
|
|
cluster::power_source::attribute::create_bat_time_to_full_charge(power_source_cluster, config->bat_time_to_full_charge, 0x00, 0xFFFF);
|
|
cluster::power_source::attribute::create_bat_charging_current(power_source_cluster, config->bat_charging_current, 0x00, 0xFFFF);
|
|
cluster::power_source::attribute::create_active_bat_charge_faults(power_source_cluster, NULL, 0, 0);
|
|
|
|
config->electrical_energy_measurement.feature_flags = electrical_energy_measurement::feature::exported_energy::get_id() | electrical_energy_measurement::feature::cumulative_energy::get_id();
|
|
config->electrical_sensor.electrical_power_measurement.feature_flags = electrical_power_measurement::feature::alternating_current::get_id();
|
|
electrical_sensor::add(endpoint, &config->electrical_sensor);
|
|
electrical_energy_measurement::create(endpoint, &(config->electrical_energy_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
cluster_t *elec_power_measurement_cluster = cluster::get(endpoint, ElectricalPowerMeasurement::Id);
|
|
electrical_power_measurement::attribute::create_voltage(elec_power_measurement_cluster, config->voltage);
|
|
electrical_power_measurement::attribute::create_active_current(elec_power_measurement_cluster, config->active_current);
|
|
|
|
device_energy_management::add(endpoint, &config->device_energy_management);
|
|
|
|
cluster_t *device_energy_management_cluster = cluster::get(endpoint, DeviceEnergyManagement::Id);
|
|
cluster::device_energy_management::feature::power_adjustment::add(device_energy_management_cluster);
|
|
return ESP_OK;
|
|
}
|
|
} /* battery_storage */
|
|
|
|
namespace heat_pump {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_HEAT_PUMP_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_HEAT_PUMP_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
|
|
cluster_t *descriptor_cluster = cluster::get(endpoint, Descriptor::Id);
|
|
descriptor::feature::tag_list::add(descriptor_cluster);
|
|
|
|
config->power_source_device.power_source.feature_flags = cluster::power_source::feature::wired::get_id();
|
|
endpoint::power_source::add(endpoint, &config->power_source_device);
|
|
|
|
config->electrical_sensor.electrical_power_measurement.feature_flags = electrical_power_measurement::feature::alternating_current::get_id();
|
|
electrical_sensor::add(endpoint, &config->electrical_sensor);
|
|
|
|
cluster_t *elec_power_measurement_cluster = cluster::get(endpoint, ElectricalPowerMeasurement::Id);
|
|
|
|
electrical_power_measurement::attribute::create_voltage(elec_power_measurement_cluster, config->voltage);
|
|
electrical_power_measurement::attribute::create_active_current(elec_power_measurement_cluster, config->active_current);
|
|
|
|
electrical_energy_measurement::create(endpoint, &(config->electrical_energy_measurement), CLUSTER_FLAG_SERVER);
|
|
|
|
device_energy_management::add(endpoint, &config->device_energy_management);
|
|
|
|
cluster_t *device_energy_management_cluster = cluster::get(endpoint, DeviceEnergyManagement::Id);
|
|
cluster::device_energy_management::feature::power_adjustment::add(device_energy_management_cluster);
|
|
return ESP_OK;
|
|
}
|
|
} /* heat_pump */
|
|
|
|
namespace camera {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CAMERA_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CAMERA_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = esp_matter::endpoint::add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster_t *camera_av_stream_management_cluster = cluster::camera_av_stream_management::create(
|
|
endpoint,
|
|
&(config->camera_av_stream_management),
|
|
CLUSTER_FLAG_SERVER
|
|
);
|
|
camera_av_stream_management::feature::video::add(camera_av_stream_management_cluster);
|
|
camera_av_stream_management::feature::audio::add(camera_av_stream_management_cluster);
|
|
camera_av_stream_management::feature::snapshot::add(camera_av_stream_management_cluster);
|
|
cluster::webrtc_transport_provider::create(
|
|
endpoint,
|
|
&(config->webrtc_transport_provider),
|
|
CLUSTER_FLAG_SERVER
|
|
);
|
|
cluster::webrtc_transport_requestor::create(
|
|
endpoint,
|
|
&(config->webrtc_transport_requestor),
|
|
CLUSTER_FLAG_CLIENT
|
|
);
|
|
return ESP_OK;
|
|
}
|
|
|
|
} /* camera */
|
|
|
|
namespace chime {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CHIME_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CHIME_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
VerifyOrReturnError(cluster::chime::create(endpoint, &(config->chime), CLUSTER_FLAG_SERVER), ESP_ERR_NO_MEM);
|
|
return ESP_OK;
|
|
}
|
|
} /* chime */
|
|
|
|
namespace thermostat_controller {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_THERMOSTAT_CONTROLLER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_THERMOSTAT_CONTROLLER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
endpoint_t * endpoint = common::create<config_t>(node, config, flags, priv_data, add);
|
|
VerifyOrReturnError(endpoint != nullptr, NULL);
|
|
|
|
cluster_t *binding_cluster = binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(binding_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create binding cluster"));
|
|
|
|
return endpoint;
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::thermostat::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* thermostat_controller */
|
|
|
|
namespace closure_controller {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CLOSURE_CONTROLLER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CLOSURE_CONTROLLER_DEVICE_TYPE_VERSION;
|
|
}
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
endpoint_t * endpoint = common::create<config_t>(node, config, flags, priv_data, add);
|
|
VerifyOrReturnError(endpoint != nullptr, NULL);
|
|
|
|
cluster_t *binding_cluster = binding::create(endpoint, &(config->binding), CLUSTER_FLAG_SERVER);
|
|
VerifyOrReturnValue(binding_cluster != nullptr, NULL, ESP_LOGE(TAG, "Failed to create binding cluster"));
|
|
|
|
return endpoint;
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::closure_control::create(endpoint, NULL, CLUSTER_FLAG_CLIENT);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* closure_controller */
|
|
|
|
namespace closure {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CLOSURE_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CLOSURE_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster::closure_control::create(endpoint, &(config->closure_control), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* closure */
|
|
|
|
namespace closure_panel {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_CLOSURE_PANEL_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_CLOSURE_PANEL_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::closure_dimension::create(endpoint, &(config->closure_dimension), CLUSTER_FLAG_SERVER);
|
|
|
|
return ESP_OK;
|
|
}
|
|
} /* closure_panel */
|
|
|
|
namespace electrical_utility_meter {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_UTILITY_METER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_UTILITY_METER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::meter_identification::create(endpoint, &(config->meter_identification), CLUSTER_FLAG_SERVER);
|
|
return ESP_OK;
|
|
}
|
|
} /* electrical_utility_meter */
|
|
|
|
namespace electrical_energy_tariff {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_ENERGY_TARIFF_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_ENERGY_TARIFF_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
return ESP_OK;
|
|
}
|
|
} /* electrical_energy_tariff */
|
|
|
|
namespace electrical_meter {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_METER_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_ELECTRICAL_METER_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::electrical_power_measurement::create(endpoint, &(config->electrical_power_measurement), CLUSTER_FLAG_SERVER);
|
|
cluster::electrical_energy_measurement::create(endpoint, &(config->electrical_energy_measurement), CLUSTER_FLAG_SERVER);
|
|
return ESP_OK;
|
|
}
|
|
} /* electrical_meter */
|
|
|
|
namespace soil_sensor {
|
|
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_SOIL_SENSOR_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_SOIL_SENSOR_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
cluster::identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
|
|
cluster::soil_measurement::create(endpoint, &(config->soil_measurement), CLUSTER_FLAG_SERVER);
|
|
return ESP_OK;
|
|
}
|
|
} /* soil_sensor */
|
|
|
|
namespace irrigation_system {
|
|
uint32_t get_device_type_id()
|
|
{
|
|
return ESP_MATTER_IRRIGATION_SYSTEM_DEVICE_TYPE_ID;
|
|
}
|
|
|
|
uint8_t get_device_type_version()
|
|
{
|
|
return ESP_MATTER_IRRIGATION_SYSTEM_DEVICE_TYPE_VERSION;
|
|
}
|
|
|
|
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
|
|
{
|
|
return common::create<config_t>(node, config, flags, priv_data, add);
|
|
}
|
|
|
|
esp_err_t add(endpoint_t *endpoint, config_t *config)
|
|
{
|
|
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
|
|
VerifyOrReturnError(err == ESP_OK, err);
|
|
return ESP_OK;
|
|
}
|
|
} /* irrigation_system */
|
|
} /* endpoint */
|
|
|
|
namespace node {
|
|
|
|
node_t *create(config_t *config, attribute::callback_t attribute_callback,
|
|
identification::callback_t identification_callback, void* priv_data)
|
|
{
|
|
node_t *node = create_raw();
|
|
/* Initialize esp-matter nvs partition */
|
|
VerifyOrReturnValue(esp_matter_nvs_init() == ESP_OK, NULL, ESP_LOGE(TAG, "Failed to init esp-matter nvs partition"));
|
|
VerifyOrReturnValue(node != nullptr, NULL, ESP_LOGE(TAG, "Could not create node"));
|
|
endpoint_t *endpoint = endpoint::root_node::create(node, &(config->root_node), ENDPOINT_FLAG_NONE, priv_data);
|
|
if (endpoint == nullptr) {
|
|
destroy_raw();
|
|
return NULL;
|
|
}
|
|
attribute::set_callback(attribute_callback);
|
|
identification::set_callback(identification_callback);
|
|
return node;
|
|
}
|
|
|
|
} /* node */
|
|
} /* esp_matter */
|