mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
4766 lines
226 KiB
C++
4766 lines
226 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_log.h>
|
|
#include <esp_matter_attribute.h>
|
|
#include <esp_matter.h>
|
|
#include <esp_matter_core.h>
|
|
#include <app/clusters/mode-base-server/mode-base-cluster-objects.h>
|
|
|
|
static const char *TAG = "esp_matter_attribute";
|
|
|
|
using namespace chip::app::Clusters;
|
|
|
|
namespace esp_matter {
|
|
namespace cluster {
|
|
|
|
namespace global {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_cluster_revision(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Globals::Attributes::ClusterRevision::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_feature_map(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Globals::Attributes::FeatureMap::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap32(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* global */
|
|
|
|
namespace descriptor {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_device_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Descriptor::Attributes::DeviceTypeList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_server_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Descriptor::Attributes::ServerList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_client_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Descriptor::Attributes::ClientList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_parts_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Descriptor::Attributes::PartsList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_tag_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Descriptor::Attributes::TagList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* descriptor */
|
|
|
|
namespace actions {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_action_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Actions::Attributes::ActionList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_endpoint_lists(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Actions::Attributes::EndpointLists::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_setup_url(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Actions::Attributes::SetupURL::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_setup_url_length);
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* actions */
|
|
|
|
namespace access_control {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_acl(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::Acl::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_extension(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::Extension::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_subjects_per_access_control_entry(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::SubjectsPerAccessControlEntry::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_targets_per_access_control_entry(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::TargetsPerAccessControlEntry::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_access_control_entries_per_fabric(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::AccessControlEntriesPerFabric::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
#if CHIP_CONFIG_USE_ACCESS_RESTRICTIONS
|
|
attribute_t *create_commissioning_arl(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::CommissioningARL::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_arl(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AccessControl::Attributes::Arl::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
#endif
|
|
} /* attribute */
|
|
} /* access_control */
|
|
|
|
namespace basic_information {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_data_model_revision(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::DataModelRevision::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_vendor_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::VendorName::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_vendor_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::VendorID::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_product_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ProductName::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_product_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ProductID::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_node_label(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_node_label_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::NodeLabel::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_char_str(value, length), k_max_node_label_length);
|
|
}
|
|
|
|
attribute_t *create_location(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::Location::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_hardware_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::HardwareVersion::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_hardware_version_string(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::HardwareVersionString::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_software_version(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::SoftwareVersion::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_software_version_string(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::SoftwareVersionString::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_capability_minima(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::CapabilityMinima::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_manufacturing_date(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ManufacturingDate::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_part_number(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::PartNumber::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_product_url(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ProductURL::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_product_label(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ProductLabel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_serial_number(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::SerialNumber::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_local_config_disabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::LocalConfigDisabled::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_reachable(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::Reachable::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_unique_id(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::UniqueID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_product_appearance(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ProductAppearance::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_specification_version(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::SpecificationVersion::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_max_paths_per_invoke(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BasicInformation::Attributes::MaxPathsPerInvoke::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* basic_information */
|
|
|
|
namespace binding {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_binding(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Binding::Attributes::Binding::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* binding */
|
|
|
|
namespace ota_requestor {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_default_ota_providers(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OtaSoftwareUpdateRequestor::Attributes::DefaultOTAProviders::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_update_possible(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OtaSoftwareUpdateRequestor::Attributes::UpdatePossible::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_update_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OtaSoftwareUpdateRequestor::Attributes::UpdateState::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_update_state_progress(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OtaSoftwareUpdateRequestor::Attributes::UpdateStateProgress::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* ota_requestor */
|
|
|
|
namespace general_commissioning {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_breadcrumb(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::Breadcrumb::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_basic_commissioning_info(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::BasicCommissioningInfo::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_regulatory_config(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::RegulatoryConfig::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_location_capability(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::LocationCapability::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_supports_concurrent_connection(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::SupportsConcurrentConnection::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_tc_accepted_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::TCAcceptedVersion::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_tc_min_required_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::TCMinRequiredVersion::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_tc_acknowledgements(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::TCAcknowledgements::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_tc_acknowledgements_required(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::TCAcknowledgementsRequired::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_tc_update_deadline(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
// Current CHIP submodule don't have this attribute
|
|
//return esp_matter::attribute::create(cluster, GeneralCommissioning::Attributes::TCUpdateDeadline::Id,
|
|
// ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
return NULL;
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* general_commissioning */
|
|
|
|
namespace network_commissioning {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_max_networks(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::MaxNetworks::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_networks(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::Networks::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_scan_max_time_seconds(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::ScanMaxTimeSeconds::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_connect_max_time_seconds(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::ConnectMaxTimeSeconds::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_interface_enabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::InterfaceEnabled::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_last_networking_status(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::LastNetworkingStatus::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_last_network_id(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::LastNetworkID::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_last_connect_error_value(cluster_t *cluster, nullable<int32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::LastConnectErrorValue::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int32(value));
|
|
}
|
|
|
|
attribute_t *create_supported_wifi_bands(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::SupportedWiFiBands::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_supported_thread_features(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::SupportedThreadFeatures::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_thread_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::ThreadVersion::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* network_commissioning */
|
|
|
|
namespace general_diagnostics {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_network_interfaces(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::NetworkInterfaces::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_reboot_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::RebootCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_up_time(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::UpTime::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_total_operational_hours(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::TotalOperationalHours::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_boot_reason(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::BootReason::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_active_hardware_faults(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::ActiveHardwareFaults::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_active_radio_faults(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::ActiveRadioFaults::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_active_network_faults(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::ActiveNetworkFaults::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_test_event_triggers_enabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::TestEventTriggersEnabled::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_bool(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* general_diagnostics */
|
|
|
|
|
|
namespace software_diagnostics {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_current_heap_high_watermark(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SoftwareDiagnostics::Attributes::CurrentHeapHighWatermark::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_thread_metrics(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SoftwareDiagnostics::Attributes::ThreadMetrics::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_heap_free(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SoftwareDiagnostics::Attributes::CurrentHeapFree::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_current_heap_used(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SoftwareDiagnostics::Attributes::CurrentHeapUsed::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* software_diagnostics */
|
|
|
|
namespace administrator_commissioning {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_window_status(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AdministratorCommissioning::Attributes::WindowStatus::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_admin_fabric_index(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AdministratorCommissioning::Attributes::AdminFabricIndex::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_admin_vendor_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AdministratorCommissioning::Attributes::AdminVendorId::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* administrator_commissioning */
|
|
|
|
namespace operational_credentials {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_nocs(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalCredentials::Attributes::NOCs::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_fabrics(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalCredentials::Attributes::Fabrics::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_supported_fabrics(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalCredentials::Attributes::SupportedFabrics::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_commissioned_fabrics(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalCredentials::Attributes::CommissionedFabrics::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_trusted_root_certificates(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalCredentials::Attributes::TrustedRootCertificates::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_fabric_index(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalCredentials::Attributes::CurrentFabricIndex::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* operational_credentials */
|
|
|
|
namespace group_key_management {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_group_key_map(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GroupKeyManagement::Attributes::GroupKeyMap::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_group_table(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GroupKeyManagement::Attributes::GroupTable::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_max_groups_per_fabric(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GroupKeyManagement::Attributes::MaxGroupsPerFabric::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_max_group_keys_per_fabric(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GroupKeyManagement::Attributes::MaxGroupKeysPerFabric::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* group_key_management */
|
|
|
|
namespace icd_management {
|
|
namespace attribute {
|
|
attribute_t *create_idle_mode_duration(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::IdleModeDuration::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_active_mode_duration(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::ActiveModeDuration::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_active_mode_threshold(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::ActiveModeThreshold::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_registered_clients(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::RegisteredClients::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_array(value,length, count));
|
|
}
|
|
|
|
attribute_t *create_icd_counter(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::ICDCounter::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_clients_supported_per_fabric(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::ClientsSupportedPerFabric::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_user_active_mode_trigger_hint(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::UserActiveModeTriggerHint::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap32(value));
|
|
}
|
|
|
|
attribute_t *create_user_active_mode_trigger_instruction(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
if (length > k_user_active_mode_trigger_instruction_length) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string length out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::UserActiveModeTriggerInstruction::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length),
|
|
k_user_active_mode_trigger_instruction_length);
|
|
}
|
|
|
|
attribute_t *create_operating_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, IcdManagement::Attributes::OperatingMode::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* icd_management */
|
|
|
|
namespace wifi_network_diagnostics {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_bssid(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::Bssid::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_security_type(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::SecurityType::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_wifi_version(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::WiFiVersion::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_channel_number(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::ChannelNumber::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_rssi(cluster_t *cluster, nullable<int8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::Rssi::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_int8(value));
|
|
}
|
|
|
|
attribute_t *create_beacon_lost_count(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::BeaconLostCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_beacon_rx_count(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::BeaconRxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_multicast_rx_count(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketMulticastRxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_multicast_tx_count(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketMulticastTxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_unicast_rx_count(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketUnicastRxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_unicast_tx_count(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketUnicastTxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_current_max_rate(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::CurrentMaxRate::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_overrun_count(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::OverrunCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* wifi_network_diagnostics */
|
|
|
|
namespace thread_network_diagnostics {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_channel(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::Channel::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_routing_role(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RoutingRole::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_network_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::NetworkName::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_pan_id(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::PanId::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_extended_pan_id(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ExtendedPanId::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_mesh_local_prefix(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::MeshLocalPrefix::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_neighbor_table(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::NeighborTable::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_route_table(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RouteTable::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_partition_id(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::PartitionId::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_weighting(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::Weighting::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_data_version(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::DataVersion::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_stable_data_version(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::StableDataVersion::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_leader_router_id(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::LeaderRouterId::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_security_policy(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::SecurityPolicy::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_channel_page0_mask(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ChannelPage0Mask::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_operational_dataset_components(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster,
|
|
ThreadNetworkDiagnostics::Attributes::OperationalDatasetComponents::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_active_network_faults(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ActiveNetworkFaultsList::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_ext_address(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
// Current CHIP submodule don't have this attribute
|
|
// TODO: https://jira.espressif.com:8443/browse/CON-1438
|
|
// return esp_matter::attribute::create(cluster,
|
|
// ThreadNetworkDiagnostics::Attributes::ExtAddress::Id,
|
|
// ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_nullable_uint64(value));
|
|
return NULL;
|
|
}
|
|
|
|
attribute_t *create_rloc16(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
// Current CHIP submodule don't have this attribute
|
|
// TODO: https://jira.espressif.com:8443/browse/CON-1438
|
|
// return esp_matter::attribute::create(cluster,
|
|
// ThreadNetworkDiagnostics::Attributes::Rloc16::Id,
|
|
// ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_nullable_uint16(value));
|
|
return NULL;
|
|
}
|
|
|
|
attribute_t *create_overrun_count(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::OverrunCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_detached_role_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::DetachedRoleCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_chlid_role_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ChildRoleCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_router_role_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RouterRoleCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
attribute_t *create_leader_role_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::LeaderRoleCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_attach_attempt_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::AttachAttemptCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_partition_id_change_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::PartitionIdChangeCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_better_partition_attach_attempt_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::BetterPartitionAttachAttemptCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_parent_change_count(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ParentChangeCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_tx_total_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxTotalCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_unicast_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxUnicastCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_broadcast_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxBroadcastCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_ack_requested_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxAckRequestedCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_acked_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxAckedCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_no_ack_requested_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxNoAckRequestedCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_data_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxDataCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_data_poll_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxDataPollCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_beacon_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxBeaconCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_beacon_request_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxBeaconRequestCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_other_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxOtherCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_retry_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxRetryCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_direct_max_retry_expiry_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxDirectMaxRetryExpiryCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_indirect_max_retry_expiry_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxIndirectMaxRetryExpiryCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_err_cca_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxErrCcaCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_err_abort_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxErrAbortCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_tx_err_busy_channel_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::TxErrBusyChannelCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_total_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxTotalCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_unicast_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxUnicastCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_broadcast_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxBroadcastCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_data_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxDataCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_data_poll_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxDataPollCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_beacon_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxBeaconCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_beacon_request_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxBeaconRequestCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_other_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxOtherCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_address_filtered_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxAddressFilteredCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_dest_addr_filtered_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxDestAddrFilteredCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_duplicated_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxDuplicatedCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_err_no_frame_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxErrNoFrameCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_err_unknown_neighbor_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxErrUnknownNeighborCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_err_invalid_src_addr_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxErrInvalidSrcAddrCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_err_sec_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxErrSecCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_err_fcs_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxErrFcsCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_rx_err_other_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RxErrOtherCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_active_timestamp(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ActiveTimestamp::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_pending_timestamp(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::PendingTimestamp::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_delay(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::Delay::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* thread_network_diagnostics */
|
|
|
|
namespace ethernet_network_diagnostics {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_phy_rate(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::PHYRate::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_full_duplex(cluster_t *cluster, nullable<bool> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::FullDuplex::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_bool(value));
|
|
}
|
|
|
|
attribute_t *create_packet_rx_count(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::PacketRxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_packet_tx_count(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::PacketTxCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_collision_count(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::CollisionCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_overrun_count(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::OverrunCount::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_carrier_detect(cluster_t *cluster, nullable<bool> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::CarrierDetect::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_bool(value));
|
|
}
|
|
|
|
attribute_t *create_time_since_reset(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EthernetNetworkDiagnostics::Attributes::TimeSinceReset::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* ethernet_network_diagnostics */
|
|
|
|
namespace bridged_device_basic_information {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_vendor_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::VendorName::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_vendor_name_length);
|
|
}
|
|
|
|
attribute_t *create_vendor_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::VendorID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_product_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ProductName::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_product_name_length);
|
|
}
|
|
|
|
attribute_t *create_product_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ProductID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_node_label(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_node_label_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::NodeLabel::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_char_str(value, length), k_max_node_label_length);
|
|
}
|
|
|
|
attribute_t *create_hardware_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::HardwareVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_hardware_version_string(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::HardwareVersionString::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length), k_max_hardware_version_string_length);
|
|
}
|
|
|
|
attribute_t *create_software_version(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::SoftwareVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_software_version_string(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::SoftwareVersionString::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length), k_max_software_version_string_length);
|
|
}
|
|
|
|
attribute_t *create_manufacturing_date(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ManufacturingDate::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length), k_max_manufacturing_date_length);
|
|
}
|
|
|
|
attribute_t *create_part_number(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::PartNumber::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_part_number_length);
|
|
}
|
|
|
|
attribute_t *create_product_url(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ProductURL::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_product_url_length);
|
|
}
|
|
|
|
attribute_t *create_product_label(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ProductLabel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_product_label_length);
|
|
}
|
|
|
|
attribute_t *create_serial_number(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::SerialNumber::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_serial_number_length);
|
|
}
|
|
|
|
attribute_t *create_reachable(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::Reachable::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_unique_id(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::UniqueID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_unique_id_length);
|
|
}
|
|
|
|
attribute_t *create_product_appearance(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ProductAppearance::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* bridged_device_basic_information */
|
|
|
|
namespace user_label {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_label_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, UserLabel::Attributes::LabelList::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* user_label */
|
|
|
|
namespace fixed_label {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_label_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FixedLabel::Attributes::LabelList::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* fixed_label */
|
|
|
|
namespace identify {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_identify_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Identify::Attributes::IdentifyTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_identify_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Identify::Attributes::IdentifyType::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* identify */
|
|
|
|
namespace groups {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_group_name_support(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Groups::Attributes::NameSupport::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* groups */
|
|
|
|
namespace scenes_management {
|
|
namespace attribute {
|
|
attribute_t *create_scene_table_size(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ScenesManagement::Attributes::SceneTableSize::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_fabric_scene_info(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ScenesManagement::Attributes::FabricSceneInfo::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* scenes_management */
|
|
|
|
namespace on_off {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_on_off(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::OnOff::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_global_scene_control(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::GlobalSceneControl::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_on_time(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::OnTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_off_wait_time(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::OffWaitTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_start_up_on_off(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::StartUpOnOff::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* on_off */
|
|
|
|
namespace level_control {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_current_level(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::CurrentLevel::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_on_level(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OnLevel::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_options(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::Options::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_remaining_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::RemainingTime::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_min_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::MinLevel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_max_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::MaxLevel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_current_frequency(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::CurrentFrequency::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_min_frequency(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::MinFrequency::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_max_frequency(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::MaxFrequency::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_on_off_transition_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OnOffTransitionTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_on_transition_time(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OnTransitionTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_off_transition_time(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OffTransitionTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_default_move_rate(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::DefaultMoveRate::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_start_up_current_level(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::StartUpCurrentLevel::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* level_control */
|
|
|
|
namespace color_control {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_current_hue(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::CurrentHue::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_current_saturation(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::CurrentSaturation::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_remaining_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::RemainingTime::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_color_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorMode::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_color_control_options(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Options::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_enhanced_color_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::EnhancedColorMode::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_color_capabilities(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorCapabilities::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_color_temperature_mireds(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorTemperatureMireds::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_color_temp_physical_min_mireds(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorTempPhysicalMinMireds::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_color_temp_physical_max_mireds(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorTempPhysicalMaxMireds::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_couple_color_temp_to_level_min_mireds(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::CoupleColorTempToLevelMinMireds::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_startup_color_temperature_mireds(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::StartUpColorTemperatureMireds::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_current_x(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::CurrentX::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_current_y(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::CurrentY::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_drift_compensation(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::DriftCompensation::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_compensation_text(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_compensation_text_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::CompensationText::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_compensation_text_length);
|
|
}
|
|
|
|
attribute_t *create_enhanced_current_hue(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::EnhancedCurrentHue::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_color_loop_active(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorLoopActive::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_color_loop_direction(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorLoopDirection::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_color_loop_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorLoopTime::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_color_loop_start_enhanced_hue(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorLoopStartEnhancedHue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_color_loop_stored_enhanced_hue(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::ColorLoopStoredEnhancedHue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_primaries(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::NumberOfPrimaries::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_primary_n_x(cluster_t *cluster, uint16_t value, uint8_t index)
|
|
{
|
|
switch (index) {
|
|
case 1:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary1X::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 2:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary2X::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 3:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary3X::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 4:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary4X::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 5:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary5X::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 6:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary6X::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return NULL;
|
|
|
|
}
|
|
|
|
attribute_t *create_primary_n_y(cluster_t *cluster, uint16_t value, uint8_t index)
|
|
{
|
|
switch (index) {
|
|
case 1:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary1Y::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 2:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary2Y::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 3:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary3Y::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 4:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary4Y::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 5:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary5Y::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
case 6:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary6Y::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
attribute_t *create_primary_n_intensity(cluster_t *cluster, nullable<uint8_t> value, uint8_t index)
|
|
{
|
|
switch (index) {
|
|
case 1:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary1Intensity::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
break;
|
|
case 2:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary2Intensity::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
break;
|
|
case 3:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary3Intensity::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
break;
|
|
case 4:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary4Intensity::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
break;
|
|
case 5:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary5Intensity::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
break;
|
|
case 6:
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::Primary6Intensity::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* color_control */
|
|
|
|
namespace fan_control {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_fan_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::FanMode::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_fan_mode_sequence(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::FanModeSequence::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_percent_setting(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::PercentSetting::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_percent_current(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::PercentCurrent::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_speed_max(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::SpeedMax::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_speed_setting(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::SpeedSetting::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_speed_current(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::SpeedCurrent::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_rock_support(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::RockSupport::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_rock_setting(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::RockSetting::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_wind_support(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::WindSupport::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_wind_setting(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::WindSetting::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_airflow_direction(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::AirflowDirection::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* fan_control */
|
|
|
|
namespace thermostat {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_local_temperature(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::LocalTemperature::Id, ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_outdoor_temperature(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OutdoorTemperature::Id, ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_occupancy(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::Occupancy::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_abs_min_heat_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::AbsMinHeatSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_abs_max_heat_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::AbsMaxHeatSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_abs_min_cool_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::AbsMinCoolSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_abs_max_cool_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::AbsMaxCoolSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pi_cooling_demand(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::PICoolingDemand::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_pi_heating_demand(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::PIHeatingDemand::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_hvac_system_type_config(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::HVACSystemTypeConfiguration::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_local_temperature_calibration(cluster_t *cluster, int8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::LocalTemperatureCalibration::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int8(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_cooling_setpoint(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedCoolingSetpoint::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_heating_setpoint(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedHeatingSetpoint::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_unoccupied_cooling_setpoint(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::UnoccupiedCoolingSetpoint::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_unoccupied_heating_setpoint(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::UnoccupiedHeatingSetpoint::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_min_heat_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::MinHeatSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_heat_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::MaxHeatSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_min_cool_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::MinCoolSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_cool_setpoint_limit(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::MaxCoolSetpointLimit::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_min_setpoint_dead_band(cluster_t *cluster, int8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::MinSetpointDeadBand::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int8(value));
|
|
}
|
|
|
|
attribute_t *create_remote_sensing(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::RemoteSensing::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_control_sequence_of_operation(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ControlSequenceOfOperation::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_system_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::SystemMode::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_thermostat_running_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ThermostatRunningMode::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_start_of_week(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::StartOfWeek::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_weekly_transitions(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::NumberOfWeeklyTransitions::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_daily_transitions(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::NumberOfDailyTransitions::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_temperature_setpoint_hold(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::TemperatureSetpointHold::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_temperature_setpoint_hold_duration(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::TemperatureSetpointHoldDuration::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_thermostat_programming_operation_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ThermostatProgrammingOperationMode::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_thermostat_running_state(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ThermostatRunningState::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_setpoint_change_source(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::SetpointChangeSource::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_setpoint_change_amount(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::SetpointChangeAmount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_setpoint_change_source_timestamp(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::SetpointChangeSourceTimestamp::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_setback(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedSetback::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_setback_min(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedSetbackMin::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_setback_max(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedSetbackMax::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_unoccupied_setback(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::UnoccupiedSetback::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_unoccupied_setback_min(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::UnoccupiedSetbackMin::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_unoccupied_setback_max(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::UnoccupiedSetbackMax::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_emergency_heat_delta(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::EmergencyHeatDelta::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_ac_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACType::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_ac_capacity(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACCapacity::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_ac_refrigerant_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACRefrigerantType::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_ac_compressor_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACCompressorType::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_ac_error_code(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACErrorCode::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap32(value));
|
|
}
|
|
|
|
attribute_t *create_ac_louver_position(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACLouverPosition::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_ac_coil_temperature(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACCoilTemperature::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_ac_capacity_format(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ACCapacityformat::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_preset_types(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::PresetTypes::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_schedule_type(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ScheduleTypes::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_number_of_presets(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::NumberOfPresets::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_schedules(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::NumberOfSchedules::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_schedule_transitions(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::NumberOfScheduleTransitions::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_schedule_transition_per_day(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::NumberOfScheduleTransitionPerDay::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_active_preset_handle(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
if (length > k_max_active_preset_handle) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string size out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ActivePresetHandle::Id, ATTRIBUTE_FLAG_NULLABLE |
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_octet_str(value, length), k_max_active_preset_handle);
|
|
}
|
|
|
|
attribute_t *create_active_schedule_handle(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
if (length > k_max_active_schedule_handle) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string size out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::ActiveScheduleHandle::Id, ATTRIBUTE_FLAG_NULLABLE |
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_octet_str(value, length), k_max_active_schedule_handle);
|
|
}
|
|
|
|
attribute_t *create_presets(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::Presets::Id, ATTRIBUTE_FLAG_NONVOLATILE |
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_schedules(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::Schedules::Id, ATTRIBUTE_FLAG_NONVOLATILE |
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_setpoint_hold_expiry_timestamp(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::SetpointHoldExpiryTimestamp::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* thermostat */
|
|
|
|
namespace thermostat_user_interface_configuration {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_temperature_display_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThermostatUserInterfaceConfiguration::Attributes::TemperatureDisplayMode::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_keypad_lockout(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThermostatUserInterfaceConfiguration::Attributes::KeypadLockout::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_schedule_programming_visibility(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThermostatUserInterfaceConfiguration::Attributes::ScheduleProgrammingVisibility::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* thermostat_user_interface_configuration */
|
|
|
|
namespace air_quality {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_air_quality(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, AirQuality::Attributes::AirQuality::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* air_quality */
|
|
|
|
namespace resource_monitoring {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_condition(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, HepaFilterMonitoring::Attributes::Condition::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_degradation_direction(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, HepaFilterMonitoring::Attributes::DegradationDirection::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_change_indication(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, HepaFilterMonitoring::Attributes::ChangeIndication::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_in_place_indicator(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, HepaFilterMonitoring::Attributes::InPlaceIndicator::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_last_change_time(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, HepaFilterMonitoring::Attributes::LastChangedTime::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_replacement_product_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, HepaFilterMonitoring::Attributes::ReplacementProductList::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* resource_monitoring */
|
|
|
|
namespace concentration_measurement {
|
|
namespace attribute {
|
|
attribute_t *create_measured_value(cluster_t *cluster, nullable<float> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::MeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_float(value));
|
|
}
|
|
|
|
attribute_t *create_min_measured_value(cluster_t *cluster, nullable<float> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::MinMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_float(value));
|
|
}
|
|
|
|
attribute_t *create_max_measured_value(cluster_t *cluster, nullable<float> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::MaxMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_float(value));
|
|
}
|
|
|
|
attribute_t *create_peak_measured_value(cluster_t *cluster, nullable<float> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::PeakMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_float(value));
|
|
}
|
|
|
|
attribute_t *create_peak_measured_value_window(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::PeakMeasuredValueWindow::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_average_measured_value(cluster_t *cluster, nullable<float> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::AverageMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_float(value));
|
|
}
|
|
|
|
attribute_t *create_average_measured_value_window(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::AverageMeasuredValueWindow::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_uncertainty(cluster_t *cluster, float value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::Uncertainty::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_float(value));
|
|
}
|
|
|
|
attribute_t *create_measurement_unit(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::MeasurementUnit::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_measurement_medium(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::MeasurementMedium::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_level_value(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CarbonMonoxideConcentrationMeasurement::Attributes::LevelValue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* concentration_measurement */
|
|
|
|
namespace operational_state {
|
|
namespace attribute {
|
|
attribute_t *create_phase_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalState::Attributes::PhaseList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_phase(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalState::Attributes::CurrentPhase::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_countdown_time(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalState::Attributes::CountdownTime::Id, ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_operational_state_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalState::Attributes::OperationalStateList::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_operational_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalState::Attributes::OperationalState::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_operational_error(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OperationalState::Attributes::OperationalError::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* operational_state */
|
|
|
|
namespace laundry_washer_controls {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_spin_speeds(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LaundryWasherControls::Attributes::SpinSpeeds::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_spin_speed_current(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LaundryWasherControls::Attributes::SpinSpeedCurrent::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
|
|
}
|
|
|
|
attribute_t *create_number_of_rinses(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LaundryWasherControls::Attributes::NumberOfRinses::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_supported_rinses(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LaundryWasherControls::Attributes::SupportedRinses::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
} /* attribute */
|
|
} /* laundry_washer_controls */
|
|
|
|
namespace laundry_dryer_controls {
|
|
namespace attribute {
|
|
attribute_t *create_supported_dryness_levels(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LaundryDryerControls::Attributes::SupportedDrynessLevels::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_selected_dryness_level(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LaundryDryerControls::Attributes::SelectedDrynessLevel::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_nullable_uint8(value));
|
|
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* laundry_dryer_controls */
|
|
|
|
namespace smoke_co_alarm {
|
|
namespace attribute {
|
|
attribute_t *create_expressed_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::ExpressedState::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_smoke_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::SmokeState::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_co_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::COState::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_battery_alert(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::BatteryAlert::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_device_muted(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::DeviceMuted::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_test_in_progress(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::TestInProgress::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_hardware_fault_alert(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::HardwareFaultAlert::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_end_of_service_alert(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::EndOfServiceAlert::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_interconnect_smoke_alarm(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::InterconnectSmokeAlarm::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_interconnect_co_alarm(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::InterconnectCOAlarm::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_contamination_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::ContaminationState::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_smoke_sensitivity_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::SmokeSensitivityLevel::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_expiry_date(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, SmokeCoAlarm::Attributes::ContaminationState::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint32(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* smoke_co_alarm */
|
|
|
|
namespace door_lock {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_lock_state(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::LockState::Id, ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_lock_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::LockType::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_actuator_enabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::ActuatorEnabled::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_door_state(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::DoorState::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_door_open_events(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::DoorOpenEvents::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_door_close_events(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::DoorClosedEvents::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_open_period(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::OpenPeriod::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_total_users_supported(cluster_t *cluster, const uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfTotalUsersSupported::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_pin_users_supported(cluster_t *cluster, const uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfPINUsersSupported::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_rfid_users_supported(cluster_t *cluster, const uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfRFIDUsersSupported::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_weekday_schedules_supported_per_user(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfWeekDaySchedulesSupportedPerUser::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_year_day_schedules_supported_per_user(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfYearDaySchedulesSupportedPerUser::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_holiday_schedules_supported(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfHolidaySchedulesSupported::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_max_pin_code_length(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::MaxPINCodeLength::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_min_pin_code_length(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::MinPINCodeLength::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_max_rfid_code_length(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::MaxRFIDCodeLength::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_min_rfid_code_length(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::MinRFIDCodeLength::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_credential_rules_support(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::CredentialRulesSupport::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_credentials_supported_per_user(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfCredentialsSupportedPerUser::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_language(cluster_t *cluster, const char * value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_language_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string size out of bound"));
|
|
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::Language::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_char_str((char *)value, length), k_max_language_length);
|
|
}
|
|
|
|
attribute_t *create_led_settings(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::LEDSettings::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_auto_relock_time(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AutoRelockTime::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_sound_valume(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::SoundVolume::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_operating_mode(cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, DoorLock::Attributes::OperatingMode::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), DoorLock::Attributes::OperatingMode::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_enum8(min), esp_matter_enum8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_supported_operating_modes(cluster_t *cluster, const uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::SupportedOperatingModes::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_default_configuration_register(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::DefaultConfigurationRegister::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_enable_local_programming(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::EnableLocalProgramming::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_enable_one_touch_locking(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::EnableOneTouchLocking::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_enable_inside_status_led(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::EnableInsideStatusLED::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_enable_privacy_mode_button(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::EnablePrivacyModeButton::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_local_programming_features(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::LocalProgrammingFeatures::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_wrong_code_entry_limit(cluster_t *cluster, uint8_t value)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, DoorLock::Attributes::WrongCodeEntryLimit::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), DoorLock::Attributes::WrongCodeEntryLimit::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint8(1), esp_matter_uint8(255));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_user_code_temporary_disable_time(cluster_t *cluster, uint8_t value)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, DoorLock::Attributes::UserCodeTemporaryDisableTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), DoorLock::Attributes::UserCodeTemporaryDisableTime::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint8(1), esp_matter_uint8(255));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_send_pin_over_the_air(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::SendPINOverTheAir::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_require_pin_for_remote_operation(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::RequirePINforRemoteOperation::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_expiring_user_timeout(cluster_t *cluster, uint16_t value)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, DoorLock::Attributes::ExpiringUserTimeout::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), DoorLock::Attributes::ExpiringUserTimeout::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint16(1), esp_matter_uint16(2880));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_aliro_reader_verification_key(cluster_t *cluster, uint8_t * value, uint16_t length)
|
|
{
|
|
if (length > k_max_aliro_reader_verification_key) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string size out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroReaderVerificationKey::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_octet_str(value, length), k_max_aliro_reader_verification_key);
|
|
}
|
|
|
|
attribute_t *create_aliro_reader_group_identifier(cluster_t *cluster, uint8_t * value, uint16_t length)
|
|
{
|
|
if (length > k_max_aliro_reader_group_identifier) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string size out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroReaderGroupIdentifier::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_octet_str(value, length), k_max_aliro_reader_group_identifier);
|
|
}
|
|
|
|
attribute_t *create_aliro_reader_group_sub_identifier(cluster_t *cluster, uint8_t * value, uint16_t length)
|
|
{
|
|
if (length > k_max_aliro_reader_group_sub_identifier) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string size out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroReaderGroupSubIdentifier::Id, ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_octet_str(value, length), k_max_aliro_reader_group_sub_identifier);
|
|
}
|
|
|
|
attribute_t *create_aliro_expedited_transaction_supported_protocol_versions(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroExpeditedTransactionSupportedProtocolVersions::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_aliro_group_resolving_key(cluster_t *cluster, uint8_t * value, uint16_t length)
|
|
{
|
|
if (length > k_max_aliro_group_resolving_key) {
|
|
ESP_LOGE(TAG, "Could not create attribute, string size out of bound");
|
|
return NULL;
|
|
}
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroGroupResolvingKey::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_octet_str(value, length), k_max_aliro_group_resolving_key);
|
|
}
|
|
|
|
attribute_t *create_aliro_supported_bleuwb_protocol_versions(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroSupportedBLEUWBProtocolVersions::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_aliro_ble_advertising_version(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AliroBLEAdvertisingVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_aliro_credential_issuer_keys_supported(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfAliroCredentialIssuerKeysSupported::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_aliro_endpoint_keys_supported(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::NumberOfAliroEndpointKeysSupported::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* door_lock */
|
|
|
|
namespace window_covering {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::Type::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_physical_closed_limit_lift(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::PhysicalClosedLimitLift::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_physical_closed_limit_tilt(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::PhysicalClosedLimitTilt::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_current_position_lift(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::CurrentPositionLift::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_current_position_tilt(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::CurrentPositionTilt::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_actuations_lift(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::NumberOfActuationsLift::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_actuations_tilt(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::NumberOfActuationsTilt::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_config_status(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::ConfigStatus::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_current_position_lift_percentage(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::CurrentPositionLiftPercentage::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_current_position_tilt_percentage(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::CurrentPositionTiltPercentage::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_operational_status(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::OperationalStatus::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_target_position_lift_percent_100ths(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::TargetPositionLiftPercent100ths::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_target_position_tilt_percent_100ths(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::TargetPositionTiltPercent100ths::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_end_product_type(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::EndProductType::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_current_position_lift_percent_100ths(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::CurrentPositionLiftPercent100ths::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_current_position_tilt_percent_100ths(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::CurrentPositionTiltPercent100ths::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_installed_open_limit_lift(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::InstalledOpenLimitLift::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_installed_closed_limit_lift(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::InstalledClosedLimitLift::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_installed_open_limit_tilt(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::InstalledOpenLimitTilt::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_installed_closed_limit_tilt(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::InstalledClosedLimitTilt::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::Mode::Id, ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_safety_status(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WindowCovering::Attributes::SafetyStatus::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* window_covering */
|
|
|
|
namespace switch_cluster {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_number_of_positions(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Switch::Attributes::NumberOfPositions::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_current_position(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Switch::Attributes::CurrentPosition::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_multi_press_max(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Switch::Attributes::MultiPressMax::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* switch_cluster */
|
|
|
|
namespace temperature_measurement {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_temperature_measured_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureMeasurement::Attributes::MeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_temperature_min_measured_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureMeasurement::Attributes::MinMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_temperature_max_measured_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureMeasurement::Attributes::MaxMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* temperature_measurement */
|
|
|
|
namespace relative_humidity_measurement {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_relative_humidity_measured_value(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RelativeHumidityMeasurement::Attributes::MeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_relative_humidity_min_measured_value(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RelativeHumidityMeasurement::Attributes::MinMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_relative_humidity_max_measured_value(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RelativeHumidityMeasurement::Attributes::MaxMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_relative_humidity_tolerance(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RelativeHumidityMeasurement::Attributes::Tolerance::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* relative_humidity_measurement */
|
|
|
|
namespace occupancy_sensing {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_occupancy(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::Occupancy::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_occupancy_sensor_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::OccupancySensorType::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_occupancy_sensor_type_bitmap(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::OccupancySensorTypeBitmap::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_hold_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::HoldTime::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_hold_time_limits(cluster_t *cluster, uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::HoldTimeLimits::Id,
|
|
ATTRIBUTE_FLAG_NONE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_pir_occupied_to_unoccupied_delay(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::PIROccupiedToUnoccupiedDelay::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_pir_unoccupied_to_occupied_delay(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::PIRUnoccupiedToOccupiedDelay::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_pir_unoccupied_to_occupied_threshold(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::PIRUnoccupiedToOccupiedThreshold::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_ultrasonic_occupied_to_unoccupied_delay(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::UltrasonicOccupiedToUnoccupiedDelay::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_ultrasonic_unoccupied_to_occupied_delay(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::UltrasonicUnoccupiedToOccupiedDelay::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_ultrasonic_unoccupied_to_occupied_threshold(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::UltrasonicUnoccupiedToOccupiedThreshold::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_physical_contact_occupied_to_unoccupied_delay(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::PhysicalContactOccupiedToUnoccupiedDelay::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_physical_contact_unoccupied_to_occupied_delay(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::PhysicalContactUnoccupiedToOccupiedDelay::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_physical_contact_unoccupied_to_occupied_threshold(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OccupancySensing::Attributes::PhysicalContactUnoccupiedToOccupiedThreshold::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE , esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* occupancy_sensing */
|
|
|
|
namespace boolean_state {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_state_value(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanState::Attributes::StateValue::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* boolean_state */
|
|
|
|
namespace boolean_state_configuration {
|
|
namespace attribute {
|
|
attribute_t *create_current_sensitivity_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::CurrentSensitivityLevel::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_supported_sensitivity_levels(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::SupportedSensitivityLevels::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_default_sensitivity_level(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::DefaultSensitivityLevel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_alarms_active(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::AlarmsActive::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_alarms_suppressed(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::AlarmsSuppressed::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_alarms_enabled(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::AlarmsEnabled::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_alarms_supported(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::AlarmsSupported::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_sensor_fault(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BooleanStateConfiguration::Attributes::SensorFault::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* boolean_state_configuration */
|
|
|
|
namespace localization_configuration {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_active_locale(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_active_locale_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, LocalizationConfiguration::Attributes::ActiveLocale::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_char_str(value, length), k_max_active_locale_length);
|
|
}
|
|
|
|
attribute_t *create_supported_locales(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LocalizationConfiguration::Attributes::SupportedLocales::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* localization_configuration */
|
|
|
|
namespace unit_localization {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_temperature_unit(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, UnitLocalization::Attributes::TemperatureUnit::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
} /* attribute */
|
|
} /* unit_localization */
|
|
|
|
namespace time_format_localization {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_hour_format(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeFormatLocalization::Attributes::HourFormat::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_active_calendar_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeFormatLocalization::Attributes::ActiveCalendarType::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_supported_calendar_types(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeFormatLocalization::Attributes::SupportedCalendarTypes::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* time_format_localization */
|
|
|
|
namespace illuminance_measurement {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_illuminance_measured_value(cluster_t *cluster, nullable<uint16_t> value, nullable<uint16_t> min, nullable<uint16_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, IlluminanceMeasurement::Attributes::MeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), IlluminanceMeasurement::Attributes::MeasuredValue::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint16(min), esp_matter_nullable_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_illuminance_min_measured_value(cluster_t *cluster, nullable<uint16_t> value, nullable<uint16_t> min, nullable<uint16_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, IlluminanceMeasurement::Attributes::MinMeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), IlluminanceMeasurement::Attributes::MinMeasuredValue::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint16(min), esp_matter_nullable_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_illuminance_max_measured_value(cluster_t *cluster, nullable<uint16_t> value, nullable<uint16_t> min, nullable<uint16_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, IlluminanceMeasurement::Attributes::MaxMeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), IlluminanceMeasurement::Attributes::MaxMeasuredValue::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint16(min), esp_matter_nullable_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_illuminance_tolerance(cluster_t *cluster, uint16_t value, uint16_t min, uint16_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, IlluminanceMeasurement::Attributes::Tolerance::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), IlluminanceMeasurement::Attributes::Tolerance::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint16(min), esp_matter_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_illuminance_light_sensor_type(cluster_t *cluster, nullable<uint8_t> value, nullable<uint8_t> min, nullable<uint8_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, IlluminanceMeasurement::Attributes::LightSensorType::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), IlluminanceMeasurement::Attributes::LightSensorType::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_enum8(min), esp_matter_nullable_enum8(max));
|
|
return attribute;
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* illuminance_measurement */
|
|
|
|
namespace pressure_measurement {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_pressure_measured_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::MeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pressure_min_measured_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::MinMeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pressure_max_measured_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::MaxMeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pressure_tolerance(cluster_t *cluster, uint16_t value, uint16_t min, uint16_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::Tolerance::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PressureMeasurement::Attributes::Tolerance::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint16(min), esp_matter_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_pressure_scaled_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::ScaledValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pressure_min_scaled_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::MinScaledValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pressure_max_scaled_value(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::MaxScaledValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pressure_scaled_tolerance(cluster_t *cluster, uint16_t value, uint16_t min, uint16_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::ScaledTolerance::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PressureMeasurement::Attributes::ScaledTolerance::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint16(min), esp_matter_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_pressure_scale(cluster_t *cluster, int8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PressureMeasurement::Attributes::Scale::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* pressure_measurement */
|
|
|
|
namespace flow_measurement {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_flow_measured_value(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FlowMeasurement::Attributes::MeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_flow_min_measured_value(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FlowMeasurement::Attributes::MinMeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_flow_max_measured_value(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FlowMeasurement::Attributes::MaxMeasuredValue::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_flow_tolerance(cluster_t *cluster, uint16_t value, uint16_t min, uint16_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, FlowMeasurement::Attributes::Tolerance::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), FlowMeasurement::Attributes::Tolerance::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint16(min), esp_matter_uint16(max));
|
|
return attribute;
|
|
}
|
|
} /* attribute */
|
|
} /* flow_measurement */
|
|
|
|
namespace pump_configuration_and_control {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_max_pressure(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxPressure::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_speed(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxSpeed::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_max_flow(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxFlow::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_min_const_pressure(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MinConstPressure::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_const_pressure(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxConstPressure::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_min_comp_pressure(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MinCompPressure::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_comp_pressure(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxCompPressure::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_min_const_speed(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MinConstSpeed::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_max_const_speed(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxConstSpeed::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_min_const_flow(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MinConstFlow::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_max_const_flow(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxConstFlow::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_min_const_temp(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MinConstTemp::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_const_temp(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::MaxConstTemp::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_pump_status(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::PumpStatus::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_effective_operation_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::EffectiveOperationMode::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_effective_control_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::EffectiveControlMode::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_capacity(cluster_t *cluster, nullable<int16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::Capacity::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int16(value));
|
|
}
|
|
|
|
attribute_t *create_speed(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::Speed::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_lifetime_running_hours(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::LifetimeRunningHours::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_pump_power(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::Power::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_lifetime_energy_consumed(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::LifetimeEnergyConsumed::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_operation_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::OperationMode::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_control_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PumpConfigurationAndControl::Attributes::ControlMode::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_enum8(value));
|
|
}
|
|
} /* attribute */
|
|
} /* pump_configuration_and_control */
|
|
|
|
namespace mode_select {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_mode_select_description(cluster_t *cluster, const char * value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_mode_select_description_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, ModeSelect::Attributes::Description::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str((char *)value, length),
|
|
k_max_mode_select_description_length);
|
|
}
|
|
|
|
attribute_t *create_standard_namespace(cluster_t *cluster, const nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeSelect::Attributes::StandardNamespace::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum16(value));
|
|
}
|
|
|
|
attribute_t *create_supported_modes(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeSelect::Attributes::SupportedModes::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeSelect::Attributes::CurrentMode::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_start_up_mode(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeSelect::Attributes::StartUpMode::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_on_mode(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeSelect::Attributes::OnMode::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* mode_select */
|
|
|
|
namespace power_source {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_status(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::Status::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_order(cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::Order::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::Order::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint8(min), esp_matter_uint8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_description(cluster_t *cluster, const char * value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_description_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::Description::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str((char *)value, length), k_max_description_length);
|
|
}
|
|
|
|
attribute_t *create_wired_assessed_input_voltage(cluster_t *cluster, nullable<uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredAssessedInputVoltage::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::WiredAssessedInputVoltage::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint32(min), esp_matter_nullable_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_wired_assessed_input_frequency(cluster_t *cluster, nullable<uint16_t> value, nullable<uint16_t> min, nullable<uint16_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredAssessedInputFrequency::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::WiredAssessedInputFrequency::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint16(min), esp_matter_nullable_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_wired_current_type(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredCurrentType::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_wired_assessed_current(cluster_t *cluster, nullable<uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredAssessedCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::WiredAssessedCurrent::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint32(min), esp_matter_nullable_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_wired_nominal_voltage(cluster_t *cluster, const uint32_t value, uint32_t min, uint32_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredNominalVoltage::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::WiredNominalVoltage::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint32(min), esp_matter_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_wired_maximum_current(cluster_t *cluster, const uint32_t value, uint32_t min, uint32_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredMaximumCurrent::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::WiredMaximumCurrent::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint32(min), esp_matter_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_wired_present(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::WiredPresent::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_active_wired_faults(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
VerifyOrReturnValue(count <= k_max_fault_count, NULL, ESP_LOGE(TAG, "Could not create attribute, list out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::ActiveWiredFaults::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_bat_voltage(cluster_t *cluster, nullable<uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatVoltage::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatVoltage::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint32(min), esp_matter_nullable_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_percent_remaining(cluster_t *cluster, nullable<uint8_t> value, nullable<uint8_t> min, nullable<uint8_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatPercentRemaining::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatPercentRemaining::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint8(min), esp_matter_nullable_uint8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_time_remaining(cluster_t *cluster, nullable< uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatTimeRemaining::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatTimeRemaining::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint32(min), esp_matter_nullable_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_charge_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatChargeLevel::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_bat_replacement_needed(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatReplacementNeeded::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_bat_replaceability(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatReplaceability::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_bat_present(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatPresent::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_active_bat_faults(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
VerifyOrReturnValue(count <= k_max_fault_count, NULL, ESP_LOGE(TAG, "Could not create attribute, list out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::ActiveBatFaults::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_bat_replacement_description(cluster_t *cluster, const char * value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_bat_replacement_description_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string size out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatReplacementDescription::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str((char *)value, length),
|
|
k_max_bat_replacement_description_length);
|
|
}
|
|
|
|
attribute_t *create_bat_common_designation(cluster_t *cluster, const uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatCommonDesignation::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatCommonDesignation::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_enum8(min), esp_matter_enum8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_ansi_designation(cluster_t *cluster, const char * value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_designation_count, NULL, ESP_LOGE(TAG, "Could not create attribute, string size out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatANSIDesignation::Id, ATTRIBUTE_FLAG_NONE, esp_matter_char_str((char *)value, length), k_max_designation_count);
|
|
}
|
|
|
|
attribute_t *create_bat_iec_designation(cluster_t *cluster, const char * value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_designation_count, NULL, ESP_LOGE(TAG, "Could not create attribute, string size out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatIECDesignation::Id, ATTRIBUTE_FLAG_NONE, esp_matter_char_str((char *)value, length), k_max_designation_count);
|
|
}
|
|
|
|
attribute_t *create_bat_approved_chemistry(cluster_t *cluster, const uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatApprovedChemistry::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatApprovedChemistry::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_enum8(min), esp_matter_enum8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_capacity(cluster_t *cluster, const uint32_t value, uint32_t min, uint32_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatCapacity::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatCapacity::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint32(min), esp_matter_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_quantity(cluster_t *cluster, const uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatQuantity::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatQuantity::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint8(min), esp_matter_uint8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_charge_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatChargeState::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_bat_time_to_full_charge(cluster_t *cluster, nullable<uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatTimeToFullCharge::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatTimeToFullCharge::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint32(min), esp_matter_nullable_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_bat_functional_while_charging(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::BatFunctionalWhileCharging::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_bat_charging_current(cluster_t *cluster, nullable<uint32_t> value, nullable<uint32_t> min, nullable<uint32_t> max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, PowerSource::Attributes::BatChargingCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
VerifyOrReturnValue(attribute, NULL, ESP_LOGE(TAG, "Could not create attribute. cluster_id: 0x%08" PRIX32 "'s attribute_id: 0x%08" PRIX32 , cluster::get_id(cluster), PowerSource::Attributes::BatChargingCurrent::Id));
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_nullable_uint32(min), esp_matter_nullable_uint32(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_active_bat_charge_faults(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
VerifyOrReturnValue(count <= k_max_charge_faults_count, NULL, ESP_LOGE(TAG, "Could not create attribute, list out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::ActiveBatChargeFaults::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_endpoint_list(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
VerifyOrReturnValue(count <= k_max_endpoint_count, NULL, ESP_LOGE(TAG, "Could not create attribute, list out of bound"));
|
|
return esp_matter::attribute::create(cluster, PowerSource::Attributes::EndpointList::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* power_source */
|
|
|
|
namespace temperature_control {
|
|
namespace attribute {
|
|
attribute_t *create_temperature_setpoint(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureControl::Attributes::TemperatureSetpoint::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_min_temperature(cluster_t *cluster, const int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureControl::Attributes::MinTemperature::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_max_temperature(cluster_t *cluster, const int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureControl::Attributes::MaxTemperature::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_step(cluster_t *cluster, const int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureControl::Attributes::Step::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_selected_temperature_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureControl::Attributes::SelectedTemperatureLevel::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_supported_temperature_levels(cluster_t *cluster, uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
VerifyOrReturnValue(count <= k_max_temp_level_count, NULL, ESP_LOGE(TAG, "Could not create attribute, list out of bound"));
|
|
return esp_matter::attribute::create(cluster, TemperatureControl::Attributes::SupportedTemperatureLevels::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* temperature_control */
|
|
|
|
namespace refrigerator_alarm {
|
|
namespace attribute {
|
|
attribute_t *create_mask(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RefrigeratorAlarm::Attributes::Mask::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_state(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RefrigeratorAlarm::Attributes::State::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_supported(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, RefrigeratorAlarm::Attributes::Supported::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* refrigerator_alarm */
|
|
|
|
namespace mode_base {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_supported_modes(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeBase::Attributes::SupportedModes::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeBase::Attributes::CurrentMode::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_start_up_mode(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeBase::Attributes::StartUpMode::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_on_mode(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ModeBase::Attributes::OnMode::Id, ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint8(value));
|
|
}
|
|
} /* attribute */
|
|
} /* mode_base */
|
|
|
|
namespace power_topology {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_available_endpoints(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerTopology::Attributes::AvailableEndpoints::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_active_endpoints(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, PowerTopology::Attributes::ActiveEndpoints::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* power_topology */
|
|
|
|
namespace electrical_power_measurement {
|
|
namespace attribute {
|
|
attribute_t *create_power_mode(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::PowerMode::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_number_of_measurement_types(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::NumberOfMeasurementTypes::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_accuracy(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::Accuracy::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_ranges(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::Ranges::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_voltage(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::Voltage::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_active_current(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::ActiveCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_reactive_current(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::ReactiveCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_apparent_current(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::ApparentCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_active_power(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::ActivePower::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_reactive_power(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::ReactivePower::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_apparent_power(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::ApparentPower::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_rms_voltage(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::RMSVoltage::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_rms_current(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::RMSCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_rms_power(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::RMSPower::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_frequency(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::Frequency::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_harmonic_currents(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::HarmonicCurrents::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_harmonic_phases(cluster_t *cluster, const uint8_t * value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::HarmonicPhases::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_power_factor(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::PowerFactor::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_neutral_current(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalPowerMeasurement::Attributes::NeutralCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* electrical_power_measurement */
|
|
|
|
namespace electrical_energy_measurement {
|
|
namespace attribute {
|
|
attribute_t *create_accuracy(cluster_t *cluster, const uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalEnergyMeasurement::Attributes::Accuracy::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_cumulative_energy_imported(cluster_t *cluster, const uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalEnergyMeasurement::Attributes::
|
|
CumulativeEnergyImported::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_cumulative_energy_exported(cluster_t *cluster, const uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalEnergyMeasurement::Attributes::
|
|
CumulativeEnergyExported::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_periodic_energy_imported(cluster_t *cluster, const uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalEnergyMeasurement::Attributes::
|
|
PeriodicEnergyImported::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_periodic_energy_exported(cluster_t *cluster, const uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalEnergyMeasurement::Attributes::
|
|
PeriodicEnergyExported::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_cumulative_energy_reset(cluster_t *cluster, const uint8_t* value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ElectricalEnergyMeasurement::Attributes::
|
|
CumulativeEnergyReset::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* electrical_energy_measurement */
|
|
|
|
namespace energy_evse {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_state(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::State::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_supply_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::SupplyState::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_fault_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::FaultState::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_charging_enabled_until(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::ChargingEnabledUntil::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_discharging_enabled_until(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::DischargingEnabledUntil::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_circuit_capacity(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::CircuitCapacity::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_minimum_charge_current(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::MinimumChargeCurrent::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_maximum_charge_current(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::MaximumChargeCurrent::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_maximum_discharge_current(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::MaximumDischargeCurrent::Id, ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_user_maximum_charge_current(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::UserMaximumChargeCurrent::Id, ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_randomization_delay_window(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::RandomizationDelayWindow::Id, ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_next_charge_start_time(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::NextChargeStartTime::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_next_charge_target_time(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::NextChargeTargetTime::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_next_charge_required_energy(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::NextChargeRequiredEnergy::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_next_charge_target_soc(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::NextChargeTargetSoC::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_approximate_ev_efficiency(cluster_t *cluster, nullable<uint16_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::ApproximateEVEfficiency::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_nullable_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_state_of_charge(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::StateOfCharge::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_battery_capacity(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::BatteryCapacity::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_vehicle_id(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::VehicleID::Id, ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_char_str(value, length), k_max_vehicle_id_length);
|
|
}
|
|
|
|
attribute_t *create_session_id(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::SessionID::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_session_duration(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::SessionDuration::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_session_energy_charged(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::SessionEnergyCharged::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
attribute_t *create_session_energy_discharged(cluster_t *cluster, nullable<int64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyEvse::Attributes::SessionEnergyDischarged::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_int64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* energy_evse */
|
|
|
|
namespace microwave_oven_control {
|
|
namespace attribute {
|
|
attribute_t *create_cook_time(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::CookTime::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_max_cook_time(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::MaxCookTime::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_power_setting(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::PowerSetting::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_min_power(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::MinPower::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_max_power(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::MaxPower::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_power_step(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::PowerStep::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_supported_watts(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::SupportedWatts::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_selected_watt_index(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::SelectedWattIndex::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_watt_rating(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, MicrowaveOvenControl::Attributes::WattRating::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* microwave_oven_control */
|
|
|
|
namespace valve_configuration_and_control {
|
|
namespace attribute {
|
|
attribute_t *create_open_duration(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::OpenDuration::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_default_open_duration(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::DefaultOpenDuration::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_auto_close_time(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::AutoCloseTime::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_remaining_duration(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::RemainingDuration::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_current_state(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::CurrentState::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_target_state(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::TargetState::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_current_level(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::CurrentLevel::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_target_level(cluster_t *cluster, nullable<uint8_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::TargetLevel::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_default_open_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::DefaultOpenLevel::Id, ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_valve_fault(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::ValveFault::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
attribute_t *create_level_step(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ValveConfigurationAndControl::Attributes::LevelStep::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* valve_configuration_and_control */
|
|
|
|
namespace device_energy_management {
|
|
namespace attribute {
|
|
attribute_t *create_esa_type(cluster_t *cluster, const uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::ESAType::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_esa_can_generate(cluster_t *cluster, const bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::ESACanGenerate::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_esa_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::ESAState::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_abs_min_power(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::AbsMinPower::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_abs_max_power(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::AbsMaxPower::Id, ATTRIBUTE_FLAG_NONE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_power_adjustment_capability(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::PowerAdjustmentCapability::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_forecast(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::Forecast::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_array((uint8_t*)value, length, count));
|
|
}
|
|
|
|
attribute_t *create_opt_out_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DeviceEnergyManagement::Attributes::OptOutState::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* device_energy_management */
|
|
|
|
namespace application_basic {
|
|
namespace attribute {
|
|
attribute_t *create_vendor_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_vendor_name_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::VendorName::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length), k_max_vendor_name_length);
|
|
}
|
|
|
|
attribute_t *create_vendor_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::VendorID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_application_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::ApplicationName::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_product_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::ProductID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_application(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::Application::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_status(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::Status::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_application_version(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
VerifyOrReturnValue(length <= k_max_application_version_length, NULL, ESP_LOGE(TAG, "Could not create attribute, string length out of bound"));
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::ApplicationVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length),
|
|
k_max_application_version_length);
|
|
}
|
|
|
|
attribute_t *create_allowed_vendor_list(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ApplicationBasic::Attributes::AllowedVendorList::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* application_basic */
|
|
|
|
namespace thread_border_router_management {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_border_router_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadBorderRouterManagement::Attributes::BorderRouterName::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_border_agent_id(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadBorderRouterManagement::Attributes::BorderAgentID::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_thread_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadBorderRouterManagement::Attributes::ThreadVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_interface_enabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadBorderRouterManagement::Attributes::InterfaceEnabled::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_active_dataset_timestamp(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadBorderRouterManagement::Attributes::ActiveDatasetTimestamp::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_pending_dataset_timestamp(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadBorderRouterManagement::Attributes::PendingDatasetTimestamp::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* thread_border_router_management */
|
|
|
|
namespace wifi_network_management {
|
|
namespace attribute {
|
|
attribute_t *create_ssid(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkManagement::Attributes::Ssid::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_passphrase_surrogate(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkManagement::Attributes::PassphraseSurrogate::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* wifi_network_management */
|
|
|
|
namespace thread_network_directory {
|
|
namespace attribute {
|
|
attribute_t *create_preferred_extended_pan_id(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDirectory::Attributes::PreferredExtendedPanID::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_thread_networks(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDirectory::Attributes::ThreadNetworks::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_thread_network_table_size(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDirectory::Attributes::ThreadNetworkTableSize::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* thread_network_directory */
|
|
|
|
namespace service_area {
|
|
namespace attribute {
|
|
attribute_t *create_supported_areas(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ServiceArea::Attributes::SupportedAreas::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_supported_maps(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ServiceArea::Attributes::SupportedMaps::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_selected_areas(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ServiceArea::Attributes::SelectedAreas::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_area(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ServiceArea::Attributes::CurrentArea::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_estimated_end_time(cluster_t *cluster, nullable<uint32_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ServiceArea::Attributes::EstimatedEndTime::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_progress(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ServiceArea::Attributes::Progress::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* service_area */
|
|
|
|
namespace water_heater_management {
|
|
namespace attribute {
|
|
attribute_t *create_heater_types(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WaterHeaterManagement::Attributes::HeaterTypes::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_heat_demand(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WaterHeaterManagement::Attributes::HeatDemand::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap8(value));
|
|
}
|
|
|
|
attribute_t *create_tank_volume(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WaterHeaterManagement::Attributes::TankVolume::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_estimated_heat_required(cluster_t *cluster, int64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WaterHeaterManagement::Attributes::EstimatedHeatRequired::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int64(value));
|
|
}
|
|
|
|
attribute_t *create_tank_percentage(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WaterHeaterManagement::Attributes::TankPercentage::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_boost_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WaterHeaterManagement::Attributes::BoostState::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* water_heater_management */
|
|
|
|
namespace energy_preference {
|
|
namespace attribute {
|
|
attribute_t *create_energy_balances(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyPreference::Attributes::EnergyBalances::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_energy_balance(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyPreference::Attributes::CurrentEnergyBalance::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_energy_priorities(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyPreference::Attributes::EnergyPriorities::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_low_power_mode_sensitivities(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyPreference::Attributes::LowPowerModeSensitivities::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_current_low_power_mode_sensitivity(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EnergyPreference::Attributes::CurrentLowPowerModeSensitivity::Id,
|
|
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* energy_preference */
|
|
|
|
namespace commissioner_control {
|
|
namespace attribute {
|
|
attribute_t *create_supported_device_categories(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, CommissionerControl::Attributes::SupportedDeviceCategories::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap32(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* commissioner_control */
|
|
|
|
namespace ecosystem_information {
|
|
namespace attribute {
|
|
attribute_t *create_device_directory(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EcosystemInformation::Attributes::DeviceDirectory::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_location_directory(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, EcosystemInformation::Attributes::LocationDirectory::Id, ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* ecosystem_information */
|
|
|
|
namespace time_synchronization {
|
|
namespace attribute {
|
|
attribute_t *create_utc_time(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::UTCTime::Id,
|
|
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
|
|
esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_granularity(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::Granularity::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_time_source(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::TimeSource::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_trusted_time_source(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::TrustedTimeSource::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_default_ntp(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::DefaultNTP::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_time_zone(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::TimeZone::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_dst_offset(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::DSTOffset::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NONVOLATILE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_local_time(cluster_t *cluster, nullable<uint64_t> value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::LocalTime::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_nullable_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_time_zone_database(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::TimeZoneDatabase::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_ntp_server_available(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::NTPServerAvailable::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_time_zone_list_max_size(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::TimeZoneListMaxSize::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_dst_offset_list_max_size(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::DSTOffsetListMaxSize::Id,
|
|
ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_supports_dns_resolve(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TimeSynchronization::Attributes::SupportsDNSResolve::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* time_synchronization */
|
|
|
|
} /* cluster */
|
|
} /* esp_matter */
|