fix(matter_example): missing semicolon in code · espressif/arduino-esp32@45375d1 (original) (raw)
File tree
1 file changed
lines changed
- libraries/Matter/examples/MatterDimmableLight
1 file changed
lines changed
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -23,8 +23,8 @@ MatterDimmableLight DimmableLight; | ||
| 23 | 23 | |
| 24 | 24 | // it will keep last OnOff & Brightness state stored, using Preferences |
| 25 | 25 | Preferences matterPref; |
| 26 | -const char *onOffPrefKey = "OnOffState" | |
| 27 | -const char *brightnessPrefKey = "BrightnessState" | |
| 26 | +const char *onOffPrefKey = "OnOffState"; | |
| 27 | +const char *brightnessPrefKey = "BrightnessState"; | |
| 28 | 28 | |
| 29 | 29 | // set your board RGB LED pin here |
| 30 | 30 | #ifdef RGB_BUILTIN |