Skip to content

Commit b89f298

Browse files
committed
components/esp_matter: remove the internally-managed flag for thermostat attributes: local-temperature and remote-sensing
1 parent f87a4cd commit b89f298

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/esp_matter/data_model/esp_matter_attribute.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1946,7 +1946,7 @@ namespace attribute {
19461946

19471947
attribute_t *create_local_temperature(cluster_t *cluster, nullable<int16_t> value)
19481948
{
1949-
return esp_matter::attribute::create(cluster, Thermostat::Attributes::LocalTemperature::Id, ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
1949+
return esp_matter::attribute::create(cluster, Thermostat::Attributes::LocalTemperature::Id, ATTRIBUTE_FLAG_NULLABLE,
19501950
esp_matter_nullable_int16(value));
19511951
}
19521952

@@ -2067,7 +2067,7 @@ attribute_t *create_min_setpoint_dead_band(cluster_t *cluster, int8_t value)
20672067
attribute_t *create_remote_sensing(cluster_t *cluster, uint8_t value)
20682068
{
20692069
return esp_matter::attribute::create(cluster, Thermostat::Attributes::RemoteSensing::Id,
2070-
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_bitmap8(value));
2070+
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8(value));
20712071
}
20722072

20732073
attribute_t *create_control_sequence_of_operation(cluster_t *cluster, uint8_t value)

0 commit comments

Comments
 (0)