@@ -1459,94 +1459,45 @@ attribute_t *create_primary_n_intensity(cluster_t *cluster, nullable<uint8_t> va
1459
1459
namespace fan_control {
1460
1460
namespace attribute {
1461
1461
1462
- attribute_t *create_fan_mode (cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max )
1462
+ attribute_t *create_fan_mode (cluster_t *cluster, uint8_t value)
1463
1463
{
1464
- attribute_t *attribute =
1465
- esp_matter::attribute::create (cluster, FanControl::Attributes::FanMode::Id,
1466
- ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8 (value));
1467
- if (!attribute) {
1468
- ESP_LOGE (TAG, " Could not create attribute" );
1469
- return NULL ;
1470
- }
1471
- esp_matter::attribute::add_bounds (attribute, esp_matter_enum8 (min), esp_matter_enum8 (max));
1472
- return attribute;
1464
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::FanMode::Id,
1465
+ ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8 (value));
1473
1466
}
1474
1467
1475
- attribute_t *create_fan_mode_sequence (cluster_t *cluster, const uint8_t value, uint8_t min, uint8_t max )
1468
+ attribute_t *create_fan_mode_sequence (cluster_t *cluster, const uint8_t value)
1476
1469
{
1477
- attribute_t *attribute =
1478
- esp_matter::attribute::create (cluster, FanControl::Attributes::FanModeSequence::Id,
1470
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::FanModeSequence::Id,
1479
1471
ATTRIBUTE_FLAG_NONE, esp_matter_enum8 (value));
1480
- if (!attribute) {
1481
- ESP_LOGE (TAG, " Could not create attribute" );
1482
- return NULL ;
1483
- }
1484
- esp_matter::attribute::add_bounds (attribute, esp_matter_enum8 (min), esp_matter_enum8 (max));
1485
- return attribute;
1486
1472
}
1487
1473
1488
- attribute_t *create_percent_setting (cluster_t *cluster, nullable<uint8_t > value, nullable< uint8_t > min, nullable< uint8_t > max )
1474
+ attribute_t *create_percent_setting (cluster_t *cluster, nullable<uint8_t > value)
1489
1475
{
1490
- attribute_t *attribute =
1491
- esp_matter::attribute::create (cluster, FanControl::Attributes::PercentSetting::Id,
1476
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::PercentSetting::Id,
1492
1477
ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE,
1493
1478
esp_matter_nullable_uint8 (value));
1494
- if (!attribute) {
1495
- ESP_LOGE (TAG, " Could not create attribute" );
1496
- return NULL ;
1497
- }
1498
- esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint8 (min), esp_matter_nullable_uint8 (max));
1499
- return attribute;
1500
1479
}
1501
1480
1502
- attribute_t *create_percent_current (cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max )
1481
+ attribute_t *create_percent_current (cluster_t *cluster, uint8_t value)
1503
1482
{
1504
- attribute_t *attribute =
1505
- esp_matter::attribute::create (cluster, FanControl::Attributes::PercentCurrent::Id, ATTRIBUTE_FLAG_NONE,
1483
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::PercentCurrent::Id, ATTRIBUTE_FLAG_NONE,
1506
1484
esp_matter_uint8 (value));
1507
- if (!attribute) {
1508
- ESP_LOGE (TAG, " Could not create attribute" );
1509
- return NULL ;
1510
- }
1511
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint8 (min), esp_matter_uint8 (max));
1512
- return attribute;
1513
1485
}
1514
1486
1515
- attribute_t *create_speed_max (cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max )
1487
+ attribute_t *create_speed_max (cluster_t *cluster, uint8_t value)
1516
1488
{
1517
- attribute_t *attribute =
1518
- esp_matter::attribute::create (cluster, FanControl::Attributes::SpeedMax::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8 (value));
1519
- if (!attribute) {
1520
- ESP_LOGE (TAG, " Could not create attribute" );
1521
- return NULL ;
1522
- }
1523
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint8 (min), esp_matter_uint8 (max));
1524
- return attribute;
1489
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::SpeedMax::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8 (value));
1525
1490
}
1526
1491
1527
- attribute_t *create_speed_setting (cluster_t *cluster, nullable<uint8_t > value, nullable< uint8_t > min, nullable< uint8_t > max )
1492
+ attribute_t *create_speed_setting (cluster_t *cluster, nullable<uint8_t > value)
1528
1493
{
1529
- attribute_t *attribute =
1530
- esp_matter::attribute::create (cluster, FanControl::Attributes::SpeedSetting::Id,
1531
- ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_nullable_uint8 (value));
1532
- if (!attribute) {
1533
- ESP_LOGE (TAG, " Could not create attribute" );
1534
- return NULL ;
1535
- }
1536
- esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint8 (min), esp_matter_nullable_uint8 (max));
1537
- return attribute;
1494
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::SpeedSetting::Id,
1495
+ ATTRIBUTE_FLAG_NULLABLE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_nullable_uint8 (value));
1538
1496
}
1539
1497
1540
- attribute_t *create_speed_current (cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max )
1498
+ attribute_t *create_speed_current (cluster_t *cluster, uint8_t value)
1541
1499
{
1542
- attribute_t *attribute =
1543
- esp_matter::attribute::create (cluster, FanControl::Attributes::SpeedCurrent::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8 (value));
1544
- if (!attribute) {
1545
- ESP_LOGE (TAG, " Could not create attribute" );
1546
- return NULL ;
1547
- }
1548
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint8 (min), esp_matter_uint8 (max));
1549
- return attribute;
1500
+ return esp_matter::attribute::create (cluster, FanControl::Attributes::SpeedCurrent::Id, ATTRIBUTE_FLAG_NONE, esp_matter_uint8 (value));
1550
1501
}
1551
1502
1552
1503
attribute_t *create_rock_support (cluster_t *cluster, uint8_t value)
@@ -1711,30 +1662,16 @@ attribute_t *create_remote_sensing(cluster_t *cluster, uint8_t value)
1711
1662
ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_bitmap8 (value));
1712
1663
}
1713
1664
1714
- attribute_t *create_control_sequence_of_operation (cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max )
1665
+ attribute_t *create_control_sequence_of_operation (cluster_t *cluster, uint8_t value)
1715
1666
{
1716
- attribute_t *attribute =
1717
- esp_matter::attribute::create (cluster, Thermostat::Attributes::ControlSequenceOfOperation::Id,
1718
- ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8 (value));
1719
- if (!attribute) {
1720
- ESP_LOGE (TAG, " Could not create attribute" );
1721
- return NULL ;
1722
- }
1723
- esp_matter::attribute::add_bounds (attribute, esp_matter_enum8 (min), esp_matter_enum8 (max));
1724
- return attribute;
1667
+ return esp_matter::attribute::create (cluster, Thermostat::Attributes::ControlSequenceOfOperation::Id,
1668
+ ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8 (value));
1725
1669
}
1726
1670
1727
- attribute_t *create_system_mode (cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max )
1671
+ attribute_t *create_system_mode (cluster_t *cluster, uint8_t value)
1728
1672
{
1729
- attribute_t *attribute =
1730
- esp_matter::attribute::create (cluster, Thermostat::Attributes::SystemMode::Id,
1731
- ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8 (value));
1732
- if (!attribute) {
1733
- ESP_LOGE (TAG, " Could not create attribute" );
1734
- return NULL ;
1735
- }
1736
- esp_matter::attribute::add_bounds (attribute, esp_matter_enum8 (min), esp_matter_enum8 (max));
1737
- return attribute;
1673
+ return esp_matter::attribute::create (cluster, Thermostat::Attributes::SystemMode::Id,
1674
+ ATTRIBUTE_FLAG_NONVOLATILE | ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8 (value));
1738
1675
}
1739
1676
1740
1677
attribute_t *create_thermostat_running_mode (cluster_t *cluster, uint8_t value)
0 commit comments