Skip to content

Commit cd24aa5

Browse files
SuGliderCopilot
andauthored
fix(matter): example code typo
Co-authored-by: Copilot <[email protected]>
1 parent cc17140 commit cd24aa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/Matter/examples/MatterLambdaSingleCallbackManyEPs/MatterLambdaSingleCallbackManyEPs.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void setup() {
8282

8383
// setup all the OnOff Light endpoint and their lambda callback functions
8484
for (uint8_t i = 0; i < MAX_LIGHT_NUMBER; i++) {
85-
pinMode( lightPins[i], OUTPUT); // set the GPIO function
85+
pinMode(lightPins[i], OUTPUT); // set the GPIO function
8686
OnOffLight[i].begin(false); // off
8787

8888
// inline lambda function using capture array index -> it will just print a message in the console

0 commit comments

Comments
 (0)