@@ -3694,25 +3694,25 @@ attribute_t *create_description(cluster_t *cluster, const char * value, uint16_t
3694
3694
return esp_matter::attribute::create (cluster, PowerSource::Attributes::Description::Id, ATTRIBUTE_FLAG_NONE, esp_matter_char_str ((char *)value, length));
3695
3695
}
3696
3696
3697
- attribute_t *create_wired_assessed_input_voltage (cluster_t *cluster, nullable<uint32_t > value, uint32_t min, uint32_t max)
3697
+ attribute_t *create_wired_assessed_input_voltage (cluster_t *cluster, nullable<uint32_t > value, nullable< uint32_t > min, nullable< uint32_t > max)
3698
3698
{
3699
3699
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::WiredAssessedInputVoltage::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32 (value));
3700
3700
if (!attribute) {
3701
3701
ESP_LOGE (TAG, " Could not create attribute" );
3702
3702
return NULL ;
3703
3703
}
3704
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint32 (min), esp_matter_uint32 (max));
3704
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint32 (min), esp_matter_nullable_uint32 (max));
3705
3705
return attribute;
3706
3706
}
3707
3707
3708
- attribute_t *create_wired_assessed_input_frequency (cluster_t *cluster, nullable<uint16_t > value, uint16_t min, uint16_t max)
3708
+ attribute_t *create_wired_assessed_input_frequency (cluster_t *cluster, nullable<uint16_t > value, nullable< uint16_t > min, nullable< uint16_t > max)
3709
3709
{
3710
3710
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::WiredAssessedInputFrequency::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint16 (value));
3711
3711
if (!attribute) {
3712
3712
ESP_LOGE (TAG, " Could not create attribute" );
3713
3713
return NULL ;
3714
3714
}
3715
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint16 (min), esp_matter_uint16 (max));
3715
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint16 (min), esp_matter_nullable_uint16 (max));
3716
3716
return attribute;
3717
3717
}
3718
3718
@@ -3721,14 +3721,14 @@ attribute_t *create_wired_current_type(cluster_t *cluster, const uint8_t value)
3721
3721
return esp_matter::attribute::create (cluster, PowerSource::Attributes::WiredCurrentType::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8 (value));
3722
3722
}
3723
3723
3724
- attribute_t *create_wired_assessed_current (cluster_t *cluster, nullable<uint32_t > value, uint32_t min, uint32_t max)
3724
+ attribute_t *create_wired_assessed_current (cluster_t *cluster, nullable<uint32_t > value, nullable< uint32_t > min, nullable< uint32_t > max)
3725
3725
{
3726
3726
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::WiredAssessedCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32 (value));
3727
3727
if (!attribute) {
3728
3728
ESP_LOGE (TAG, " Could not create attribute" );
3729
3729
return NULL ;
3730
3730
}
3731
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint32 (min), esp_matter_uint32 (max));
3731
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint32 (min), esp_matter_nullable_uint32 (max));
3732
3732
return attribute;
3733
3733
}
3734
3734
@@ -3768,36 +3768,36 @@ attribute_t *create_active_wired_faults(cluster_t *cluster, uint8_t * value, uin
3768
3768
return esp_matter::attribute::create (cluster, PowerSource::Attributes::ActiveWiredFaults::Id, ATTRIBUTE_FLAG_NONE, esp_matter_array (value, length, count));
3769
3769
}
3770
3770
3771
- attribute_t *create_bat_voltage (cluster_t *cluster, nullable<uint32_t > value, uint32_t min, uint32_t max)
3771
+ attribute_t *create_bat_voltage (cluster_t *cluster, nullable<uint32_t > value, nullable< uint32_t > min, nullable< uint32_t > max)
3772
3772
{
3773
3773
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::BatVoltage::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32 (value));
3774
3774
if (!attribute) {
3775
3775
ESP_LOGE (TAG, " Could not create attribute" );
3776
3776
return NULL ;
3777
3777
}
3778
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint32 (min), esp_matter_uint32 (max));
3778
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint32 (min), esp_matter_nullable_uint32 (max));
3779
3779
return attribute;
3780
3780
}
3781
3781
3782
- attribute_t *create_bat_percent_remaining (cluster_t *cluster, nullable<uint8_t > value, uint8_t min, uint8_t max)
3782
+ attribute_t *create_bat_percent_remaining (cluster_t *cluster, nullable<uint8_t > value, nullable< uint8_t > min, nullable< uint8_t > max)
3783
3783
{
3784
3784
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::BatPercentRemaining::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint8 (value));
3785
3785
if (!attribute) {
3786
3786
ESP_LOGE (TAG, " Could not create attribute" );
3787
3787
return NULL ;
3788
3788
}
3789
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint8 (min), esp_matter_uint8 (max));
3789
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint8 (min), esp_matter_nullable_uint8 (max));
3790
3790
return attribute;
3791
3791
}
3792
3792
3793
- attribute_t *create_bat_time_remaining (cluster_t *cluster, nullable<uint32_t > value, uint32_t min, uint32_t max)
3793
+ attribute_t *create_bat_time_remaining (cluster_t *cluster, nullable< uint32_t > value, nullable< uint32_t > min, nullable< uint32_t > max)
3794
3794
{
3795
3795
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::BatTimeRemaining::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32 (value));
3796
3796
if (!attribute) {
3797
3797
ESP_LOGE (TAG, " Could not create attribute" );
3798
3798
return NULL ;
3799
3799
}
3800
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint32 (min), esp_matter_uint32 (max));
3800
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint32 (min), esp_matter_nullable_uint32 (max));
3801
3801
return attribute;
3802
3802
}
3803
3803
@@ -3906,14 +3906,14 @@ attribute_t *create_bat_charge_state(cluster_t *cluster, uint8_t value)
3906
3906
return esp_matter::attribute::create (cluster, PowerSource::Attributes::BatChargeState::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8 (value));
3907
3907
}
3908
3908
3909
- attribute_t *create_bat_time_to_full_charge (cluster_t *cluster, nullable<uint32_t > value, uint32_t min, uint32_t max)
3909
+ attribute_t *create_bat_time_to_full_charge (cluster_t *cluster, nullable<uint32_t > value, nullable< uint32_t > min, nullable< uint32_t > max)
3910
3910
{
3911
3911
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::BatTimeToFullCharge::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32 (value));
3912
3912
if (!attribute) {
3913
3913
ESP_LOGE (TAG, " Could not create attribute" );
3914
3914
return NULL ;
3915
3915
}
3916
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint32 (min), esp_matter_uint32 (max));
3916
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint32 (min), esp_matter_nullable_uint32 (max));
3917
3917
return attribute;
3918
3918
}
3919
3919
@@ -3922,14 +3922,14 @@ attribute_t *create_bat_functional_while_charging(cluster_t *cluster, bool value
3922
3922
return esp_matter::attribute::create (cluster, PowerSource::Attributes::BatFunctionalWhileCharging::Id, ATTRIBUTE_FLAG_NONE, esp_matter_bool (value));
3923
3923
}
3924
3924
3925
- attribute_t *create_bat_charging_current (cluster_t *cluster, nullable<uint32_t > value, uint32_t min, uint32_t max)
3925
+ attribute_t *create_bat_charging_current (cluster_t *cluster, nullable<uint32_t > value, nullable< uint32_t > min, nullable< uint32_t > max)
3926
3926
{
3927
3927
attribute_t *attribute = esp_matter::attribute::create (cluster, PowerSource::Attributes::BatChargingCurrent::Id, ATTRIBUTE_FLAG_NULLABLE, esp_matter_nullable_uint32 (value));
3928
3928
if (!attribute) {
3929
3929
ESP_LOGE (TAG, " Could not create attribute" );
3930
3930
return NULL ;
3931
3931
}
3932
- esp_matter::attribute::add_bounds (attribute, esp_matter_uint32 (min), esp_matter_uint32 (max));
3932
+ esp_matter::attribute::add_bounds (attribute, esp_matter_nullable_uint32 (min), esp_matter_nullable_uint32 (max));
3933
3933
return attribute;
3934
3934
}
3935
3935
0 commit comments