We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77101e0 commit 7f82026Copy full SHA for 7f82026
examples/platform/silabs/BaseApplication.cpp
@@ -188,6 +188,17 @@ void BaseApplicationDelegate::OnCommissioningWindowClosed()
188
}
189
190
#endif // CHIP_CONFIG_ENABLE_ICD_SERVER && SLI_SI917
191
+ if (BaseApplication::GetProvisionStatus())
192
+ {
193
+#ifdef DISPLAY_ENABLED
194
+#ifdef QR_CODE_ENABLED
195
+ SilabsLCD::Screen_e screen;
196
+ slLCD.GetScreen(screen);
197
+ VerifyOrReturn(screen == SilabsLCD::Screen_e::QRCodeScreen);
198
+ slLCD.SetScreen(SilabsLCD::Screen_e::DemoScreen);
199
+#endif // QR_CODE_ENABLED
200
+#endif // DISPLAY_ENABLED
201
+ }
202
203
204
void BaseApplicationDelegate::OnFabricCommitted(const FabricTable & fabricTable, FabricIndex fabricIndex)
0 commit comments