mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
1242 lines
50 KiB
C++
1242 lines
50 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>
|
|
|
|
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::DeviceList::Id, ATTRIBUTE_FLAG_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* descriptor */
|
|
|
|
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_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_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* access_control */
|
|
|
|
namespace basic {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_data_model_revision(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::Attributes::DataModelRevision::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_vendor_name(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::Attributes::VendorName::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_vendor_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::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, Basic::Attributes::ProductName::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, Basic::Attributes::ProductID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_node_label(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::Attributes::NodeLabel::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_location(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::Attributes::Location::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_hardware_version(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::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, Basic::Attributes::HardwareVersionString::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_software_version(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::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, Basic::Attributes::SoftwareVersionString::Id, ATTRIBUTE_FLAG_NONE,
|
|
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, Basic::Attributes::CapabilityMinima::Id, ATTRIBUTE_FLAG_NONE,
|
|
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, Basic::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, Basic::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, Basic::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, Basic::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, Basic::Attributes::SerialNumber::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_local_config_diabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::Attributes::LocalConfigDisabled::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_reachable(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Basic::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, Basic::Attributes::UniqueID::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* basic */
|
|
|
|
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_WRITABLE,
|
|
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)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OtaSoftwareUpdateRequestor::Attributes::DefaultOtaProviders::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
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, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OtaSoftwareUpdateRequestor::Attributes::UpdateStateProgress::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_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_NONE, 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_NONE, 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_NONE, 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_NONE, esp_matter_bool(value));
|
|
}
|
|
|
|
} /* 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_NONE, 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_NONE,
|
|
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_NONE, 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_NONE, 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_WRITABLE, esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_last_networking_status(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::LastNetworkingStatus::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(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_NONE, esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_last_connect_error_value(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, NetworkCommissioning::Attributes::LastConnectErrorValue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(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_NONE, 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_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_test_event_triggers_enabled(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, GeneralDiagnostics::Attributes::TestEventTriggersEnabled::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* general_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_NONE, 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_NONE, 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_NONE, 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_NONE,
|
|
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_NONE,
|
|
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_NONE, 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_NONE, 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_NONE, 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_NONE, 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_WRITABLE, 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_NONE,
|
|
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_NONE, 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_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* group_key_management */
|
|
|
|
namespace diagnostics_network_wifi {
|
|
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_NONE,
|
|
esp_matter_octet_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_security_type(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::SecurityType::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_wifi_version(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::WiFiVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_channel_number(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::ChannelNumber::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_rssi(cluster_t *cluster, int8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::Rssi::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_int8(value));
|
|
}
|
|
|
|
attribute_t *create_beacon_lost_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::BeaconLostCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_beacon_rx_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::BeaconRxCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_multicast_rx_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketMulticastRxCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_multicast_tx_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketMulticastTxCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_unicast_rx_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketUnicastRxCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_packet_unicast_tx_count(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::PacketUnicastTxCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_current_max_rate(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::CurrentMaxRate::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint64(value));
|
|
}
|
|
|
|
attribute_t *create_overrun_count(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, WiFiNetworkDiagnostics::Attributes::OverrunCount::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint64(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* diagnostics_network_wifi */
|
|
|
|
namespace diagnostics_network_thread {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_channel(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::Channel::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_routing_role(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::RoutingRole::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_enum8(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_NONE, esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_pan_id(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::PanId::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_extended_pan_id(cluster_t *cluster, uint64_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ExtendedPanId::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_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_NONE, 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::NeighborTableList::Id,
|
|
ATTRIBUTE_FLAG_NONE, 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::RouteTableList::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_extended_partition_id(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::PartitionId::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint32(value));
|
|
}
|
|
|
|
attribute_t *create_weighting(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::Weighting::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_data_version(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::DataVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_stable_data_version(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::StableDataVersion::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_leader_router_id(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::LeaderRouterId::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_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_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
attribute_t *create_channel_mask(cluster_t *cluster, uint8_t *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ChannelMask::Id,
|
|
ATTRIBUTE_FLAG_NONE, 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_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, ThreadNetworkDiagnostics::Attributes::ActiveNetworkFaultsList::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* diagnostics_network_thread */
|
|
|
|
namespace identify {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_identify_time(cluster_t *cluster, uint16_t value, uint16_t min, uint16_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, Identify::Attributes::IdentifyTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
if (!attribute) {
|
|
ESP_LOGE(TAG, "Could not create attribute");
|
|
return NULL;
|
|
}
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_uint16(min), esp_matter_uint16(max));
|
|
return attribute;
|
|
}
|
|
|
|
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 {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_scene_count(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Scenes::Attributes::SceneCount::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_current_scene(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Scenes::Attributes::CurrentScene::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_current_group(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Scenes::Attributes::CurrentGroup::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_scene_valid(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Scenes::Attributes::SceneValid::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
attribute_t *create_scene_name_support(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Scenes::Attributes::NameSupport::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bitmap8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* scenes */
|
|
|
|
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, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::OnTime::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_off_wait_time(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::OffWaitTime::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_start_up_on_off(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, OnOff::Attributes::StartUpOnOff::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_NULLABLE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* on_off */
|
|
|
|
namespace level_control {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_current_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::CurrentLevel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_on_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OnLevel::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_options(cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, LevelControl::Attributes::Options::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
|
|
if (!attribute) {
|
|
ESP_LOGE(TAG, "Could not create attribute");
|
|
return NULL;
|
|
}
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_bitmap8(min), esp_matter_bitmap8(max));
|
|
return attribute;
|
|
}
|
|
|
|
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, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OnTransitionTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_off_transition_time(cluster_t* cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::OffTransitionTime::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NULLABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_default_move_rate(cluster_t* cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::DefaultMoveRate::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint8(value));
|
|
}
|
|
|
|
attribute_t *create_start_up_current_level(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, LevelControl::Attributes::StartUpCurrentLevel::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_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_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
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::ColorTemperature::Id, ATTRIBUTE_FLAG_NONE,
|
|
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, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::StartUpColorTemperatureMireds::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_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_NONE,
|
|
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_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_enhanced_current_hue(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, ColorControl::Attributes::EnhancedCurrentHue::Id, ATTRIBUTE_FLAG_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
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_NONE,
|
|
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 */
|
|
} /* 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_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
attribute_t *create_fan_mode_sequence(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, FanControl::Attributes::FanModeSequence::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* fan_control */
|
|
|
|
namespace thermostat {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_local_temperature(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::LocalTemperature::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_cooling_setpoint(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedCoolingSetpoint::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_occupied_heating_setpoint(cluster_t *cluster, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, Thermostat::Attributes::OccupiedHeatingSetpoint::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_uint16(value));
|
|
}
|
|
|
|
attribute_t *create_control_sequence_of_operation(cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster,
|
|
Thermostat::Attributes::ControlSequenceOfOperation::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
if (!attribute) {
|
|
ESP_LOGE(TAG, "Could not create attribute");
|
|
return NULL;
|
|
}
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_enum8(min), esp_matter_enum8(max));
|
|
return attribute;
|
|
}
|
|
|
|
attribute_t *create_system_mode(cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max)
|
|
{
|
|
attribute_t *attribute = esp_matter::attribute::create(cluster, Thermostat::Attributes::SystemMode::Id,
|
|
ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value));
|
|
if (!attribute) {
|
|
ESP_LOGE(TAG, "Could not create attribute");
|
|
return NULL;
|
|
}
|
|
esp_matter::attribute::add_bounds(attribute, esp_matter_enum8(min), esp_matter_enum8(max));
|
|
return attribute;
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* thermostat */
|
|
|
|
namespace door_lock {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_lock_state(cluster_t *cluster, uint8_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::LockState::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_enum8(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_auto_relock_time(cluster_t *cluster, uint32_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::AutoRelockTime::Id, ATTRIBUTE_FLAG_WRITABLE,
|
|
esp_matter_bitmap32(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_NONE, esp_matter_enum8(value));
|
|
if (!attribute) {
|
|
ESP_LOGE(TAG, "Could not create attribute");
|
|
return NULL;
|
|
}
|
|
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, uint16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, DoorLock::Attributes::SupportedOperatingModes::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_bitmap16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* door_lock */
|
|
|
|
namespace bridged_device_basic {
|
|
namespace attribute {
|
|
|
|
attribute_t *create_bridged_device_basic_node_label(cluster_t *cluster, char *value, uint16_t length)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasic::Attributes::NodeLabel::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_char_str(value, length));
|
|
}
|
|
|
|
attribute_t *create_reachable(cluster_t *cluster, bool value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, BridgedDeviceBasic::Attributes::Reachable::Id, ATTRIBUTE_FLAG_NONE,
|
|
esp_matter_bool(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* bridged_device_basic */
|
|
|
|
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_WRITABLE,
|
|
esp_matter_array(value, length, count));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* fixed_label */
|
|
|
|
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_NONE,
|
|
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, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureMeasurement::Attributes::MeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_temperature_min_measured_value(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureMeasurement::Attributes::MinMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
attribute_t *create_temperature_max_measured_value(cluster_t *cluster, int16_t value)
|
|
{
|
|
return esp_matter::attribute::create(cluster, TemperatureMeasurement::Attributes::MaxMeasuredValue::Id,
|
|
ATTRIBUTE_FLAG_NONE, esp_matter_int16(value));
|
|
}
|
|
|
|
} /* attribute */
|
|
} /* temperature_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 */
|
|
} /* occupancy_sensing */
|
|
|
|
namespace boolean_state {
|
|
namespace attribute {
|
|
|
|
attribute_t *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 */
|
|
|
|
} /* cluster */
|
|
} /* esp_matter */
|