Skip to content

feat(matter): adds a Pressure Sensor Matter Endpoint #10710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(matter): fix a bad error message - left over
  • Loading branch information
SuGlider authored Dec 11, 2024
commit 1f9eb74337a453a9fba4d3b2120a14270a6d5725
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ bool MatterPressureSensor::setRawPressure(int16_t _rawPressure) {
bool ret;
ret = updateAttributeVal(PressureMeasurement::Id, PressureMeasurement::Attributes::MeasuredValue::Id, &pressureVal);
if (!ret) {
log_e("Failed to update Fan Speed Percent Attribute.");
log_e("Failed to update Pressure Sensor Measurement Attribute.");
return false;
}
rawPressure = _rawPressure;
Expand Down
Loading