Skip to content
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

feat(matter): New Matter Endpoint #10628

Merged
merged 10 commits into from
Nov 20, 2024
Prev Previous commit
Next Next commit
fix(matter): example has a bad symbol name
SuGlider committed Nov 20, 2024
commit eadfafe301d0646ebe5ebaaaa6082cd432a49264
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ bool setLightState(bool state, uint8_t brightness, uint16_t temperature_Mireds)
rgbLedWrite(ledPin, rgb_ct.r, rgb_ct.g, rgb_ct.b);
#else
// No Color RGB LED, just use the brightness to control the LED
analogWrite(ledPin, _brightness);
analogWrite(ledPin, brightness);
#endif
} else {
digitalWrite(ledPin, LOW);