Skip to content

Commit

Permalink
Fix, don't report scale attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
nurikk committed Jan 18, 2021
1 parent 7fe4e2f commit a8efc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/zcl_app_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ CONST zclAttrRec_t zclApp_AttrsFirstEP[] = {

{PRESSURE, {ATTRID_MS_PRESSURE_MEASUREMENT_MEASURED_VALUE, ZCL_INT16, RR, (void *)&zclApp_PressureSensor_MeasuredValue}},
{PRESSURE, {ATTRID_MS_PRESSURE_MEASUREMENT_SCALED_VALUE, ZCL_INT16, RR, (void *)&zclApp_PressureSensor_ScaledValue}},
{PRESSURE, {ATTRID_MS_PRESSURE_MEASUREMENT_SCALE, ZCL_INT8, RR, (void *)&zclApp_PressureSensor_Scale}},
{PRESSURE, {ATTRID_MS_PRESSURE_MEASUREMENT_SCALE, ZCL_INT8, R, (void *)&zclApp_PressureSensor_Scale}},

{HUMIDITY, {ATTRID_MS_RELATIVE_HUMIDITY_MEASURED_VALUE, ZCL_UINT16, RR, (void *)&zclApp_HumiditySensor_MeasuredValue}},

Expand Down

0 comments on commit a8efc72

Please sign in to comment.