Skip to content

Commit 45375d1

Browse files
authored
fix(matter_example): missing semicolon in code
1 parent 79ba93c commit 45375d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Matter/examples/MatterDimmableLight/MatterDimmableLight.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ MatterDimmableLight DimmableLight;
2323

2424
// it will keep last OnOff & Brightness state stored, using Preferences
2525
Preferences matterPref;
26-
const char *onOffPrefKey = "OnOffState"
27-
const char *brightnessPrefKey = "BrightnessState"
26+
const char *onOffPrefKey = "OnOffState";
27+
const char *brightnessPrefKey = "BrightnessState";
2828

2929
// set your board RGB LED pin here
3030
#ifdef RGB_BUILTIN

0 commit comments

Comments
 (0)