[apps/hardware_test] ColorsLCDTest

This commit is contained in:
Léa Saviot
2019-07-05 11:45:25 +02:00
parent 7b99f78352
commit bf9ba7b363
11 changed files with 141 additions and 34 deletions

View File

@@ -21,6 +21,7 @@ App::App(Container * container, Snapshot * snapshot) :
App::WizardViewController::WizardViewController(Responder * parentResponder) :
BankViewController(parentResponder),
m_batteryTestController(this),
m_colorsLCDTestController(this),
m_deadPixelsTestController(this),
m_keyboardController(this),
m_lcdDataTestController(this),
@@ -31,12 +32,13 @@ App::WizardViewController::WizardViewController(Responder * parentResponder) :
}
int App::WizardViewController::numberOfChildren() {
return 7;
return 8;
}
ViewController * App::WizardViewController::childAtIndex(int i) {
ViewController * children[] = {
&m_vBlankTestController,
&m_colorsLCDTestController,
&m_lcdDataTestController,
&m_deadPixelsTestController,
&m_ledTestController,